/* =========================================================================
   Magnolia Wellness Massage — Design System
   Brand: Deep green (#3b7c22) + Gold (#d1b96d) · Luxury holistic spa
   Fonts: Playfair Display (display) · Cormorant Garamond (accent) · Inter (body)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --green:        #3b7c22;
  --green-600:    #336d1d;
  --green-700:    #2a5a19;
  --green-800:    #1f4213;
  --green-900:    #16300d;
  --green-950:    #0f2409;

  --gold:         #d1b96d;
  --gold-400:     #ddc98a;
  --gold-300:     #e7d9a9;
  --gold-600:     #bda056;
  --gold-700:     #a2863f;

  /* Neutrals — warm ivory family */
  --cream:        #faf6ec;
  --cream-100:    #f4eddc;
  --cream-200:    #ece2ca;
  --sand:         #e3d6ba;
  --ink:          #24261f;   /* body text on light */
  --ink-soft:     #4b4d43;
  --ink-mute:     #6f7164;
  --line:         #e0d6c0;

  /* Semantic */
  --bg:           var(--cream);
  --surface:      #fffdf8;
  --fg:           var(--ink);
  --primary:      var(--green);
  --accent:       var(--gold);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-accent:  "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale (8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Structure */
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 24px;

  /* Elevation — soft luxe */
  --shadow-sm: 0 1px 2px rgba(31,66,19,.06), 0 2px 6px rgba(31,66,19,.05);
  --shadow-md: 0 8px 24px rgba(31,66,19,.09), 0 2px 8px rgba(31,66,19,.06);
  --shadow-lg: 0 24px 60px rgba(31,66,19,.16), 0 8px 20px rgba(31,66,19,.08);

  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--green-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.2rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-600); display: inline-block; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--gold-600); display: inline-block; }
.eyebrow.center { justify-content: center; }

.lede { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.7; }
.script {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-700);
}

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 40px, var(--container-narrow)); margin-inline: auto; }
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s-5); }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: var(--s-4); }
.section-head .lede { margin-top: var(--s-4); }

.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-100); }
.bg-surface { background: var(--surface); }
.bg-green { background: var(--green-900); color: var(--cream-100); }
.bg-green h1,.bg-green h2,.bg-green h3,.bg-green h4 { color: #fff; }
.bg-green p { color: rgba(244,237,220,.82); }
.bg-green .eyebrow { color: var(--gold-400); }
.bg-green .eyebrow::before,.bg-green .eyebrow.center::after { background: var(--gold); }

/* Decorative top/bottom hairline */
.rule-gold { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-600)); border: 0; }
.center .rule-gold, .rule-gold.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  cursor: pointer; line-height: 1; text-align: center;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-800); box-shadow: inset 0 0 0 1.5px var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--green-900); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1rem; min-height: 54px; }
.btn-block { width: 100%; }
.arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--green-700);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.textlink:hover { gap: .85em; color: var(--green); }
.bg-green .textlink { color: var(--gold-300); border-color: var(--gold); }

/* =========================================================================
   HEADER / NAV  (injected by site.js)
   ========================================================================= */
.announce {
  background: var(--green-900); color: var(--cream-100);
  font-size: .82rem; letter-spacing: .04em; text-align: center;
  padding: 9px 16px;
}
.announce strong { color: var(--gold-300); font-weight: 600; }
.announce .sep { opacity: .4; margin: 0 .5em; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,236,.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,246,236,.96); }
.nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  width: min(100% - 40px, 1280px); margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* Transparent gold lotus emblem, centered on a solid brand-green badge.
   The emblem's glow was designed for a green backdrop, so the green circle
   keeps it looking identical to the original — just crisp and high-res. */
.brand-logo {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  background-color: var(--green);
  background-image: url('../images/logo-emblem.png?v=2');
  background-repeat: no-repeat; background-size: 90%; background-position: center;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .b1 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; color: var(--green-900); letter-spacing: .01em; }
.brand-text .b2 { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: 999px;
  font-size: .93rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s var(--ease), background-color .2s var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--green); background: var(--cream-200); }
