/* =========================================================================
   PROJECT U.P. — SHARED COMPONENT STYLES
   Drives /womens/index.html (and any future page that uses the same layout
   primitives). Reads from tokens.css — never hardcode brand colours here.
   ========================================================================= */

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(120%) blur(6px);
}
.nav__logo { display: inline-flex; line-height: 0; }
.nav__logo img { width: 80px; height: 80px; display: block; }
@media (max-width: 600px) { .nav__logo img { width: 64px; height: 64px; } }
.nav__back {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
  padding: 10px 0;
}
.nav__back:hover { color: var(--gold); }

/* ===== buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: var(--gold-deep); }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: #1a120a; }
.btn--large { padding: 18px 40px; font-size: 13px; }

/* ===== layout ===== */
.section {
  padding: 110px 32px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.section--alt { background: var(--bg-alt); max-width: none; }
.section--alt > * { max-width: var(--maxw-wide); margin-left: auto; margin-right: auto; }
.section--dark {
  background: var(--bg-dark); color: var(--bg);
  max-width: none;
}
.section--dark > * { max-width: var(--maxw-wide); margin-left: auto; margin-right: auto; }
.section--center { text-align: center; }
.section--center .prose, .section--center .checklist { margin-left: auto; margin-right: auto; }

/* ===== type ===== */
.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin: 0 0 28px;
}
.eyebrow--light { color: var(--gold); }

.section__title, .hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 36px;
  color: var(--ink);
}
.section__title em, .hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section__title--light { color: var(--bg); }
.section__title--light em { color: var(--gold); }

.section__pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  text-align: center;
  margin: 64px auto 24px;
  max-width: var(--maxw);
}
.section__pull em { font-style: italic; color: var(--gold); font-weight: 400; }

.prose {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  text-align: center;
  color: var(--ink-muted);
}
.prose--light { color: rgba(250, 246, 241, 0.85); }
.prose p { margin: 0 0 18px; }

/* ===== hero ===== */
.hero {
  padding: 120px 32px 80px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--ink-muted);
}
.hero__meta {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 24px 0 0;
}
.hero__meta--light { color: var(--gold); }

.ornament {
  display: flex; align-items: center; justify-content: center;
  margin: 60px auto 0;
  gap: 16px;
}
.ornament span {
  display: inline-block;
  height: 1px; width: 60px;
  background: var(--gold);
}

/* ===== checklist ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 28px auto;
  max-width: var(--maxw);
}
.checklist li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.checklist--positive li::before { background: var(--gold); }
.checklist--negative li::before { background: var(--alert, #b06a6a); }

/* ===== coaches ===== */
.coaches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 64px;
}
@media (max-width: 720px) { .coaches { grid-template-columns: 1fr; } }
.coach {
  background: var(--surface);
  padding: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}
.coach__portrait {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.coach__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;   /* favours face over chest */
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.coach__portrait--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--surface) 100%);
}
.coach__portrait-mono {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 96px;
  letter-spacing: -0.02em;
  color: var(--gold);
  opacity: 0.55;
}
.coach > .coach__role,
.coach > .coach__name,
.coach > .coach__creds,
.coach > .coach__bio {
  padding-left: 32px;
  padding-right: 32px;
}
.coach > .coach__role { padding-top: 32px; }
.coach > .coach__bio  { padding-bottom: 40px; }
.coach__role {
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 12px;
}
.coach__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 8px;
}
.coach__creds {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 20px;
}
.coach__bio { color: var(--ink-muted); margin: 0; }

/* ===== phases ===== */
.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
}
.phase {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--line);
  position: relative;
}
.phase__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}
.phase__when {
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
  margin: 16px 0 8px;
}
.phase__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  margin: 0 0 16px;
}
.phase p { color: var(--ink-muted); }
.phase .checklist { margin-top: 18px; }

/* ===== big destination ===== */
.big-date, .big-pct {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--gold);
  margin: 32px 0 20px;
  text-align: center;
}

