:root {
  color-scheme: light;
  --ink: #241721;
  --ink-soft: #493441;
  --muted: #746771;
  --paper: #fff8fb;
  --surface: #ffffff;
  --line: rgba(91, 55, 81, 0.15);
  --lotus: #c33f77;
  --lotus-deep: #882f5b;
  --petal: #f7c6dc;
  --blush: #fde9f1;
  --lila: #e7dcf1;
  --moss: #677d61;
  --moss-deep: #5c7056;
  --teal: #477988;
  --clay: #bb725f;
  --gold: #bb9148;
  --shadow: 0 24px 70px rgba(80, 47, 69, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  color: #fff;
  background: var(--lotus);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a,
input {
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 248, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.button,
footer {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 11px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--lotus);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 0.78rem;
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  gap: clamp(8px, 1.2vw, 18px);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

nav a {
  opacity: 0.84;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

.header-action {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.header-action:hover,
.header-action:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.site-header.is-solid .header-action:hover,
.site-header.is-solid .header-action:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Bot trap: hidden from people but still submitted, so it must not be
   display:none (some bots skip those) nor reachable by keyboard. */
  .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Shown only in the narrow layout, where the nav collapses into a panel. */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: inherit;
  background: none;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 6vw, 84px) clamp(58px, 8vw, 96px);
  background: #262024;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(37, 17, 31, 0.84) 0%, rgba(37, 17, 31, 0.48) 50%, rgba(37, 17, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(37, 17, 31, 0.62) 0%, rgba(37, 17, 31, 0.04) 54%);
}

.hero-content {
  position: relative;
  width: min(880px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: #f8c8dc;
}

.section-kicker {
  color: var(--lotus);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4.1rem, 10vw, 8.6rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--lotus);
  border-color: var(--lotus);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible,
.need-card:hover,
.need-card:focus-visible,
.content-card:hover,
.content-card:focus-visible,
.journey-card:hover,
.journey-card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.play-dot {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.manifesto,
.needs-band,
.journey-band,
.profile-band,
.content-band,
.newsletter-band,
.closing {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 6vw, 84px);
}

.manifesto,
.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: calc(var(--max) + 168px);
  margin: 0 auto;
}

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-list {
  display: grid;
  gap: 14px;
  align-self: end;
}

.manifesto-list p {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.section-head p,
.profile-card p,
.journey-card p,
.content-band p,
.newsletter-band p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.74;
}

.needs-band,
.profile-band {
  background: #fff;
}

.journey-band {
  background: var(--paper);
}

.needs-grid,
.journey-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.need-card,
.journey-card,
.content-card {
  min-height: 230px;
  padding: clamp(22px, 3.5vw, 36px);
  background: #fff;
}

.need-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
}

.need-card:nth-child(2) span {
  background: var(--clay);
}

.need-card:nth-child(3) span {
  background: var(--teal);
}

.need-card:nth-child(4) span {
  background: var(--lotus-deep);
}

.need-card:nth-child(5) span {
  background: var(--gold);
}

.need-card:nth-child(6) span {
  background: var(--ink-soft);
}

.need-card p,
.journey-card p,
.content-card p {
  margin-bottom: 0;
}

.journey-grid {
  gap: 18px;
  background: transparent;
  border: 0;
}

.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(80, 47, 69, 0.08);
}

.journey-label {
  margin-bottom: 16px;
  color: var(--lotus-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.journey-card li::marker {
  color: var(--lotus);
}

.journey-card a {
  display: inline-flex;
  color: var(--lotus-deep);
  font-weight: 900;
  line-height: 1.4;
}

.view-all-link {
  margin-top: auto;
  overflow-wrap: anywhere;
}

/* Stretched link: the whole card is the hit area, but the card stays an
   <article> with a single anchor, so the accessible name is just the link
   text rather than every bullet in the card. */
.view-all-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.content-grid {
  gap: 18px;
  background: transparent;
  border: 0;
}

.content-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(80, 47, 69, 0.08);
}

.content-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-card div {
  padding: 22px;
}

.newsletter-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.checkbox-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 198, 220, 0.58), rgba(255, 255, 255, 0.95) 44%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card h2,
.profile-card p,
.profile-card .section-kicker {
  position: relative;
}

.profile-card p {
  max-width: 760px;
  margin-top: 22px;
}

.profile-video {
  position: relative;
  max-width: 760px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.profile-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lotus-mark {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(12px, 4vw, 42px);
  width: 180px;
  height: 130px;
  opacity: 0.18;
}

.lotus-mark,
.lotus-mark::before,
.lotus-mark::after {
  border-radius: 60% 60% 20% 20%;
  background: var(--lotus);
  transform-origin: bottom center;
}

.lotus-mark::before,
.lotus-mark::after {
  content: "";
  position: absolute;
  inset: 0;
}

.lotus-mark::before {
  transform: rotate(-34deg);
}

.lotus-mark::after {
  transform: rotate(34deg);
}

.content-band {
  background: var(--paper);
}

.newsletter-band {
  align-items: center;
  background: #fff;
}

.newsletter-form {
  box-shadow: none;
}

.newsletter-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

/* The band behind this note is white, so the colour has to clear AA on white
   rather than on the dark section this rule was first written against. At
   0.9rem this is not WCAG "large text", so the full 4.5:1 applies; --moss
   itself only reaches 4.48:1, hence the darker token. */
.newsletter-note.is-success {
  color: var(--moss-deep);
  font-weight: 800;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--lila);
  color: var(--ink);
}

/* --lotus reaches only 3.70:1 on --lila; --lotus-deep gets 6.11:1. */
.closing .section-kicker {
  color: var(--lotus-deep);
}

.closing > div {
  display: grid;
  gap: 18px;
}

.closing p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.closing .button {
  white-space: nowrap;
}

footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 84px);
  color: var(--muted);
  font-size: 0.9rem;
}

.collab-page {
  background: #fff;
}

.collab-page .site-header {
  position: sticky;
}

.collab-hero {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 6vw, 84px);
}

.collab-hero {
  max-width: calc(var(--max) + 168px);
  margin: 0 auto;
  padding-top: clamp(86px, 10vw, 140px);
}

.collab-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(3rem, 7.8vw, 7rem);
}

.collab-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.68;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  nav {
    position: absolute;
    top: 100%;
    right: clamp(18px, 4vw, 54px);
    left: clamp(18px, 4vw, 54px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 248, 251, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    font-size: 0.96rem;
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
    opacity: 1;
  }

  nav a:hover,
  nav a:focus-visible {
    background: var(--blush);
  }

  .needs-grid,
  .journey-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto,
  .newsletter-band,
  .closing {
    grid-template-columns: 1fr;
  }

  .closing .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-block: 14px;
  }

  .brand-name {
    max-width: 44vw;
  }

  .header-action {
    padding-inline: 13px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 96px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(37, 17, 31, 0.82) 0%, rgba(37, 17, 31, 0.34) 100%),
      linear-gradient(0deg, rgba(37, 17, 31, 0.68) 0%, rgba(37, 17, 31, 0.08) 54%);
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
  }

  .button {
    width: 100%;
  }

  .needs-grid,
  .journey-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .need-card,
  .journey-card,
  .content-card {
    min-height: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
