/* ═══════════════════════════════════════════════════
   OUR UNSEEN SCARS — our-unseen-scars.css
   Palette: Deep plum · Dusty mauve · Warm fog · Pale linen
   Type: Cormorant Garamond (display) + DM Sans (body)
   Signature: Fractured-glass CSS hero texture
   Audience: Hidden trauma survivors
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── TOKENS ────────────────────────────────────── */
:root {
  --plum:        #1A0A2E;
  --plum-mid:    #2E1A4A;
  --plum-lt:     #3D2660;
  --mauve:       #6B4E6B;
  --mauve-lt:    #9B7A9B;
  --fog:         #C4B8C4;
  --fog-lt:      #DDD4DD;
  --linen:       #F0EBF0;
  --linen-deep:  #E4DCE4;
  --white:       #FDFAFD;
  --ink:         #120820;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.75rem;
  --fs-3xl:  3.75rem;
  --fs-disp: clamp(3rem, 8vw, 7rem);

  --gut:   clamp(1.5rem, 5vw, 5rem);
  --max-w: 1280px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── CONTAINER ─────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--linen);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── CURSOR ────────────────────────────────────── */
.cur-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--mauve-lt);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
.cur-ring {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(107,78,107,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease);
}
.cur-dot.hov  { width: 14px; height: 14px; background: var(--fog); }
.cur-ring.hov { width: 44px; height: 44px; border-color: rgba(196,184,196,.5); }

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .5s var(--ease-std), padding .4s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(26,10,46,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 1rem; padding-bottom: 1rem;
  border-bottom-color: rgba(255,255,255,.06);
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196,184,196,.6);
  transition: color .2s;
}
.nav-back:hover { color: var(--fog-lt); }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--fog-lt);
  font-style: italic;
}
.nav-connect {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--mauve-lt);
  padding: .55rem 1.4rem;
  transition: background .2s, transform .2s;
}
.nav-connect:hover { background: var(--fog-lt); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: rgba(255,255,255,.4); }
.b-bar {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--fog-lt);
  transition: transform .35s var(--ease), opacity .25s, width .35s;
  transform-origin: center;
}
.nav-burger.open .b-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open .b-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open .b-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ───────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--plum);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem var(--gut);
}
.mob-menu.open { transform: translateX(0); }
.mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2.5rem;
}
.mob-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--fog-lt);
}
.mob-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(196,184,196,.6);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .2s, color .2s;
}
.mob-close:hover { border-color: var(--mauve-lt); color: var(--fog-lt); }
.mob-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mob-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(196,184,196,.75);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, padding-left .3s var(--ease);
  line-height: 1.2;
}
.mob-nav-link:hover { color: var(--fog-lt); padding-left: 1rem; }
.mob-foot {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 2rem;
}
.mob-back {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196,184,196,.4);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.mob-back:hover { color: var(--fog); }

/* ═══════════════════════════════════════════════
   HERO — fractured glass CSS texture signature
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--plum);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Deep atmospheric gradient */
.hero-atm {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(61,38,96,.8) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 80%, rgba(107,78,107,.25) 0%, transparent 55%),
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(18,8,32,1) 0%, transparent 70%);
  pointer-events: none;
}

/* Fractured glass — pure CSS SVG filter polygons — the signature element */
.hero-fracture {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .07;
}
.hero-fracture::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(23deg, transparent 45%, rgba(196,184,196,.6) 45.5%, transparent 46%),
    linear-gradient(67deg, transparent 30%, rgba(155,122,155,.4) 30.5%, transparent 31%),
    linear-gradient(142deg, transparent 55%, rgba(196,184,196,.5) 55.5%, transparent 56%),
    linear-gradient(198deg, transparent 25%, rgba(107,78,107,.5) 25.5%, transparent 26%),
    linear-gradient(312deg, transparent 60%, rgba(196,184,196,.3) 60.5%, transparent 61%),
    linear-gradient(78deg, transparent 70%, rgba(155,122,155,.4) 70.5%, transparent 71%);
}
.hero-fracture::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(255deg, transparent 40%, rgba(196,184,196,.3) 40.5%, transparent 41%),
    linear-gradient(167deg, transparent 65%, rgba(107,78,107,.4) 65.5%, transparent 66%),
    linear-gradient(34deg, transparent 35%, rgba(155,122,155,.25) 35.5%, transparent 36%),
    linear-gradient(289deg, transparent 50%, rgba(196,184,196,.35) 50.5%, transparent 51%);
}

