/* ==========================================================================
   Flora Spas — main stylesheet
   Water-ripple hero (deep teal + gold) over a warm cream/sand editorial body.
   ========================================================================== */

/* --- tokens --------------------------------------------------------------- */
:root {
  --ink:        #0B100F;
  --ink-soft:   #1A2220;
  --deep:       #0C2A2B;
  --deep-2:     #103A38;
  --emerald:    #17544A;
  --emerald-lt: #2E7364;
  --gold:       #C09456;
  --gold-lt:    #DFC091;
  --gold-pale:  #F0E2C9;
  --cream:      #FAF5EC;
  --paper:      #FFFDF8;
  --sand:       #EFE3CE;
  --sand-2:     #E4D3B6;
  --line:       #D9C9AC;
  --body:       #3A3630;
  --muted:      #787063;

  --f-sans:   'Jost', -apple-system, 'Segoe UI', sans-serif;
  --f-serif:  'Cormorant Garamond', Georgia, serif;
  --f-script: 'Parisienne', 'Snell Roundhand', cursive;

  --wrap: 1200px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --header-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font: 300 clamp(15.5px, .42vw + 14.4px, 17px)/1.75 var(--f-sans);
  letter-spacing: .008em;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
picture { display: block; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 300; line-height: 1.14; letter-spacing: -.012em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* --- type scale ----------------------------------------------------------- */
.h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
.h2 { font-size: clamp(1.85rem, 3.3vw, 2.85rem); }
.h3 { font-size: clamp(1.3rem, 1.7vw, 1.6rem); }
.script { font-family: var(--f-script); font-weight: 400; letter-spacing: 0; line-height: 1; }
.serif  { font-family: var(--f-serif); }
.eyebrow {
  font-size: .70rem; font-weight: 400; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.1rem;
}
.eyebrow.on-dark { color: var(--gold-lt); }
.lede { font-size: clamp(1.02rem, 1.15vw, 1.18rem); color: var(--muted); }
.on-dark .lede, .dark .lede, .deep .lede, .band .lede { color: rgba(255,255,255,.76); }

/* --- layout --------------------------------------------------------------- */
.wrap { width: min(var(--wrap), 100% - var(--gut) * 2); margin-inline: auto; }
.wrap-narrow { width: min(760px, 100% - var(--gut) * 2); margin-inline: auto; }
section { position: relative; }
.pad    { padding-block: clamp(4rem, 8vw, 7.5rem); }
.pad-sm { padding-block: clamp(2.75rem, 5vw, 4.5rem); }
.center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-paper { background: var(--paper); }
.dark { background: var(--ink); color: #EFEAE1; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.deep { background: var(--deep); color: #E4EDEA; }
.deep h1, .deep h2, .deep h3 { color: #fff; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 2.1em; min-height: 48px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font-size: .78rem; font-weight: 400; letter-spacing: .19em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border-radius: 0;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold   { --bg: var(--gold); --bd: var(--gold); --fg: #fff; }
.btn--gold:hover   { --bg: #A97D42; --bd: #A97D42; }
.btn--emerald{ --bg: var(--emerald); --bd: var(--emerald); --fg: #fff; border-radius: 999px; }
.btn--emerald:hover{ --bg: var(--emerald-lt); --bd: var(--emerald-lt); }
.btn--sand   { --bg: var(--sand-2); --bd: var(--sand-2); --fg: var(--ink); }
.btn--sand:hover   { --bg: var(--gold-lt); --bd: var(--gold-lt); }
.btn--ghost  { --bg: transparent; --bd: currentColor; --fg: inherit; }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--ghost-light { --bg: transparent; --bd: rgba(255,255,255,.55); --fg: #fff; }
.btn--ghost-light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .4; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row.center { justify-content: center; }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,14,13,.78), rgba(6,14,13,0));
  transition: opacity .35s var(--ease);
}
.site-header.is-stuck { background: rgba(9,15,14,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.08); height: 66px; }
.site-header.is-stuck::after { opacity: 0; }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; width: min(1340px, 100% - var(--gut) * 2); }

.brand { display: flex; align-items: baseline; gap: .5rem; text-decoration: none; color: #fff; margin-right: auto; }
.brand__mark { font-family: var(--f-script); font-size: 1.85rem; line-height: 1; color: #fff; }
.brand__word { font-size: .72rem; letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.82); }

.nav { display: flex; align-items: center; gap: clamp(.85rem, 1.5vw, 1.7rem); }
.nav a {
  position: relative; text-decoration: none; color: rgba(255,255,255,.9);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; padding: .4rem 0;
  white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold-lt);
  transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav .btn { padding: .72em 1.5em; min-height: 42px; font-size: .72rem; }

.has-sub { position: relative; }
.has-sub > button {
  background: none; border: 0; cursor: pointer; padding: .4rem 0;
  color: rgba(255,255,255,.9); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4em;
}
.has-sub > button svg { transition: transform .25s var(--ease); }
.has-sub[data-open="true"] > button svg { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + .6rem); left: 50%; translate: -50% 0;
  min-width: 250px; padding: .6rem 0; background: #fff; color: var(--ink);
  box-shadow: 0 22px 55px rgba(11,16,15,.22); border-top: 2px solid var(--gold);
  opacity: 0; visibility: hidden; translate: -50% 8px;
  transition: opacity .25s var(--ease), visibility .25s var(--ease), translate .25s var(--ease);
}
.has-sub[data-open="true"] .sub, .has-sub:hover .sub { opacity: 1; visibility: visible; translate: -50% 0; }
.site-header .sub { will-change: opacity; }
.sub a {
  display: block; padding: .62rem 1.4rem; color: var(--body); text-transform: none;
  letter-spacing: .01em; font-size: .93rem;
}
.sub a::after { display: none; }
.sub a:hover { background: var(--cream); color: var(--emerald); }

.burger {
  display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 22px; height: 1.5px; background: #fff; position: relative; transition: .3s var(--ease); }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 1.5px; background: #fff; transition: .3s var(--ease);
}
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* --- hero ----------------------------------------------------------------- */
.hero {
  position: relative; min-height: clamp(560px, 92svh, 900px);
  display: grid; place-items: center; text-align: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero--short { min-height: clamp(420px, 62svh, 620px); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { width: 100%; height: 100%; }
.hero__media img, .hero__media canvas { width: 100%; height: 100%; object-fit: cover; }
.hero__media canvas { position: absolute; inset: 0; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(4,20,20,.15) 0%, rgba(4,18,18,.62) 72%, rgba(3,14,14,.86) 100%),
    linear-gradient(180deg, rgba(4,16,16,.42) 0%, rgba(4,16,16,0) 34%);
}
.hero__inner { padding: calc(var(--header-h) + 3rem) var(--gut) 4.5rem; max-width: 940px; }
.hero__logo { font-family: var(--f-script); font-size: clamp(3.6rem, 9vw, 7rem); line-height: .9; color: #fff; text-shadow: 0 6px 40px rgba(0,0,0,.45); }
.hero__logo small { display: block; font-family: var(--f-sans); font-weight: 200; font-size: clamp(.9rem, 1.8vw, 1.35rem); letter-spacing: .58em; text-indent: .58em; margin-top: .35em; }
.hero__tag {
  margin: clamp(1.4rem, 3vw, 2.2rem) 0 0;
  font-size: clamp(.92rem, 1.5vw, 1.28rem); font-weight: 300;
  letter-spacing: .26em; text-transform: uppercase; text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__sub { margin-top: .9rem; font-family: var(--f-serif); font-style: italic; font-size: clamp(1rem, 1.4vw, 1.22rem); color: rgba(255,255,255,.85); }
.hero .btn-row { margin-top: clamp(1.8rem, 3.5vw, 2.8rem); justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; translate: -50% 0;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-decoration: none;
}
.hero__scroll::after { content: ''; width: 1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,.6), transparent); animation: drift 2.4s var(--ease) infinite; }
@keyframes drift { 0%,100% { opacity: .35; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* page hero (interior pages) */
.phero { position: relative; color: #fff; text-align: center; overflow: hidden; isolation: isolate; }
.phero > picture { position: absolute; inset: 0; z-index: -2; }
.phero > picture img { width: 100%; height: 100%; object-fit: cover; }
.phero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,18,18,.72), rgba(6,18,18,.55) 55%, rgba(6,18,18,.78)); }
.phero__inner { padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem)) var(--gut) clamp(3.5rem, 7vw, 6rem); max-width: 860px; margin-inline: auto; }
.phero .lede { color: rgba(255,255,255,.8); margin-top: 1rem; }

/* --- breadcrumb ----------------------------------------------------------- */
.crumbs { font-size: .78rem; letter-spacing: .05em; color: var(--muted); padding: 1.1rem 0; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--emerald); }
.crumbs span { margin: 0 .5em; opacity: .5; }

/* --- feature strip -------------------------------------------------------- */
.strip { background: var(--emerald); color: #fff; }
.strip__grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); grid-template-columns: repeat(3, 1fr); padding-block: clamp(2rem, 3.5vw, 2.9rem); }
.strip__item { display: flex; gap: 1rem; align-items: flex-start; }
.strip__item svg { flex: none; width: 40px; height: 40px; stroke: var(--gold-lt); }
.strip__item h3 { font-size: 1.02rem; letter-spacing: .02em; color: #fff; }
.strip__item p { font-size: .87rem; color: rgba(255,255,255,.72); margin: .3rem 0 0; line-height: 1.6; }

/* --- generic split -------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr 1fr; }
.split--flip > *:first-child { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3/4; }
.split__media::after {
  content: ''; position: absolute; inset: auto -14px -14px auto; width: 55%; height: 55%;
  border: 1px solid var(--gold); z-index: -1;
}
.split__body > .btn, .split__body > .btn-row { margin-top: 1.8rem; }

/* --- ticks ---------------------------------------------------------------- */
.ticks li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .62em; width: 11px; height: 6px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.ticks--light li::before { border-color: var(--gold-lt); }

/* --- service checkerboard ------------------------------------------------- */
.checker { display: grid; grid-template-columns: repeat(4, 1fr); }
.checker__cell { position: relative; aspect-ratio: 1; overflow: hidden; }
.checker__cell picture { width: 100%; height: 100%; }
.checker__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.checker__cell:hover img { transform: scale(1.06); }
.checker__text {
  background: var(--sand); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.2rem, 2.2vw, 2rem); text-align: center; gap: .55rem;
  transition: background .4s var(--ease);
}
.checker__text:nth-of-type(even) { background: var(--sand-2); }
.checker__text h3 { font-family: var(--f-script); font-size: clamp(1.5rem, 2.1vw, 2.05rem); color: var(--ink); }
.checker__text p { font-size: .855rem; line-height: 1.62; color: #55504A; margin: 0; }
.checker__text a {
  margin-top: .3rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--emerald); text-decoration: none; border-bottom: 1px solid transparent; align-self: center;
  transition: border-color .3s var(--ease);
}
.checker__text a:hover { border-color: var(--emerald); }