.nav-item.active > .nav-link { color: var(--green-900); font-weight: 600; }
.nav-item.active > .nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav-link .caret { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.has-dropdown:hover .nav-link .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: .92rem; color: var(--ink-soft); font-weight: 500;
  transition: background-color .18s, color .18s;
}
.dropdown a:hover { background: var(--cream-100); color: var(--green); }
.dropdown a .d-sub { display: block; font-size: .76rem; color: var(--ink-mute); font-weight: 400; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--green-800); font-size: .93rem;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--gold-700); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; align-items: center; justify-content: center; color: var(--green-900); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.mobile-drawer .scrim {
  position: absolute; inset: 0; background: rgba(15,36,9,.5);
  opacity: 0; transition: opacity .3s var(--ease);
}
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 380px);
  background: var(--cream); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .34s var(--ease);
  display: flex; flex-direction: column; padding: 20px; overflow-y: auto;
}
.mobile-drawer.open { visibility: visible; }
.mobile-drawer.open .scrim { opacity: 1; }
.mobile-drawer.open .mobile-panel { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-head .brand-text .b1 { font-size: 1.1rem; }
.m-close { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-900); }
.m-close svg { width: 26px; height: 26px; }
.mobile-nav { display: flex; flex-direction: column; margin-top: 8px; }
.mobile-nav > li { border-bottom: 1px solid var(--line); }
.mobile-nav a, .m-parent {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 6px; font-size: 1.05rem; font-weight: 500; color: var(--green-900); width: 100%;
}
.mobile-nav .active > a { color: var(--gold-700); font-weight: 600; }
.m-parent svg { width: 20px; height: 20px; transition: transform .25s var(--ease); }
.m-parent[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.m-sub a { justify-content: flex-start; padding: 12px 6px 12px 22px; font-size: .98rem; color: var(--ink-soft); }
.m-sub a::before { content: "—"; color: var(--gold); margin-right: 10px; }
.mobile-panel .btn { margin-top: 20px; }
.mobile-contact { margin-top: auto; padding-top: 24px; font-size: .92rem; color: var(--ink-soft); }
.mobile-contact a { color: var(--green-800); font-weight: 600; overflow-wrap: anywhere; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,36,9,.82) 0%, rgba(15,36,9,.62) 42%, rgba(15,36,9,.25) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(90px, 15vw, 190px); }
.hero-content { max-width: 660px; color: #fff; }
.hero .eyebrow { color: var(--gold-300); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; margin-top: 20px; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 500; color: var(--gold-300); }
.hero-sub { margin-top: 22px; font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 540px; line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.9); }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-300); flex-shrink: 0; }

/* Page banner (interior pages) */
.page-hero { position: relative; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,36,9,.68), rgba(15,36,9,.78)); }
.page-hero-inner { position: relative; z-index: 2; padding-block: clamp(70px, 11vw, 130px); text-align: center; color: #fff; }
.page-hero h1 { color: #fff; margin-top: 18px; }
.page-hero h1 em { font-family: var(--font-accent); font-style: italic; color: var(--gold-300); }
.page-hero .eyebrow { color: var(--gold-300); justify-content: center; }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 620px; margin: 18px auto 0; font-size: 1.12rem; }
.breadcrumb { margin-top: 22px; font-size: .86rem; color: rgba(255,255,255,.7); letter-spacing: .03em; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb .sep { margin: 0 .5em; color: var(--gold-400); }

/* =========================================================================
   COMPONENTS
   ========================================================================= */
/* Feature / value cards */
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s-6);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.card-icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-100); color: var(--green); margin-bottom: 20px;
  border: 1px solid var(--gold-400);
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* Split section (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.split-media.framed::before {
  content: ""; position: absolute; inset: -14px -14px 14px 14px;
  border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1;
}
.media-tag {
  position: absolute; background: var(--surface); box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.media-tag.br { right: -18px; bottom: -22px; }
.media-tag .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
.media-tag .lbl { font-size: .8rem; color: var(--ink-mute); line-height: 1.3; }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-5); }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 700; color: var(--green); line-height: 1; }
.bg-green .stat .n { color: var(--gold-300); }
.stat .l { margin-top: 10px; font-size: .88rem; letter-spacing: .04em; color: var(--ink-mute); text-transform: uppercase; }
.bg-green .stat .l { color: rgba(244,237,220,.7); }

/* Service cards */
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card .sc-media { aspect-ratio: 4/3; overflow: hidden; }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .sc-media img { transform: scale(1.06); }
.service-card .sc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.35rem; }
.service-card .sc-desc { font-size: .95rem; margin: 10px 0 18px; flex: 1; }
.sc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.sc-price { font-family: var(--font-display); }
.sc-price .from { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); display: block; font-family: var(--font-body); }
.sc-price .amt { font-size: 1.5rem; font-weight: 700; color: var(--green); }
.pill { display: inline-block; padding: 5px 13px; border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; background: var(--cream-100); color: var(--green-700); border: 1px solid var(--gold-400); }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; }
.price-table thead th { background: var(--green-900); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.price-table thead th:not(:first-child), .price-table td:not(:first-child) { text-align: center; }
.price-table tbody tr { border-top: 1px solid var(--line); transition: background-color .2s; }
.price-table tbody tr:hover { background: var(--cream-100); }
.price-table .svc { font-weight: 600; color: var(--green-900); font-family: var(--font-display); font-size: 1.08rem; }
.price-table .amt { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--green-700); }
.price-note { margin-top: 16px; font-size: .9rem; color: var(--ink-mute); text-align: center; }

