/* ============================================================
   STRIP IT DOWN THERAPY - Design System
   From Kim's office sign: charcoal #1B181A | rose gold #C98F72
   blush #E9C4AE | periwinkle #7C89C6 | cream #FAF6F2
   Fonts: Cormorant Garamond (display serif) + Great Vibes (script)
          + Jost (body)
   Mood: premium editorial, candid, warm. "Love Your Naked Truth"
   ============================================================ */

:root {
  --ink: #1B181A;
  --ink-2: #262226;
  --body: #3E383C;
  --muted: #7A7176;
  --cream: #FAF6F2;
  --cream-2: #F3ECE5;
  --paper: #FFFFFF;
  --rose: #C98F72;
  --rose-deep: #B0755A;
  --blush: #E9C4AE;
  --peri: #7C89C6;
  --peri-deep: #5F6DA8;
  --line: #E8DFD7;
  --line-dark: rgba(250, 246, 242, .14);
  --grad-rose: linear-gradient(105deg, #E9C4AE 0%, #C98F72 45%, #E9C4AE 100%);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(27, 24, 26, .12);
  --maxw: 1200px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Jost", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17.5px; line-height: 1.72; color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration: none; }
p + p { margin-top: .85em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--blush); color: var(--ink); }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 600; line-height: 1.12;
  color: var(--ink); letter-spacing: .005em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.42rem; line-height: 1.28; }
.lead { font-size: 1.16rem; color: var(--muted); font-weight: 300; }
.script-accent {
  font-family: var(--script); font-weight: 400;
  color: var(--rose); font-size: 1.18em; letter-spacing: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--rose-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--rose); }
.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--rose); }

/* gradient serif emphasis */
.grad-rose-text {
  background: var(--grad-rose);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: .92rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(27,24,26,.18); }
.btn-rose { background: var(--ink); color: var(--cream); }
.btn-rose:hover { background: var(--rose-deep); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--blush); }
.btn-lg { padding: 20px 42px; font-size: .98rem; }
.btn .arrow { font-family: var(--serif); font-size: 1.15em; transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250, 246, 242, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 28px; max-width: 1320px; margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .b-top {
  font-family: var(--serif); font-weight: 600; font-size: 1.34rem;
  letter-spacing: .12em; color: var(--ink); text-transform: uppercase;
}
.brand .b-top em { font-family: var(--script); font-style: normal; text-transform: none; color: var(--rose); font-size: 1.15em; letter-spacing: 0; padding: 0 2px; }
.brand .b-sub {
  font-size: .6rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px; font-weight: 500;
}
.nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav ul a {
  color: var(--ink); font-weight: 500; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; position: relative; padding: 4px 0;
}
.nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--rose); transform: scaleX(0); transform-origin: right;
  transition: transform .25s ease;
}
.nav ul a:hover::after, .nav ul a.active::after { transform: scaleX(1); transform-origin: left; }
.nav ul a.active { color: var(--rose-deep); }
.nav ul a.btn { padding: 13px 24px; font-size: .74rem; }
.nav ul a.btn::after { display: none; }
.nav ul a.btn, .nav ul a.btn:hover { color: var(--cream); }
.nav ul a.btn:hover { color: #fff; }
.menu-btn { display: none; background: none; border: none; font-size: 1.9rem; color: var(--ink); cursor: pointer; line-height: 1; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; background: var(--ink); color: var(--cream); overflow: hidden;
}
.hero::before {
  /* soft rose glow */
  content: ""; position: absolute; top: -30%; right: -10%; width: 70%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,143,114,.16) 0%, transparent 62%);
  pointer-events: none;
}
.hero::after {
  /* periwinkle whisper, echoes the sign's blue splash */
  content: ""; position: absolute; bottom: -40%; left: -12%; width: 60%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(124,137,198,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center;
  padding-top: 92px; padding-bottom: 96px;
}
.hero h1 { color: var(--cream); font-weight: 500; }
.hero h1 .grad-rose-text { font-weight: 600; }
.hero .brand-line {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .44em;
  text-transform: uppercase; color: var(--blush); margin: 26px 0 6px;
}
.hero .brand-line .t-blue { color: var(--peri); }
.hero .lead { color: rgba(250,246,242,.72); max-width: 540px; margin: 18px 0 34px; }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* staccato word stack — animated one by one */
.staccato { list-style: none; margin: 30px 0 8px; }
.staccato li {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem); line-height: 1.04; color: var(--cream);
  display: block;
}
.staccato li:nth-child(2) { color: var(--blush); }
.staccato li:nth-child(3) { color: var(--rose); }
.staccato li:nth-child(4) { color: var(--peri); }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.hero-media .frame img { width: 100%; height: 620px; object-fit: cover; object-position: top center; }
.hero-media::before {
  content: ""; position: absolute; inset: -16px -16px auto auto; width: 60%; height: 60%;
  border: 1px solid rgba(233,196,174,.35); border-radius: 200px 200px 0 0; z-index: 0;
}
.hero-media .cred {
  position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
  background: var(--cream); color: var(--ink); border-radius: 999px;
  padding: 14px 30px; white-space: nowrap; box-shadow: var(--shadow);
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.hero-media .cred b { color: var(--rose-deep); font-weight: 600; }

/* inner-page hero */
.hero.inner .wrap { grid-template-columns: 1fr; padding-top: 78px; padding-bottom: 72px; }
.hero.inner .lead { max-width: 700px; }
.hero.inner h1 { max-width: 900px; }
.hero.inner .staccato li { font-size: clamp(1.9rem, 4vw, 3rem); display: inline-block; margin-right: .45em; }

/* marquee — brand line drifting */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  background: var(--ink-2); padding: 18px 0; position: relative; z-index: 2;
}
.marquee .track { display: flex; gap: 0; white-space: nowrap; will-change: transform; width: max-content; }
.marquee span {
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: .34em;
  text-transform: uppercase; color: rgba(250,246,242,.5); padding: 0 28px;
}
.marquee span i { font-style: normal; color: var(--rose); padding-right: 56px; font-family: var(--script); font-size: 1.3em; letter-spacing: 0; text-transform: none; }

