/* ==========================================================================
   Ellüne Aesthetics — design system
   Tokens from the approved brand deck / website mockup (July 2026).
   ========================================================================== */
/* --------------------------------------------------------------------------
   Self-hosted variable fonts (latin subsets) — no third-party requests.
   Metric-adjusted fallbacks keep CLS at zero during the swap period.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-italic-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Fallback";
  src: local("Georgia");
  size-adjust: 111%;
  ascent-override: 97%;
  descent-override: 23%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22.5%;
  line-gap-override: 0%;
}

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

:root {
  --ink: #1a1613;
  --espresso: #14110e;
  --espresso2: #211b15;
  --bone: #f5f1ea;
  --porcelain: #fcfaf5;
  --line: #e5ded2;
  --taupe: #6b6157;
  --taupe2: #9a8d7c;
  --gold: #c7a24c;
  /* Deep bronze for text on light backgrounds — WCAG AA (6.35:1 on bone). */
  --gold-deep: #70551a;
  --champ: #e7ce93;
  --shimmer: linear-gradient(100deg, #9a7b2e 0%, #e7ce93 20%, #c7a24c 40%, #f3e5bc 54%, #c7a24c 68%, #9a7b2e 100%);
  --serif: "Playfair Display", "Playfair Fallback", Georgia, serif;
  --sans: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, sans-serif;
  --pad: clamp(20px, 5vw, 64px);
}

html { scroll-behavior: smooth; color-scheme: light; scrollbar-gutter: stable; }

/* Cross-document view transitions: calm 200ms fade between pages (Chromium). */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: 0.2s; }

::selection { background: var(--champ); color: var(--espresso); }

/* Scroll-reveal (elements get .reveal from JS; visible by default without JS). */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

body {
  background: var(--bone);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--espresso); color: var(--champ); padding: 10px 18px;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   Logo lockup
   -------------------------------------------------------------------------- */
.logo-lockup {
  display: inline-flex; flex-direction: column; align-items: center;
  text-decoration: none; line-height: 1;
}
.logo-lockup.lockup-left { align-items: flex-start; }
.logo-name {
  font-family: var(--serif); font-weight: 600; font-size: 20px;
  letter-spacing: 0.15em; padding-left: 0.15em; color: #f5eee0;
}
.logo-sub {
  font-weight: 400; font-size: 6.5px; letter-spacing: 0.5em;
  padding-left: 0.5em; margin-top: 0.35em; color: #f5eee0;
}
.logo-cradle { margin-top: 3px; }
.logo-cradle path { fill: var(--gold); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 17, 14, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(199, 162, 76, 0.25);
}
@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--espresso); backdrop-filter: none; }
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px var(--pad); max-width: 1360px; margin: 0 auto;
}
.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center;
}
.nav-links a {
  color: #ebe1ce; text-decoration: none; font-size: 12.5px;
  letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap;
  opacity: 0.88; transition: opacity 0.2s, color 0.2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { opacity: 1; color: var(--champ); }
.nav-links a:hover { opacity: 1; color: var(--champ); }
.nav-toggle { display: none; }

.btn {
  display: inline-block;
  background: var(--shimmer);
  color: #231a08; font-weight: 600; font-size: 14px;
  padding: 12px 26px; border-radius: 100px; text-decoration: none;
  letter-spacing: 0.02em; border: 0; cursor: pointer;
  box-shadow: 0 6px 18px rgba(150, 110, 30, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(150, 110, 30, 0.45); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: 0 4px 12px rgba(150, 110, 30, 0.3); transition-duration: 0.06s; }
.btn-book { font-size: 12.5px; padding: 11px 24px; letter-spacing: 0.08em; }
.btn.ghost {
  background: transparent; color: #eee6d6;
  border: 1px solid rgba(238, 230, 214, 0.4); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--champ); color: var(--champ); }
.btn.ghost-dark {
  background: transparent; color: var(--gold-deep);
  border: 1px solid var(--gold); box-shadow: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 82% 6%, rgba(199, 162, 76, 0.22), transparent 55%),
    radial-gradient(90% 70% at 10% 100%, rgba(199, 162, 76, 0.1), transparent 60%),
    var(--espresso);
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) var(--pad) clamp(60px, 8vw, 100px);
  min-height: min(72svh, 760px);
  display: flex; align-items: center;
}
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--shimmer); opacity: 0.9;
}
.hero-inner { max-width: 1360px; margin: 0 auto; }
.hero-content { max-width: 720px; }

.eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 6.2vw, 76px); line-height: 1.05;
  color: #f6efe1; letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero h1 .sh { color: var(--champ); font-style: italic; }