/* ===== testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--surface);
  padding: 40px 32px;
  border: 1px solid var(--line);
}
.testimonial__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 4px;
}
.testimonial__meta {
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 20px;
}
.testimonial p { color: var(--ink-muted); }
.testimonial blockquote {
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

/* =========================================================================
   COUNTDOWN TIMER
   Lives in a dark section. Four large gold numeral blocks separated by
   tracked colons. On expiry the JS swaps the contents to an email-capture
   "Notify me" panel that hands the email off to the AC priority-list form.
   ========================================================================= */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 0;
  max-width: 720px;
  flex-wrap: wrap;
}
.countdown__block {
  flex: 1 1 auto;
  min-width: 110px;
  max-width: 150px;
  padding: 22px 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 188, 154, 0.22);
  text-align: center;
}
.countdown__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.countdown__label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.6);
  margin-top: 12px;
}
.countdown__sep {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: rgba(212, 188, 154, 0.4);
  padding-top: 22px;
  align-self: flex-start;
}
@media (max-width: 600px) {
  .countdown { gap: 8px; max-width: 100%; }
  .countdown__block { min-width: 70px; padding: 16px 6px 12px; }
  .countdown__sep { display: none; }
  .countdown__label { letter-spacing: 0.18em; font-size: 9px; }
}

/* expired state */
.countdown--expired {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(212, 188, 154, 0.22);
  padding: 48px 32px;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.03);
}
.countdown__expired-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.countdown__expired-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: 1.25;
  color: var(--bg);
  margin: 0 0 28px;
  max-width: 400px;
}
.countdown__notify {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.countdown__notify input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 188, 154, 0.3);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}
.countdown__notify input[type="email"]::placeholder {
  color: rgba(250, 246, 241, 0.45);
  font-style: italic;
}
.countdown__notify input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}
.countdown__notify-btn {
  background: var(--gold);
  color: #1F1810;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.countdown__notify-btn:hover { background: var(--gold-deep); }
.countdown__notify-help {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(250, 246, 241, 0.5);
  font-family: var(--font-body);
}
@media (max-width: 480px) {
  .countdown__notify { flex-direction: column; }
  .countdown__notify-btn { width: 100%; }
}

/* =========================================================================
   COMPARISON MATRIX
   Three-column table that structures the buying decision as a comparison.
   Project U.P. column is visually highlighted (gold tint + badge).

   Desktop (≥720px): table layout with tight option columns (~140px each),
   wider criterion column.

   Mobile (<720px): table flattens to vertical card-per-row layout — each
   criterion becomes a card, with the three option values listed inside
   labeled by data-label attribute. No horizontal scroll.
   ========================================================================= */
.matrix-wrap {
  margin: 48px auto 16px;
  max-width: 920px;
  scroll-margin-top: 24px;
}

.matrix {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-body);
  table-layout: fixed;            /* honour our column-width hints */
}

/* explicit column widths via th — table-layout: fixed enforces them */
.matrix__corner   { width: auto;  background: transparent; border: 0; }
.matrix__col      { width: 140px; }
.matrix__col--featured { width: 170px; }

/* ===== column headers ===== */
.matrix__col {
  padding: 22px 12px 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  vertical-align: bottom;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-bottom: 0;
  position: relative;
}
.matrix__col--muted .matrix__col-name {
  display: block;
}
.matrix__col--featured {
  background: rgba(185, 153, 115, 0.10);
  border: 1px solid var(--gold);
  border-bottom: 0;
  color: var(--ink);
  padding-top: 52px;
}
.matrix__col--featured .matrix__col-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.matrix__badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== row criterion (first cell of each row) ===== */
.matrix__crit {
  padding: 14px 22px 14px 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

/* ===== cells ===== */
.matrix__cell {
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  background: var(--bg);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  line-height: 1;
  font-family: var(--font-body);
  color: var(--ink-soft);
}
.matrix__cell--yes      { color: var(--gold); font-weight: 500; }
.matrix__cell--no       { color: rgba(122, 110, 100, 0.55); }
.matrix__cell--partial  { color: var(--gold-soft); }
.matrix__cell--text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}
.matrix__cell--text-strong {
  font-weight: 500;
  color: var(--ink);
}

