/* ============================================================================
   MARIA MANNING - SPEAKER & CONSULTANT
   Design system: "premium editorial warmth"
   - Refined raspberry-magenta (a mature nod to Magenta Momz), used RARELY
   - Warm cream + sand neutrals, deep navy-ink text, quiet gold accent
   - Fraunces (display serif) + Manrope (UI/body)
   ========================================================================== */

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* Brand */
  --plum:        #C2185B;   /* signature magenta - CTAs, accents, rare punctuation */
  --plum-hover:  #A8124E;
  --plum-deep:   #7C1742;   /* depth in gradients / dark plum */
  --plum-dim:    rgba(194, 24, 91, 0.10);
  --gold:        #BE9A57;   /* quiet, refined accent - hairlines, small marks */
  --gold-soft:   rgba(190, 154, 87, 0.35);

  /* Neutrals (warm) */
  --cream:       #FAF5EF;   /* primary light background */
  --sand:        #F1E8DC;   /* alternate warm section */
  --sand-deep:   #E9DDCC;
  --white:       #FFFFFF;
  --ink:         #1C2236;   /* primary text - deep navy-charcoal */
  --ink-soft:    #3A4055;
  --ink-deep:    #141A2C;   /* dark sections */
  --ink-deeper:  #0E1322;
  --muted:       #6E6558;   /* warm muted text on light */
  --muted-light: rgba(250, 245, 239, 0.62); /* muted on dark */

  /* Lines & surfaces */
  --line:        rgba(28, 34, 54, 0.10);
  --line-strong: rgba(28, 34, 54, 0.18);
  --line-light:  rgba(250, 245, 239, 0.14);
  --card:        #FFFFFF;
  --card-dark:   #1B2236;

  /* Typography */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-hero:    clamp(2.9rem, 6.2vw, 5.6rem);
  --text-display: clamp(2.2rem, 4.4vw, 3.6rem);
  --text-heading: clamp(1.7rem, 2.8vw, 2.4rem);
  --text-subhead: clamp(1.18rem, 1.7vw, 1.45rem);
  --text-lead:    clamp(1.1rem, 1.5vw, 1.3rem);
  --text-body:    clamp(1rem, 1.1vw, 1.075rem);
  --text-sm:      0.9rem;
  --text-xs:      0.78rem;

  /* Space */
  --container:  min(1180px, 90vw);
  --narrow:     min(760px, 90vw);
  --wide:       min(1360px, 94vw);
  --section-y:  clamp(5rem, 9vw, 8.5rem);

  /* Radii & shadow */
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 26px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(28,34,54,.04), 0 4px 14px rgba(28,34,54,.05);
  --shadow:    0 2px 6px rgba(28,34,54,.05), 0 18px 40px -12px rgba(28,34,54,.16);
  --shadow-lg: 0 4px 10px rgba(28,34,54,.06), 0 40px 80px -24px rgba(124,23,66,.26);
  --shadow-plum: 0 24px 60px -18px rgba(194,24,91,.40);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--plum); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -0.018em; color: var(--ink); }
h1 { font-size: var(--text-hero); font-weight: 300; letter-spacing: -0.03em; }
h2 { font-size: var(--text-display); }
h3 { font-size: var(--text-heading); }
.serif-italic { font-style: italic; font-optical-sizing: auto; }

.eyebrow {
  font-family: var(--body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold); }

.lead { font-size: var(--text-lead); color: var(--ink-soft); line-height: 1.65; }
.muted { color: var(--muted); }

/* ---------- Layout -------------------------------------------------------- */
.container { width: var(--container); margin-inline: auto; }
.narrow { width: var(--narrow); margin-inline: auto; }
.wide { width: var(--wide); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--white { background: var(--white); }
.section--ink   { background: var(--ink-deep); color: var(--cream); }
.section--ink h1,.section--ink h2,.section--ink h3 { color: var(--cream); }
.section--ink .lead { color: var(--muted-light); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.section > .container, .section > .wide, .section > .narrow { position: relative; z-index: 1; }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.01em; padding: 0.95rem 1.7rem; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform; white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn-primary { background: var(--plum); color: var(--white); box-shadow: var(--shadow-plum); }
.btn-primary:hover { background: var(--plum-hover); transform: translateY(-2px); box-shadow: 0 30px 70px -16px rgba(194,24,91,.52); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0) scale(.985); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(28,34,54,.03); }
.btn-secondary:active { transform: translateY(0) scale(.985); }

.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: var(--line-light); }
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(250,245,239,.06); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

