/* Patty Jin — Founder Audit application page.
   Palette (Patty's brief, intake §8.6): crimson red on white with light
   pink, minimal, premium, feminine. NOT dark, NOT cosmic — the previous
   midnight/gold theme was explicitly rejected ("tarot-reading vibes"). */

:root {
  --crimson: #941F3A;
  --crimson-deep: #6e1129;
  --pink: #f7dfe4;
  --pink-soft: #fdf3f5;
  --ink: #2b2226;
  --ink-soft: #6d5f65;
  --line: #eadde1;
  --white: #ffffff;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -24px rgba(148, 31, 58, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: var(--serif);
  /* Instrument Serif ships one weight — 400 is the design */
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin: 0 auto; }

section { padding: 84px 0; }
section.tint { background: var(--pink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--crimson-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--crimson);
  border: 1.5px solid var(--crimson);
}
.btn-ghost:hover { background: var(--pink); }

/* ---- Hero ---- */
.hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(1100px 480px at 85% -10%, var(--pink) 0%, transparent 60%),
    radial-gradient(700px 420px at -10% 110%, var(--pink-soft) 0%, transparent 55%),
    var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero .sub {
  margin: 26px 0 12px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 16px; max-width: 44ch; }

.portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  background: var(--pink);
}
.portrait-frame img { display: block; width: 100%; height: auto; }

/* ---- Placeholder blocks (visible markers for missing assets) ---- */
.placeholder {
  border: 2px dashed #d9a7b2;
  background: repeating-linear-gradient(-45deg, #fdf3f5, #fdf3f5 14px, #fbe9ed 14px, #fbe9ed 28px);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  color: #a15b6c;
  font-size: 14.5px;
  line-height: 1.55;
}
.placeholder strong { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }

/* [TO CONFIRM] chip for details awaiting Patty's sign-off */
.tbc {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #a15b6c;
  background: var(--pink);
  border: 1px solid #e5b9c3;
  border-radius: 999px;
  padding: 2px 9px;
  text-transform: uppercase;
}

/* ---- Pain mirror ---- */
.mirror-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 42px; }
.mirror-quotes blockquote {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}

/* ---- Process steps ---- */
.steps { counter-reset: step; margin-top: 42px; display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  align-items: start;
}
.step .num {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--crimson);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step .num::before { content: counter(step); }
.step p { color: var(--ink-soft); font-size: 15.5px; margin-top: 4px; }