/* Featured column emphasis on every row's middle cell */
.matrix__cell--featured {
  background: rgba(185, 153, 115, 0.10);
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.matrix tbody tr:last-child .matrix__cell--featured {
  border-bottom: 1px solid var(--gold);
}

/* ===== mobile: stack each row as a card =====
   Below 720px the table chrome is dropped and each row becomes its own
   card. The data-label attribute on each <td> renders inline as a small
   gold-cap key beside the value, preserving the comparison context. */
@media (max-width: 720px) {
  .matrix-wrap { margin: 36px 0 12px; }
  .matrix { display: block; min-width: 0; }
  .matrix thead { display: none; }
  .matrix tbody { display: block; }

  .matrix tr {
    display: block;
    padding: 18px 18px 8px;
    margin: 0 0 12px;
    background: var(--bg);
    border: 1px solid var(--line);
  }

  .matrix__crit {
    display: block;
    padding: 0 0 14px;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .matrix__cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    font-size: 18px;
    text-align: right;
  }
  .matrix__cell--text { font-size: 14px; }
  .matrix__cell::before {
    content: attr(data-label);
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    text-align: left;
    flex: 1 1 auto;
  }
  .matrix__cell--featured {
    background: rgba(185, 153, 115, 0.08);
    border: 0;
    margin: 4px -10px;
    padding: 10px 10px;
  }
  .matrix__cell--featured::before {
    color: var(--gold);
  }

  /* Project U.P. card itself gets a gold ring on mobile to keep the
     "this is the recommended option" emphasis from the desktop layout. */
  .matrix tr:has(.matrix__cell--featured) {
    /* fallback styling via the .matrix tr default — :has is widely supported */
  }
}

/* ===== legend below the matrix ===== */
.matrix__legend {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  margin: 16px 0 0;
}
.matrix__legend-key {
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0 2px;
  vertical-align: -2px;
}
.matrix__legend-key--yes     { color: var(--gold); }
.matrix__legend-key--partial { color: var(--gold-soft); }
.matrix__legend-key--no      { color: rgba(122, 110, 100, 0.55); }
@media (max-width: 720px) {
  .matrix__legend { font-size: 10px; letter-spacing: 0.18em; }
}

/* sr-only utility (also used by hero/logo) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===== price card ===== */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 56px 40px;
  margin: 0 auto 32px;
  max-width: var(--maxw);
  text-align: center;
}
.price-card__amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 88px;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.price-card__amount--small { font-size: 48px; }
.price-card__label {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 12px 0 4px;
}
.price-card__label--addon { color: var(--gold-deep); }
.price-card__sub {
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 32px;
}
.price-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin: 8px 0 16px;
}
.price-card .checklist { text-align: left; }
.price-card--addon { background: var(--bg); }

/* ===== fit grid ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
@media (max-width: 800px) { .fit-grid { grid-template-columns: 1fr; gap: 32px; } }
.fit__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 16px;
  text-align: center;
}

/* ===== faq ===== */
.faq {
  max-width: var(--maxw);
  margin: 48px auto 0;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 16px 0 0;
  color: var(--ink-muted);
}

/* ===== form slot =====
   Houses the AC priority-list embed inside the dark final-CTA section.
   Tighter max-width than the prose maxw — the form is a lean two-field
   capture, not a content block. */
.form-slot {
  margin: 36px auto 32px;
  max-width: 480px;
  scroll-margin-top: 24px;
}

/* Calendly is now triggered as a popup modal from the quiz Ready-Now result —
   no inline-embed styling required. The Calendly widget.css loaded in <head>
   handles the modal overlay chrome. */

/* =========================================================================
   ActiveCampaign embedded form override — Women's brand
   The AC script injects its own <style> at runtime; we win via higher
   specificity (body.brand-women #_form_1_) and !important parity.

   The form lives inside section--dark on the women's page, so the styling
   reads as native to the dark surround: transparent inputs with gold-soft
   borders, cream text, hero-tier gold submit. Form title and field labels
   are hidden — section h2 + placeholder text carry the meaning, leaving the
   form to feel like a curated newsletter signup rather than a web form.
   ========================================================================= */
body.brand-women #_form_1_ {
  background: transparent !important;
  border: 0 !important;
  font-family: var(--font-body) !important;
  color: var(--bg) !important;          /* ivory text on dark */
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Hide AC's duplicate form title — section h2 carries the message */
body.brand-women #_form_1_ ._form-title {
  display: none !important;
}

/* Hide field labels — placeholders carry the meaning. Keep accessible
   to screen readers via the SR-only pattern. */
body.brand-women #_form_1_ ._form-label,
body.brand-women #_form_1_._inline-form ._form-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.brand-women #_form_1_ ._form-content,
body.brand-women #_form_1_._inline-form ._form-content,
body.brand-women #_form_1_._inline-form ._row span:not(.field-required),
body.brand-women #_form_1_._inline-form ._row label {
  font-family: var(--font-body) !important;
  color: var(--bg) !important;
}

