/* ── Reset & variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #faf8f2;
  --surface: rgba(255, 251, 244, 0.72);
  --text: #1a1814;
  --text-muted: #6a5f52;
  --border: rgba(26, 24, 20, 0.08);
  --accent: #b45837;
  --accent-soft: #e4b894;
  --radius: 14px;
  --blur: blur(16px) saturate(150%);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(at 20% 0%, #fff4e0 0%, transparent 55%),
    radial-gradient(at 85% 15%, #f4e4d4 0%, transparent 60%);
}

/* ── Nav ── */
nav:not(.site-nav) {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}
.nav-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 1rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--text); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fdfaf5;
  padding: 0.75rem 1.1rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}

/* ── Site-wide secondary nav ── */
.site-nav {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 0 clamp(1rem, 5vw, 2.5rem);
  position: relative;
}
.site-nav-list {
  max-width: 1000px; margin: 0 auto;
  display: flex; list-style: none; overflow-x: auto;
}
.site-nav-list a {
  display: flex; align-items: center;
  padding: 0 0.875rem; min-height: 44px;
  font-size: 0.8rem; color: var(--text-muted);
  text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.site-nav-list a:hover { color: var(--text); }
.site-nav-list a[aria-current] { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Hamburger toggle (mobile only) ── */
.site-nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 0;
  min-height: 44px; min-width: 44px;
}
.site-nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--text-muted); border-radius: 2px; transition: background 0.2s;
}
.site-nav-toggle[aria-expanded="true"] span { background: var(--accent); }

@media (max-width: 700px) {
  .site-nav { display: flex; align-items: center; justify-content: flex-end; min-height: 44px; }
  .site-nav-toggle { display: flex; }
  .site-nav-list {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26,24,20,0.1);
    overflow-x: visible; margin: 0; max-width: none;
  }
  .site-nav-list.open { display: flex; }
  .site-nav-list li { border-bottom: 1px solid var(--border); }
  .site-nav-list li:last-child { border-bottom: none; }
  .site-nav-list a {
    padding: 0 clamp(1rem, 5vw, 2.5rem); min-height: 48px;
    border-bottom: none; border-left: 3px solid transparent; font-size: 0.875rem;
  }
  .site-nav-list a[aria-current] { border-bottom-color: transparent; border-left-color: var(--accent); }
}

/* ── Breadcrumb ── */
.breadcrumb { display: none; }
.breadcrumb {
  max-width: 1000px; margin: 0 auto;
  padding: 1rem clamp(1rem, 5vw, 2.5rem) 0;
  font-size: 0.8125rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Page hero ── */
.page-hero {
  max-width: 1000px; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.eyebrow {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 400;
  line-height: 1.15; margin-bottom: 1.125rem;
}
h1 em { font-style: italic; color: var(--accent); }
.lead {
  font-size: 1.0625rem; color: var(--text-muted);
  max-width: 640px; line-height: 1.75; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-primary {
  background: var(--accent); color: #fdfaf5;
  padding: 0.65rem 1.5rem; border-radius: 10px;
  font-size: 0.9375rem; font-weight: 500;
  text-decoration: none; display: inline-block;
}
.btn-secondary {
  background: var(--surface); color: var(--text);
  padding: 0.65rem 1.5rem; border-radius: 10px;
  font-size: 0.9375rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--border); backdrop-filter: var(--blur);
  display: inline-block;
}
.btn-light {
  background: #fdfaf5; color: var(--accent);
  padding: 0.75rem 1.75rem; border-radius: 10px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  white-space: nowrap; display: inline-block;
}

/* ── Section layout ── */
section { padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 2.5rem); }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 400; margin-bottom: 1rem;
}
h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem; font-weight: 400; margin-bottom: 0.625rem; color: var(--text);
}
p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Card ── */
.card {
  background: var(--surface); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(180,88,55,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
  padding: 1.75rem;
}

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── Stats ── */
.stat-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; font-weight: 400; color: var(--text);
}
.stat-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Pricing (cheap page) ── */
.price-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 400; color: var(--accent); line-height: 1;
}
.price-tag sub {
  font-family: 'Inter', sans-serif; font-size: 1rem;
  color: var(--text-muted); font-weight: 400; vertical-align: baseline;
}
.badge {
  display: inline-block; background: rgba(180,88,55,0.08); color: var(--accent);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 6px; margin-bottom: 0.75rem;
}

/* ── Comparison table (cheap page) ── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 0.875rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: top;
}
.comparison-table tr.highlight-row td {
  background: rgba(180,88,55,0.05); color: var(--text); font-weight: 500;
}
.comparison-table tr.highlight-row td:first-child { border-left: 3px solid var(--accent); }

/* ── Highlight block ── */
.highlight {
  background: rgba(180,88,55,0.06); border-left: 3px solid var(--accent);
  padding: 1.125rem 1.25rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}
.highlight p { color: var(--text); font-size: 0.9375rem; }

/* ── Feature list ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; margin: 1rem 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55;
}
.feature-list li::before {
  content: '✓'; color: var(--accent); font-weight: 500; flex-shrink: 0; margin-top: 0.05rem;
}

/* ── Check cards (voucher page) ── */
.check-card { display: flex; align-items: flex-start; gap: 1rem; }
.check-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(180,88,55,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.check-body h3 { font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 500; margin-bottom: 0.3rem; }
.check-body p { font-size: 0.875rem; margin-bottom: 0; }

/* ── Steps (voucher page) ── */
.steps { display: flex; flex-direction: column; gap: 1.25rem; counter-reset: steps; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; counter-increment: steps; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fdfaf5;
  font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-body h3 { font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.step-body p { font-size: 0.875rem; margin-bottom: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.125rem 0; cursor: pointer; list-style: none;
  font-size: 0.9375rem; font-weight: 500; color: var(--text); gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--accent); font-size: 0.875rem; flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding-bottom: 1.125rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA band ── */
.cta-band { background: var(--accent); padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 5vw, 2.5rem); }
.cta-band-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; color: #fdfaf5; margin-bottom: 0.375rem;
}
.cta-band p { color: rgba(253,250,245,0.8); margin-bottom: 0; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border); padding: 2rem clamp(1rem, 5vw, 2.5rem);
  background: var(--surface); backdrop-filter: var(--blur);
}
.footer-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.0625rem; color: var(--text); }
.footer-brand span { color: var(--accent); }
.footer-right { font-size: 0.8125rem; color: var(--text-muted); text-align: right; }
.footer-right a { color: var(--accent); text-decoration: none; }
.footer-legal {
  max-width: 1000px; margin: 1rem auto 0; font-size: 0.75rem; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 1rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}
