:root {
  --navy: #18214f;
  --navy-deep: #121a3d;
  --gold: #b89d67;
  --gold-dark: #8d7447;
  --off-white: #f4f3ef;
  --soft-grey: #d2d0cb;
  --charcoal: #121317;
  --ice-blue: #c7dfea;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(7, 11, 27, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 26, 61, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 157, 103, 0.25);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--off-white);
}

.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e8e6dd;
  text-decoration: none;
  font-size: 0.84rem;
}

.main-nav a:hover {
  color: var(--gold);
}

.hero {
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--off-white);
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--navy-deep);
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.hero p {
  margin-top: 0;
  max-width: 64ch;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 157, 103, 0.35);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}

.hero-card h2 {
  color: #fff;
  font-size: 1.9rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
}

.card-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--off-white);
}

.lead {
  font-size: 1.08rem;
  max-width: 72ch;
}

.feature-grid,
.cards-grid,
.quotes {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.card {
  background: #fff;
  border: 1px solid #ece7dc;
  border-radius: var(--radius);
  padding: 1.1rem;
}

.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  box-shadow: var(--shadow);
}

.card-cta {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}

.card-cta:hover {
  color: var(--gold-dark);
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.highlight-box {
  background: var(--navy);
  color: var(--off-white);
  padding: 1.2rem;
  border-radius: var(--radius);
}

.highlight-box h3 {
  color: var(--gold);
}

.quotes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 1rem;
  font-style: italic;
}

.shop-bridge {
  background: linear-gradient(145deg, #f8fafb, #edf3f6);
  border-top: 1px solid #dce4e9;
  border-bottom: 1px solid #dce4e9;
}

.page-hero {
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--off-white);
  padding: 4.2rem 0 3rem;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.page-hero .lead {
  color: #edf0f8;
}

.breadcrumb {
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.step-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  background: #fff;
  border: 1px solid #ece7dc;
  border-radius: 14px;
  padding: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.cta-panel {
  background: var(--off-white);
  border: 1px solid #e4ddcf;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.contact-map-layout {
  align-items: stretch;
}

.map-wrap {
  border: 1px solid #e4ddcf;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 340px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  background: #fff;
  border: 1px solid #e4ddcf;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0.6rem 0 0;
}

.site-footer {
  background: var(--navy-deep);
  color: #d8dce8;
  padding: 1rem 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
}

.btn-gold {
  background: var(--gold);
  color: #171310;
}

.btn-gold:hover {
  background: #c8ac73;
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section .btn-ghost {
  color: var(--navy);
  border-color: rgba(24, 33, 79, 0.4);
}

.section .btn-ghost:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-blue {
  background: var(--ice-blue);
  color: #163247;
}

.btn-blue:hover {
  background: #b1d3e1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0 0.5rem;
}

.meta-note {
  font-size: 0.86rem;
  color: #d8dbe7;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem;
  background: rgba(12, 18, 44, 0.95);
  border-top: 1px solid rgba(184, 157, 103, 0.28);
  z-index: 30;
}

.mobile-cta .btn {
  flex: 1;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .feature-grid,
  .quotes,
  .cards-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .section {
    padding: 3.2rem 0;
  }

  body {
    padding-bottom: 5.2rem;
  }
}