.text-link { color: var(--plum); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s var(--ease); }
.text-link svg { width: 1em; height: 1em; }
.text-link:hover { gap: .7rem; }
.text-link.on-dark { color: var(--gold); }

/* ---------- Nav ----------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 245, 239, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(28,34,54,.22);
}
.nav-inner { width: var(--wide); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: baseline; gap: .55rem; font-family: var(--display); font-size: 1.42rem; letter-spacing: -.02em; color: var(--ink); font-weight: 500; }
.brand .brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--plum); display: inline-block; transform: translateY(-2px); }
.brand small { font-family: var(--body); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; align-self: center; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--plum); transition: width .3s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 20px; height: 1.6px; background: var(--ink); position: relative; transition: .3s var(--ease); }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 1.6px; background: var(--ink); transition: .3s var(--ease); }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; padding: 5rem clamp(1.5rem, 7vw, 3rem) 2rem;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--display); font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 300; color: var(--ink); padding: .5rem 0; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
.mobile-menu a:nth-child(1){ transition-delay:.06s } .mobile-menu a:nth-child(2){ transition-delay:.10s }
.mobile-menu a:nth-child(3){ transition-delay:.14s } .mobile-menu a:nth-child(4){ transition-delay:.18s }
.mobile-menu a:nth-child(5){ transition-delay:.22s } .mobile-menu a:nth-child(6){ transition-delay:.26s }
.mobile-menu a:nth-child(7){ transition-delay:.30s } .mobile-menu a:nth-child(8){ transition-delay:.34s }
.mobile-menu .btn { margin-top: 1.6rem; align-self: flex-start; }
.mobile-menu a.btn-primary { color: var(--white); }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative; padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(120% 90% at 85% 8%, rgba(194,24,91,.10), transparent 55%),
    radial-gradient(90% 80% at 12% 100%, rgba(190,154,87,.12), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--sand));
  overflow: hidden;
}
.hero-grid { width: var(--wide); margin-inline: auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 { margin: 1.4rem 0 1.5rem; }
.hero h1 em { font-style: italic; color: var(--plum); font-weight: 400; }
.hero-sub { font-size: var(--text-subhead); color: var(--ink-soft); line-height: 1.6; max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-trust { margin-top: 2.6rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: var(--text-sm); color: var(--muted); }
.hero-trust strong { color: var(--ink); font-weight: 600; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero-photo { position: relative; justify-self: center; width: min(430px, 88%); }
.hero-photo .photo-glow { position: absolute; inset: -14%; z-index: 0; background: radial-gradient(circle at 62% 38%, rgba(194,24,91,.20), transparent 60%); filter: blur(12px); }
.hero-photo .photo-frame { position: relative; z-index: 1; }
.hero-photo .photo-backer { position: absolute; inset: 0; transform: translate(-22px, 24px); border-radius: var(--r-lg); background: linear-gradient(160deg, var(--plum), var(--plum-deep)); z-index: 0; }
.hero-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; z-index: 2; background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow); padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.hero-badge.tl { top: 8%; left: -2%; }
.hero-badge.br { bottom: 12%; right: -3%; }
.hero-badge .num { font-family: var(--display); font-size: 1.5rem; color: var(--plum); line-height: 1; }
.hero-badge .lbl { font-size: var(--text-xs); color: var(--muted); line-height: 1.25; max-width: 12ch; }

/* ---------- Credibility strip -------------------------------------------- */
.cred-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.cred-strip .wide { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1.6rem; flex-wrap: wrap; }
.cred-strip .cred-label { font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cred-logos { display: flex; align-items: center; gap: clamp(1.4rem, 4vw, 3rem); flex-wrap: wrap; }
.cred-logos span { font-family: var(--display); font-size: 1.15rem; color: var(--ink-soft); letter-spacing: -.01em; opacity: .85; }
.cred-logos .mark { display: inline-flex; align-items: center; gap: .5rem; }
.cred-logos .mark b { color: var(--plum); font-family: var(--body); font-weight: 800; }

/* ---------- Generic grids & cards ---------------------------------------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 2.5vw, 2.2rem);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { font-size: 1.42rem; margin-bottom: .7rem; }
.card p { color: var(--muted); font-size: var(--text-body); }

/* Numbered wound/problem-style card */
.num-card .idx { font-family: var(--display); font-size: 2.4rem; color: var(--plum); opacity: .35; line-height: 1; }
.num-card h3 { margin-top: .8rem; }

/* Ways-to-work card */
.work-card { display: flex; flex-direction: column; }
.work-card .work-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--plum-dim); color: var(--plum); display: grid; place-items: center; margin-bottom: 1.1rem; }
.work-card .work-icon svg { width: 22px; height: 22px; }
.work-card .text-link { margin-top: 1.3rem; }
.work-card .price-from { font-size: var(--text-sm); color: var(--muted); margin-top: .4rem; }
.work-card .price-from b { color: var(--ink); font-weight: 700; }