/* Grain */
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  padding-bottom: 5rem;
}

.hero-kicker {
  opacity: 0;
  animation: fadeUp .9s var(--ease) .2s forwards;
  margin-bottom: 2rem;
}

.hero-kicker-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mauve-lt);
}
.hero-kicker-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mauve-lt);
  flex-shrink: 0;
}

.hero-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-disp);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.025em;
  color: var(--fog-lt);
  opacity: 0;
  animation: fadeUp 1s var(--ease) .4s forwards;
}
.hero-hl em {
  font-style: italic;
  font-weight: 400;
  color: var(--mauve-lt);
  display: block;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(196,184,196,.1);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .75s forwards;
}
.hero-desc {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(196,184,196,.65);
  line-height: 1.9;
}
.hero-desc strong { color: rgba(221,212,221,.9); font-weight: 400; }

.hero-promise {
  border-left: 1px solid rgba(107,78,107,.5);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.hero-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hero-promise-mark {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mauve-lt);
  flex-shrink: 0;
  margin-top: .55rem;
}
.hero-promise-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 400;
  color: rgba(196,184,196,.8);
  line-height: 1.4;
}

.hero-scroll {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}
.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(196,184,196,.3);
}
.hero-scroll-bar {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--mauve-lt), transparent);
  animation: pulse 2.5s ease-in-out infinite 1.5s;
}
@keyframes pulse { 0%,100%{opacity:.3;width:32px} 50%{opacity:.8;width:64px} }

/* ═══════════════════════════════════════════════
   TRUTH SECTION — what this actually is
═══════════════════════════════════════════════ */
.truth {
  background: var(--linen);
  padding: 7rem 0 6rem;
}
.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.truth-left {}
.truth-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.5rem;
}
.truth-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mauve);
}
.truth-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--plum);
  margin-bottom: 2rem;
}
.truth-hl em { font-style: italic; color: var(--mauve); }
.truth-p {
  font-size: var(--fs-md);
  font-weight: 300;
  color: #4A3A4A;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.truth-p strong { font-weight: 500; color: var(--plum); }

/* The "You are not alone" visual block */
.truth-right {
  position: relative;
}
.truth-statement-block {
  background: var(--plum);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.truth-statement-block::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(61,38,96,.8) 0%, transparent 60%);
  pointer-events: none;
}
.truth-statement-block::after {
  content: '"';
  position: absolute;
  right: 1rem; top: -1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(107,78,107,.15);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.truth-statement {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--fog-lt);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.truth-statement em {
  color: var(--mauve-lt);
  font-style: normal;
}
.truth-sub {
  margin-top: 2rem;
  font-size: var(--fs-sm);
  font-weight: 300;
  color: rgba(196,184,196,.5);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
}

/* ═══════════════════════════════════════════════
   WOUNDS — what we carry section
═══════════════════════════════════════════════ */
.wounds {
  background: var(--linen-deep);
  padding: 6rem 0;
  border-top: 1px solid #D8CED8;
  border-bottom: 1px solid #D8CED8;
}
.wounds-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.wounds-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.5rem;
}
.wounds-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mauve);
}
.wounds-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--plum);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.wounds-hl em { font-style: italic; color: var(--mauve); }

/* Wound cards — horizontal strips, NOT uniform card grid */
.wounds-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #D0C4D0;
}
.wound-strip {
  background: var(--linen);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 2.5rem;
  transition: background .25s var(--ease-std), opacity .6s var(--ease), transform .6s var(--ease);
  cursor: default;
  position: relative;
  overflow: visible;
}
.wound-strip::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--mauve-lt);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.wound-strip:hover { background: var(--white); }
.wound-strip:hover::before { transform: scaleY(1); }

.wound-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--plum-mid);
  border: 1px solid rgba(107,78,107,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .25s;
  color: var(--fog-lt);
}
.wound-strip:hover .wound-icon {
  background: var(--mauve);
  border-color: var(--mauve);
  transform: scale(1.05);
}

.wound-text {}
.wound-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: .35rem;
}
.wound-desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: #6A526A;
  line-height: 1.6;
}
.wound-truth {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--mauve-lt);
  text-align: right;
  width: 200px;
  min-width: 200px;
  line-height: 1.4;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(107,78,107,.2);
  align-self: center;
}