/* ---------- sections ---------- */
section { padding: 96px 0; position: relative; }
section.alt { background: var(--paper); }
section.blush-bg { background: var(--cream-2); }
section.dark { background: var(--ink); color: rgba(250,246,242,.82); }
section.dark h2, section.dark h3 { color: var(--cream); }
section.dark .lead, section.dark .sec-head p { color: rgba(250,246,242,.62); }
section.dark .eyebrow { color: var(--blush); }
section.dark .eyebrow::before, section.dark.center .eyebrow::after { background: var(--rose); }
.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { margin-top: 16px; color: var(--muted); }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-rose); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blush); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 12px; }
.card h3 a { color: var(--ink); transition: color .2s ease; }
.card h3 a:hover { color: var(--rose-deep); }
.card p { font-size: .98rem; }
.card .more {
  display: inline-flex; gap: 8px; align-items: center; margin-top: 18px;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--rose-deep);
}
.card .more .arrow { font-family: var(--serif); transition: transform .18s ease; }
.card .more:hover .arrow { transform: translateX(5px); }
.card .num {
  font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--blush);
  margin-bottom: 16px; font-weight: 500;
}

/* dark card variant */
section.dark .card { background: var(--ink-2); border-color: var(--line-dark); }
section.dark .card h3, section.dark .card h3 a { color: var(--cream); }
section.dark .card p { color: rgba(250,246,242,.66); }