/* --- price menu ----------------------------------------------------------- */
.menu-group + .menu-group { margin-top: clamp(2.75rem, 5vw, 4.25rem); }
.menu-group__head { border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: .4rem; }
.menu-group__head h2 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.menu-group__head p { margin: .55rem 0 0; font-size: .92rem; color: var(--muted); max-width: 62ch; }
.price-head { display: grid; grid-template-columns: 1fr repeat(3, 92px); gap: 1rem; padding: .85rem 0 .5rem; }
.price-head span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-align: right; }
.price-row {
  display: grid; grid-template-columns: 1fr repeat(3, 92px); gap: 1rem; align-items: center;
  padding: .95rem 0; border-bottom: 1px solid rgba(217,201,172,.6);
}
.price-row__name { font-size: 1.03rem; color: var(--ink); }
.price-row__name small { display: block; font-size: .84rem; color: var(--muted); margin-top: .18rem; line-height: 1.5; }
.price-row__val { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.price-row--simple { grid-template-columns: 1fr auto auto; gap: 1.6rem; }
.price-row__mins { font-size: .84rem; color: var(--muted); white-space: nowrap; }

/* --- membership ----------------------------------------------------------- */
.plans { display: grid; gap: 1.6rem; grid-template-columns: repeat(3, 1fr); align-items: start; }
.plan {
  background: var(--paper); border: 1px solid var(--line); padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.1rem; position: relative;
}
.plan--featured { border-color: var(--gold); box-shadow: 0 26px 60px -34px rgba(11,16,15,.45); }
.plan__flag {
  position: absolute; top: 0; right: 0; background: var(--gold); color: #fff;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; padding: .45em 1em;
}
.plan h3 { font-size: 1.45rem; }
.plan__price { display: flex; align-items: baseline; gap: .3rem; color: var(--ink); }
.plan__price b { font-weight: 300; font-size: 3rem; line-height: 1; }
.plan__price span { font-size: .85rem; color: var(--muted); }
.plan__perks li { font-size: .9rem; line-height: 1.6; }
.plan .btn { margin-top: auto; }

/* --- cards ---------------------------------------------------------------- */
.cards { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); grid-template-columns: repeat(3, 1fr); }
.card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; }
.card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.card > a, .card > picture { display: block; }
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__body h3 { font-size: 1.18rem; }
.card__body p { font-size: .89rem; color: var(--muted); margin: 0; }
.card__meta { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: .87rem; color: var(--ink); }

