/* =========================================================
   MRKTRS Ads | Paid Advertising for Hair & Scalp Care Brands
   styles.css

   Tokens
   Canvas   #EDEFEA  pale sage-stone (never pure white)
   Surface  #F6F7F3  raised panel
   Ink      #152119  text, near-black green
   Green    #1E4D3B  brand dark: buttons, blocks, hero band
   Mineral  #9DB5A4  single accent: prices, links, marks
   Type     Futura / Jost geometric sans
   Radius   buttons/inputs 8px, panels 16px, small tags pill
   ========================================================= */

:root {
  --canvas: #EDEFEA;
  --surface: #F6F7F3;
  --surface-2: #E3E7E0;
  --ink: #152119;
  --ink-2: #4C5A52;
  --ink-3: #78857E;
  --line: rgba(21, 33, 25, 0.12);
  --line-strong: rgba(21, 33, 25, 0.28);
  --green: #1E4D3B;
  --green-2: #163B2D;
  --green-ink: #F2F5EF;
  --copper: #9DB5A4;
  --copper-2: #789383;
  --shadow: 0 24px 60px -30px rgba(21, 33, 25, 0.35);

  --font-display: "Futura", "Jost", "Century Gothic", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Futura", "Jost", "Century Gothic", ui-sans-serif, system-ui, sans-serif;

  --r-btn: 8px;
  --r-panel: 16px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #101714;
    --surface: #17211C;
    --surface-2: #1F2B25;
    --ink: #EEF2EC;
    --ink-2: #B4C0B8;
    --ink-3: #7F8D85;
    --line: rgba(238, 242, 236, 0.12);
    --line-strong: rgba(238, 242, 236, 0.28);
    --green: #2A6A52;
    --green-2: #1E4D3B;
    --green-ink: #F2F5EF;
    --copper: #B7CBBB;
    --copper-2: #93AD9B;
    --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  }
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--green); color: var(--green-ink);
  padding: .6rem 1rem; border-radius: var(--r-btn); z-index: 100;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 4.1vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.3vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); letter-spacing: -0.015em; line-height: 1.2; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.3; }

.lead { font-size: clamp(1.15rem, 1.5vw, 1.35rem); line-height: 1.5; color: var(--ink); max-width: 34em; }
.muted { color: var(--ink-2); }
.small { font-size: .9rem; color: var(--ink-2); }
.measure { max-width: 62ch; }
.measure-tight { max-width: 46ch; }

