/* Equinox College Consulting
   Values transcribed from the design references (Equinox Site.dc.html,
   Privacy Policy.dc.html). Do not tune these by eye. */

:root {
  --amber: #E9A23B;
  --navy: #101B2E;
  --page: #FAFAF8;
  --cream: #F5EFE3;

  --body-muted: rgba(16, 27, 46, 0.8);
  --caption: rgba(16, 27, 46, 0.65);
  --hairline: rgba(16, 27, 46, 0.18);
  --field-border: rgba(16, 27, 46, 0.3);

  --on-navy: #F5EFE3;
  --on-navy-muted: rgba(245, 239, 227, 0.8);

  --display: 'Schibsted Grotesk', sans-serif;
  --body: 'Hanken Grotesk', sans-serif;
  --serif: 'Instrument Serif', serif;
  --mono: ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 120px);
  --band-y: clamp(72px, 10vw, 130px);
}

/* ---------- base ---------- */

html {
  scroll-behavior: smooth;
  /* Keeps anchor targets clear of the sticky nav. */
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--navy);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); }
a:hover { color: var(--navy); }

img { max-width: 100%; }

/* Must outrank the class-level `display` on .form and friends, otherwise the
   hidden attribute silently does nothing. */
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */

.btn {
  font-family: var(--display);
  font-weight: 700;
  color: var(--amber);
  background: var(--navy);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.88;
  color: var(--amber);
}

.btn--sm { font-size: 15px; padding: 12px 22px; }
.btn--lg { font-size: 17px; padding: 17px 32px; }

.btn--form {
  align-self: flex-start;
  font-size: 16px;
  padding: 15px 30px;
  cursor: pointer;
}

.btn--form[disabled] { cursor: default; opacity: 0.7; }

.btn--sticky {
  flex: 1;
  text-align: center;
  font-size: 16px;
  padding: 14px;
}

/* Amber-underlined inline link. */
.link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Navy block behind an amber italic serif phrase. */
.block-em {
  display: inline-block;
  background: var(--navy);
  padding: 0.04em 0.24em 0.14em 0.16em;
}

.serif-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--amber);
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav.is-scrolled {
  background: var(--page);
  box-shadow: inset 0 -1px 0 rgba(16, 27, 46, 0.15);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(90deg, #101B2E 50%, #F5EFE3 50%);
  display: inline-block;
}

.brand__word {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}

/* Contents, not a box: the links share the parent's gap. */
.nav__links { display: contents; }

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

/* ---------- hero ---------- */

.hero { background: var(--amber); }

.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(64px, 8vw, 110px);
}

.hero__copy {
  flex: 1.25;
  min-width: min(100%, 440px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.hero__title .block-em { margin-top: 0.12em; }
.hero__title .serif-em { letter-spacing: -0.02em; }

.hero__sub {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--navy);
  max-width: 460px;
}

.hero__sub strong { font-weight: 700; }

.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__note {
  font-size: 14px;
  color: rgba(16, 27, 46, 0.7);
}

.hero__media {
  flex: 1;
  min-width: min(100%, 320px);
  display: flex;
  justify-content: center;
}

/* ---------- video placeholder ---------- */

.video-card {
  transform: rotate(3deg);
  background: var(--navy);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(16, 27, 46, 0.35);
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 440px;
}

.video-card__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  color: #9aa5b8;
}

.video-card__rec {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  color: #9aa5b8;
}

.video-card__rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.video-card__screen {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin: 14px 0;
}

/* Scanlines sit on top of the footage, not behind it. */
.video-card__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
}

.video-card__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--navy);
}

.video-card__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__triangle {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #101B2E;
  margin-left: 5px;
}

.video-card__quote {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.video-card__caption {
  font-family: var(--mono);
  font-size: 11px;
  color: #8b96aa;
  letter-spacing: 0.14em;
  text-align: center;
}

.video-card__chip {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--navy);
  background: var(--cream);
  padding: 9px 18px;
  border-radius: 99px;
  letter-spacing: 0.08em;
}

/* ---------- price contrast ---------- */

.contrast { background: var(--navy); }

.contrast__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--band-y) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 56px);
  text-align: center;
}

.contrast__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-wrap: pretty;
}

.contrast__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.contrast__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.contrast__row--ours { gap: 10px; }

.contrast__figure {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.contrast__figure--ours {
  font-size: clamp(96px, 13vw, 160px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--amber);
}

.contrast__label {
  font-size: 16px;
  color: rgba(245, 239, 227, 0.7);
  max-width: 480px;
}

.contrast__label--ours {
  font-size: 17px;
  color: rgba(245, 239, 227, 0.85);
}

.contrast__foot {
  margin: 0;
  padding-top: 36px;
  border-top: 1px solid rgba(245, 239, 227, 0.2);
  font-size: 18px;
  line-height: 1.6;
  color: var(--cream);
  max-width: 560px;
}

/* ---------- shared section furniture ---------- */

.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-title--wrap { text-wrap: pretty; }

.section-note {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: var(--navy);
}

.item-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--amber);
  line-height: 1;
}

.item-title {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.item-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-muted);
}