/* ═══════════════════════════════════════════════
   PATH — the 10% calling framework
═══════════════════════════════════════════════ */
.path {
  background: var(--plum-mid);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.path-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
  pointer-events: none;
}
.path-inner {
  position: relative; z-index: 1;
}
.path-head {
  max-width: 580px;
  margin-bottom: 4rem;
}
.path-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mauve-lt);
  margin-bottom: 1.5rem;
}
.path-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mauve-lt);
}
.path-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--fog-lt);
  line-height: 1.25;
  letter-spacing: -.015em;
}
.path-hl em { font-style: italic; color: var(--mauve-lt); }
.path-intro {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(196,184,196,.6);
  line-height: 1.85;
  margin-top: 1.25rem;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.path-step {
  background: rgba(26,10,46,.5);
  padding: 2.5rem 2rem;
  transition: background .25s;
  border-top: 2px solid transparent;
  transition: background .25s, border-color .25s;
}
.path-step:hover {
  background: rgba(46,26,74,.7);
  border-top-color: var(--mauve-lt);
}
.path-step-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196,184,196,.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.path-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--fog-lt);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.path-step-desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: rgba(196,184,196,.55);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   ERIC — personal section
═══════════════════════════════════════════════ */
.eric {
  background: var(--linen);
  padding: 6rem 0;
  border-top: 1px solid #D8CED8;
}
.eric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.eric-left {}
.eric-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.5rem;
}
.eric-tag::before { content: ''; width: 24px; height: 1px; background: var(--mauve); }
.eric-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--plum);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin-bottom: 1.5rem;
}
.eric-hl em { font-style: italic; color: var(--mauve); }
.eric-p {
  font-size: var(--fs-md);
  font-weight: 300;
  color: #4A3A4A;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.eric-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--plum);
  border-left: 2px solid var(--mauve-lt);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   CONNECT — reach out section
═══════════════════════════════════════════════ */
.connect {
  background: var(--plum);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.connect-atm {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(61,38,96,.6) 0%, transparent 70%);
  pointer-events: none;
}
.connect-inner {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.connect-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mauve-lt);
  margin-bottom: 1.5rem;
  justify-content: center;
}
.connect-tag::before { content: ''; width: 24px; height: 1px; background: var(--mauve-lt); }
.connect-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fog-lt);
  line-height: 1.25;
  letter-spacing: -.015em;
  margin-bottom: 1.5rem;
}
.connect-hl em { font-style: normal; color: var(--mauve-lt); }
.connect-sub {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(196,184,196,.55);
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Netlify form */
.connect-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(196,184,196,.5);
}
.form-input,
.form-textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--fog-lt);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 300;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;

  min-height: 120px; resize: vertical;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(196,184,196,.25);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--mauve-lt);
  background: rgba(255,255,255,.08);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  background: var(--mauve-lt);
  color: var(--plum);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .06em;
  border: 2px solid var(--mauve-lt);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--fog-lt);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
}
.form-submit:hover::before { transform: none; }
.form-submit:hover { border-color: var(--fog-lt); }
.form-submit span, .form-submit svg { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(196,184,196,.5);
}
.footer-back {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196,184,196,.35);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.footer-back:hover { color: var(--mauve-lt); }
.footer-copy {
  font-size: .75rem;
  color: rgba(196,184,196,.18);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.rev.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .truth-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .eric-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .path-steps  { grid-template-columns: repeat(2, 1fr); }
  
  .wound-truth { display: none; }
  .hero-split  { grid-template-columns: 1fr; gap: 2rem; }
  .hero-promise { border-left: none; border-top: 1px solid rgba(107,78,107,.3); padding-left: 0; padding-top: 1.5rem; }
  .form-row    { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --gut: 1.25rem; }
  body  { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
  .nav-connect { display: none; }
  .nav-burger  { display: flex; }
  body.mob-open { overflow: hidden; }

  .hero-inner  { padding-top: 100px; padding-bottom: 3rem; }
  .hero-hl     { font-size: clamp(2.5rem, 14vw, 4rem); }
  .truth       { padding: 4rem 0; }
  .wounds      { padding: 4rem 0; }
  .wound-strip { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .wound-icon  { width: 40px; height: 40px; font-size: 1rem; }
  .path        { padding: 4rem 0; }
  .path-steps  { grid-template-columns: 1fr; }
  .eric        { padding: 4rem 0; }
  .connect     { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-hl { font-size: clamp(2.25rem, 16vw, 3rem); }
  .truth-statement-block { padding: 2rem; }
}

/* Wound strip stagger — JS-toggled visibility class */
.wound-hidden { opacity: 0; transform: translateX(-8px); }