/* ---------- split (media + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media { position: relative; }
.split .media img {
  border-radius: var(--radius); width: 100%; height: 560px; object-fit: cover;
  box-shadow: var(--shadow);
}
.split .media.arch img { border-radius: 200px 200px var(--radius) var(--radius); }
.split .media::after {
  content: ""; position: absolute; inset: auto auto -18px -18px; width: 55%; height: 45%;
  border: 1px solid var(--blush); border-radius: var(--radius); z-index: -1;
}
.split .media .tag {
  position: absolute; right: 22px; bottom: 22px; background: rgba(27,24,26,.82);
  color: var(--cream); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 10px 22px; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.split h2 { margin-bottom: 18px; }

/* ---------- checklist ---------- */
.checks { list-style: none; display: grid; gap: 15px; margin-top: 22px; }
.checks li { display: flex; gap: 16px; align-items: flex-start; font-size: 1.02rem; }
.checks li::before {
  content: "\2713"; flex: 0 0 24px; height: 24px; border-radius: 50%;
  background: var(--blush); color: var(--ink); font-weight: 600; font-size: .72rem;
  display: flex; align-items: center; justify-content: center; margin-top: 4px;
}
section.dark .checks li::before { background: var(--rose); color: var(--ink); }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stats .stat .n {
  font-family: var(--serif); font-weight: 600; font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1; color: var(--cream);
}
.stats .stat .n .plus { color: var(--rose); }
.stats .stat .l {
  margin-top: 12px; font-size: .8rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(250,246,242,.55); font-weight: 500;
}

