/* ================================================================
   GenHERosity — stylesheet
   BUILD: 2026-04-22b — real alternating ground rhythm
   Editorial, warm, intentional. One cream ground, navy type,
   purple and blue accents pulled straight from the logo.
   ================================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Seravek";
  src: url("/fonts/Seravek-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Seravek";
  src: url("/fonts/Seravek-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Seravek";
  src: url("/fonts/Seravek-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Seravek";
  src: url("/fonts/Seravek-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy: #1a2d4f;
  --navy-deep: #13172b;
  --purple: #5b4f9c;
  --purple-deep: #463a82;
  --blue: #3fb5e8;
  --blue-deep: #1e6bae;

  /* Ground */
  --cream: #f7f2ea;
  --cream-deep: #efe7d8;
  --ivory: #fbf7ef;
  --paper-shadow: rgba(19, 23, 43, 0.06);

  /* Ink */
  --ink: #13172b;
  --ink-soft: #2d3352;
  --ink-mute: #6e6a5e;
  --ink-quiet: #a19b8d;
  --hair: rgba(19, 23, 43, 0.12);

  /* Type */
  --sans: "Seravek", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Apple Garamond", "Palatino",
    serif;

  /* Rhythm */
  --pad-x: clamp(1.25rem, 4vw, 3.5rem);
  --pad-y: clamp(2rem, 5vw, 4rem);
  --maxw: 1280px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* ---------- Body ---------- */
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay — warm paper texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  z-index: 100;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.09  0 0 0 0 0.17  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Typography primitives ---------- */
.ital {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--purple);
}
.hl-her,
.hl {
  color: var(--purple);
  font-weight: 500;
}

/* ---------- Layout helpers ---------- */
.section-head {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--purple);
  letter-spacing: 0.04em;
  padding-top: 0.65rem;
  flex-shrink: 0;
  position: relative;
}
.section-num::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 2.5rem;
  height: 1px;
  background: var(--purple);
  opacity: 0.4;
}
.section-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(2rem, 5.6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--navy);
  max-width: 20ch;
}

/* ==================================================================
   NAV
   ================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem var(--pad-x);
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav__mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav__wordmark {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-transform: lowercase;
}
.nav__wordmark .her {
  color: var(--purple);
  font-weight: 500;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
}
.nav__links a {
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover {
  color: var(--purple);
}
.nav__cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  background: var(--navy);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--purple);
}

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--hair);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s, background 0.2s;
}
.nav__burger:hover {
  border-color: var(--navy);
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 5rem var(--pad-x) 3rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.drawer[hidden] {
  display: none;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.drawer__nav a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hair);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer__nav a:hover,
.drawer__nav a:active {
  color: var(--purple);
  padding-left: 0.5rem;
}
.drawer__cta {
  align-self: flex-start;
  margin-bottom: 1.5rem;
}
.drawer__email {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple);
  font-size: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hair);
}
body.drawer-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
    justify-self: end;
  }
}

/* ==================================================================
   BUTTONS
   ================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform 0.15s ease, background 0.2s, color 0.2s,
    box-shadow 0.2s;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 6px 20px -8px rgba(19, 23, 43, 0.4);
}
.btn--primary:hover {
  background: var(--purple);
  box-shadow: 0 10px 28px -10px rgba(91, 79, 156, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--hair);
}
.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--lg {
  padding: 1.15rem 1.8rem;
  font-size: 1.05rem;
}
.btn--submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ==================================================================
   HERO
   ================================================================== */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad-x) 0;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0 clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  overflow: hidden;
}
.hero__content {
  grid-column: 1;
  position: relative;
  z-index: 1;
}

