/* Podemos Tax Academy — flyer-board world. Navy / gold / cream. No gradients. */

:root {
  --navy: #0c1d32;
  --gold: #c99a45;
  --cream: #e7ddd5;
  --white: #ffffff;
  --navy-soft: #1a3148;
  --ink-muted: #3d4f63;
  --line: #d4c8be;
  --shadow: 0 14px 36px rgba(12, 29, 50, 0.12);
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", "Apple Chancery", cursive;
  --wrap: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy);
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__wordmark span {
  color: var(--gold);
}

.brand__sub {
  margin-top: 0.28rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d7e0ea;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e8eef5;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav .nav-cta {
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.site-nav .nav-cta:hover {
  color: var(--navy);
  filter: brightness(1.05);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #d4ae5f;
}

.btn-outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ——— Hero ——— */
.hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.hero__copy {
  padding: 0;
  max-width: none;
}

.pillars {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__lead {
  margin: 1rem 0 0;
  max-width: 42ch;
  color: #d5deea;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.45;
}

.hero__lead em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.45em;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.hero__note {
  margin: 1rem 0 0;
  color: #9aadc2;
  font-size: 0.82rem;
}

.hero__card {
  padding: 1.6rem 1.5rem 1.45rem;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero__card-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__card-price {
  margin: 0.55rem 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.hero__card h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.2;
}

.hero__card > p:not([class]) {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.hero__card-list {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.hero__card-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

.hero__card .btn {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * {
    animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero__copy > *:nth-child(2) {
    animation-delay: 0.08s;
  }

  .hero__copy > *:nth-child(3) {
    animation-delay: 0.14s;
  }

  .hero__copy > *:nth-child(4) {
    animation-delay: 0.2s;
  }

  .hero__copy > *:nth-child(5) {
    animation-delay: 0.26s;
  }

  .hero__card {
    animation: rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Board strip ——— */
.board-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.board-strip__item {
  padding: 1.35rem 1.25rem;
  border-left: 1px solid var(--line);
}

.board-strip__item:first-child {
  border-left: 0;
}

.board-strip__item strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-strip__item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--soft {
  background: var(--white);
}


.section--navy h2 {
  color: var(--white);
}

.section--navy .eyebrow {
  color: var(--gold);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-head p {
  margin: 0.85rem 0 0;
  color: var(--ink-muted);
  max-width: 52ch;
}

.section--navy .section-head p {
  color: #b8c6d6;
}

.ladder {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--navy);
}

.ladder__step {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.ladder__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.ladder__step h3 {
  margin: 0;
  font-size: 1.05rem;
}

.ladder__step p {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* ——— Workshop flyers ——— */
.flyer-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.flyer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.4rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(12, 29, 50, 0.04);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.flyer:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.flyer__pin {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.flyer__price {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.flyer h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
}

.flyer p {
  margin: 0.65rem 0 0;
  flex: 1;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.flyer__meta {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flyer--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.flyer--navy h3,
.flyer--navy .flyer__price {
  color: var(--gold);
}

.flyer--navy p {
  color: #c5d2e0;
}

.flyer--navy .flyer__meta {
  border-top-color: #2a425a;
  color: var(--white);
}

.flyer--navy:hover {
  border-color: var(--gold);
}

.flyer--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.flyer--featured h3,
.flyer--featured .flyer__price {
  color: var(--gold);
}

.flyer--featured p {
  color: #c5d2e0;
}

.flyer--featured .flyer__meta {
  border-top: 0;
  margin: 0;
  padding: 0;
  color: var(--white);
}

/* ——— Club + Program ——— */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.club-panel,
.program-panel {
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
}

.section--navy .club-panel,
.section--navy .program-panel {
  background: var(--navy-soft);
  border-color: #2a425a;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.audience-grid article {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.audience-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
}

.audience-grid p {
  margin: 0.65rem 0 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.value-note {
  margin-top: 2rem;
  padding: 1.4rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.section--navy .value-note {
  background: var(--navy-soft);
  border-color: #2a425a;
}

.value-note h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.value-note p {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  max-width: 62ch;
}

.section--navy .value-note p {
  color: #c5d2e0;
}

.math-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.math-board > div {
  padding: 1.25rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.math-board strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.math-board span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.math-board em {
  display: block;
  margin-top: 0.85rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.35rem;
  font-weight: 700;
}

.math-note {
  margin: 1.25rem 0 0;
  max-width: 62ch;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.club-panel h3,
.program-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}

.price-line {
  margin: 0.85rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
}

.price-line span {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.section--navy .price-line span {
  color: #a9bbcf;
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.section--navy .check-list li {
  border-bottom-color: #2a425a;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}

.calendar {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.25rem;
  font-size: 0.88rem;
}

.calendar dt {
  color: var(--gold);
  font-weight: 700;
}

.calendar dd {
  margin: 0 0 0.55rem;
  color: #c5d2e0;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  max-width: 42ch;
}

.social-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.social-list a {
  display: inline-flex;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}

.social-list a:hover {
  color: var(--gold);
}

.form-panel {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.form-panel > p {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--navy);
  font: inherit;
}

.field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.form-panel .btn {
  width: 100%;
  margin-top: 1rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--gold);
}

.form-status.is-visible {
  display: block;
}

.form-status h4 {
  margin: 0;
  font-family: var(--font-display);
}

.form-status p {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.form-error {
  display: none;
  margin-top: 0.85rem;
  color: #8b2e2e;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-error.is-visible {
  display: block;
}

/* ——— Disclaimer ——— */
.disclaimer {
  padding: 2.5rem 0 3.5rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.disclaimer details {
  max-width: 52rem;
  margin-inline: auto;
  padding: 0 1.25rem;
}

.disclaimer summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--navy);
}

.disclaimer .legal {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.disclaimer .legal p + p {
  margin-top: 0.75rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--navy);
  color: #b8c6d6;
  padding: 2rem 0;
  font-size: 0.88rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}


/* ——— Restructure helpers ——— */
.cred-line {
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  max-width: 42ch;
}

.month-feature {
  padding: 1.6rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
}

.month-feature__kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.month-feature__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.month-feature h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.15;
}

.month-feature__price {
  margin: 0.55rem 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.month-feature p {
  margin: 0.7rem 0 0;
  color: #c5d2e0;
  max-width: 52ch;
}

.month-feature__meta {
  margin-top: 0.85rem !important;
  color: var(--gold) !important;
  font-size: 0.84rem;
  font-weight: 700;
}

.workshop-group {
  margin-top: 2.25rem;
}

.workshop-group__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--navy);
}

.flyer-board--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.club-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: start;
}

.club-lead {
  margin: 0.75rem 0 0;
  color: #d5deea;
  font-size: 1.15rem;
  max-width: 36ch;
}

.section--navy .price-line {
  margin-top: 1.1rem;
}

.calendar-more {
  margin-top: 1rem;
}

.calendar-more summary {
  cursor: pointer;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calendar-more .calendar {
  margin-top: 0.85rem;
}

.path-ladder {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 44rem;
}

.path-step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  align-items: stretch;
}

.path-step + .path-step {
  margin-top: 0.85rem;
}

.path-step__rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1.35rem;
}

.path-step:not(:last-child) .path-step__rail::after {
  content: "";
  position: absolute;
  top: 3.15rem;
  bottom: -0.85rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--navy);
}

.path-step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.path-step__flyer {
  position: relative;
  padding: 1.35rem 1.4rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(12, 29, 50, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.path-step__flyer:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.path-step__kicker {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-step__price {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.path-step__flyer h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
}

.path-step__flyer > p:not(.path-step__price):not(.path-step__kicker) {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  max-width: 52ch;
}

.path-step__cta {
  margin-top: 1rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
}

.path-step--anchor .path-step__num {
  background: var(--gold);
  color: var(--navy);
}

.path-step--anchor .path-step__flyer {
  border-color: var(--navy);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.path-step--anchor:not(:last-child) .path-step__rail::after {
  background: var(--gold);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero__grid,
  .month-feature__grid,
  .club-layout,
  .flyer-board,
  .flyer-board--3,
  .audience-grid,
  .math-board,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .path-ladder {
    max-width: none;
  }

  .flyer--featured {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .calendar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 4.25rem 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid #2a425a;
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    border-bottom: 0;
  }

  .ladder__step {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}