/* --- quotes --------------------------------------------------------------- */
.quotes { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.quote { background: var(--paper); padding: clamp(1.6rem, 2.6vw, 2.2rem); border: 1px solid var(--line); }
.quote__stars { color: var(--gold); letter-spacing: .18em; font-size: .95rem; }
.quote p { font-family: var(--f-serif); font-size: 1.12rem; line-height: 1.65; color: var(--ink); margin: .9rem 0 1.1rem; }
.quote cite { font-style: normal; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* --- accordion ------------------------------------------------------------ */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.25rem 0; font-size: 1.05rem; color: var(--ink);
}
.acc__q i { flex: none; width: 15px; height: 15px; position: relative; }
.acc__q i::before, .acc__q i::after {
  content: ''; position: absolute; inset: 50% 0 auto; height: 1.5px; background: var(--gold); transition: transform .3s var(--ease);
}
.acc__q i::after { transform: rotate(90deg); }
.acc__item[data-open="true"] .acc__q i::after { transform: rotate(0); }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.acc__item[data-open="true"] .acc__a { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding-bottom: 1.35rem; max-width: 72ch; color: var(--muted); }

/* --- wave divider --------------------------------------------------------- */
.wave { display: block; width: 100%; height: clamp(48px, 6vw, 96px); }
.wave path { fill: currentColor; }

/* --- info band (hours / address) ------------------------------------------ */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band > picture { position: absolute; inset: 0; z-index: -2; }
.band > picture img { width: 100%; height: 100%; object-fit: cover; }
.band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(8,20,20,.72); }
.band__card {
  color: #fff; text-align: center; padding: clamp(2.5rem, 5vw, 4rem) var(--gut);
  max-width: 860px; margin-inline: auto;
}
.band__facts { display: grid; grid-template-columns: 1fr 1px 1fr; gap: clamp(1.2rem, 3vw, 2.6rem); align-items: center; margin: 2rem 0; }
.band__facts hr { border: 0; width: 1px; height: 100%; min-height: 70px; background: rgba(255,255,255,.28); margin: 0; }
.band__facts strong { display: block; font-weight: 300; font-size: 1.18rem; letter-spacing: .14em; text-transform: uppercase; }
.band__facts p { margin: .45rem 0 0; color: rgba(255,255,255,.78); font-size: .95rem; }
.band__facts a { color: var(--gold-lt); text-decoration: none; }
.band__facts a:hover { text-decoration: underline; }