/* ---- For / not for ---- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 42px; }
.fit-card { border-radius: var(--radius); padding: 34px 30px; }
.fit-card.yes { background: #fff; border: 1px solid var(--line); }
.fit-card.no { background: var(--ink); color: #f5eef0; }
.fit-card.no h3 { color: #fff; }
.fit-card ul { list-style: none; margin-top: 18px; display: grid; gap: 12px; }
.fit-card li { padding-left: 30px; position: relative; font-size: 15.5px; }
.fit-card.yes li { color: var(--ink-soft); }
.fit-card.no li { color: #d9c8cd; }
.fit-card li::before { position: absolute; left: 0; font-weight: 700; }
.fit-card.yes li::before { content: "✓"; color: var(--crimson); }
.fit-card.no li::before { content: "✕"; color: #e08aa0; }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: center; }
.about-grid .portrait-frame { transform: rotate(-1.5deg); }
.proof-note {
  margin-top: 26px;
  background: var(--pink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---- Experience / deliverables ---- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
}
.exp-card .icon { font-size: 26px; margin-bottom: 12px; }
.exp-card p { font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; }

/* ---- Application steps ---- */
.apply-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; }
.apply-step {
  text-align: center;
  padding: 26px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.apply-step .serif { font-size: 1.1rem; color: var(--ink); display: block; margin-bottom: 6px; }

/* ---- Final CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 70px 40px;
}
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #f6d7dd; }
.cta-band .btn-primary { background: #fff; color: var(--crimson); margin-top: 30px; }
.cta-band .btn-primary:hover { background: var(--pink); }

/* ---- Apply page ---- */
.apply-shell { max-width: 880px; margin: 0 auto; padding: 60px 24px 90px; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 38px;
  margin-top: 34px;
}
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field .hint { font-size: 12.5px; color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--crimson); }
.radio-row { display: grid; gap: 10px; margin-top: 6px; }
.radio-row label {
  display: flex; gap: 10px; align-items: flex-start;
  font-weight: 400; font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  cursor: pointer;
}
.radio-row input { width: auto; margin-top: 3px; accent-color: var(--crimson); }
.form-error {
  background: #fdeef0;
  border: 1px solid #e8b6c0;
  color: #93304a;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Calendar (audit slot pick) */
.cal-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 10px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav { border: 1px solid var(--line); background: #fff; border-radius: 8px; width: 34px; height: 34px; cursor: pointer; font-size: 16px; color: var(--crimson); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow { font-size: 11px; text-align: center; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 4px; }
.cal-day {
  aspect-ratio: 1; border: none; border-radius: 10px; font-size: 14px;
  background: transparent; color: #c9b6bc; cursor: default;
}
.cal-day.available { background: var(--pink-soft); color: var(--ink); cursor: pointer; border: 1px solid var(--line); }
.cal-day.available:hover { border-color: var(--crimson); }
.cal-day.selected { background: var(--crimson); color: #fff; }
.slot-list { display: grid; gap: 8px; max-height: 320px; overflow-y: auto; }
.slot {
  border: 1.5px solid var(--line); background: #fff; border-radius: 10px;
  padding: 11px; font-size: 14.5px; cursor: pointer; color: var(--ink);
}
.slot:hover { border-color: var(--crimson); }
.slot.selected { background: var(--crimson); border-color: var(--crimson); color: #fff; }

/* ---- Footer ---- */
footer { padding: 44px 0 60px; text-align: center; font-size: 13.5px; color: var(--ink-soft); border-top: 1px solid var(--line); }
footer a { color: var(--crimson); }

/* ---- Reveal animation (guarded) ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════ Luxury motion layer ═══════════ */

/* Intro curtain — lifts after first paint */
#curtain {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(160deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
#curtain .curtain-word {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 16px;
}
#curtain .curtain-word img {
  width: clamp(56px, 8vw, 88px); height: auto;
  /* crimson logo → white for the crimson curtain */
  filter: brightness(0) invert(1);
}
.logo-mark { width: 52px; height: auto; display: block; margin-bottom: 18px; }
footer .logo-mark { margin: 0 auto 12px; width: 40px; }
@media (prefers-reduced-motion: reduce) { #curtain { display: none; } }

/* Film grain — the editorial texture that kills "flat AI page" */
.grain {
  position: fixed; inset: -50%; z-index: 2000; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); } 60% { transform: translate(-3%,-2%); } 80% { transform: translate(4%,2%); }
}
@media (prefers-reduced-motion: reduce), (max-width: 860px) { .grain { animation: none; opacity: 0.035; } }

/* Hero silk blobs — slow drifting colour, far behind the content */
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0;
}
.blob-1 { width: 480px; height: 480px; background: rgba(247, 223, 228, 0.9); top: -120px; right: -80px; animation: drift 18s ease-in-out infinite alternate; }
.blob-2 { width: 340px; height: 340px; background: rgba(169, 29, 58, 0.08); bottom: -100px; left: -60px; animation: drift 22s ease-in-out infinite alternate-reverse; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }
.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }

/* Hero headline line-mask reveal */
.line-reveal { display: block; overflow: hidden; }
.line-reveal span { display: block; transform: translateY(110%); opacity: 0; will-change: transform; }
.no-js .line-reveal span, .line-reveal.static span { transform: none; opacity: 1; }
.hero-fade { /* animated in by fx; visible statically without JS */ }