.hero .lead {
  font-size: clamp(17px, 1.8vw, 20px); color: #cfc2ac; font-weight: 300;
  margin-top: 24px; max-width: 560px; line-height: 1.55;
}
.hero-cta { display: flex; gap: 16px; align-items: center; margin-top: 38px; flex-wrap: wrap; }
.hero .disc { font-size: 12.5px; color: #8a7c67; margin-top: 22px; font-style: italic; }

/* Page hero (interior pages, smaller) */
.page-hero {
  background:
    radial-gradient(120% 120% at 70% 0%, rgba(199, 162, 76, 0.18), transparent 55%),
    var(--espresso);
  padding: clamp(48px, 7vw, 84px) var(--pad);
  position: relative;
}
.page-hero::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--shimmer); opacity: 0.9;
}
.page-hero-inner { max-width: 1360px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 4.6vw, 54px); color: #f6efe1; line-height: 1.1;
  letter-spacing: -0.01em; max-width: 800px;
}
.page-hero .lead {
  color: #cfc2ac; font-weight: 300; margin-top: 16px; max-width: 640px;
  font-size: clamp(16px, 1.6vw, 18px);
}

.breadcrumbs { margin-bottom: 18px; font-size: 12px; letter-spacing: 0.08em; }
.breadcrumbs ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--gold); text-decoration: none; text-transform: uppercase; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #8a7c67; }
.breadcrumbs li:last-child { color: #cfc2ac; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust {
  background: var(--espresso2); color: #c7b9a2;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px 44px; padding: 18px var(--pad);
  font-size: 13.5px; letter-spacing: 0.04em; text-align: center;
}
.trust b { color: var(--champ); font-weight: 500; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.sec { padding: clamp(56px, 8vw, 90px) var(--pad); }
.sec-inner { max-width: 1360px; margin: 0 auto; }
.sec-narrow { max-width: 820px; margin: 0 auto; }

.kick {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.kick::before, .kick::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
.kick.left { justify-content: flex-start; }
.kick.left::after { display: none; }

.sec h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 44px); text-align: center;
  margin: 16px 0 10px; letter-spacing: -0.01em; line-height: 1.15;
  text-wrap: balance;
}
.page-hero h1, .ctaband h2, .quote-sec blockquote p { text-wrap: balance; }
.prose p, .intro, .tcard p, .step p { text-wrap: pretty; }
.sec .intro {
  text-align: center; color: var(--taupe); font-size: 16px;
  max-width: 640px; margin: 0 auto 44px; line-height: 1.55;
}
.sec h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 10px; }

/* Prose blocks (long-form pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  text-align: left; font-size: clamp(24px, 2.6vw, 32px); margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: #3d362f; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: #3d362f; }
.prose li { margin-bottom: 8px; }
.prose .note {
  background: var(--porcelain); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: 8px;
  padding: 18px 22px; font-size: 14.5px; color: var(--taupe); margin: 24px 0;
}

/* --------------------------------------------------------------------------
   Treatment cards
   -------------------------------------------------------------------------- */
.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tgrid.three { grid-template-columns: repeat(3, 1fr); max-width: 1050px; margin: 0 auto; }
.tcard {
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tcard:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26, 22, 19, 0.08); }
.tcard .ic {
  width: 40px; height: 40px; border-radius: 50%; background: var(--shimmer);
  margin-bottom: 20px; box-shadow: 0 4px 12px rgba(150, 110, 30, 0.25);
}
.tcard p { font-size: 14px; color: var(--taupe); line-height: 1.55; }
.tcard a {
  display: inline-block; margin-top: 16px; font-size: 13px;
  color: var(--gold-deep); font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
}
.tcard a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Dark sections (how it works, quote)
   -------------------------------------------------------------------------- */