/* ---------- Stat band ----------------------------------------------------- */
.stat-band .wide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat { text-align: center; padding: 1rem; }
.stat .num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 300; color: var(--cream); line-height: 1; letter-spacing: -.02em; }
.stat .num em { color: var(--gold); font-style: normal; }
.stat .lbl { margin-top: .9rem; color: var(--muted-light); font-size: var(--text-sm); }
.stat .src { font-size: .68rem; color: rgba(250,245,239,.32); margin-top: .35rem; }

/* ---------- Editorial quote / statement ---------------------------------- */
.statement blockquote { font-family: var(--display); font-weight: 300; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.22; letter-spacing: -.02em; color: var(--ink); }
.statement blockquote em { font-style: italic; color: var(--plum); }
.statement .attrib { margin-top: 1.8rem; font-size: var(--text-sm); color: var(--muted); letter-spacing: .04em; }
.section--ink.statement blockquote,
.section--ink .statement blockquote { color: var(--cream); }
.section--ink.statement blockquote em,
.section--ink .statement blockquote em { color: var(--plum); }

/* ---------- Pricing cards ------------------------------------------------- */
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem, 2.6vw, 2.4rem); display: flex; flex-direction: column; height: 100%; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); position: relative; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--plum); box-shadow: var(--shadow); }
.price-card.featured::before { content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--plum); color: var(--white); font-size: var(--text-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem 1rem; border-radius: var(--r-pill); white-space: nowrap; }
.price-card .tier { font-family: var(--display); font-size: 1.55rem; color: var(--ink); }
.price-card .tier-sub { color: var(--muted); font-size: var(--text-sm); margin-top: .25rem; min-height: 2.6em; }
.price-card .price { margin: 1.3rem 0 .3rem; font-family: var(--display); font-size: 2.5rem; font-weight: 400; color: var(--plum); line-height: 1; letter-spacing: -.02em; }
.price-card .price .from { font-family: var(--body); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .4rem; }
.price-card .price .per { font-family: var(--body); font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card .feat { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .7rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.price-card .feat li { display: flex; gap: .65rem; align-items: flex-start; font-size: var(--text-sm); color: var(--ink-soft); }
.price-card .feat svg { width: 18px; height: 18px; color: var(--plum); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { margin-top: auto; }
.price-note { font-size: var(--text-sm); color: var(--muted); margin-top: 1.5rem; text-align: center; }

/* ---------- Talk cards (speaking) ---------------------------------------- */
.talk { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.talk:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.talk .talk-top { background: linear-gradient(150deg, var(--plum-deep), var(--plum)); padding: 1.6rem 1.8rem; color: var(--cream); }
.talk .talk-top .kicker { font-size: var(--text-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.talk .talk-top h3 { color: var(--white); font-size: 1.5rem; margin-top: .5rem; }
.talk .talk-body { padding: 1.6rem 1.8rem; }
.talk .talk-body > p { color: var(--muted); margin-bottom: 1.2rem; }
.talk dl { display: grid; gap: 1rem; }
.talk dt { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--plum); font-weight: 700; margin-bottom: .35rem; }
.talk dd { font-size: var(--text-sm); color: var(--ink-soft); }
.talk dd ul { display: flex; flex-direction: column; gap: .35rem; }
.talk dd li { display: flex; gap: .5rem; }
.talk dd li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: .6em; flex-shrink: 0; }

/* ---------- Testimonials -------------------------------------------------- */
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; height: 100%; }
.quote-card .mark { font-family: var(--display); font-size: 3rem; color: var(--plum); opacity: .25; line-height: .6; height: 1.4rem; }
.quote-card blockquote { font-size: 1.08rem; color: var(--ink); line-height: 1.6; flex: 1; }
.quote-card .who { margin-top: 1.4rem; display: flex; align-items: center; gap: .8rem; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--sand-deep), var(--gold-soft)); display: grid; place-items: center; font-family: var(--display); color: var(--plum); font-size: 1.1rem; flex-shrink: 0; }
.quote-card .who .nm { font-weight: 700; font-size: var(--text-sm); color: var(--ink); }
.quote-card .who .rl { font-size: var(--text-xs); color: var(--muted); }
.is-placeholder { border-style: dashed; border-color: var(--line-strong); background: rgba(255,255,255,.5); }
.is-placeholder .ph-tag { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--plum); font-weight: 700; }