/* ---------- how it works ---------- */

.how { background: var(--page); }

.how__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- six sessions ---------- */

.included { background: var(--page); }

.included__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.included__title {
  line-height: 1.08;
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}

.card:hover { background: #FBF3E1; }

/* ---------- everything around them ---------- */

.extras { background: var(--cream); }

.extras__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.extras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px 56px;
}

.extra { display: flex; gap: 14px; }

.extra__dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 7px;
}

.extra__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-muted);
}

.extra__text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

/* ---------- founders ---------- */

.who { background: var(--page); }

.who__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder__photo {
  width: 100%;
  height: 400px;
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 14px;
  display: block;
}

.founder__rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin: 20px 0 16px;
}

.founder__name {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.founder__role {
  font-size: 15px;
  font-weight: 600;
  color: var(--caption);
  margin: 6px 0 12px;
}

.founder__bio {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-muted);
}

.who__pull-wrap {
  display: flex;
  justify-content: center;
}

.who__pull {
  margin: 0;
  display: inline-block;
  background: var(--navy);
  padding: 22px 32px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--cream);
  max-width: 640px;
  text-align: center;
  text-wrap: pretty;
}

/* ---------- what we don't promise ---------- */

.promise { background: var(--navy); }

.promise__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--band-y) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.promise__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-wrap: pretty;
}

.promise__p {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(245, 239, 227, 0.85);
}

.promise__p--bright { color: var(--cream); }
.promise__p strong { font-weight: 700; }

/* ---------- pricing ---------- */

.pricing { background: var(--page); }

.pricing__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing__title { margin: 0 0 24px; }

.banner {
  background: var(--amber);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.banner__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner__kicker {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.banner__price {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
}

.banner__note {
  font-size: 17px;
  color: rgba(16, 27, 46, 0.75);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.tier {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier--sticker { position: relative; }

.tier__sticker {
  position: absolute;
  top: -14px;
  right: -8px;
  transform: rotate(-3deg);
  background: var(--amber);
  color: var(--navy);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(16, 27, 46, 0.15);
}

.tier__title {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.tier__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(16, 27, 46, 0.75);
}

.need {
  background: var(--cream);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.need__title {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.need__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-muted);
}

.need__body--strong {
  color: var(--navy);
  max-width: 640px;
}

/* ---------- FAQ ---------- */

.faq { background: var(--page); }

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-y);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
}

.faq__item { border-bottom: 1px solid var(--hairline); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--navy);
}

.faq__q-text {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.faq__icon {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  flex: none;
}

.faq__a {
  margin: 0;
  padding: 0 40px 24px 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-muted);
}

/* ---------- contact ---------- */

.contact { background: var(--page); }

.contact__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-y);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact__lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-muted);
}

.contact__sent {
  margin: 0;
  background: var(--cream);
  border-radius: 12px;
  padding: 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--field-border);
  border-radius: 8px;
  /* 16px minimum: anything smaller triggers iOS focus zoom. */
  font-size: 16px;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
}

.field textarea { resize: vertical; }

/* Honeypot. Bots fill it, people never see it. */
.form__honeypot { display: none; }

.form__error {
  margin: 0;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- final CTA ---------- */

.final { background: var(--amber); }

.final__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.final__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
  text-wrap: pretty;
}

.final__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(16, 27, 46, 0.75);
}

/* ---------- footer ---------- */

.footer { background: var(--navy); }

.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #E9A23B 50%, #F5EFE3 50%);
  display: inline-block;
}

.footer__word {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--cream);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.footer__links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__email {
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
}

.footer__email:hover { color: var(--cream); }

.footer__privacy {
  font-size: 14px;
  color: rgba(245, 239, 227, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__privacy:hover { color: rgba(245, 239, 227, 0.75); }

.footer__legal {
  font-size: 13px;
  color: rgba(245, 239, 227, 0.6);
  max-width: 520px;
}

/* ---------- mobile sticky CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--amber);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(16, 27, 46, 0.2);
  display: none;
}

/* ---------- privacy policy ---------- */

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.legal__back {
  align-self: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.03em;
  color: var(--navy);
}

.legal__rule {
  width: 48px;
  height: 4px;
  background: var(--amber);
}

.legal__updated {
  margin: 0;
  font-size: 14px;
  color: rgba(16, 27, 46, 0.6);
}

.legal__lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
}

.legal__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.legal__p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 27, 46, 0.85);
}

.legal__p a {
  font-weight: 700;
  color: var(--navy);
}

/* ---------- 720px: nav links out, sticky CTA in ---------- */

@media (max-width: 720px) {
  .nav__links { display: none; }
  body.is-past-hero .sticky-cta { display: flex; }
}

/* Below 360px the design's auto-fit minimums (340px, 320px, 300px) and the
   unbreakable email address exceed the available width, so the page picks up a
   horizontal scrollbar. The prototype does this too; these four rules are the
   only intentional departure from it. Nothing at 360px or wider is affected,
   so deleting this block restores byte-exact prototype parity. */
@media (max-width: 359px) {
  .extras__grid,
  .founders,
  .cards { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; }
}