.hero__mesh {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(63, 181, 232, 0.28),
      transparent 45%
    ),
    radial-gradient(
      circle at 92% 72%,
      rgba(91, 79, 156, 0.2),
      transparent 40%
    ),
    radial-gradient(
      circle at 8% 88%,
      rgba(26, 45, 79, 0.08),
      transparent 40%
    );
  filter: blur(30px);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1.2rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: var(--purple);
  box-shadow:
    0 6px 22px -6px rgba(91, 79, 156, 0.5),
    0 0 0 0 rgba(91, 79, 156, 0.45);
  animation: badge-breathe 3.2s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
  cursor: pointer;
}
.hero__eyebrow:hover {
  transform: translateY(-1px);
  background: var(--purple-deep);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(63, 181, 232, 0.3);
  animation: dot-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badge-breathe {
  0%, 100% {
    box-shadow:
      0 6px 22px -6px rgba(91, 79, 156, 0.5),
      0 0 0 0 rgba(91, 79, 156, 0.45);
  }
  50% {
    box-shadow:
      0 9px 28px -6px rgba(91, 79, 156, 0.6),
      0 0 0 14px rgba(91, 79, 156, 0);
  }
}
@keyframes dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(63, 181, 232, 0.3);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(63, 181, 232, 0.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__eyebrow .dot {
    animation: none;
  }
}

.hero__headline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.25rem, 6.6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--navy);
  max-width: 14ch;
  hanging-punctuation: first last;
}
.hero__headline .ital {
  font-size: 0.98em;
  display: inline-block;
  transform: translateY(0.02em);
}

.hero__lede {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 2rem;
}

.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__logo-display {
  grid-column: 2;
  position: relative;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-display::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(63, 181, 232, 0.14),
    transparent 62%
  );
}
.hero__mark {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(30, 107, 174, 0.18));
  animation: gentle-float 8s ease-in-out infinite;
}
@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.marquee {
  grid-column: 1 / -1;
  margin: clamp(2rem, 4vw, 3rem) calc(-1 * var(--pad-x)) 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--cream),
    transparent
  );
}
.marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--cream),
    transparent
  );
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--navy);
  font-weight: 400;
}
.marquee__track span:not(.marquee__dot) {
  padding: 0 0.5rem;
}
.marquee__dot {
  color: var(--purple);
  font-style: normal;
  font-family: var(--sans);
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
    align-items: start;
  }
  .hero__content {
    grid-column: 1;
    order: 2;
  }
  .hero__logo-display {
    grid-column: 1;
    order: 1;
    max-width: 140px;
    margin: 0 auto 0.25rem;
    padding: 0.25rem;
  }
  .hero__mark {
    max-width: 120px;
  }
  .marquee {
    order: 3;
  }
}

/* ==================================================================
   ABOUT
   ================================================================== */
.about {
  padding: var(--pad-y) 0;
  background: var(--cream-deep);
}
.about__grid {
  max-width: var(--maxw);
  margin: 2rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.about__col--lede {
  grid-column: 1 / 2;
}
.about__col--body {
  grid-column: 2 / 3;
}
.about__col p {
  margin: 0 0 1.2rem;
}
.lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 !important;
}
.lede em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple);
  font-weight: 400;
}
.about__col--body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}
.about__col--body em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple);
  font-weight: 500;
}

.pullquote {
  grid-column: 1 / -1;
  margin: 1.5rem auto 0;
  max-width: 70ch;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.pullquote::before {
  content: "✺";
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-deep);
  padding: 0 0.8rem;
  color: var(--purple);
  font-size: 1.2rem;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}
.pullquote footer {
  font-size: 0.95rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__col--lede,
  .about__col--body {
    grid-column: 1;
  }
}

/* ==================================================================
   PILLARS
   ================================================================== */
.pillars {
  padding: var(--pad-y) 0;
  background: var(--cream);
  position: relative;
}
.pillars__grid {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.her-inline {
  text-transform: lowercase;
}
.her-inline .hl {
  color: var(--purple);
  font-weight: 500;
}
.pillar {
  background: var(--ivory);
  padding: 2.5rem 2rem 2.2rem;
  border-radius: 20px;
  border: 1px solid var(--hair);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -24px rgba(26, 45, 79, 0.28);
}
.pillar--feature {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.pillar--feature .pillar__num {
  color: var(--blue);
}
.pillar--feature .pillar__title {
  color: var(--ivory);
}
.pillar--feature .pillar__body {
  color: rgba(251, 247, 239, 0.85);
}
.pillar--feature .pillar__list {
  border-top-color: rgba(251, 247, 239, 0.18);
}
.pillar--feature .pillar__list li {
  color: rgba(251, 247, 239, 0.78);
  border-bottom-color: rgba(251, 247, 239, 0.14);
}
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.pillar__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  color: var(--navy);
}
.pillar__body {
  color: var(--ink-soft);
  margin: 0 0 1.8rem;
  line-height: 1.6;
}
.pillar__list {
  list-style: none;
  padding: 1rem 0 0;
  margin: auto 0 0;
  border-top: 1px solid var(--hair);
  font-size: 0.95rem;
}
.pillar__list li {
  padding: 0.5rem 0;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--hair);
}
.pillar__list li:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==================================================================
   COHORT
   ================================================================== */