/* --- deposit notice ------------------------------------------------------- */
.notice {
  border: 1px solid var(--gold); background: #FCF6EA; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start; font-size: .92rem; line-height: 1.66;
}
.notice svg { flex: none; width: 22px; height: 22px; stroke: var(--gold); margin-top: .18rem; }
.notice strong { color: var(--ink); font-weight: 500; }
.notice--dark { background: rgba(192,148,86,.1); border-color: rgba(223,192,145,.4); color: rgba(255,255,255,.82); }
.notice--dark strong { color: #fff; }

/* --- forms ---------------------------------------------------------------- */
.field { display: block; margin-bottom: 1.15rem; }
.field > span { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.field > span b { color: #B4472F; font-weight: 400; }
.input, .field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 0; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,148,86,.16);
}
.field--error input, .field--error select, .field--error textarea { border-color: #B4472F; }
.field__err { display: block; margin-top: .35rem; font-size: .8rem; color: #B4472F; }
.grid-2 { display: grid; gap: 0 1.15rem; grid-template-columns: 1fr 1fr; }
.check { display: flex; gap: .8rem; align-items: flex-start; font-size: .84rem; line-height: 1.6; color: var(--muted); }
.check input { flex: none; width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--emerald); }
.check a { color: var(--emerald); }
.legal { font-size: .78rem; line-height: 1.65; color: var(--muted); }

/* --- alerts --------------------------------------------------------------- */
.alert { padding: 1rem 1.25rem; border-left: 3px solid; font-size: .93rem; margin-bottom: 1.5rem; }
.alert--ok  { border-color: var(--emerald); background: #EDF4F1; color: #14453C; }
.alert--bad { border-color: #B4472F; background: #FBEDE9; color: #7C2E1C; }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); font-size: .9rem; }
.site-footer__band { height: clamp(90px, 12vw, 150px); overflow: hidden; }
.site-footer__band picture { height: 100%; }
.site-footer__band img { width: 100%; height: 100%; object-fit: cover; }
.site-footer__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr; padding-block: clamp(3rem, 5vw, 4.25rem);
}
.site-footer h4 { color: #fff; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255,255,255,.66); text-decoration: none; }
.site-footer a:hover { color: var(--gold-lt); }
.site-footer li { margin-bottom: .6rem; }
.site-footer .brand { margin-bottom: 1.1rem; }
.socials { display: flex; gap: .7rem; margin-top: 1.25rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem;
}
.site-footer__bar nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }

/* --- utilities ------------------------------------------------------------ */
.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; top: -60px; left: 1rem; z-index: 200; background: #fff; color: var(--ink);
  padding: .7rem 1.2rem; transition: top .2s var(--ease);
}
.skip:focus { top: 1rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.rule { border: 0; border-top: 1px solid var(--line); margin: clamp(2.5rem, 5vw, 4rem) 0; }
.stack > * + * { margin-top: 1.15rem; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .checker { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw);
    background: var(--ink); flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: calc(var(--header-h) + 1.5rem) 1.75rem 2rem;
    transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto;
  }
  body.nav-open .nav { transform: none; }
  body.nav-open { overflow: hidden; }
  .nav a, .has-sub > button { padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; font-size: .85rem; }
  .nav a::after { display: none; }
  .has-sub { width: 100%; }
  .has-sub > button { justify-content: space-between; }
  .sub {
    position: static; translate: none; opacity: 1; visibility: visible; box-shadow: none;
    background: transparent; border-top: 0; min-width: 0; padding: 0;
    display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease);
  }
  .sub > div { overflow: hidden; }
  .has-sub[data-open="true"] .sub { grid-template-rows: 1fr; }
  .sub a { color: rgba(255,255,255,.62); padding: .7rem 0 .7rem 1rem; border-bottom: 0; }
  .sub a:hover { background: none; color: var(--gold-lt); }
  .nav .btn { margin-top: 1.25rem; width: 100%; }
  .plans, .cards, .quotes { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
  .strip__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .checker { grid-template-columns: 1fr; }
  .checker__cell { aspect-ratio: 16/10; }
  .checker__text { aspect-ratio: auto; padding: 2rem 1.5rem; }
  .price-head { display: none; }
  .price-row { grid-template-columns: 1fr; gap: .35rem; padding: 1.05rem 0; }
  .price-row__val { text-align: left; font-size: .92rem; color: var(--muted); display: inline-block; margin-right: 1.1rem; }
  .price-row__val::before { content: attr(data-label) " "; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
  .price-row--simple { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .band__facts { grid-template-columns: 1fr; }
  .band__facts hr { width: 60px; height: 1px; min-height: 0; margin-inline: auto; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .split__media::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .site-header, .site-footer, .hero__scroll, .btn { display: none !important; }
}