body.brand-women #_form_1_ .field-required {
  color: var(--gold) !important;
}

/* Form elements stack with breathing room */
body.brand-women #_form_1_ ._form_element {
  margin-bottom: 14px !important;
}

/* Inputs: transparent with subtle gold-soft borders, cream text */
body.brand-women #_form_1_ input[type="text"],
body.brand-women #_form_1_ input[type="email"] {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(212, 188, 154, 0.28) !important;  /* gold-soft @28% */
  border-radius: 0 !important;
  padding: 20px 22px !important;
  color: var(--bg) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
body.brand-women #_form_1_ input::placeholder {
  color: rgba(250, 246, 241, 0.45) !important;
  font-style: italic;
}
body.brand-women #_form_1_ input[type="text"]:focus,
body.brand-women #_form_1_ input[type="email"]:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  outline: none;
}
body.brand-women #_form_1_ input[type="text"]._has_error,
body.brand-women #_form_1_ input[type="email"]._has_error {
  border-color: var(--alert) !important;
}

/* Submit: hero-tier gold button — full width, deep padding, dark text */
body.brand-women #_form_1_ ._button-wrapper {
  margin-top: 8px;
}
body.brand-women #_form_1_ ._submit {
  background: var(--gold) !important;
  color: #2A2118 !important;             /* espresso text on gold for contrast */
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 22px 32px !important;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease;
}
body.brand-women #_form_1_ ._submit:hover {
  background: var(--gold-deep) !important;
}

/* Hide AC marketing badge */
body.brand-women #_form_1_ ._form-branding {
  display: none !important;
}

/* Thank-you state — Cormorant italic, gold */
body.brand-women #_form_1_ ._form-thank-you {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: clamp(28px, 4vw, 40px) !important;
  line-height: 1.2 !important;
  color: var(--gold) !important;
  text-align: center;
  padding: 40px 0;
}

/* ===== footer ===== */
.footer {
  text-align: center;
  padding: 56px 32px 64px;
  background: var(--bg);
  font-size: 13px;
  color: var(--ink-muted);
}
.footer p { margin: 0 0 8px; }
.footer__small { font-size: 12px; opacity: 0.7; max-width: 540px; margin-left: auto; margin-right: auto; }

/* =========================================================================
   READINESS QUIZ
   Dark prominent card sitting on the page's ivory section — high contrast
   "spotlight" treatment makes the quiz a genuine moment in the page flow.
   Vanilla JS interaction: /quiz.js.
   ========================================================================= */
.quiz {
  position: relative;
  max-width: 720px;
  margin: 56px auto 0;
  padding: 48px 44px 40px;
  background: #1F1810;                   /* deeper than --bg-dark for max card prominence */
  border: 1px solid rgba(212, 188, 154, 0.18);  /* gold-soft @18% */
  text-align: left;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(42, 33, 24, 0.10);
  scroll-margin-top: 24px;
}
@media (max-width: 600px) {
  .quiz { padding: 36px 22px 28px; }
}

/* Top-anchored progress bar — fills as the user advances */
.quiz__progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(212, 188, 154, 0.10);
  display: block;
  margin: 0;
  pointer-events: none;
}
.quiz__progress::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--quiz-progress, 0%);
  background: var(--gold);
  transition: width 0.35s ease;
}

.quiz__count {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 24px;
  text-align: left;
}

.quiz__q {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.35;
  color: #FAF6F1;                        /* ivory */
  margin: 0 0 32px;
  text-align: left;
  letter-spacing: -0.005em;
}

