/* =========================================================================
   Windows of Wellness Bodywork and Massage — Lake Mary, FL
   The Clifton Agency · house style, brand palette derived from the WOW mark
   ========================================================================= */

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd,ul,ol{margin:0}
ul[class],ol[class]{list-style:none;padding:0}
img,picture,svg,video{display:block;max-width:100%}
img{height:auto}
input,button,textarea,select{font:inherit;color:inherit}
button{cursor:pointer}
/* Unsized inline icons must never fall back to 300x150 */
svg:not([class]){width:1.12em;height:1.12em;flex:none}
.ico{width:1.12em;height:1.12em;flex:none}

/* ---------- tokens ---------- */
:root{
  --ink:#191310;
  --ink-2:#241B16;
  --ink-3:#332720;
  --accent:#8C6A2F;
  --accent-dark:#6E5324;
  --gold:#D9B96A;         /* on dark */
  --gold-ink:#A07A32;     /* star glyphs on light (graphical, 3:1) */
  --gold-text:#8A6520;    /* gold TEXT on light — 5.3:1, passes AA */
  --mist:#F8F4ED;
  --mist-2:#F2EBE0;
  --paper:#FFFFFF;
  --line:#E7DFD3;
  --line-dark:rgba(233,223,211,.16);
  --text:#3A2F26;
  --muted:#6B5D4C;
  --cream:#E9DFD3;
  --cream-2:#BFB0A2;

  --r-card:18px;
  --r-btn:12px;
  --shadow:0 20px 50px -24px rgba(35,24,16,.45);
  --shadow-sm:0 10px 26px -18px rgba(35,24,16,.5);
  --container:1180px;
  --gutter:20px;

  --f-head:"Sora",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  --f-body:"Plus Jakarta Sans",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  --f-disp:"Cormorant Garamond",Georgia,"Times New Roman",serif;
}