.price {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--copper);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  min-height: 3rem;
  padding: .8rem 1.4rem;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn-primary { background: var(--copper); color: #102018; }
.btn-primary:hover { background: #B9CCBD; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { min-height: 3.5rem; padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn[disabled] { opacity: .6; cursor: progress; }

.link {
  color: var(--copper);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.link:hover { border-color: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--canvas) 84%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--canvas); }
}
.site-header .wrap {
  max-width: 1380px;
  padding-inline: clamp(1rem, 2.2vw, 2rem);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .01em;
  font-size: 1.15rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.brand-logo { display: block; width: 2rem; height: 2rem; flex: none; object-fit: contain; object-position: center; }
.brand small {
  font-family: var(--font-body);
  font-weight: 500; font-size: .85rem; color: var(--ink-2); letter-spacing: 0;
}
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-weight: 500; color: var(--ink-2); transition: color .2s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav .btn { padding: .6rem 1.1rem; min-height: 2.6rem; font-size: .95rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong); border-radius: var(--r-btn);
  position: relative; cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  body::before {
    content: ""; position: fixed; inset: var(--nav-h) 0 0; z-index: 39;
    background: rgba(6, 14, 10, .72); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s linear, visibility .25s linear;
  }
  body.nav-locked::before { opacity: 1; visibility: visible; }
  .brand small { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: calc(var(--nav-h) + .75rem); left: .75rem; right: .75rem; bottom: auto;
    z-index: 50;
    background: var(--surface);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0;
    padding: .65rem 1.1rem 1.1rem;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(5, 15, 10, .58);
    transform: translateY(-12px) scale(.985); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a:not(.btn) {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em;
    padding: .9rem 0; width: 100%; border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav .btn { margin-top: 1rem; width: 100%; min-height: 3.2rem; font-size: 1rem; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section + .section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head h2 { max-width: 20ch; }
.section-head .lead { margin-top: .75rem; }

.band {
  background: var(--green);
  color: var(--green-ink);
}
.band .muted { color: rgba(242, 245, 239, .72); }
.band .price { color: #C7D7CA; }
.band .link { color: #C7D7CA; }
.band .btn-ghost { color: var(--green-ink); border-color: rgba(242, 245, 239, .4); }
.band .btn-ghost:hover { border-color: var(--green-ink); }
.band .btn-primary { background: var(--canvas); color: var(--green); }
.band .btn-primary:hover { background: var(--surface); }
.band + .section { border-top: 0; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- Grids ---------- */
.split {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) { .split { grid-template-columns: 5fr 7fr; } }
.split-even { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 900px) { .split-even { grid-template-columns: 1fr 1fr; } }
.sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
@media (max-width: 899px) { .sticky { position: static; } }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: min(820px, calc(100dvh - var(--nav-h))); padding-block: clamp(4.5rem, 9vw, 8rem); display: grid; align-items: center; background: #0D1712; color: #F2F5EF; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(7,16,11,.96) 0%, rgba(7,16,11,.88) 42%, rgba(7,16,11,.3) 72%, rgba(7,16,11,.18) 100%), linear-gradient(0deg, rgba(7,16,11,.5), transparent 42%);
}
.hero-grid {
  display: block;
}
.hero .reveal { position: relative; z-index: 2; max-width: 51rem; }
.hero .reveal-media { position: absolute; inset: 0; z-index: -2; max-width: none; margin: 0; }
.hero .reveal-media .frame { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; box-shadow: none; }
.hero .reveal-media .frame::after { display: none; }
.hero .reveal-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 62%; }
.hero h1 { max-width: 21ch; }
.hero .outcome-headline { max-width: 18ch; font-size: clamp(2.55rem, 4.25vw, 4rem); font-weight: 600; }
.outcome-headline span { color: var(--copper); }
.hero .lead { margin-top: 1.25rem; color: rgba(242,245,239,.88); }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.hero-price { display: flex; align-items: baseline; gap: .6rem; font-size: 1rem; color: var(--ink-2); }
.hero-price .price { font-size: 1.35rem; }
.hero-note { margin-top: 1rem; font-size: .9rem; color: var(--ink-3); }
.eyebrow { margin-bottom: 1rem; color: var(--copper); font-size: .8rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.text-cta { font-weight: 700; border-bottom: 1px solid rgba(242,245,239,.38); padding-block: .45rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .55rem 1.3rem; margin-top: 1.5rem; color: rgba(242,245,239,.7); font-size: .9rem; }
.hero-proof li { display: flex; align-items: center; gap: .45rem; }
.hero-proof li::before { content: ""; width: .4rem; height: .4rem; border-radius: 1px; background: var(--copper); }

.frame {
  border-radius: var(--r-panel);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-tall { aspect-ratio: 4 / 5; }
.frame-wide { aspect-ratio: 16 / 10; }
.frame-square { aspect-ratio: 1 / 1; }
.frame-tint { position: relative; }
.frame-tint::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 77, 59, 0) 55%, rgba(30, 77, 59, .22) 100%);
  pointer-events: none;
}
.caption { margin-top: .75rem; font-size: .9rem; color: var(--ink-2); }

/* ---------- Client reel ---------- */
.client-reel { overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6rem); border-block: 1px solid var(--line); }
.reel-heading { text-align: center; margin-bottom: 2rem; }
.reel-heading h2 { max-width: none; font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; width: max-content; gap: .8rem; animation: logoFlow 34s linear infinite; }
.client-logo { width: clamp(10.5rem, 15vw, 14rem); height: 7.5rem; display: grid; place-items: center; flex: none; overflow: hidden; padding: 1.15rem 1.35rem; background: #DDE4DF; border: 1px solid rgba(18, 33, 25, .1); border-radius: 10px; }
.client-logo img { display: block; min-width: 0; min-height: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; filter: grayscale(1) contrast(1.12); mix-blend-mode: multiply; opacity: .88; }
.logo-zayn img { width: 88%; height: auto; }
.logo-talat img { width: 78%; height: 78%; }
.logo-r img { width: 66%; height: 88%; }
.logo-a2z img { width: 100%; height: 100%; transform: scale(1.28); }
.logo-haveli img { width: 100%; height: 100%; transform: scale(1.72); }
.logo-arrow img { width: 72%; height: 84%; }
@keyframes logoFlow { to { transform: translateX(calc(-50% - .4rem)); } }

/* page-load reveal: hero only */
@media (prefers-reduced-motion: no-preference) {
  .reveal > * { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
  .reveal > *:nth-child(1) { animation-delay: .05s; }
  .reveal > *:nth-child(2) { animation-delay: .15s; }
  .reveal > *:nth-child(3) { animation-delay: .25s; }
  .reveal > *:nth-child(4) { animation-delay: .35s; }
  .reveal > *:nth-child(5) { animation-delay: .45s; }
  .reveal-media { opacity: 0; transform: translateY(18px) scale(.985); animation: rise 1.1s var(--ease) .25s forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- Angles (buyer reasons) ---------- */
.angles { display: grid; gap: .25rem; }
.angles li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.angles li b { color: var(--ink); font-weight: 700; }
.angles li:last-child { border-bottom: 0; }
.angles-close { margin-top: 2rem; }
.angles-close p { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

/* ---------- Question list ---------- */
.questions { display: grid; gap: 1rem; counter-reset: q; }
.questions li {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.01em; line-height: 1.25;
  padding-left: 1.6rem; position: relative;
}
.questions li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .7rem; height: .7rem; border-radius: 2px; background: var(--copper);
}

/* ---------- Product fit: chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  padding: .55rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  font-weight: 500;
  font-size: .98rem;
}
.chips-dark li { border-color: rgba(242, 245, 239, .35); }

/* ---------- Deliverables: grouped clusters ---------- */
.clusters { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 760px) { .clusters { grid-template-columns: repeat(3, 1fr); } }
.cluster { padding: clamp(1.4rem, 2.5vw, 2rem); border-radius: var(--r-panel); background: var(--surface); border: 1px solid var(--line); }
.cluster:nth-child(2) { background: var(--surface-2); }
.cluster:nth-child(3) { background: var(--green); color: var(--green-ink); border-color: transparent; }
.cluster h3 { margin-bottom: 1rem; }
.cluster ul { display: grid; gap: .5rem; }
.cluster li { padding-left: 1.1rem; position: relative; line-height: 1.45; }
.cluster li::before {
  content: ""; position: absolute; left: 0; top: .6em; width: .45rem; height: .45rem; border-radius: 1px;
  background: var(--copper);
}
.cluster:nth-child(3) li::before { background: #C7D7CA; }

/* ---------- Surroundings: two-column word list ---------- */
.plain-list { columns: 2; column-gap: 2.5rem; }
.plain-list li {
  break-inside: avoid;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em;
  padding: .5rem 0; border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) { .plain-list { columns: 1; } }

/* ---------- Timeline (first 30 days) ---------- */
.timeline { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-strong); }
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.tl {
  padding: 1.75rem 1.5rem 2rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 860px) {
  .tl { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: 1.5rem; }
  .tl:first-child { padding-left: 0; }
  .tl:last-child { border-right: 0; }
}
.tl .week { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; letter-spacing: -0.03em; color: var(--copper); line-height: 1; }
.tl h3 { margin-top: .9rem; }
.tl p { color: var(--ink-2); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 860px) { .pricing-grid { grid-template-columns: 1fr 1.35fr; } }
.price-card { border-radius: var(--r-panel); padding: clamp(1.75rem, 3vw, 2.75rem); border: 1px solid var(--line); background: var(--surface); }
.price-card.is-main { background: var(--green); color: var(--green-ink); border-color: transparent; }
.price-card .price { font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; display: block; }
.price-card.is-main .price { color: #C7D7CA; }
.price-card .term { font-weight: 600; margin-top: .4rem; }
.price-card .body { margin-top: 1.25rem; }
.price-card.is-main .body { color: rgba(242, 245, 239, .82); }
.price-card .btn { margin-top: 1.75rem; }

.plain-rows { display: grid; gap: .9rem; }
.plain-rows li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.plain-rows li::before {
  content: ""; width: .65rem; height: .65rem; border-radius: 2px; background: var(--copper); margin-top: .5em;
}
.plain-rows.is-no li::before { background: var(--ink-3); border-radius: 50%; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 1.6vw, 1.35rem); letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .mark {
  flex: none; width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid var(--line-strong); position: relative;
  transition: transform .35s var(--ease), background-color .3s var(--ease);
}
.faq summary .mark::before, .faq summary .mark::after {
  content: ""; position: absolute; background: var(--ink); left: 50%; top: 50%;
}
.faq summary .mark::before { width: .8rem; height: 1.5px; transform: translate(-50%, -50%); }
.faq summary .mark::after { width: 1.5px; height: .8rem; transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.faq details[open] summary .mark { transform: rotate(45deg); }
.faq .answer { padding: 0 0 1.5rem; max-width: 62ch; color: var(--ink-2); }
.faq .answer p { margin-bottom: .6em; }

/* ---------- Booking ---------- */
.booking-layout { display: grid; grid-template-columns: minmax(15rem, .42fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.booking-context { position: sticky; top: calc(var(--nav-h) + 2rem); }
.booking-context .plain-rows { margin-top: 1.25rem; }
.booking-context .small { margin-top: 1.75rem; }
.calendly-shell { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-panel); background: #fff; }
.calendly-inline-widget { width: 100%; }

/* ---------- Legacy form styles ---------- */
.form { display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field .hint { font-size: .85rem; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-btn);
  padding: .8rem .95rem;
  min-height: 3rem;
  transition: border-color .2s var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--copper); outline-offset: 1px; border-color: transparent; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--copper-2); }
.field .error { display: none; font-size: .85rem; color: var(--copper-2); }
.field.is-invalid .error { display: block; }

.form-status { display: none; padding: 1rem 1.15rem; border-radius: var(--r-btn); border: 1px solid var(--line-strong); }
.form-status.is-visible { display: block; }
.form-status.is-error { border-color: var(--copper-2); color: var(--copper-2); }

.skeleton { position: relative; overflow: hidden; background: var(--surface-2); border-radius: var(--r-btn); min-height: 3rem; }
@media (prefers-reduced-motion: no-preference) {
  .skeleton::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
    transform: translateX(-100%); animation: shimmer 1.4s var(--ease) infinite;
  }
  @keyframes shimmer { to { transform: translateX(100%); } }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 70ch; }
.legal h2 { font-size: 1.45rem; margin-top: 2.5rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .4rem; }

/* ---------- Final CTA ---------- */
.closer h2 { max-width: 18ch; }
.closer .cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 3rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 { margin-bottom: .75rem; }
.footer-grid ul { display: grid; gap: .45rem; }
.footer-grid a:not(.brand) { color: var(--ink-2); }
.footer-grid a:not(.brand):hover { color: var(--ink); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: .88rem; color: var(--ink-3); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Contrast fixes (specificity overrides) ---------- */
.nav .btn-primary { color: #102018; }
.nav .btn-primary:hover { color: #102018; }
.price-card.is-main .btn-primary { background: var(--canvas); color: var(--green); }
.price-card.is-main .btn-primary:hover { background: var(--surface); }
.band .hero-price { color: rgba(242, 245, 239, .78); }
.closer h2 { max-width: 24ch; }

@media (max-width: 899px) {
  .hero { min-height: calc(100dvh - var(--nav-h)); padding-block: 4rem; }
  .hero h1, .hero .outcome-headline { font-size: clamp(2.5rem, 10.7vw, 4rem); max-width: 13ch; line-height: .98; }
  .hero .lead { font-size: 1.08rem; line-height: 1.48; max-width: 31rem; }
  .hero .reveal { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta { align-items: center; flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-proof { display: grid; justify-content: center; gap: .45rem; text-align: left; }
  .hero .reveal-media { max-width: none; margin: 0; }
  .hero .reveal-media img { object-position: 62% center; }
  .hero::after { background: rgba(7,16,11,.78); }
  .section-head { text-align: center; }
  .section-head h2, .section-head .lead { margin-inline: auto; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-context { position: static; }
}

@media (max-width: 560px) {
  .site-header .wrap { padding-inline: 1rem; }
  .brand { gap: .5rem; }
  .brand-logo { width: 2rem; height: 2rem; align-self: center; }
  .brand > span { line-height: 1; }
  .hero-grid .reveal-media { display: block; width: auto; }
  .band .chips { justify-content: center; }
  .band .chips li { text-align: center; }
  .hero { padding-bottom: 3.25rem; }
  .section { padding-block: 4rem; }
  .section-tight { padding-block: 2.75rem; }
  .calendly-shell { margin-inline: calc(var(--gutter) * -1); border-inline: 0; border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}