/* options */
.quiz__opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 32px;
}
.quiz__opt {
  display: block;
  width: 100%;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(212, 188, 154, 0.18);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(250, 246, 241, 0.85);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.quiz__opt:hover {
  border-color: rgba(212, 188, 154, 0.5);
  color: #FAF6F1;
  background: rgba(255, 255, 255, 0.05);
}
.quiz__opt.selected {
  border-color: var(--gold);
  background: rgba(185, 153, 115, 0.10);
  color: #FAF6F1;
  box-shadow:
    0 0 0 1px rgba(185, 153, 115, 0.35),
    0 0 24px rgba(185, 153, 115, 0.18);
}
.quiz__opt-dot { display: none; }       /* border state is the indicator */
.quiz__opt-text { display: block; }

/* Auto-advance: when a user clicks an option, it's disabled while the
   transition plays out so they can't fire a second answer. */
.quiz__opt[disabled] { cursor: default; }
.quiz__opt[disabled]:not(.selected) { opacity: 0.4; }

/* === result screen === */
.quiz--result {
  text-align: center;
  padding-top: 56px;
}
.quiz__r-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 20px;
}
.quiz__score {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 11vw, 128px);
  line-height: 1;
  color: var(--gold);
  margin: 0 0 8px;
}
.quiz__score span {
  font-size: 0.32em;
  font-style: normal;
  color: rgba(212, 188, 154, 0.45);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.quiz__r-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 16px 0 18px;
  color: var(--gold);                    /* default — overridden per tier below */
}
/* Per-tier emotional colour theming */
.quiz--ready  .quiz__r-title { color: var(--gold); }      /* celebratory */
.quiz--almost .quiz__r-title { color: #B7C0AB; }          /* sage on dark — calm */
.quiz--notyet .quiz__r-title { color: #D6967E; }          /* blush on dark — warm warning */

.quiz__r-body {
  color: rgba(250, 246, 241, 0.7);
  margin: 0 auto 32px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.65;
}
.quiz__r-cta { display: inline-block; }

.quiz__restart {
  display: inline-block;
  margin: 28px auto 0;
  background: transparent;
  border: 1px solid rgba(212, 188, 154, 0.4);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(250, 246, 241, 0.7);
  cursor: pointer;
  padding: 12px 24px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.quiz__restart:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(185, 153, 115, 0.06);
}

.quiz__noscript {
  color: var(--ink-muted);
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* =========================================================================
   TRANSFORMATION TIMELINE
   Six clickable milestone nodes. CSS Grid lays the buttons across the top
   row (row 1) and the active panel into row 2 spanning all columns. The
   `.timeline__pair` wrapper uses display:contents so its children participate
   directly in the grid.

   Desktop (≥720px): horizontal node track + full-width panel below.
   Mobile  (<720px):  vertical stack with inline panel expand under the
                      active node. JS handles the active class only.
   ========================================================================= */
.timeline {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 0 12px;
  position: relative;
  padding-top: 28px;
  /* connecting line through the dots */
  background:
    linear-gradient(to right,
      transparent 8.33%, var(--gold-soft) 8.33%,
      var(--gold-soft) 91.67%, transparent 91.67%
    ) 0 36px / 100% 1px no-repeat;
}

.timeline__pair {
  display: contents;
}

.timeline__btn {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink-muted);
  transition: color 0.2s ease;
}
.timeline__btn:hover { color: var(--ink); }
.timeline__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  background: var(--bg);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.timeline__btn:hover .timeline__dot { border-color: var(--gold); }
.timeline__pair.active .timeline__dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 153, 115, 0.18);
  transform: scale(1.05);
}

.timeline__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
.timeline__pair.active .timeline__label {
  color: var(--gold-deep);
  font-weight: 600;
}

.timeline__panel {
  grid-row: 2;
  grid-column: 1 / -1;
  display: none;
  margin-top: 44px;
  padding: 44px 40px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}
.timeline__pair.active .timeline__panel {
  display: block;
}

.timeline__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timeline__row:first-child { padding-top: 0; }
.timeline__row:last-child { padding-bottom: 0; border-bottom: 0; }

.timeline__row-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  padding-top: 4px;
}
.timeline__row p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}
.timeline__row p em {
  font-style: italic;
  color: var(--gold);
}
.timeline__row strong { color: var(--ink); font-weight: 500; }

/* mobile: vertical stack, inline expand */
@media (max-width: 720px) {
  .timeline {
    display: block;
    background: none;
    padding-top: 8px;
  }
  .timeline__pair {
    display: block;
    border-bottom: 1px solid var(--line);
  }
  .timeline__pair:last-child { border-bottom: 0; }

  .timeline__btn {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    padding: 22px 0;
    text-align: left;
  }
  .timeline__label { text-align: left; }
  .timeline__pair.active .timeline__dot {
    box-shadow: 0 0 0 4px rgba(185, 153, 115, 0.18);
  }

  .timeline__panel {
    grid-column: auto;
    grid-row: auto;
    margin: 0 0 20px;
    padding: 24px 22px;
    border-left: 3px solid var(--gold);
  }
  .timeline__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .timeline__row-label {
    padding-top: 0;
  }
}