/* Gold shimmer on the italic key phrase */
.gold-shimmer {
  background: linear-gradient(100deg, var(--crimson) 20%, #c98a3d 40%, #e7b76a 50%, #c98a3d 60%, var(--crimson) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 110% 0; } 50% { background-position: -10% 0; } }
@media (prefers-reduced-motion: reduce) { .gold-shimmer { animation: none; color: var(--crimson); background: none; } }

/* Hairline gold rule that draws itself in */
.rule-gold {
  display: block; width: 72px; height: 2px; margin: 22px 0 26px;
  background: linear-gradient(90deg, #c98a3d, #e7b76a);
}
.center .rule-gold { margin-left: auto; margin-right: auto; }

/* Serif marquee band */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: #fff; }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--crimson);
  padding: 0 34px; white-space: nowrap;
}
.marquee-track span::after { content: "·"; margin-left: 34px; color: #e7b76a; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Card sheen — a light passes across on hover */
.sheen { position: relative; overflow: hidden; }
.sheen::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-18deg); transition: left 0.75s ease; pointer-events: none;
}
.sheen:hover::after { left: 130%; }
.step, .exp-card, .mirror-quotes blockquote { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step:hover, .exp-card:hover, .mirror-quotes blockquote:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(169, 29, 58, 0.35);
}

/* Buttons get a slow ease so the magnetic effect feels liquid */
.btn-primary { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s, box-shadow 0.2s; }

/* ═══════════ Asset art direction (ChatGPT set, 2026-07-14) ═══════════ */

/* Curtain seal — the gold-on-crimson monogram */
#curtain { flex-direction: column; gap: 18px; }
.curtain-seal { width: clamp(84px, 12vw, 130px); height: auto; border-radius: 50%; box-shadow: 0 18px 60px -18px rgba(0,0,0,0.45); }

/* Full-bleed silk hero */
.hero-full { min-height: 92vh; display: flex; align-items: center; padding: 90px 0; }
/* Split-pin hero (Bruce 2026-07-22): the TEXT scrolls away with the page;
   only the silk background, its animations and the portrait stay frozen,
   until .after-hero (the opaque sheet) slides up and covers them.
   Desktop only — phones keep plain scrolling. */
@media (min-width: 861px) {
  .hero-full .hero-bg { position: fixed; inset: 0; }
  .hero-full .hero-portrait { position: fixed; }
  .hero-full::before { position: fixed; }
  .hero-full::after { position: fixed; inset: 0; }
  .after-hero {
    position: relative; z-index: 2;
    background: var(--white);
    box-shadow: 0 -30px 60px rgba(96, 21, 39, 0.12);
  }
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: right center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
/* Not a straight zoom — the frame wanders slightly, so the silk feels like
   it's breathing rather than being enlarged */
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.045) translate(-1.2%, 0.8%); }
  100% { transform: scale(1.07) translate(0.8%, -0.6%); }
}
/* Roaming glow: two soft pools of light wander over the folds and melt
   into the fabric (soft-light blend), so the silk shines as it moves */
.hero-glow {
  position: absolute; inset: -20%; pointer-events: none;
  background:
    radial-gradient(38% 30% at 70% 30%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(30% 26% at 42% 74%, rgba(255, 216, 224, 0.42), transparent 70%);
  mix-blend-mode: soft-light;
  animation: glowRoam 17s ease-in-out infinite alternate;
}
@keyframes glowRoam {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%  { opacity: 1; }
  100% { transform: translate(-6%, 5%) scale(1.14); opacity: 0.75; }
}
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }

/* A soft band of light glides across the fabric — velvet sheen */
.hero-full { position: relative; }
.hero-full::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.13) 50%, transparent 58%);
  background-size: 240% 100%;
  animation: silkSheen 12s ease-in-out infinite;
}
@keyframes silkSheen {
  0% { background-position: 130% 0; }
  62% { background-position: -30% 0; }
  100% { background-position: -30% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-full::after { animation: none; background: none; }
}
/* Legibility scrim — the text zone stays readable wherever the silk falls */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(251, 247, 243, 0.96) 0%,
    rgba(251, 247, 243, 0.9) 38%,
    rgba(251, 247, 243, 0.62) 60%,
    rgba(251, 247, 243, 0.24) 78%,
    rgba(251, 247, 243, 0) 92%);
}
/* Patty herself — anchored to the silk on the right, under the text layer.
   Bottom-anchored so the torso crop reads as intentional; soft rose glow
   pools behind her so she sits IN the silk rather than pasted on it. */
