/* ==========================================================================
   Lumina Aesthetic & Wellness — Patient Revenue Platform
   Design system by CRM Solutions · Ignatius Ackermann
   Zero web fonts. Zero external requests. Speed is part of the brand.
   ========================================================================== */

:root {
  --ink:        #0E100E;
  --ink-2:      #1B1F1C;
  --ink-3:      #2E332F;
  --muted:      #6B7269;

  --bone:       #F8F5F0;
  --bone-2:     #F1EBE2;
  --bone-3:     #E6DED2;
  --white:      #FFFFFF;

  --gold:       #A8834E;
  --gold-2:     #BE9A62;
  --gold-lite:  #D9C09A;
  --gold-glow:  rgba(168,131,78,.14);

  --sage:       #5F6F63;

  --bad:        #B4453C;
  --bad-bg:     #FBEFEE;
  --good:       #3F6B54;
  --good-bg:    #EDF4EF;
  --warn:       #9A6B22;
  --warn-bg:    #FBF3E5;

  --line:       rgba(14,16,14,.11);
  --line-2:     rgba(14,16,14,.06);
  --line-dark:  rgba(255,255,255,.13);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, -apple-system, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(14,16,14,.05), 0 2px 8px rgba(14,16,14,.04);
  --shadow:    0 2px 6px rgba(14,16,14,.05), 0 14px 40px rgba(14,16,14,.08);
  --shadow-lg: 0 4px 12px rgba(14,16,14,.06), 0 30px 70px rgba(14,16,14,.13);

  --shell: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(38px, 6vw, 74px); letter-spacing: -.03em; }
h2 { font-size: clamp(29px, 4vw, 46px); letter-spacing: -.022em; }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 18px; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 24px; }
.shell-narrow { max-width: 880px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); flex: none; }
.eyebrow.light { color: var(--gold-lite); }
.eyebrow.light::before { background: var(--gold-lite); }

.lead { font-size: clamp(17px, 1.5vw, 19.5px); color: var(--muted); line-height: 1.62; max-width: 62ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 22px var(--gold-glow); }
.btn-gold:hover { background: #96743F; box-shadow: 0 12px 32px rgba(168,131,78,.28); }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--ink-3); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); background: rgba(14,16,14,.03); }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-ghost-light { background: transparent; color: var(--bone); border-color: var(--line-dark); }
.btn-ghost-light:hover { border-color: var(--bone); background: rgba(255,255,255,.06); }
.btn-sm { padding: 11px 20px; font-size: 12.5px; }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; font-size: 15px; transition: transform .25s var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }

.textlink {
  font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.textlink::after { content: "→"; }
.textlink:hover { border-color: var(--gold); gap: 11px; }

/* ==========================================================================
   Preview / pitch chrome
   ========================================================================== */
.preview-bar {
  background: var(--ink); color: rgba(248,245,240,.78);
  font-size: 12.5px; padding: 9px 0; border-bottom: 1px solid var(--line-dark);
}
.preview-bar .shell { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.preview-bar strong { color: var(--gold-lite); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 11px; }
.preview-bar a { color: rgba(248,245,240,.9); text-decoration: none; border-bottom: 1px solid rgba(248,245,240,.25); }
.preview-bar a:hover { border-color: var(--gold-lite); color: #fff; }
.preview-nav { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(248,245,240,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .shell { display: flex; align-items: center; gap: 26px; min-height: 76px; }

.logo { text-decoration: none; display: block; flex: none; }
.logo b {
  display: block; font-family: var(--serif); font-size: 25px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  font-weight: 400; line-height: 1;
}
.logo span {
  display: block; font-size: 8.5px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted); margin-top: 5px;
}

.nav { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav a {
  text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: .085em; text-transform: uppercase; color: var(--ink-3);
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); border-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 14px; cursor: pointer;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); margin-left: auto;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--bone); padding: clamp(56px,8vw,104px) 0 clamp(56px,7vw,92px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 82% 10%, rgba(168,131,78,.10), transparent 62%),
    radial-gradient(700px 460px at 6% 88%, rgba(95,111,99,.10), transparent 60%);
}
.hero .shell { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px,5vw,72px); align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }

.rating-row { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; flex-wrap: wrap; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.rating-row span { font-size: 13px; color: var(--muted); }

.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }

.hero-assurance { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-assurance div { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-3); max-width: 200px; line-height: 1.45; }
.hero-assurance svg { flex: none; width: 17px; height: 17px; color: var(--gold); margin-top: 2px; }

.hero-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-media .media { border-radius: var(--r-lg); }
.hero-media .media:first-child { grid-row: span 2; aspect-ratio: 3/4.5; }
.hero-media .media:nth-child(2), .hero-media .media:nth-child(3) { aspect-ratio: 1/1; }

/* ==========================================================================
   Media placeholders — treatment imagery
   Stand-ins for the practice's own photography.
   ========================================================================== */
.media { position: relative; overflow: hidden; border-radius: var(--r); background: var(--bone-3); isolation: isolate; }
.media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.5) .6px, transparent .7px),
    radial-gradient(rgba(14,16,14,.05) .6px, transparent .7px);
  background-size: 5px 5px, 7px 7px;
  background-position: 0 0, 3px 4px;
  opacity: .5; mix-blend-mode: overlay;
}
.media svg.glyph { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.media-label {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  font-size: 9.5px; letter-spacing: .17em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.92); background: rgba(14,16,14,.42);
  backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 999px;
}