/* ===== utilities ===== */
strong { color: var(--ink); font-weight: 500; }
@media (max-width: 600px) {
  .section { padding: 80px 24px; }
  .hero { padding: 80px 24px 60px; }
}


/* Section-bottom Take the readiness quiz CTA (women's page) */
.section__quiz-cta { text-align: center; margin: 56px 0 0; }
.section__quiz-cta .btn--ghost-quiz { font-size: 11px; letter-spacing: 0.22em; padding: 12px 24px; background: transparent; color: inherit; border: 1px solid currentColor; opacity: 0.6; transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease; }
.section__quiz-cta .btn--ghost-quiz:hover { opacity: 1; background: currentColor; }
.section--dark .section__quiz-cta .btn--ghost-quiz:hover { color: #2a1f15; }

/* Homepage Contact us button + modal */
.bar__contact--btn { font: inherit; color: inherit; background: transparent; border: 1px solid currentColor; padding: 6px 14px; cursor: pointer; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; border-radius: 2px; transition: background 0.15s ease, color 0.15s ease; }
.bar__contact--btn:hover { background: currentColor; }

.contact-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; }
.contact-modal[hidden] { display: none; }
.contact-modal__backdrop { position: absolute; inset: 0; background: rgba(10, 9, 8, 0.78); backdrop-filter: blur(4px); cursor: pointer; }
.contact-modal__panel { position: relative; background: #f5efe6; color: #2a1f15; max-width: 520px; width: 100%; padding: 48px 40px 40px; border-radius: 6px; box-shadow: 0 24px 80px rgba(0,0,0,0.4); max-height: 90vh; overflow-y: auto; }
.contact-modal__close { position: absolute; top: 14px; right: 18px; background: transparent; border: 0; font-size: 28px; color: #5a4a3a; cursor: pointer; padding: 4px 8px; line-height: 1; }
.contact-modal__close:hover { color: #2a1f15; }
.contact-modal__eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #957550; margin: 0 0 12px; }
.contact-modal__title { font-family: Cormorant Garamond, Georgia, serif; font-size: 36px; line-height: 1.1; margin: 0 0 16px; }
.contact-modal__intro { color: #5a4a3a; line-height: 1.6; margin: 0 0 24px; }
.contact-modal__intro a { color: #b5946a; }
.contact-modal__form-slot { min-height: 60px; }
.contact-modal__fallback { font-size: 13px; color: #5a4a3a; margin: 0; }

/* Hero mission statement */
.hero__mission { max-width: 640px; margin: 24px auto 28px; font-size: 14px; line-height: 1.7; color: rgba(42, 31, 21, 0.85); text-align: center; }
@media (max-width: 720px) { .hero__mission { font-size: 13px; padding: 0 24px; } }


/* ===== Readability pass — website-revamp-may26 (#37) =====
   Larger body copy + comfortable spacing so pages scan instead of reading
   as a wall of text. Scoped to long-form copy only (not titles/labels). */
.prose p,
.phase > p,
.timeline__row p { line-height: 1.72; }
.prose p { margin-bottom: 1.1em; }
.checklist li { line-height: 1.6; margin-bottom: 0.5em; }
.phase__note { line-height: 1.55; }
.section .prose { max-width: 60ch; }


/* ===== Contrast pass — website-revamp-may26 (#37) =====
   Lift gold micro-labels + muted body text on LIGHT women’s sections to
   clear WCAG AA. Scoped with :not(.section--dark) so dark sections are untouched. */
body.brand-women .section:not(.section--dark) .eyebrow,
body.brand-women .hero .eyebrow,
body.brand-women .section:not(.section--dark) .hero__meta { color: #6b5230; }
body.brand-women .hero__sub,
body.brand-women .section:not(.section--dark) .prose,
body.brand-women .section:not(.section--dark) .prose p,
body.brand-women .section:not(.section--dark) .checklist li { color: #574b40; }


/* ===== Iconography (#32) v2 — clean line icons, text-aligned, brand gold ===== */
.checklist { list-style: none; padding-left: 0; margin: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding-left: 0; }
.checklist li > .li-ic { flex: 0 0 auto; width: 21px; height: 21px; margin-top: 2px; color: #b5946a; stroke: #b5946a; }
.checklist li:not(:has(> .li-ic))::before { content: ""; position: static; flex: 0 0 auto; width: 15px; height: 15px; margin: 5px 0 0 0; border: 0; transform: none; background-color: #b5946a; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2c.5 4.8 2.7 7 7.5 7.5C14.7 10 12.5 12.2 12 17c-.5-4.8-2.7-7-7.5-7.5C9.3 9 11.5 6.8 12 2z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2c.5 4.8 2.7 7 7.5 7.5C14.7 10 12.5 12.2 12 17c-.5-4.8-2.7-7-7.5-7.5C9.3 9 11.5 6.8 12 2z'/%3E%3C/svg%3E") center / contain no-repeat; }

/* Hide the default checklist marker on lines that carry a dedicated icon */
.checklist li:has(> .li-ic)::before { content: none; }

/* ============ Priority List top banner (until June 8) ============ */
.top-banner {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #1a1716;
  color: #faf6ef;
  border-bottom: 1px solid rgba(212, 188, 154, 0.18);
  font-family: var(--font-label, "Roboto Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.top-banner__link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  justify-content: center;
  padding: 11px 44px 11px 20px;
  color: inherit;
  text-decoration: none;
  transition: background-color 160ms ease;
}
.top-banner__link:hover { background: rgba(212, 188, 154, 0.06); }
.top-banner__lead { color: #d4bc9a; font-weight: 500; white-space: nowrap; }
.top-banner__main { color: rgba(250, 246, 239, 0.92); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-banner__arrow { color: #d4bc9a; transition: transform 200ms ease; }
.top-banner__link:hover .top-banner__arrow { transform: translateX(3px); }
.top-banner__close {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border: 0; background: transparent;
  color: rgba(250, 246, 239, 0.55); font-size: 22px; line-height: 1; cursor: pointer;
  border-radius: 50%; transition: color 160ms ease, background-color 160ms ease;
}
.top-banner__close:hover { color: #faf6ef; background: rgba(250, 246, 239, 0.08); }
@media (max-width: 640px) {
  .top-banner { font-size: 10.5px; letter-spacing: 0.10em; }
  .top-banner__link { padding: 10px 38px 10px 14px; gap: 6px; flex-direction: column; line-height: 1.4; }
  .top-banner__lead, .top-banner__main { white-space: normal; text-align: center; }
  .top-banner__main { text-overflow: clip; }
}

/* Secondary "readiness quiz" link under the primary hero CTA */
.hero__alt-link {
  display: inline-block; margin-top: 14px;
  color: rgba(20, 18, 16, 0.6);
  font-family: var(--font-label, "Roboto Mono", monospace);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px dashed rgba(20, 18, 16, 0.2); padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.hero__alt-link:hover { color: #14110d; border-bottom-color: rgba(20, 18, 16, 0.6); }
body.brand-women .hero__alt-link { color: rgba(48, 36, 24, 0.65); border-bottom-color: rgba(48, 36, 24, 0.22); }
body.brand-women .hero__alt-link:hover { color: #2a1f15; border-bottom-color: rgba(48, 36, 24, 0.7); }

/* ============ Social proof ticker (women's page, between hero and priority) ============ */
.ticker {
  background: var(--bg, #faf6ef);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(185, 153, 115, 0.16);
  border-bottom: 1px solid rgba(185, 153, 115, 0.16);
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg, #faf6ef) 0%, rgba(250, 246, 239, 0) 100%);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg, #faf6ef) 0%, rgba(250, 246, 239, 0) 100%);
}
.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 44px;
  animation: ticker-scroll 240s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}
.ticker__item {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.002em;
  color: var(--ink, #2a1f15);
  white-space: nowrap;
  font-weight: 400;
}
.ticker__item--quote { font-style: italic; }
.ticker__item--stat { font-style: normal; }
.ticker__num {
  color: var(--gold, #b99973);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
}
.ticker__sep {
  color: var(--gold, #b99973);
  font-size: 10px;
  line-height: 1;
  opacity: 0.55;
  display: inline-block;
  user-select: none;
}
@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .ticker { padding: 22px 0; }
  .ticker__track { gap: 30px; animation-duration: 180s; }
  .ticker__item { font-size: 19px; }
  .ticker__sep { font-size: 8px; }
  .ticker::before, .ticker::after { width: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}