.sec.dark { background: var(--espresso); color: #e6dbc8; }
.sec.dark h2 { color: #f5eee0; }
.sec.dark .intro { color: #c7b9a2; }
.sec.dark .kick { color: var(--gold); }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1120px; margin: 0 auto;
}
.step { text-align: center; padding: 0 14px; }
.step .n {
  font-family: var(--serif); font-size: 20px; color: var(--gold);
  border: 1px solid rgba(199, 162, 76, 0.5); width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { color: #f5eee0; font-size: 20px; }
.step p { font-size: 14px; color: #c7b9a2; line-height: 1.55; }

.quote-sec { background: var(--espresso2); text-align: center; padding: clamp(56px, 8vw, 80px) var(--pad); }
.quote-sec blockquote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px); color: #f1e9d9;
  max-width: 900px; margin: 0 auto; line-height: 1.4;
}
.quote-sec .who {
  color: var(--gold); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Before / after
   -------------------------------------------------------------------------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.baimg {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  min-height: 280px; position: relative;
  background: linear-gradient(150deg, #efe7d8, #e4d9c4);
  display: flex; align-items: center; justify-content: center;
}
.baimg .lab {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20, 17, 14, 0.72); color: #eee6d6;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.baimg .ph { color: var(--taupe2); font-size: 13px; font-style: italic; padding: 20px; text-align: center; }
.fineprint {
  text-align: center; margin-top: 26px; font-size: 13px; font-style: italic;
  color: var(--taupe2); max-width: 640px; margin-left: auto; margin-right: auto;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.ctaband {
  position: relative; text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, #211a10, var(--espresso));
  padding: clamp(60px, 8vw, 84px) var(--pad); overflow: hidden;
}
.ctaband::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--shimmer);
}
.ctaband h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(32px, 4vw, 46px); color: #f6efe1;
}
.ctaband p { color: #cfc2ac; font-size: 16px; margin-top: 14px; }
.ctaband .btn { margin-top: 30px; font-size: 15px; padding: 15px 32px; }
.ctaband .disc { color: #7d715c; font-size: 12px; margin-top: 20px; font-style: italic; }

/* --------------------------------------------------------------------------
   Tables (pricing)
   -------------------------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; background: var(--porcelain); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); font-size: 15px; }
.price-table th { background: var(--espresso); color: var(--champ); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { white-space: nowrap; font-weight: 600; color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   FAQ accordion (native details/summary)
   -------------------------------------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 16px;
  font-family: var(--serif); list-style: none; position: relative; padding-right: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--gold-deep); font-size: 22px; font-family: var(--sans); font-weight: 300;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 22px 18px; color: var(--taupe); font-size: 15px; }

/* Smooth accordion (Chromium 131+; instant open elsewhere — progressive). */
.faq-list details { interpolate-size: allow-keywords; }
.faq-list details::details-content {
  block-size: 0; overflow: hidden;
  transition: block-size 0.3s cubic-bezier(0.22, 1, 0.36, 1), content-visibility 0.3s allow-discrete;
}
.faq-list details[open]::details-content { block-size: auto; }
.faq-list summary::after { transition: transform 0.2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(0deg); }

/* --------------------------------------------------------------------------
   Info cards / contact
   -------------------------------------------------------------------------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1050px; margin: 0 auto; }
.info-card {
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px;
}
.info-card h3 { font-size: 18px; }
.info-card p, .info-card a { font-size: 14.5px; color: var(--taupe); line-height: 1.6; }
.info-card a { display: block; text-decoration: none; color: var(--gold-deep); font-weight: 500; margin-top: 4px; }
.info-card a:hover { text-decoration: underline; }

.map-embed { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 40px; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #0f0c0a; color: var(--taupe2); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px;
  padding: 60px var(--pad) 40px; max-width: 1360px; margin: 0 auto;
}
.footer-h {
  color: var(--champ); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600; font-family: var(--sans);
}
.footer-col a, .footer-col p {
  color: var(--taupe2); font-size: 13.5px; text-decoration: none;
  display: block; margin-bottom: 9px; line-height: 1.5;
}
.footer-col a:hover { color: var(--champ); }
.footer-tag { margin-top: 18px; max-width: 280px; }
.footer-legal {
  border-top: 1px solid #241d16; padding: 22px var(--pad) 90px;
  max-width: 1360px; margin: 0 auto; font-size: 12px; color: #9a8d7c;
}
.footer-legal nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.footer-legal a { color: #9a8d7c; text-decoration: none; }
.footer-legal a:hover { color: var(--champ); }
.footer-legal p { margin-bottom: 8px; }
.footer-disc { font-style: italic; line-height: 1.6; max-width: 900px; }

/* Mobile sticky book button */
.mobile-book {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: var(--shimmer); color: #231a08; text-align: center;
  font-weight: 600; font-size: 15px; padding: 15px; border-radius: 100px;
  text-decoration: none; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .tgrid.three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: 1px solid rgba(238, 230, 214, 0.4);
    color: #ebe1ce; border-radius: 100px; padding: 9px 16px; cursor: pointer;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans);
  }
  .nav-toggle-bar { width: 16px; height: 2px; background: var(--champ); position: relative; }
  .nav-toggle-bar::before, .nav-toggle-bar::after {
    content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: var(--champ);
  }
  .nav-toggle-bar::before { top: -5px; }
  .nav-toggle-bar::after { top: 5px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--espresso); gap: 0;
    border-bottom: 1px solid rgba(199, 162, 76, 0.25);
    padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px var(--pad); font-size: 14px; }
  .site-nav { position: static; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .tgrid, .tgrid.three { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-book { display: block; }
  .btn-book { display: none; }
  .trust { flex-direction: column; gap: 8px; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .price-table th, .price-table td { padding: 12px 14px; font-size: 14px; }
}