/* ---------- Story / About ------------------------------------------------- */
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-photo { position: relative; }
.story-photo .frame { border-radius: var(--r-lg); aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow); }
.story-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.story-photo::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 46%; height: 46%; border-radius: var(--r-lg); background: var(--plum-dim); z-index: -1; }
.story-photo .ph-note { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: var(--text-sm); padding: 2rem; }
.prose p { margin-bottom: 1.2rem; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose .first-line { font-family: var(--display); font-size: var(--text-subhead); color: var(--ink); font-weight: 400; }
.pull { border-left: 3px solid var(--plum); padding-left: 1.4rem; font-family: var(--display); font-size: 1.5rem; line-height: 1.3; color: var(--ink); font-weight: 300; margin: 2rem 0; }

/* Bio block (copyable) */
.bio-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; }
.bio-block .bio-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.bio-block h4 { font-family: var(--body); font-weight: 700; font-size: var(--text-sm); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.bio-block .copy-btn { font-size: var(--text-xs); font-weight: 600; color: var(--plum); display: inline-flex; gap: .4rem; align-items: center; padding: .4rem .8rem; border: 1px solid var(--line); border-radius: var(--r-pill); transition: .25s var(--ease); }
.bio-block .copy-btn:hover { background: var(--plum); color: var(--white); border-color: var(--plum); }
.bio-block p { color: var(--ink-soft); font-size: var(--text-sm); }

/* ---------- Forms --------------------------------------------------------- */
.form-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.field label .req { color: var(--plum); }
.field input, .field select, .field textarea {
  font: inherit; font-size: var(--text-sm); color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); padding: .8rem .9rem; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--plum); background: var(--white); box-shadow: 0 0 0 4px var(--plum-dim); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #c0392b; }