html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  font-family:var(--f-body);
  font-size:17px;line-height:1.65;color:var(--text);background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4{font-family:var(--f-head);line-height:1.1;letter-spacing:-.02em;font-weight:700;color:#241B16}
h1{font-size:clamp(36px,5.6vw,62px);font-weight:800}
h2{font-size:clamp(27px,3.5vw,40px)}
h3{font-size:clamp(19px,2vw,23px)}
h4{font-size:17px;letter-spacing:-.01em}
p{margin:0 0 1em}
p:last-child{margin-bottom:0}
a{color:var(--accent-dark);text-underline-offset:3px}
a:hover{color:var(--accent)}
strong{font-weight:700;color:#241B16}
small{font-size:14px}

:focus-visible{outline:3px solid var(--accent);outline-offset:3px;border-radius:6px}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}
.section{padding-block:clamp(52px,7vw,92px)}
.section--tight{padding-block:clamp(38px,5vw,64px)}
.section--mist{background:var(--mist)}
.section--ink{background:var(--ink);color:var(--cream)}
.section--ink h1,.section--ink h2,.section--ink h3,.section--ink h4{color:#FFFDFA}
.section--ink a{color:var(--gold)}
.section--ink .lede,.section--ink p{color:var(--cream)}

.eyebrow{
  font-family:var(--f-disp);font-size:15px;font-weight:600;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold-text);margin:0 0 10px
}
.section--ink .eyebrow{color:var(--gold)}
.lede{font-size:clamp(17px,1.6vw,19.5px);color:var(--muted);max-width:62ch}
.section--ink .lede{color:var(--cream-2)}
.center{text-align:center}
.center .lede{margin-inline:auto}
.stack>*+*{margin-top:14px}
.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip{position:absolute;left:-9999px;top:0;z-index:999;background:var(--ink);color:#fff;padding:12px 18px;border-radius:0 0 12px 0}
.skip:focus{left:0}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:52px;padding:13px 22px;border-radius:var(--r-btn);
  font-family:var(--f-head);font-weight:700;font-size:16px;letter-spacing:-.01em;
  text-decoration:none;border:1.5px solid transparent;transition:transform .18s ease,background .18s ease,box-shadow .18s ease,color .18s ease
}
.btn--primary{background:var(--accent);color:#fff;box-shadow:0 14px 30px -14px rgba(140,106,47,.85)}
.btn--primary:hover{background:var(--accent-dark);color:#fff;transform:translateY(-2px)}
.btn--ghost{background:transparent;color:#241B16;border-color:#D8CDBC}
.btn--ghost:hover{background:#fff;border-color:var(--accent);color:var(--accent-dark);transform:translateY(-2px)}
/* light-on-dark ghost — includes the mobile panel, which is NOT .section--ink */
.section--ink .btn--ghost,
.mnav .btn--ghost,
.hero .btn--ghost,
.ctaband .btn--ghost{color:#FFFDFA;border-color:rgba(233,223,211,.42);background:rgba(255,255,255,.04)}
.section--ink .btn--ghost:hover,
.mnav .btn--ghost:hover,
.hero .btn--ghost:hover,
.ctaband .btn--ghost:hover{background:rgba(255,255,255,.12);border-color:var(--gold);color:#fff}
.btn--wide{width:100%}
.btns{display:flex;flex-wrap:wrap;gap:12px}
@media (max-width:640px){
  .btns{flex-direction:column;align-items:stretch}
  .btns .btn{width:100%}
}

.pill{
  display:inline-flex;align-items:center;gap:8px;padding:7px 14px;border-radius:999px;
  background:rgba(217,185,106,.14);border:1px solid rgba(217,185,106,.4);
  color:var(--gold);font-size:13.5px;font-weight:700;letter-spacing:.01em
}
.pill--light{background:#FFF7E6;border-color:#EBD9A8;color:#6E5324}
.dot{width:8px;height:8px;border-radius:50%;background:var(--gold);flex:none;animation:pulse 2.4s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(.8)}}

/* ---------- topbar ---------- */
.topbar{background:var(--ink);color:var(--cream-2);font-size:13.5px}
.topbar__in{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:40px;padding-block:7px}
.topbar__list{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.topbar a{color:var(--gold);text-decoration:none;font-weight:700}
.topbar a:hover{text-decoration:underline}
.topbar__item{display:inline-flex;align-items:center;gap:7px}
@media (max-width:900px){
  .topbar__in{justify-content:center;text-align:center}
  .topbar__hide{display:none}
}

/* ---------- header ---------- */
.header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.88);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);transition:box-shadow .2s ease,background .2s ease
}
.header.is-stuck{box-shadow:0 10px 30px -22px rgba(35,24,16,.6);background:rgba(255,255,255,.95)}
.header__in{display:flex;align-items:center;gap:16px;min-height:74px;padding-block:10px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;flex:none;min-width:0}
.brand__mark{width:52px;height:52px;border-radius:50%;background:var(--ink);display:flex;align-items:center;justify-content:center;flex:none;box-shadow:0 6px 16px -10px rgba(35,24,16,.8)}
.brand__mark img{width:42px;height:34px;object-fit:contain}
.brand__txt{display:flex;flex-direction:column;min-width:0}
.brand__name{
  font-family:var(--f-disp);font-weight:700;font-size:20px;line-height:1.05;color:#241B16;
  letter-spacing:.11em;text-transform:uppercase;white-space:nowrap
}
.brand__sub{font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:700;white-space:nowrap}
.nav{display:flex;align-items:center;gap:2px;margin-left:auto}
.nav a{
  display:inline-flex;align-items:center;min-height:42px;padding:8px 12px;border-radius:9px;
  font-size:15px;font-weight:600;color:#443729;text-decoration:none;white-space:nowrap
}
.nav a:hover{background:var(--mist);color:var(--accent-dark)}
.nav a[aria-current=page]{color:var(--accent-dark);background:#F6EFE2}
.header__cta{margin-left:10px;flex:none}
.header__cta .btn{min-height:46px;padding-inline:18px;font-size:15px}
.burger{
  display:none;margin-left:auto;width:48px;height:48px;border:1px solid var(--line);
  border-radius:12px;background:#fff;align-items:center;justify-content:center;color:#241B16
}
.burger svg{width:22px;height:22px}
@media (max-width:1024px){
  .nav,.header__cta{display:none}
  .burger{display:inline-flex}
  .brand__sub{display:none}
  .brand__mark{width:46px;height:46px}
  .brand__mark img{width:35px;height:29px}
  .brand__name{font-size:17px;letter-spacing:.09em}
  .header__in{min-height:64px}
}
@media (max-width:360px){.brand__name{font-size:15.5px;letter-spacing:.06em}}

/* ---------- mobile nav panel ---------- */
.mnav{
  position:fixed;inset:0;top:0;left:0;right:0;height:100dvh;z-index:200;
  background:var(--ink);color:var(--cream);
  transform:translateX(100%);visibility:hidden;
  transition:transform .28s cubic-bezier(.4,0,.2,1),visibility .28s;
  display:flex;flex-direction:column;overflow-y:auto;overscroll-behavior:contain
}
.mnav.is-open{transform:translateX(0);visibility:visible}
.mnav__top{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 20px;border-bottom:1px solid var(--line-dark)}
.mnav__brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.mnav__brand .brand__mark{width:48px;height:48px}
.mnav__brand img{width:40px;height:33px;object-fit:contain}
.mnav__brand span{font-family:var(--f-disp);font-size:17px;letter-spacing:.1em;text-transform:uppercase;color:#FFFDFA;font-weight:700}
.mnav__close{width:48px;height:48px;border:1px solid var(--line-dark);border-radius:12px;background:transparent;color:var(--cream);display:flex;align-items:center;justify-content:center}
.mnav__close svg{width:20px;height:20px}
.mnav__links{padding:8px 20px 4px}
.mnav__links a{
  display:flex;align-items:center;min-height:56px;padding:12px 4px;
  color:#FFFDFA;text-decoration:none;font-family:var(--f-head);font-weight:600;font-size:19px;
  border-bottom:1px solid var(--line-dark)
}
.mnav__links a[aria-current=page]{color:var(--gold)}
.mnav__foot{margin-top:auto;padding:18px 20px calc(22px + env(safe-area-inset-bottom));display:grid;gap:11px;border-top:1px solid var(--line-dark)}
.mnav__call{
  display:flex;align-items:center;justify-content:center;gap:10px;min-height:56px;border-radius:var(--r-btn);
  background:rgba(217,185,106,.12);border:1px solid rgba(217,185,106,.42);color:var(--gold);
  font-family:var(--f-head);font-weight:700;font-size:18px;text-decoration:none
}
.mnav__call:hover{background:rgba(217,185,106,.2);color:var(--gold)}
.mnav__hours{font-size:13.5px;color:var(--cream-2);text-align:center;line-height:1.5}

/* ---------- hero ---------- */
.hero{position:relative;background:var(--ink);color:var(--cream);overflow:hidden;padding:0}
.hero__media{position:absolute;inset:0;z-index:0}
.hero__media img{width:100%;height:100%;object-fit:cover;animation:kb 26s ease-in-out infinite alternate}
@keyframes kb{from{transform:scale(1.02)}to{transform:scale(1.13)}}
@media (prefers-reduced-motion:reduce){.hero__media img{animation:none}}
.hero__scrim{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(25,19,16,.74) 0%,rgba(25,19,16,.56) 45%,rgba(25,19,16,.82) 100%),
             linear-gradient(90deg,rgba(25,19,16,.88) 0%,rgba(25,19,16,.34) 66%,rgba(25,19,16,.5) 100%)
}
.hero__in{position:relative;z-index:2;padding-top:clamp(44px,6vw,78px);padding-bottom:clamp(48px,6vw,86px)}
.hero__grid{display:grid;gap:clamp(28px,4vw,54px);align-items:center}
@media (min-width:1024px){.hero__grid{grid-template-columns:1.06fr .94fr}}
.hero h1{color:#FFFDFA;margin:14px 0 0}
.hero h1 .hl{
  background:linear-gradient(96deg,#F0DCA8 0%,#D9B96A 46%,#C39B4C 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.hero__lede{margin-top:16px;color:var(--cream);font-size:clamp(16.5px,1.7vw,19px);max-width:56ch}
.hero .btns{margin-top:26px}
.hero__proof{display:flex;flex-wrap:wrap;gap:10px 22px;margin-top:26px;padding-top:22px;border-top:1px solid var(--line-dark)}
.hero__proof div{display:flex;align-items:center;gap:9px;font-size:14.5px;color:var(--cream);font-weight:600}
.hero__proof svg{color:var(--gold)}

/* lead capture card */
.leadcard{background:var(--paper);border-radius:var(--r-card);padding:clamp(20px,2.4vw,28px);box-shadow:0 28px 70px -30px rgba(0,0,0,.75);color:var(--text)}
.leadcard h2{font-size:22px;margin-bottom:4px}
.leadcard p.small{font-size:15.5px;color:var(--muted)}

/* ---------- forms ---------- */
.field{display:block;margin-top:13px}
.field span{display:block;font-size:13.5px;font-weight:700;color:#443729;margin-bottom:6px}
.field input,.field select,.field textarea{
  width:100%;min-height:50px;font-size:16px;padding:12px 14px;border:1.5px solid var(--line);
  border-radius:11px;background:#fff;color:var(--text)
}
.field textarea{min-height:104px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--accent);outline:none;box-shadow:0 0 0 3px rgba(140,106,47,.16)}
.formnote{font-size:14px;color:var(--muted);margin-top:12px}
.formok{margin-top:14px;padding:13px 15px;border-radius:12px;background:#F1F6EE;border:1px solid #CFE2C4;color:#2F4A24;font-size:15px;font-weight:600}
.section--ink .field span{color:var(--cream)}

/* ---------- trust strip ---------- */
.trust{background:var(--mist-2);border-block:1px solid var(--line)}
.trust__in{display:flex;flex-wrap:wrap;gap:12px 30px;justify-content:center;align-items:center;padding-block:18px}
@media (max-width:700px){
  .trust__in{flex-direction:column;align-items:flex-start;gap:11px}
  .trust__item{align-items:flex-start}
  .trust__item svg{margin-top:3px}
}
.trust__item{display:flex;align-items:center;gap:9px;font-size:14.5px;font-weight:700;color:#4A3C2D}
.trust__item svg{color:var(--gold-ink)}

/* ---------- grids & cards ---------- */
.grid{display:grid;gap:20px}
.grid--2{grid-template-columns:1fr}
.grid--3{grid-template-columns:1fr}
.grid--4{grid-template-columns:1fr}
@media (min-width:640px){.grid--2,.grid--3,.grid--4{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.grid--3{grid-template-columns:repeat(3,1fr)}.grid--4{grid-template-columns:repeat(4,1fr)}}

.card{
  background:var(--paper);border:1px solid var(--line);border-radius:var(--r-card);
  overflow:hidden;display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#DFD2BF}
.card__media{aspect-ratio:4/3;overflow:hidden;background:var(--mist-2)}
.card__media img{width:100%;height:100%;object-fit:cover}
.card__body{padding:20px;display:flex;flex-direction:column;gap:9px;flex:1}
.card__price{font-family:var(--f-head);font-weight:800;color:var(--accent-dark);font-size:15px}
.card h3{margin:0}
.card p{color:var(--muted);font-size:16px}
.card__link{margin-top:auto;min-height:44px;padding-top:8px;font-weight:700;font-size:15.5px;color:var(--accent-dark);text-decoration:none;display:inline-flex;align-items:center;gap:7px}
.card__link:hover{gap:11px}
.card--flat{background:var(--mist);border-color:transparent}
.card--plain{padding:22px}

.numcard{background:var(--paper);border:1px solid var(--line);border-radius:var(--r-card);padding:24px}
.numcard__n{
  width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--ink);color:var(--gold);font-family:var(--f-head);font-weight:800;font-size:18px;margin-bottom:14px
}

/* ---------- split ---------- */
.split{display:grid;gap:clamp(26px,4vw,52px);align-items:center}
@media (min-width:1024px){.split{grid-template-columns:1fr 1fr}}
.split__media img{border-radius:var(--r-card);box-shadow:var(--shadow);width:100%}
.split--rev .split__media{order:-1}
@media (min-width:1024px){.split--rev .split__media{order:2}}

/* ---------- price table ---------- */
.pricegroup+.pricegroup{margin-top:34px}
.pricegroup__h{display:flex;align-items:baseline;gap:12px;margin-bottom:14px;flex-wrap:wrap}
.pricegroup__h h3{margin:0}
.pricegroup__h span{font-size:14px;color:var(--muted)}
.ptable{width:100%;border-collapse:collapse;background:var(--paper);border:1px solid var(--line);border-radius:var(--r-card);overflow:hidden}
.ptable caption{text-align:left;font-size:14px;color:var(--muted);padding:0 0 10px}
.ptable th,.ptable td{padding:14px 16px;text-align:left;vertical-align:top;border-bottom:1px solid var(--line);font-size:16px}
.ptable thead th{background:var(--mist);font-family:var(--f-head);font-size:13px;letter-spacing:.06em;text-transform:uppercase;color:#5A4B3A}
.ptable tbody tr:last-child th,.ptable tbody tr:last-child td{border-bottom:0}
.ptable .p{font-family:var(--f-head);font-weight:800;color:var(--accent-dark);white-space:nowrap}
.ptable .n{font-weight:700;color:#241B16}
.ptable .n a{color:#241B16;text-decoration:none}
.ptable .n a:hover{color:var(--accent-dark);text-decoration:underline}
.ptable .d{color:var(--muted);font-size:15.5px}
@media (max-width:719px){
  .ptable,.ptable tbody,.ptable tr,.ptable td,.ptable th{display:block;width:100%}
  .ptable thead{display:none}
  .ptable caption{display:block;width:100%;padding:0 0 10px}
  .ptable tr{border-bottom:1px solid var(--line);padding:14px 16px}
  .ptable tr:last-child{border-bottom:0}
  .ptable td,.ptable th{border:0;padding:0}
  .ptable .n{font-size:17px;margin-bottom:2px}
  .ptable .p{font-size:16px;margin-bottom:4px}
  .ptable .p::before{content:attr(data-label) " ";font-family:var(--f-body);font-weight:600;color:var(--muted);text-transform:none;letter-spacing:0}
  .ptable .d{font-size:14.5px}
}

/* ---------- reviews ---------- */
.stars{display:inline-flex;gap:2px;color:var(--gold-ink)}
.section--ink .stars,.hero .stars{color:var(--gold)}
.stars svg{width:18px;height:18px}
.gscore .stars svg{width:22px;height:22px}
.rev{background:var(--paper);border:1px solid var(--line);border-radius:var(--r-card);padding:22px;display:flex;flex-direction:column;gap:12px}
.rev__q{font-size:16.5px;color:#3A2F26}
.rev__by{display:flex;align-items:center;gap:11px;margin-top:auto;padding-top:6px}
.rev__av{width:40px;height:40px;border-radius:50%;background:var(--ink);color:var(--gold);display:flex;align-items:center;justify-content:center;font-family:var(--f-head);font-weight:800;font-size:15px;flex:none}
.rev__meta{font-size:14px;color:var(--muted);line-height:1.4}
.rev__meta b{display:block;color:#241B16;font-size:15px}
.gscore{display:flex;flex-wrap:wrap;align-items:center;gap:14px 22px}
.gscore__n{font-family:var(--f-head);font-weight:800;font-size:46px;line-height:1;color:#241B16}
.section--ink .gscore__n{color:#FFFDFA}

/* ---------- FAQ ---------- */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;cursor:pointer;padding:18px 44px 18px 0;position:relative;
  font-family:var(--f-head);font-weight:600;font-size:17.5px;color:#241B16;min-height:56px;display:flex;align-items:center
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"";position:absolute;right:8px;top:50%;width:11px;height:11px;
  border-right:2.4px solid var(--accent);border-bottom:2.4px solid var(--accent);
  transform:translateY(-70%) rotate(45deg);transition:transform .2s ease
}
.faq details[open] summary::after{transform:translateY(-25%) rotate(-135deg)}
.faq .faq__a{padding:0 0 20px;color:var(--muted);font-size:16px;max-width:74ch}
.section--ink .faq{border-color:var(--line-dark)}
.section--ink .faq details{border-color:var(--line-dark)}
.section--ink .faq summary{color:#FFFDFA}
.section--ink .faq .faq__a{color:var(--cream-2)}

/* ---------- CTA band ---------- */
.ctaband{background:var(--ink);color:var(--cream);position:relative;overflow:hidden}
.ctaband__in{position:relative;z-index:2;display:grid;gap:26px;align-items:center}
@media (min-width:1024px){.ctaband__in{grid-template-columns:1.05fr .95fr}}
.ctaband h2{color:#FFFDFA}
.ctaband__media{position:absolute;inset:0;z-index:0;opacity:.18}
.ctaband__media img{width:100%;height:100%;object-fit:cover}

/* ---------- breadcrumbs ---------- */
.crumbs{font-size:13.5px;color:var(--muted);padding-block:14px}
.crumbs ol{display:flex;flex-wrap:wrap;gap:6px;align-items:center;list-style:none;padding:0;margin:0}
.crumbs a{color:var(--muted);text-decoration:none}
.crumbs a:hover{color:var(--accent-dark);text-decoration:underline}
.crumbs li+li::before{content:"/";margin-right:6px;color:#C3B7A6}
.section--ink .crumbs,.pagehead .crumbs{color:var(--cream-2)}
.pagehead .crumbs a{color:var(--cream-2)}
.pagehead .crumbs li+li::before{color:rgba(233,223,211,.4)}

/* ---------- page head ---------- */
.pagehead{background:var(--ink);color:var(--cream);position:relative;overflow:hidden}
.pagehead::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(90deg,rgba(25,19,16,.94) 0%,rgba(25,19,16,.68) 58%,rgba(25,19,16,.8) 100%),
             linear-gradient(180deg,rgba(25,19,16,.5) 0%,rgba(25,19,16,.2) 40%,rgba(25,19,16,.7) 100%)}
.pagehead__media{position:absolute;inset:0;z-index:0;opacity:.55}
.pagehead__media img{width:100%;height:100%;object-fit:cover}
.pagehead__in{position:relative;z-index:2;padding-top:8px;padding-bottom:clamp(34px,4.5vw,58px)}
.pagehead h1{color:#FFFDFA;margin-top:10px}
.pagehead .lede{color:var(--cream);margin-top:14px}

/* ---------- misc blocks ---------- */
.checks{display:grid;gap:11px}
.checks li{display:flex;gap:11px;align-items:flex-start;font-size:16.5px}
.checks svg{color:var(--accent);margin-top:4px}
.section--ink .checks svg{color:var(--gold)}
.chips{display:flex;flex-wrap:wrap;gap:9px}
.chip{display:inline-flex;align-items:center;min-height:44px;padding:9px 16px;border-radius:999px;background:var(--mist);border:1px solid var(--line);font-size:14.5px;font-weight:600;color:#4A3C2D;text-decoration:none}
a.chip:hover{background:#fff;border-color:var(--accent);color:var(--accent-dark)}
.section--ink .chip{background:rgba(255,255,255,.06);border-color:var(--line-dark);color:var(--cream)}
.hours{width:100%;border-collapse:collapse;font-size:16px}
.hours th,.hours td{padding:9px 0;text-align:left;border-bottom:1px solid var(--line)}
.hours td{text-align:right;font-weight:700;color:#241B16;white-space:nowrap}
.hours tr:last-child th,.hours tr:last-child td{border-bottom:0}
.hours .closed{color:var(--muted);font-weight:600}

/* ---- ANY dark surface, not just .section--ink ----
   The footer, the mobile panel, the hero and the page head are all dark and
   none of them carry .section--ink. Every element that hard-codes a dark ink
   colour has to be re-stated here or it renders invisible-on-invisible. */
.section--ink .hours th,
.footer .hours th,
.mnav .hours th{color:var(--cream)}
.section--ink .hours td,
.footer .hours td,
.mnav .hours td{color:#FFFDFA}
.section--ink .hours .closed,
.footer .hours .closed,
.mnav .hours .closed{color:var(--cream-2);font-weight:600}
.section--ink .hours th,.section--ink .hours td,
.footer .hours th,.footer .hours td,
.mnav .hours th,.mnav .hours td{border-color:var(--line-dark)}

/* bold text inside a dark surface — the footer's "Hours" label lives here */
.section--ink strong,
.footer strong,
.mnav strong,
.hero strong,
.pagehead strong,
.ctaband strong,
.topbar strong{color:#FFFDFA}
/* ...except the white cards that sit on top of those dark surfaces */
.leadcard strong,
.floatbadge strong,
.section--ink .card strong,
.ctaband .card strong,
.section--ink .rev strong,
.section--ink .rev__meta b{color:#241B16}
.section--ink .rev__q,
.ctaband .rev__q{color:#3A2F26}
.gallery{display:grid;gap:14px;grid-template-columns:repeat(2,1fr)}
@media (min-width:900px){.gallery{grid-template-columns:repeat(3,1fr)}}
.gallery figure{margin:0;border-radius:var(--r-card);overflow:hidden;background:var(--mist-2);border:1px solid var(--line)}
.gallery img{width:100%;aspect-ratio:4/3;object-fit:cover}
.gallery figcaption{padding:12px 15px;font-size:15px;color:var(--muted)}
.prose h2{margin-top:34px}
.prose h3{margin-top:26px}
.prose p,.prose ul{margin-bottom:1em}
.prose ul{list-style:disc;padding-left:22px;color:var(--text)}
.prose li{margin-bottom:7px}
.postmeta{display:flex;flex-wrap:wrap;gap:8px 18px;font-size:14px;color:var(--cream-2)}
.author{display:flex;gap:14px;align-items:flex-start;background:var(--mist);border:1px solid var(--line);border-radius:var(--r-card);padding:20px;margin-top:34px}
.author__av{width:52px;height:52px;border-radius:50%;background:var(--ink);color:var(--gold);display:flex;align-items:center;justify-content:center;font-family:var(--f-head);font-weight:800;flex:none}

/* ---------- footer ---------- */
.footer{background:var(--ink);color:var(--cream-2);padding-block:clamp(42px,5vw,62px) 0}
.footer h2,.footer h3{color:#FFFDFA;font-size:16px;letter-spacing:.02em;margin-bottom:14px;font-weight:700;line-height:1.3}
.footer a{color:var(--cream);text-decoration:none}
.footer a:hover{color:var(--gold)}
.footer__grid{display:grid;gap:32px}
@media (min-width:720px){.footer__grid{grid-template-columns:1.3fr 1fr 1fr}}
@media (min-width:1024px){.footer__grid{grid-template-columns:1.25fr .85fr .85fr 1.25fr}}
.footer__brand img{width:150px;height:122px;object-fit:contain;margin-bottom:14px}
.footer__list{display:grid;gap:10px;font-size:15.5px}
.footer__bottom{margin-top:38px;border-top:1px solid var(--line-dark);padding-block:20px;display:flex;flex-wrap:wrap;gap:10px 22px;justify-content:space-between;font-size:13.5px}
.footer__note{font-size:13.5px;color:#8C7E70;max-width:70ch}

/* ---------- sticky mobile bar ---------- */
.sticky{
  position:fixed;left:0;right:0;bottom:0;z-index:120;display:none;gap:10px;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(25,19,16,.96);backdrop-filter:blur(10px);border-top:1px solid var(--line-dark)
}
.sticky .btn{flex:1;min-height:52px;font-size:16px}
.sticky .btn--ghost{color:#FFFDFA;border-color:rgba(233,223,211,.42);background:rgba(255,255,255,.06)}
@media (max-width:1024px){.sticky{display:flex}}
@media print{.sticky{display:none}}

/* ---------- reveal (only when JS is running) ---------- */
.html-js .reveal{opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s ease}
.html-js .reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .html-js .reveal{opacity:1;transform:none;transition:none}
}

/* ---------- portrait + inset badge ---------- */
.portrait{position:relative;width:100%;max-width:440px;margin-inline:auto}
.portrait__frame{position:relative;border-radius:22px;overflow:hidden;box-shadow:var(--shadow);background:var(--mist-2)}
.portrait__frame img{width:100%;height:auto;display:block}
.floatbadge{
  position:absolute;left:14px;bottom:14px;right:14px;z-index:3;
  background:rgba(255,255,255,.96);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  color:#241B16;border:1px solid rgba(233,223,211,.9);
  border-radius:14px;padding:11px 14px;box-shadow:0 14px 34px -18px rgba(35,24,16,.6);
  display:flex;align-items:center;gap:11px
}
.floatbadge svg{color:var(--gold-ink);flex:none}
.floatbadge strong{display:block;font-family:var(--f-head);font-size:15px;line-height:1.2}
.floatbadge span{font-size:13.5px;color:var(--muted);line-height:1.3}
@media (max-width:520px){
  .floatbadge{padding:10px 12px;gap:9px}
  .floatbadge strong{font-size:14.5px}
  .floatbadge span{font-size:12.8px}
}


/* =========================================================================
   DARK SURFACES — one place, every dark band
   .footer, .ctaband, .hero, .pagehead and .mnav are all dark and none of them
   carry .section--ink, so every colour that assumes a light background has to
   be re-stated here. Each rule below fixed text that was rendering
   invisible-on-invisible; the contrast pass in _src/verify.py guards them.
   ========================================================================= */
.ctaband p,
.pagehead p,
.hero p{color:var(--cream)}
.ctaband .lede,
.hero .lede{color:var(--cream-2)}
.ctaband h2,.ctaband h3,
.pagehead h2,.pagehead h3{color:#FFFDFA}

/* ...but the white cards sitting ON those dark bands go back to ink */
.leadcard h2,.leadcard h3,.leadcard h4,
.section--ink .leadcard h2,
.ctaband .leadcard h2{color:#241B16}
.leadcard p,
.section--ink .leadcard p,
.ctaband .leadcard p{color:var(--text)}
.leadcard p.small,
.section--ink .leadcard p.small,
.ctaband .leadcard p.small,
.leadcard .formnote,
.ctaband .leadcard .formnote{color:var(--muted)}
.leadcard .field span,
.ctaband .leadcard .field span{color:#443729}
.leadcard a,
.ctaband .leadcard a,
.section--ink .leadcard a{color:var(--accent-dark)}

/* the solid CTA is white-on-bronze everywhere — a bare `a` colour rule on a
   dark section outranks .btn--primary and turns it gold-on-bronze (2.6:1) */
.section--ink a.btn--primary,
.footer a.btn--primary,
.ctaband a.btn--primary,
.hero a.btn--primary,
.pagehead a.btn--primary,
.mnav a.btn--primary,
.sticky a.btn--primary,
.topbar a.btn--primary{color:#fff}
.section--ink a.btn--primary:hover,
.footer a.btn--primary:hover,
.ctaband a.btn--primary:hover,
.hero a.btn--primary:hover,
.mnav a.btn--primary:hover,
.sticky a.btn--primary:hover{color:#fff}

.footer__note{color:#A29486}

/* =========================================================================
   V2 — booking card. The card is white but can sit on the dark hero/CTA band,
   so its buttons must use the light-background treatment regardless of band.
   ========================================================================= */
.leadcard a.btn--primary,
.hero .leadcard a.btn--primary,
.ctaband .leadcard a.btn--primary,
.section--ink .leadcard a.btn--primary{background:var(--accent);border-color:var(--accent);color:#fff}
.leadcard a.btn--primary:hover,
.hero .leadcard a.btn--primary:hover,
.ctaband .leadcard a.btn--primary:hover,
.section--ink .leadcard a.btn--primary:hover{background:var(--accent-dark);border-color:var(--accent-dark);color:#fff}
.leadcard a.btn--ghost,
.hero .leadcard a.btn--ghost,
.ctaband .leadcard a.btn--ghost,
.section--ink .leadcard a.btn--ghost{background:transparent;color:#241B16;border-color:#D8CDBC}
.leadcard a.btn--ghost:hover,
.hero .leadcard a.btn--ghost:hover,
.ctaband .leadcard a.btn--ghost:hover,
.section--ink .leadcard a.btn--ghost:hover{background:#F8F4ED;border-color:var(--accent);color:var(--accent-dark)}
.leadcard .checks li,
.hero .leadcard .checks li,
.ctaband .leadcard .checks li,
.section--ink .leadcard .checks li{color:var(--text);font-size:16px}
.leadcard .checks svg,
.hero .leadcard .checks svg,
.ctaband .leadcard .checks svg,
.section--ink .leadcard .checks svg{color:var(--accent)}
.leadcard .checks strong{color:#241B16}
.bookcard p.mt-24{margin-top:12px}

/* booking panel: number first, then one primary action, then full-width rows */
.bookcard--c .booknum{margin:10px 0 0;font-family:Sora,system-ui,sans-serif;font-weight:800;
  font-size:clamp(27px,3.5vw,34px);letter-spacing:-.02em;line-height:1.08}
.bookcard--c .booknum a{color:#241B16;text-decoration:none}
.bookcard--c .booknum a:hover{color:var(--accent-dark)}
.bookcard--c .booknum__sub{margin-top:7px}
.bookcard--c .bookrows{display:grid;gap:9px;margin-top:12px}
.bookcard--c .bookrow{display:flex;gap:12px;align-items:flex-start;min-height:44px;
  padding:12px 14px;border:1px solid #E7DFD3;border-radius:13px;background:#FCFAF6;
  text-decoration:none;color:var(--text);transition:border-color .18s,background .18s}
.bookcard--c .bookrow:hover{border-color:var(--accent);background:#F8F4ED}
.bookcard--c .bookrow svg{color:var(--accent);flex:0 0 auto;margin-top:2px}
.bookcard--c .bookrow span{display:block;font-size:15px;line-height:1.42;color:var(--muted)}
.bookcard--c .bookrow strong{display:block;color:#241B16;font-size:15.6px;font-weight:700;margin-bottom:1px}

/* ---------- the motto ---------- */
.motto{font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-style:italic;
  letter-spacing:.005em;line-height:1.2;color:var(--gold);margin:0}
.motto span{font-family:Sora,system-ui,sans-serif;font-style:normal;font-weight:800;
  letter-spacing:.03em}
.motto--hero{font-size:clamp(23px,2.9vw,31px);margin:14px 0 18px}
.motto--head{font-size:clamp(20px,2.3vw,26px);margin:12px 0 16px}
.motto--foot{font-size:20px;margin:14px 0 12px}

/* package price */
.card .pkg__price,.pkg .pkg__price{font-family:Sora,system-ui,sans-serif;font-weight:800;
  font-size:31px;line-height:1.1;letter-spacing:-.02em;color:var(--accent-dark);margin-top:10px}

/* home offer band */
.offer{display:grid;gap:20px;align-items:center;background:var(--mist);
  border:1px solid var(--line);border-left:5px solid var(--accent);
  border-radius:var(--r-card);padding:clamp(20px,2.6vw,30px)}
@media (min-width:820px){.offer{grid-template-columns:1fr auto}}
.offer h3{font-size:clamp(21px,2.5vw,27px);letter-spacing:-.01em;margin:6px 0 0}
.offer p{color:var(--muted);font-size:17px}
.offer__act{display:flex;flex-wrap:wrap;gap:11px}