.cohort {
  padding: var(--pad-y) var(--pad-x);
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
/* Subtle top-edge feather so the cream nav doesn't slam into navy */
.cohort::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to bottom,
    rgba(19, 23, 43, 0.4),
    transparent
  );
  pointer-events: none;
  z-index: 2;
}
.cohort::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(63, 181, 232, 0.28),
      transparent 50%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(91, 79, 156, 0.25),
      transparent 45%
    );
  pointer-events: none;
}
.cohort__inner {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.cohort__badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(251, 247, 239, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  background: rgba(63, 181, 232, 0.08);
}
.cohort__title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  color: var(--ivory);
}
.cohort__title .ital {
  color: var(--blue);
}
.cohort__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  max-width: 58ch;
  margin: 0 auto 3rem;
  color: rgba(251, 247, 239, 0.82);
  line-height: 1.6;
}
.cohort__lede strong {
  font-weight: 500;
  color: var(--ivory);
}
.cohort__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0 auto 3rem;
  max-width: 900px;
  border-top: 1px solid rgba(251, 247, 239, 0.15);
  border-bottom: 1px solid rgba(251, 247, 239, 0.15);
  padding: 1.75rem 0;
}
.cohort__feature {
  text-align: center;
  padding: 0.25rem 0.5rem;
  border-right: 1px solid rgba(251, 247, 239, 0.12);
}
.cohort__feature:last-child {
  border-right: none;
}
.cohort__feature-k {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}
.cohort__feature-v {
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.3;
}
.cohort__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cohort .btn--primary {
  background: var(--ivory);
  color: var(--navy);
}
.cohort .btn--primary:hover {
  background: var(--blue);
  color: var(--ivory);
}
.cohort__note {
  font-size: 0.88rem;
  color: rgba(251, 247, 239, 0.6);
  margin: 0;
  max-width: 40ch;
}

@media (max-width: 700px) {
  .cohort__features {
    grid-template-columns: repeat(2, 1fr);
  }
  .cohort__feature {
    padding: 0.75rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(251, 247, 239, 0.12);
  }
  .cohort__feature:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* ==================================================================
   JOURNEY
   ================================================================== */
.journey {
  padding: var(--pad-y) 0;
  background: var(--cream-deep);
}
.journey__list {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0;
  max-width: var(--maxw);
  padding: 0 var(--pad-x);
  counter-reset: step;
}
.journey__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: 1.75rem 0;
  border-top: 1px solid var(--hair);
  align-items: start;
  transition: background 0.3s ease;
  position: relative;
}
.journey__item:last-child {
  border-bottom: 1px solid var(--hair);
}
.journey__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.journey__item:hover::after {
  transform: scaleX(1);
}
.journey__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--purple);
  letter-spacing: 0.02em;
  padding-top: 0.3rem;
}
.journey__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--navy);
  max-width: 22ch;
}
.journey__body {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 54ch;
  margin: 0;
}

@media (max-width: 700px) {
  .journey__item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ==================================================================
   FOR HER
   ================================================================== */
.for-her {
  padding: var(--pad-y) var(--pad-x);
  background: var(--purple);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.for-her::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to bottom,
    rgba(19, 23, 43, 0.35),
    transparent
  );
  pointer-events: none;
  z-index: 2;
}
.for-her::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 1px 1px,
      rgba(251, 247, 239, 0.1) 1px,
      transparent 0
    );
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}
.for-her__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.for-her__title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 3rem;
  color: var(--ivory);
}
.for-her__title .hl-her {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory);
  background: rgba(251, 247, 239, 0.15);
  padding: 0 0.2em;
  border-radius: 0.08em;
  font-weight: 400;
}
.for-her__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem clamp(2rem, 5vw, 5rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: rgba(251, 247, 239, 0.92);
}
.for-her__grid p {
  margin: 0;
  padding: 1rem 0 1rem;
  border-top: 1px solid rgba(251, 247, 239, 0.18);
}