/* ---------- quote / manifesto ---------- */
.manifesto {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.manifesto .q {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.34;
  color: var(--ink); font-weight: 500;
}
section.dark .manifesto .q { color: var(--cream); }
.manifesto .q em { font-family: var(--script); font-style: normal; color: var(--rose); font-size: 1.18em; }
.manifesto .who {
  margin-top: 26px; font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

/* belief lines (pain -> identity rewrites) */
.rewrites { max-width: 760px; margin: 0 auto; display: grid; gap: 22px; }
.rewrite {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 32px; display: grid; gap: 6px;
}
.rewrite .from { font-size: 1rem; color: var(--muted); }
.rewrite .to { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 600; }
.rewrite .to::before { content: "\2192\00a0"; color: var(--rose); }

/* ---------- affirming pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 26px; font-size: .95rem; font-weight: 500; color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.pill:hover { border-color: var(--rose); background: var(--cream-2); }
section.dark .pill { background: var(--ink-2); border-color: var(--line-dark); color: var(--cream); }
section.dark .pill:hover { border-color: var(--rose); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: var(--cream); text-align: center;
  padding: 110px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 90%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(201,143,114,.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--cream); font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.cta-band h2 em { font-family: var(--script); font-style: normal; color: var(--rose); font-size: 1.16em; }
.cta-band p { max-width: 640px; margin: 20px auto 38px; color: rgba(250,246,242,.68); }
.cta-band .wrap { position: relative; z-index: 2; }

/* ---------- fees ---------- */
.fees { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 780px; margin: 0 auto 34px; }
.fee {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 42px 34px; text-align: center;
}
.fee .amt { font-family: var(--serif); font-weight: 600; font-size: 3.2rem; color: var(--ink); line-height: 1; }
.fee .amt sup { font-size: .45em; color: var(--rose-deep); }
.fee .l { margin-top: 12px; font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.fees-note { max-width: 720px; margin: 0 auto; text-align: center; font-size: .98rem; color: var(--muted); }

/* ---------- FAQ-ish detail rows / service focus lists ---------- */
.focus-list { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.focus-list li {
  display: flex; gap: 22px; align-items: baseline; padding: 20px 4px;
  border-bottom: 1px solid var(--line); font-size: 1.04rem; color: var(--body);
}
.focus-list li::before {
  content: counter(focus, decimal-leading-zero); counter-increment: focus;
  font-family: var(--serif); color: var(--rose); font-size: 1rem; font-weight: 600;
  flex: 0 0 34px;
}
.focus-list { counter-reset: focus; }
section.dark .focus-list { border-color: var(--line-dark); }
section.dark .focus-list li { border-color: var(--line-dark); color: rgba(250,246,242,.78); }

/* ---------- contact form ---------- */
.form-shell {
  background: var(--paper); border: 1px solid var(--line); border-radius: 26px;
  padding: 54px; box-shadow: var(--shadow); max-width: 860px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--ink); margin-bottom: 10px;
}
.field label .req { color: var(--rose-deep); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--rose); box-shadow: 0 0 0 4px rgba(201,143,114,.14);
}
.field textarea { min-height: 150px; resize: vertical; }
.field ::placeholder { color: #B8AEA8; }
.opt-row { display: flex; flex-wrap: wrap; gap: 12px; }
.opt {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 20px;
  font-size: .93rem; cursor: pointer; user-select: none; background: var(--cream);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .dot {
  width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--muted);
  display: inline-block; transition: all .18s ease; flex: 0 0 16px;
}
.opt.checkbox .dot { border-radius: 5px; }
.opt input:checked ~ .dot { background: var(--rose); border-color: var(--rose); box-shadow: inset 0 0 0 3px var(--paper); }
.opt input:checked ~ span:last-child { color: var(--ink); }
.opt:has(input:checked) { border-color: var(--rose); background: #FBF3ED; }
.form-notice {
  margin-top: 26px; padding: 22px 26px; border-radius: 14px; background: var(--cream-2);
  border: 1px solid var(--line); font-size: .9rem; color: var(--muted);
}
.form-notice b { color: var(--ink); font-weight: 600; }
.form-notice + .form-notice { margin-top: 14px; }
.submit-row { margin-top: 34px; text-align: center; }

/* steps (what happens next) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { text-align: left; position: relative; padding-top: 26px; }
.step .k {
  font-family: var(--serif); font-size: 3.4rem; font-weight: 600; line-height: 1;
  color: var(--blush); position: absolute; top: -6px; left: 0; opacity: .85;
}
.step h3 { font-size: 1.16rem; margin-bottom: 8px; padding-top: 26px; }
.step p { font-size: .95rem; color: var(--muted); }

/* ---------- footer ---------- */
footer.site {
  background: var(--ink); color: rgba(250,246,242,.62); padding: 84px 0 42px;
  position: relative; overflow: hidden;
}
footer.site::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,143,114,.5), transparent);
}
.f-brand { text-align: center; margin-bottom: 34px; }
.f-brand .f-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cream);
}
.f-brand .f-name em { font-family: var(--script); font-style: normal; text-transform: none; color: var(--rose); font-size: 1.2em; letter-spacing: 0; padding: 0 3px; }
.f-brand .f-tag {
  font-family: var(--script); font-size: 1.55rem; color: var(--blush); margin-top: 10px;
}
.f-meta { text-align: center; font-size: .95rem; max-width: 720px; margin: 0 auto; }
.f-meta .strong { color: var(--cream); font-weight: 500; }
.f-links {
  display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center;
  margin: 38px 0 30px; list-style: none;
}
.f-links a {
  color: rgba(250,246,242,.7); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; transition: color .2s ease;
}
.f-links a:hover { color: var(--rose); }
.f-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 26px; text-align: center;
  font-size: .8rem; color: rgba(250,246,242,.4); letter-spacing: .06em;
}

/* ---------- GSAP helper states ---------- */
.h-underline { position: relative; display: inline-block; }
.h-underline .u-stroke {
  position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--grad-rose); transform-origin: left; border-radius: 2px;
}
.reveal-mask { overflow: hidden; display: block; }

/* floating soft orbs (decor) */
.orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .5; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 60px; padding-top: 68px; padding-bottom: 76px; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .hero-media .frame img { height: 520px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split .media img { height: 440px; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 760px) {
  body { font-size: 16.5px; }
  section { padding: 72px 0; }
  .nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 26px 24px 30px;
    border-bottom: 1px solid var(--line); gap: 20px; box-shadow: 0 24px 40px rgba(27,24,26,.1);
  }
  .nav ul.open { display: flex; }
  .menu-btn { display: block; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 40px; }
  .fees { grid-template-columns: 1fr; }
  .form-shell { padding: 34px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-media .frame img { height: 440px; }
  .hero-media .cred { white-space: normal; text-align: center; width: max-content; max-width: 90%; }
  .split .media img { height: 360px; }
  .marquee span { font-size: .9rem; }
}