.m-facial   { background: linear-gradient(150deg, #F2E4D8 0%, #E4C9B4 45%, #C9A98F 100%); }
.m-laser    { background: linear-gradient(150deg, #E3E7E4 0%, #C2CEC6 45%, #93A79B 100%); }
.m-peel     { background: linear-gradient(150deg, #F5E9DA 0%, #E8CFA8 45%, #C6A26A 100%); }
.m-wax      { background: linear-gradient(150deg, #F0E7E6 0%, #DDC8C5 45%, #BFA29E 100%); }
.m-inject   { background: linear-gradient(150deg, #E6E6EC 0%, #C9C9D6 45%, #9E9EB2 100%); }
.m-body     { background: linear-gradient(150deg, #E9EDE8 0%, #CDD8CB 45%, #A2B2A1 100%); }
.m-clinic   { background: linear-gradient(150deg, #EFEAE2 0%, #D9CFC0 45%, #B3A48F 100%); }
.m-portrait { background: linear-gradient(150deg, #EDE6DC 0%, #D4C4AE 45%, #A88F70 100%); }
.m-product  { background: linear-gradient(150deg, #F6F2EC 0%, #E8E0D3 45%, #CFC2AE 100%); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: clamp(60px, 8vw, 108px) 0; }
.section-white { background: var(--white); }
.section-bone2 { background: var(--bone-2); }
.section-ink { background: var(--ink); color: rgba(248,245,240,.76); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--bone); }
.section-ink .lead { color: rgba(248,245,240,.62); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-bottom: 16px; }

.split-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(32px,4vw,52px); }
.split-head > div { max-width: 660px; }
.split-head h2 { margin-bottom: 14px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--ink); color: var(--bone); padding: 26px 0; }
.trust-bar .shell { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-dark); }
.trust-bar .cell { background: var(--ink); padding: 12px 20px; text-align: center; }
.trust-bar .n { display: block; font-family: var(--serif); font-size: clamp(26px,3vw,36px); color: var(--gold-lite); line-height: 1; margin-bottom: 7px; }
.trust-bar .t { display: block; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(248,245,240,.55); }

/* ==========================================================================
   Treatment cards
   ========================================================================== */
.treat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.treat-grid.four { grid-template-columns: repeat(4,1fr); gap: 22px; }

.treat-card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.treat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line); }
.treat-card .media { border-radius: 0; aspect-ratio: 4/3; }
.treat-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.treat-card .cat { font-size: 10.5px; letter-spacing: .17em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.treat-card h3 { font-size: 22px; margin-bottom: 10px; }
.treat-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.treat-card .foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.price { font-family: var(--serif); font-size: 21px; color: var(--ink); }
.price small { font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 1px; }

.points-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-glow);
  padding: 6px 11px; border-radius: 999px; white-space: nowrap;
}
.points-chip::before { content: "◆"; font-size: 8px; }

/* ==========================================================================
   Product cards (shop)
   ========================================================================== */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.prod-card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-card .media { border-radius: 0; aspect-ratio: 1/1; }
.prod-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.prod-card .brand { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.prod-card h4 { font-family: var(--serif); font-size: 17px; line-height: 1.28; margin-bottom: 12px; }
.prod-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.prod-card .p { font-family: var(--serif); font-size: 19px; color: var(--ink); }

.badge-stock {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600;
  background: rgba(255,255,255,.94); color: var(--ink-3);
  padding: 5px 10px; border-radius: 999px;
}

/* ==========================================================================
   Booking mock UI
   ========================================================================== */
.booking-shell { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.booking-steps { display: grid; grid-template-columns: repeat(4,1fr); background: var(--bone-2); border-bottom: 1px solid var(--line); }
.booking-steps button {
  appearance: none; border: 0; background: none; cursor: pointer;
  padding: 18px 14px; font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  border-bottom: 2px solid transparent; transition: all .25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.booking-steps button .num {
  width: 21px; height: 21px; border-radius: 999px; display: grid; place-items: center;
  background: var(--bone-3); color: var(--ink-3); font-size: 11px; flex: none;
}
.booking-steps button[aria-selected="true"] { color: var(--ink); background: var(--white); border-bottom-color: var(--gold); }
.booking-steps button[aria-selected="true"] .num { background: var(--gold); color: #fff; }

.booking-panel { padding: clamp(24px,3.5vw,42px); }
.booking-panel[hidden] { display: none; }

.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 14px; }
.opt {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  padding: 18px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); cursor: pointer; font-family: var(--sans);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.opt:hover { border-color: var(--gold); transform: translateY(-2px); }
.opt[aria-pressed="true"] { border-color: var(--gold); background: var(--gold-glow); box-shadow: inset 0 0 0 1px var(--gold); }
.opt .media { width: 52px; height: 52px; border-radius: 10px; flex: none; }
.opt strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 3px; font-weight: 600; }
.opt span { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }

.cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 7px; margin-top: 8px; }
.cal .dow { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: center; padding-bottom: 6px; }
.cal button {
  appearance: none; border: 1px solid var(--line-2); background: var(--white);
  border-radius: 9px; padding: 11px 0; cursor: pointer; font-family: var(--sans);
  font-size: 14px; color: var(--ink-2); transition: all .2s var(--ease);
}
.cal button:hover:not(:disabled) { border-color: var(--gold); color: var(--ink); }
.cal button[aria-pressed="true"] { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.cal button:disabled { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px,1fr)); gap: 9px; }
.slot {
  appearance: none; border: 1px solid var(--line); background: var(--white);
  border-radius: 999px; padding: 11px 8px; cursor: pointer;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  transition: all .2s var(--ease);
}
.slot:hover { border-color: var(--gold); }
.slot[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #fff; }

.summary-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 18px clamp(24px,3.5vw,42px); background: var(--bone-2); border-top: 1px solid var(--line);
}
.summary-bar .sum { font-size: 13.5px; color: var(--ink-3); }
.summary-bar .sum b { color: var(--ink); font-weight: 600; }

/* Forms */
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 15px;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.note {
  font-size: 12.5px; color: var(--muted); line-height: 1.55;
  padding: 13px 16px; background: var(--bone-2);
  border-left: 2px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ==========================================================================
   Vouchers
   ========================================================================== */
.voucher-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.voucher {
  position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 30px 24px;
  background: linear-gradient(155deg, #161A17 0%, #23281F 55%, #171A16 100%);
  color: var(--bone); cursor: pointer; text-align: left;
  border: 1px solid rgba(217,192,154,.22); font-family: var(--sans);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.voucher::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 220px at 88% -14%, rgba(217,192,154,.24), transparent 66%);
}
.voucher:hover { transform: translateY(-5px); border-color: var(--gold-lite); box-shadow: var(--shadow-lg); }
.voucher[aria-pressed="true"] { border-color: var(--gold-lite); box-shadow: 0 0 0 2px var(--gold-lite), var(--shadow-lg); }
.voucher .mark { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lite); margin-bottom: 22px; position: relative; }
.voucher .amt { font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--bone); margin-bottom: 8px; position: relative; }
.voucher .sub { font-size: 12.5px; color: rgba(248,245,240,.6); position: relative; }
.voucher .bonus {
  display: inline-block; margin-top: 16px; position: relative;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-lite); border: 1px solid rgba(217,192,154,.35);
  padding: 5px 11px; border-radius: 999px;
}

/* ==========================================================================
   Rewards / points
   ========================================================================== */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tier {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px;
  background: var(--white); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.tier.featured { background: var(--ink); border-color: var(--ink); color: rgba(248,245,240,.72); }
.tier.featured h3, .tier.featured .tier-rate { color: var(--bone); }
.tier.featured li { color: rgba(248,245,240,.72); }
.tier.featured li::before { color: var(--gold-lite); }
.tier .flag {
  position: absolute; top: 18px; right: 18px;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-lite); border: 1px solid rgba(217,192,154,.4); padding: 4px 9px; border-radius: 999px;
}
.tier .tier-name { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.tier h3 { font-size: 26px; margin-bottom: 4px; }
.tier-rate { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--ink); margin-bottom: 6px; }
.tier-rate small { font-family: var(--sans); font-size: 13px; letter-spacing: .05em; color: var(--muted); }
.tier .spend { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.tier.featured .spend { border-color: var(--line-dark); color: rgba(248,245,240,.55); }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.5; color: var(--ink-3); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 13px; font-weight: 700; }

.earn-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.earn { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); padding: 24px 22px; text-align: center; }
.earn .lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.earn .val { font-family: var(--serif); font-size: 27px; color: var(--ink); line-height: 1.15; }
.earn .val em { font-style: normal; color: var(--gold); }
.earn .sub { font-size: 12.5px; color: var(--muted); margin-top: 8px; }

/* ==========================================================================
   Steps / process
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; counter-reset: s; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); counter-increment: s; }
.step::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; top: -1px; left: 0; transform: translateY(-50%);
  background: var(--bone); padding-right: 14px;
  font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: .1em;
}
.section-white .step::before { background: var(--white); }
.section-bone2 .step::before { background: var(--bone-2); }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; }
.review .stars { margin-bottom: 16px; }
.review blockquote { margin: 0 0 22px; font-family: var(--serif); font-size: 19px; line-height: 1.5; color: var(--ink); font-style: italic; }
.review .who { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.review .av { width: 38px; height: 38px; border-radius: 999px; flex: none; }
.review .who b { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.review .who span { display: block; font-size: 11.5px; color: var(--muted); }

/* ==========================================================================
   Accordion / FAQ
   ========================================================================== */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: clamp(18px,1.9vw,22px); color: var(--ink);
  line-height: 1.35; transition: color .2s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 24px; font-weight: 300; color: var(--gold);
  transition: transform .3s var(--ease);
}
.acc details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc summary:hover { color: var(--gold); }
.acc .acc-body { padding: 0 60px 26px 0; }
.acc .acc-body p { font-size: 15.5px; color: var(--muted); line-height: 1.68; }

/* ==========================================================================
   Quiz
   ========================================================================== */
.quiz { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px,4vw,48px); box-shadow: var(--shadow); }
.quiz-progress { height: 3px; background: var(--bone-3); border-radius: 999px; overflow: hidden; margin-bottom: 28px; }
.quiz-progress i { display: block; height: 100%; background: var(--gold); width: 8%; transition: width .4s var(--ease); }
.quiz-q { font-family: var(--serif); font-size: clamp(22px,2.6vw,30px); color: var(--ink); margin-bottom: 24px; }
.quiz-opts { display: grid; gap: 11px; }
.quiz-opts button {
  text-align: left; padding: 16px 20px; border: 1px solid var(--line);
  background: var(--white); border-radius: var(--r); cursor: pointer;
  font-family: var(--sans); font-size: 15px; color: var(--ink-2);
  transition: all .22s var(--ease);
}
.quiz-opts button:hover { border-color: var(--gold); background: var(--gold-glow); transform: translateX(4px); }
.quiz-score { text-align: center; }
.quiz-score .n { font-family: var(--serif); font-size: 72px; color: var(--gold); line-height: 1; }

/* ==========================================================================
   Location / contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-list svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 3px; }
.contact-list b { display: block; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.contact-list span { font-size: 15.5px; color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(248,245,240,.6); padding: clamp(52px,6vw,76px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.site-footer .logo b { color: var(--bone); }
.site-footer .logo span { color: rgba(248,245,240,.42); }
.footer-top p { font-size: 14px; line-height: 1.62; margin-top: 18px; max-width: 34ch; }
.footer-col h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lite); font-family: var(--sans); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; text-decoration: none; color: rgba(248,245,240,.6); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-lite); }
.footer-bottom { padding: 24px 0 30px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: rgba(248,245,240,.42); }

/* Agency band — Discovery Call lives here, at the bottom */
.agency-band {
  background: linear-gradient(140deg, #14180F 0%, #1F2519 52%, #14180F 100%);
  border-top: 1px solid rgba(217,192,154,.22);
  padding: clamp(40px,5vw,62px) 0; color: rgba(248,245,240,.68);
}
.agency-band .shell { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.agency-band .who { max-width: 620px; }
.agency-band .tag { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lite); margin-bottom: 12px; }
.agency-band h3 { color: var(--bone); font-size: clamp(23px,2.6vw,31px); margin-bottom: 10px; }
.agency-band p { font-size: 14.5px; line-height: 1.6; margin: 0; }
.agency-band .acts { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-book {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  display: none; text-align: center; text-decoration: none;
  background: var(--ink); color: var(--bone); padding: 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   AUDIT PAGE
   ========================================================================== */
.audit-hero { background: var(--ink); color: rgba(248,245,240,.72); padding: clamp(52px,7vw,88px) 0; }
.audit-hero h1 { color: var(--bone); max-width: 18ch; }
.audit-hero .lead { color: rgba(248,245,240,.66); }

.scorecard { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 44px; }
.score { background: rgba(255,255,255,.045); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 22px 20px; }
.score .k { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(248,245,240,.5); margin-bottom: 12px; display: block; }
.score .v { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--bone); display: block; margin-bottom: 8px; }
.score .h { font-size: 12px; line-height: 1.45; display: block; }
.score.is-bad { border-color: rgba(180,69,60,.5); background: rgba(180,69,60,.1); }
.score.is-bad .v, .score.is-bad .h { color: #E8918A; }
.score.is-warn { border-color: rgba(200,150,60,.45); background: rgba(200,150,60,.09); }
.score.is-warn .v, .score.is-warn .h { color: #E3BC7C; }

.finding { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 28px; }
.finding-head { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; padding: 26px 30px; border-bottom: 1px solid var(--line-2); background: var(--bone-2); }
.finding-head .idx { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; flex: none; min-width: 44px; }
.finding-head .ht { flex: 1; min-width: 260px; }
.finding-head h3 { margin-bottom: 6px; }
.finding-head p { font-size: 14px; color: var(--muted); margin: 0; }

.sev { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 999px; white-space: nowrap; flex: none; align-self: center; }
.sev-crit { background: var(--bad-bg); color: var(--bad); }
.sev-high { background: var(--warn-bg); color: var(--warn); }
.sev-med  { background: var(--good-bg); color: var(--good); }

.finding-body { padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.finding-body.single { grid-template-columns: 1fr; }

.plain { border-left: 2px solid var(--gold); padding: 4px 0 4px 20px; margin-bottom: 22px; }
.plain h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 9px; }
.plain p { font-size: 15px; line-height: 1.66; color: var(--ink-2); margin-bottom: .8em; }
.plain p:last-child { margin-bottom: 0; }

.impact { background: var(--bad-bg); border-radius: var(--r); padding: 20px 22px; margin-bottom: 18px; }
.impact h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--bad); font-weight: 700; margin-bottom: 9px; }
.impact p { font-size: 14.5px; color: #7E322C; margin: 0; line-height: 1.6; }

.fix { background: var(--good-bg); border-radius: var(--r); padding: 20px 22px; }
.fix h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--good); font-weight: 700; margin-bottom: 9px; }
.fix p { font-size: 14.5px; color: #2F5741; margin: 0; line-height: 1.6; }

.evidence { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--bone-2); margin: 0; }
.evidence figcaption {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  padding: 11px 16px; border-bottom: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.evidence figcaption::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--bad); flex: none; }
.evidence img { width: 100%; }

.datatable { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.datatable th, .datatable td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.datatable th { font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--bone-2); }
.datatable td b { color: var(--ink); font-weight: 600; }
.datatable .x { color: var(--bad); font-weight: 600; }
.datatable .ok { color: var(--good); font-weight: 600; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-col { border-radius: var(--r-lg); padding: 30px 28px; border: 1px solid var(--line); background: var(--white); }
.compare-col.before { background: var(--bad-bg); border-color: rgba(180,69,60,.22); }
.compare-col.after { background: var(--ink); border-color: var(--ink); }
.compare-col.after h3 { color: var(--bone); }
.compare-col h3 { font-size: 21px; margin-bottom: 20px; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.compare-col li { font-size: 14.5px; line-height: 1.5; padding-left: 26px; position: relative; }
.compare-col.before li { color: #7E322C; }
.compare-col.before li::before { content: "✕"; position: absolute; left: 0; color: var(--bad); font-weight: 700; font-size: 12px; }
.compare-col.after li { color: rgba(248,245,240,.78); }
.compare-col.after li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-lite); font-weight: 700; font-size: 12px; }

.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.outcome { background: rgba(255,255,255,.045); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 30px 28px; }
.outcome .n { font-family: var(--serif); font-size: 15px; color: var(--gold-lite); letter-spacing: .1em; margin-bottom: 16px; }
.outcome h3 { font-size: 22px; margin-bottom: 11px; }
.outcome p { font-size: 14.5px; line-height: 1.6; margin: 0; }

.invest { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(30px,4vw,48px); box-shadow: var(--shadow); }
.invest-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.invest-price { font-family: var(--serif); font-size: clamp(42px,5vw,60px); color: var(--ink); line-height: 1; }
.invest-price small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.invest-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }

.math { display: grid; gap: 14px; }
.math-row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.math-row span { color: var(--muted); }
.math-row b { color: var(--ink); font-weight: 600; white-space: nowrap; }
.math-row.total { border-bottom: 0; border-top: 2px solid var(--ink); padding-top: 16px; margin-top: 6px; font-size: 17px; }
.math-row.total b { color: var(--good); font-family: var(--serif); font-size: 24px; }

/* Plain-English explainer */
.define { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 24px 26px; margin: 26px 0; }
.define .term { font-family: var(--sans); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.define h4 { font-family: var(--serif); font-size: 20px; margin-bottom: 10px; }
.define p { font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.define .analogy { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 14.5px; color: var(--muted); font-style: italic; }

.rank-pill { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.rank-none { background: var(--bad-bg); color: var(--bad); }
.rank-low  { background: var(--warn-bg); color: var(--warn); }
.rank-ok   { background: var(--good-bg); color: var(--good); }

.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--gold-glow); color: var(--gold); margin-bottom: 20px; }
.feat .ico svg { width: 21px; height: 21px; }
.feat h3 { font-size: 20px; margin-bottom: 10px; }
.feat p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }

.phases { display: grid; gap: 0; }
.phase { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.phase:first-child { border-top: 1px solid var(--line); }
.phase .wk { font-family: var(--serif); font-size: 19px; color: var(--gold); }
.phase .wk small { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.phase h3 { font-size: 21px; margin-bottom: 8px; }
.phase p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .treat-grid, .treat-grid.four { grid-template-columns: repeat(2,1fr); }
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .voucher-grid { grid-template-columns: repeat(2,1fr); }
  .scorecard { grid-template-columns: repeat(3,1fr); }
  .earn-strip { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px; box-shadow: var(--shadow);
  }
  .nav.open a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .site-header .shell { position: relative; min-height: 66px; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }

  .hero .shell { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .contact-grid, .finding-body, .invest-grid, .compare { grid-template-columns: 1fr; }
  .steps, .tier-grid, .review-grid, .outcome-grid, .feat-grid { grid-template-columns: 1fr; }
  .trust-bar .shell { grid-template-columns: repeat(2,1fr); }
  .booking-steps { grid-template-columns: repeat(2,1fr); }
  .booking-steps button { font-size: 11px; padding: 14px 8px; }
  .sticky-book { display: block; }
  body { padding-bottom: 78px; }
  .agency-band .shell { flex-direction: column; align-items: flex-start; }
  .phase { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 640px) {
  .prod-grid, .treat-grid, .treat-grid.four { grid-template-columns: 1fr; }
  .voucher-grid { grid-template-columns: 1fr; }
  .scorecard { grid-template-columns: repeat(2,1fr); }
  .earn-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-media { grid-template-columns: 1fr 1fr; }
  .hero-media .media:first-child { grid-row: auto; grid-column: span 2; aspect-ratio: 16/10; }
  .finding-head, .finding-body { padding: 20px; }
  .acc .acc-body { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