.field .err { font-size: var(--text-xs); color: #c0392b; display: none; }
.field.show-err .err { display: block; }
.form-foot { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: var(--text-xs); color: var(--muted); }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--plum-dim); color: var(--plum); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success h3 { margin-bottom: .6rem; }
.form-success p { color: var(--muted); }
form.sending .btn[type="submit"] { opacity: .7; pointer-events: none; }
.config-warn { display: none; background: #fff7e6; border: 1px solid #f0d9a8; color: #7a5b1e; border-radius: var(--r-sm); padding: .7rem .9rem; font-size: var(--text-xs); margin-bottom: 1.2rem; }
.config-warn.show { display: block; }

/* ---------- Embeds -------------------------------------------------------- */
.embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--ink-deep); }
.embed.video { position: relative; aspect-ratio: 16/9; }
.embed.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed-ph { aspect-ratio: 16/9; display: grid; place-items: center; text-align: center; color: var(--muted-light); background: radial-gradient(120% 120% at 50% 0%, rgba(194,24,91,.18), transparent 60%), var(--ink-deep); border-radius: var(--r-lg); padding: 2rem; }
.embed-ph .play { width: 70px; height: 70px; border-radius: 50%; background: var(--plum); display: grid; place-items: center; margin: 0 auto 1rem; color: #fff; }
.calendly-embed { min-height: 660px; border-radius: var(--r-lg); overflow: hidden; }

/* ---------- CTA band ------------------------------------------------------ */
.cta-band { background: linear-gradient(135deg, var(--ink-deep), var(--ink-deeper)); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 60vw; height: 60vw; right: -15vw; top: -25vw; border-radius: 50%; background: radial-gradient(circle, rgba(194,24,91,.30), transparent 62%); }
.cta-band::after { content: ""; position: absolute; width: 40vw; height: 40vw; left: -12vw; bottom: -22vw; border-radius: 50%; background: radial-gradient(circle, rgba(190,154,87,.18), transparent 62%); }
.cta-band .narrow { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: var(--muted-light); margin: 1.1rem auto 2rem; max-width: 52ch; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer -------------------------------------------------------- */
.footer { background: var(--ink-deeper); color: var(--muted-light); padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem; }
.footer .wide { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer .brand { color: var(--cream); }
.footer-about p { margin-top: 1rem; font-size: var(--text-sm); max-width: 32ch; }
.footer h5 { font-family: var(--body); font-size: var(--text-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.1rem; }
.footer ul { display: flex; flex-direction: column; gap: .7rem; }
.footer a { font-size: var(--text-sm); transition: color .2s var(--ease); }
.footer a:hover { color: var(--cream); }
.footer-bottom { width: var(--wide); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line-light); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: var(--text-xs); color: rgba(250,245,239,.4); }
.footer-bottom a:hover { color: var(--cream); }

/* ---------- Scroll animations -------------------------------------------- */
[data-animate] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--delay, 0s); will-change: opacity, transform; }
[data-animate="left"]  { transform: translateX(-34px); }
[data-animate="right"] { transform: translateX(34px); }
[data-animate="fade"]  { transform: none; }
[data-animate="scale"] { transform: scale(.94); }
[data-animate].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card, .price-card, .talk { transition: none !important; }
}

/* Hero load-in */
.hero [data-load] { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease-out) forwards; }
.hero [data-load="1"]{ animation-delay:.05s } .hero [data-load="2"]{ animation-delay:.16s }
.hero [data-load="3"]{ animation-delay:.27s } .hero [data-load="4"]{ animation-delay:.38s }
.hero [data-load="5"]{ animation-delay:.5s }
.hero-photo[data-load] { transform: translateY(26px) scale(.97); }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero [data-load] { opacity: 1; transform: none; animation: none; } }

/* ---------- Utilities ----------------------------------------------------- */
.center { text-align: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}
.mb-0{margin-bottom:0}
.maxw-sm{max-width:48ch}.maxw-md{max-width:60ch}
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--plum); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200; }
.skip-link:focus { left: 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill-list li { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .5rem 1rem; font-size: var(--text-sm); color: var(--ink-soft); }
.section--sand .pill-list li, .section--cream .pill-list li { background: var(--white); }

/* ---------- Responsive ---------------------------------------------------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 100%; margin-inline: auto; }
  .hero-sub { max-width: 46ch; margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-photo { order: -1; margin-bottom: 1rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 420px; margin-inline: auto; }
  .footer .wide { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-band .wide { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-badge.tl { left: 0; } .hero-badge.br { right: 0; }
  .cred-strip .wide { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer .wide { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
}