/* Testimonials */
.quote-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; height: 100%;
  display: flex; flex-direction: column;
}
.quote-card .stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 14px; }
.quote-card .stars svg { width: 19px; height: 19px; }
.quote-card blockquote { font-family: var(--font-accent); font-size: 1.32rem; line-height: 1.5; color: var(--ink); font-style: italic; flex: 1; }
.quote-card .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.quote-card .who .nm { font-weight: 600; color: var(--green-900); font-size: .98rem; }
.quote-card .who .mt { font-size: .82rem; color: var(--ink-mute); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery .tall { grid-row: span 2; aspect-ratio: auto; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band-media { position: absolute; inset: 0; z-index: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,36,9,.92), rgba(31,66,19,.78)); }
.cta-band-inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(64px, 9vw, 110px); }
.cta-band h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-band h2 em { font-family: var(--font-accent); font-style: italic; color: var(--gold-300); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 20px auto 0; font-size: 1.12rem; }
.cta-band .hero-actions { justify-content: center; }

/* Chips / list */
.tech-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line); font-weight: 500; font-size: .95rem; color: var(--green-900);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .25s;
}
.tech-chip:hover { transform: translateY(-2px); border-color: var(--gold); }
.tech-chip svg { width: 17px; height: 17px; color: var(--gold-700); }

.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; color: var(--ink-soft); }
.check-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.check-list strong { color: var(--green-900); }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; text-align: left; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-900); }
.faq-q .ic { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--green); display: flex; align-items: center; justify-content: center; transition: background-color .25s, transform .3s var(--ease); }
.faq-q .ic svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .ic { background: var(--green); color: #fff; border-color: var(--green); }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); }

/* Forms */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--green-900); margin-bottom: 8px; }
.field label .req { color: #b23; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s; min-height: 50px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(59,124,34,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--ink-mute); margin-top: 4px; }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: rgba(59,124,34,.1); border: 1px solid var(--green); color: var(--green-800); font-weight: 500; margin-bottom: 20px; }
.form-success.show { display: block; }

/* Info list (contact) */
.info-list { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%; background: var(--cream-100); border: 1px solid var(--gold-400); color: var(--green); display: flex; align-items: center; justify-content: center; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: 4px; font-weight: 600; }
.info-item p, .info-item a { color: var(--green-900); font-weight: 500; font-size: 1.05rem; }
.info-item a:hover { color: var(--gold-700); }

/* Blog cards */
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; margin-bottom: 10px; }
.post-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post-body p { font-size: .95rem; flex: 1; }
.post-body .textlink { margin-top: 16px; align-self: flex-start; }

/* Map frame */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Trust logos */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 44px; }
.trust-row img { height: 78px; width: auto; opacity: .95; }

/* =========================================================================
   FOOTER  (injected by site.js)
   ========================================================================= */
.site-footer { background: var(--green-950); color: rgba(244,237,220,.75); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand .brand-text .b1 { color: #fff; }
.footer-brand .brand-logo { width: 58px; height: 58px; }
.footer-about { margin-top: 18px; font-size: .95rem; line-height: 1.7; max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.07); color: var(--gold-300); transition: background-color .25s, transform .25s var(--ease), color .25s; }
.footer-social a:hover { background: var(--gold); color: var(--green-900); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .95rem; color: rgba(244,237,220,.75); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-300); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; font-size: .95rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-300); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(244,237,220,.85); }
.footer-hours { margin-top: 8px; font-size: .92rem; }
.footer-hours .day { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* Floating book button (mobile) */
.float-book { display: none; }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2,1fr); gap: 32px 20px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .split-media.framed::before { inset: -10px -10px 10px 10px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .tall { grid-row: span 1; aspect-ratio: 1; }
  .field-row { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.nav-book) { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  /* Header: drop the nav Book button (floating book bar + drawer cover it) so the hamburger always fits */
  .nav-book { display: none; }
  .brand img { width: 46px; height: 46px; }
  .brand-text .b1 { font-size: 1.12rem; }
  .brand-text .b2 { font-size: .56rem; letter-spacing: .22em; }
  .nav { gap: 12px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .hero-actions, .cta-band .hero-actions { width: 100%; }
  .trust-row img { height: 60px; }
  .announce .hide-sm { display: none; }
  .float-book { display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; }
  .float-book .btn { box-shadow: var(--shadow-lg); }
  .price-table thead { font-size: .7rem; }
  .price-table th, .price-table td { padding: 13px 10px; }
}