.hero-portrait {
  position: absolute; right: 0; bottom: 0; z-index: 0;
  height: 86%; max-height: 780px; width: auto;
  /* Pushed below the fold so the marker in her hand (and the torso crop)
     sit off-canvas — the hero clips it (.hero overflow:hidden). */
  transform: translateY(24%);
  filter: drop-shadow(0 18px 44px rgba(96, 21, 39, 0.35));
  pointer-events: none;
}
.hero-full::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: 0; bottom: 0; width: 46%; height: 90%;
  background: radial-gradient(ellipse at 60% 70%,
    rgba(255, 226, 214, 0.55) 0%,
    rgba(255, 216, 224, 0.28) 45%,
    transparent 75%);
}
@media (max-width: 1100px) {
  .hero-portrait { height: 72%; right: 2vw; }
}
@media (max-width: 860px) {
  .hero-portrait, .hero-full::before { display: none; }
}
.hero-inner { max-width: 560px; position: relative; z-index: 1; }
/* Feathered pool of light behind the copy — keeps contrast on wide screens
   where the text column reaches the crimson folds */
.hero-inner::before {
  /* Right reach trimmed so the pool of light never washes over the
     portrait (it used to spill -20% both sides). */
  content: ""; position: absolute; inset: -14% -6% -14% -20%; z-index: -1;
  background: radial-gradient(ellipse at 40% 45%,
    rgba(251, 247, 243, 0.85) 0%,
    rgba(251, 247, 243, 0.5) 55%,
    transparent 76%);
  pointer-events: none;
}
.hero-full .sub { text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
@media (max-width: 860px) {
  .hero-full { min-height: 78vh; }
  .hero-bg img { object-position: 78% center; opacity: 0.42; }
}

/* Watercolor section wash */
.watercolor-bg {
  background-image: url("img/watercolor.webp");
  background-size: cover; background-position: center;
}

/* Linen quote cards */
.linen-card {
  background-image: url("img/linen.webp");
  background-size: cover;
}

/* Editorial split — big image beside copy */
.editorial-split {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
}
.editorial-split.flip { grid-template-columns: 1.1fr 0.9fr; }
.editorial-split.flip > .img-reveal { order: 2; }
@media (max-width: 860px) {
  .editorial-split, .editorial-split.flip { grid-template-columns: 1fr; gap: 34px; }
  .editorial-split.flip > .img-reveal { order: 0; }
}

/* Image reveal: clip-wipe on scroll + inner parallax */
.img-reveal {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  clip-path: inset(0 0 0 0 round var(--radius));
}
.img-reveal img { display: block; width: 100%; height: auto; }
.parallax-img { will-change: transform; transform: scale(1.12); }
@media (prefers-reduced-motion: reduce) { .parallax-img { transform: none; } }

/* Step icons (gold line art) */
.step { grid-template-columns: 72px 1fr; }
.step-icon { width: 72px; height: 72px; object-fit: contain; }

/* Experience: flat-lay beside stacked cards */
.experience-split {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px;
  align-items: center; margin-top: 46px;
}
.exp-stack { display: grid; gap: 16px; }
.exp-card { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; }
.exp-icon { width: 64px; height: 64px; object-fit: contain; }
@media (max-width: 860px) { .experience-split { grid-template-columns: 1fr; gap: 30px; } }

/* Apply steps as a stack beside the desk image */
.apply-steps-stack { display: grid; gap: 12px; margin-top: 26px; }
.apply-steps-stack .apply-step { text-align: left; display: grid; grid-template-columns: 130px 1fr; gap: 10px; align-items: baseline; }
@media (max-width: 640px) { .apply-steps-stack .apply-step { grid-template-columns: 1fr; } }

/* FAQ / objections */
.faq-list { margin-top: 38px; display: grid; gap: 14px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 54px 20px 24px;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 20px; color: var(--crimson); transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; }
.faq summary:hover { color: var(--crimson); }

/* CTA band on real crimson silk */
.cta-band.cta-silk { position: relative; overflow: hidden; background: var(--crimson-deep); }
.cta-band .cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85;
}
.cta-band .cta-content { position: relative; z-index: 1; }
.cta-band .cta-content h2, .cta-band .cta-content .lead { text-shadow: 0 2px 18px rgba(0,0,0,0.35); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  section { padding: 60px 0; }
  .hero { padding: 70px 0 60px; }
  .hero-grid, .about-grid, .cal-shell { grid-template-columns: 1fr; }
  .hero-grid .portrait-frame { max-width: 380px; margin: 0 auto; }
  .mirror-quotes, .fit-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .apply-steps { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 22px; }
}
@media (max-width: 520px) {
  .exp-grid { grid-template-columns: 1fr; }
}