@media (max-width: 700px) {
  .for-her__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==================================================================
   CONTACT
   ================================================================== */
.contact {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact__intro .section-num {
  display: inline-block;
  padding-top: 0;
  margin-bottom: 1rem;
}
.contact__intro .section-num::after {
  top: 1.5em;
}
.contact__intro .section-title {
  margin-top: 1.5rem;
}
.contact__lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 1.5rem 0 2.5rem;
}
.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
}
.contact__meta div {
  border-top: 1px solid var(--hair);
  padding-top: 1rem;
}
.contact__meta dt {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.contact__meta dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.contact__meta a {
  border-bottom: 1px solid var(--hair);
  transition: border-color 0.2s, color 0.2s;
}
.contact__meta a:hover {
  color: var(--purple);
  border-color: var(--purple);
}

/* Form */
.contact__form {
  background: var(--ivory);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: 20px;
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hair);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  font-size: 1rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 79, 156, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235B4F9C' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

@media (max-width: 800px) {
  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact__form,
  .contact__intro {
    min-width: 0;
  }
  .contact__form select,
  .contact__form input,
  .contact__form textarea {
    max-width: 100%;
  }
}

/* ==================================================================
   FOOTER
   ================================================================== */
.footer {
  background: var(--navy-deep);
  color: rgba(251, 247, 239, 0.72);
  padding: 4rem var(--pad-x) 2rem;
  font-size: 0.95rem;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 247, 239, 0.12);
}
.footer__brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer__mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.footer__wordmark {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ivory);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}
.footer__wordmark .her {
  color: var(--blue);
  font-weight: 500;
}
.footer__tag {
  margin: 0.4rem 0 0;
  color: rgba(251, 247, 239, 0.55);
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.4;
}
.footer__tag em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blue);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav a {
  color: rgba(251, 247, 239, 0.7);
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: var(--blue);
}
.footer__k {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blue);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.footer__contact a {
  display: block;
  color: var(--ivory);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(251, 247, 239, 0.2);
  padding-bottom: 0.3rem;
  max-width: max-content;
  transition: color 0.2s, border-color 0.2s;
}
.footer__contact a:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.footer__contact address {
  font-style: normal;
  color: rgba(251, 247, 239, 0.6);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(251, 247, 239, 0.5);
  font-size: 0.85rem;
}
.footer__bottom p {
  margin: 0;
}

@media (max-width: 700px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem 1rem;
  }
}

/* ==================================================================
   DISTINCTIVES
   ================================================================== */
.distinctives {
  padding: var(--pad-y) 0;
}
.distinctives__grid {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.distinctive {
  padding: 2.25rem 2rem 2rem;
  border-left: 1px solid var(--hair);
  position: relative;
  transition: background 0.3s ease;
}
.distinctive:first-child {
  padding-left: 0;
  border-left: none;
}
.distinctive::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 3rem;
  width: 1px;
  background: var(--purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.distinctive:hover::before {
  opacity: 1;
}
.distinctive:first-child::before {
  display: none;
}
.distinctive__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--navy);
}
.distinctive__body {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}
.distinctive__body em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple);
  font-weight: 500;
}

@media (max-width: 800px) {
  .distinctives__grid {
    grid-template-columns: 1fr;
  }
  .distinctive {
    border-left: none;
    border-top: 1px solid var(--hair);
    padding: 1.75rem 0;
  }
  .distinctive:first-child {
    padding-top: 1.75rem;
  }
}

/* ==================================================================
   MOTION / REVEAL
   ================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus visibility — for actual interactive elements only */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 6px;
}
/* Sections get focus briefly when smooth-scrolled to (for screen readers),
   but they aren't interactive, so suppress the visible ring on them. */
section:focus,
section:focus-visible,
[id]:is(section, div):focus,
[id]:is(section, div):focus-visible {
  outline: none;
}
