/* ============================================================
   Sierra Tango Fitness — "Field & Star" design system (v2)
   Brand-aligned: logo olive #9b9c36, ink black, bone white.
   Breakpoints: phone ≤720, tablet 721–1100, desktop >1100.
   Fonts are self-hosted in ./fonts (no Google Fonts dependency).
   ============================================================ */

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/manrope-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/manrope-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/manrope-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/manrope-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./fonts/manrope-latin-800-normal.woff2") format("woff2");
}

:root {
  --ink: #171712;
  --ink-2: #21211a;
  --ink-3: #2c2c22;
  --bone: #f4f2e9;
  --bone-2: #e9e6d8;
  --panel: #fdfcf7;
  --olive: #9b9c36;
  --olive-deep: #6a6b26;
  --olive-dark: #3f3f18;
  --gold: #c2a14c;
  --text: #1d1d16;
  --text-soft: #55554a;
  --text-inverse: #f4f2e9;
  --text-inverse-soft: rgba(244, 242, 233, 0.72);
  --line: rgba(23, 23, 18, 0.14);
  --line-dark: rgba(244, 242, 233, 0.16);
  --shadow: 0 20px 50px rgba(23, 23, 18, 0.14);
  --radius: 6px;
  --container: min(1220px, calc(100vw - 2.5rem));
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bone);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
}

/* ---------- Type ---------- */

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 8.5vw, 6.8rem);
}

h2 {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  letter-spacing: 0.04em;
}

p {
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
}

.eyebrow::before {
  content: "★";
  font-size: 0.85em;
  color: var(--olive);
  transform: translateY(-1px);
}

.on-dark .eyebrow {
  color: var(--olive);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.78rem 1.7rem 0.62rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease,
    border-color 0.16s ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--olive);
  color: var(--ink);
}

.button-primary:hover {
  background: #aaab3e;
}

.button-dark {
  background: var(--ink);
  color: var(--bone);
}

.button-dark:hover {
  background: var(--ink-3);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--bone);
}

.on-dark .button-outline {
  color: var(--bone);
  border-color: rgba(244, 242, 233, 0.55);
}

.on-dark .button-outline:hover {
  background: var(--bone);
  color: var(--ink);
}

.inline-link {
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--olive);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.inline-link:hover {
  color: var(--olive-deep);
}

/* ---------- Utility bar + header ---------- */

.promo-bar {
  background: var(--ink);
  color: var(--text-inverse);
}

.promo-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.utility-link {
  color: var(--text-inverse-soft);
  transition: color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-link:hover {
  color: var(--olive);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.62rem 0;
}

.brand-logo {
  height: 58px;
  width: auto;
}

.footer-brand .brand-logo {
  height: 60px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav > a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.site-nav > a:hover {
  border-color: var(--olive);
}

.nav-actions .button {
  font-size: 1.02rem;
  padding: 0.62rem 1.3rem 0.5rem;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

/* ---------- Hero ---------- */

.hero-section {
  position: relative;
  background: var(--ink);
  color: var(--text-inverse);
  overflow: hidden;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  z-index: 0;
}

.hero-video-start {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: 18px;
  z-index: 4;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: rgba(23, 23, 18, 0.82);
  color: #fff;
  font: 700 0.78rem/1.2 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-start[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .hero-media video,
  .hero-video-start {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video {
    display: none;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 18, 0.92) 0%, rgba(23, 23, 18, 0.72) 42%, rgba(23, 23, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(23, 23, 18, 0.9) 0%, transparent 40%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(64vh, 600px);
  padding: 2.6rem 0 2.4rem;
}

.hero-copy {
  max-width: 720px;
  display: grid;
  gap: 1.1rem;
}

.hero-copy h1 span {
  display: block;
  color: var(--olive);
}

.hero-summary {
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--text-inverse-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
}

.hero-proof div {
  display: grid;
  gap: 0.1rem;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--olive);
}

.hero-proof span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-soft);
}

.hero-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: start;
  background: rgba(155, 156, 54, 0.18);
  border: 1px solid rgba(155, 156, 54, 0.65);
  color: var(--bone);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hero-offer-chip:hover {
  background: rgba(155, 156, 54, 0.32);
  border-color: var(--olive);
}

.hero-offer-chip .chip-star {
  color: var(--olive);
}

.hero-offer-chip .chip-arrow {
  color: var(--olive);
  font-weight: 800;
}

.button-xl {
  font-size: 1.35rem;
  padding: 0.95rem 2.1rem 0.78rem;
}

.hero-alt-link {
  align-self: center;
  font-size: 0.95rem;
  border-bottom-color: rgba(155, 156, 54, 0.7);
}

.hero-reassure {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-inverse-soft);
  max-width: 30rem;
}

/* ---------- The Workout ---------- */

.workout-section {
  padding-bottom: 0;
}

.workout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
}

.workout-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 5px solid var(--olive);
}

.workout-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.1;
}

.workout-copy {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}

.workout-copy p:not(.eyebrow) {
  color: var(--text-soft);
  max-width: 32rem;
}

.workout-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.workout-points li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
}

.workout-points li::before {
  content: "★";
  color: var(--olive);
  font-size: 0.8em;
}

.stat-band {
  background: var(--ink);
  color: var(--text-inverse);
  padding: clamp(1.3rem, 2.2vw, 1.9rem) 0;
}

.stat-band-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-band-shell div {
  display: grid;
  gap: 0.15rem;
  border-left: 1px solid var(--line-dark);
}

.stat-band-shell div:first-child {
  border-left: 0;
}

.stat-band-shell strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: var(--olive);
}

.stat-band-shell span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-soft);
}

/* ---------- Steps ---------- */

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

.step-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.8rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--olive);
}

.step-card p:not(.step-number) {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ---------- Schedule strip ---------- */

.schedule-strip {
  background: var(--olive-dark);
  color: var(--text-inverse);
  padding: clamp(1.8rem, 3vw, 2.4rem) 0;
}

.schedule-strip-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) auto;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.schedule-strip-copy {
  display: grid;
  gap: 0.5rem;
}

.schedule-strip .eyebrow {
  color: var(--olive);
}

.schedule-strip h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.schedule-strip-times {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
}

.schedule-strip-times div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.8rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 0.45rem;
}

.schedule-strip-times strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--olive);
}

.schedule-strip-times span {
  color: var(--text-inverse-soft);
}

/* ---------- Reviews link + mobile CTA bar ---------- */

.reviews-link-row {
  margin-bottom: 1.2rem;
}

.inline-link-light {
  color: var(--bone);
}

.mobile-cta-bar {
  display: none;
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--olive);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0 0.4rem;
  white-space: nowrap;
}

.marquee-track p span {
  margin: 0 1.2rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Sections ---------- */

.section-block {
  padding: clamp(2.2rem, 4.2vw, 3.4rem) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--text-inverse);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--text-soft);
  max-width: 36rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: var(--text-inverse-soft);
}

.section-heading-left {
  margin: 0 0 1.3rem;
  text-align: left;
  justify-items: start;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* ---------- Specials ---------- */

.specials-section {
  background: var(--ink);
  color: var(--text-inverse);
}

.specials-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.specials-media {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.specials-copy {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}

.specials-copy p:not(.eyebrow) {
  color: var(--text-inverse-soft);
  max-width: 30rem;
}

/* ---------- Hurdles ---------- */

.hurdles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.hurdle-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.7rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.hurdle-card .card-index {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--olive-deep);
}

.hurdle-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ---------- Programs ---------- */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.program-card {
  background: var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow);
}

.program-card-media {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-media img {
  transform: scale(1.05);
}

.program-card-copy {
  padding: 1.2rem 1.2rem 1.4rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  border-top: 3px solid var(--olive);
}

.program-card-copy p {
  color: var(--text-inverse-soft);
  font-size: 0.92rem;
}

/* ---------- Stories / results ---------- */

.results-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.results-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.results-media::after {
  content: "★ STRONGER TOGETHER ★";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 1rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-align: center;
  background: var(--olive);
  color: var(--ink);
}

.results-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.quote-stack {
  display: grid;
  gap: 0.9rem;
}

.quote-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.quote-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-inverse-soft);
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--olive);
}

/* ---------- Pillars + mission ---------- */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}

.pillar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.pillar-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep);
}

.pillar-card p:not(.pillar-label) {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.mission-shell {
  text-align: center;
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}

/* ---------- Trial ---------- */

.trial-section {
  background: var(--bone-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trial-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--olive);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trial-card iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.3rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--olive-deep);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1.2rem;
  color: var(--text-soft);
  max-width: 42rem;
}

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

.cta-section {
  background: var(--olive);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-section .eyebrow {
  color: var(--ink);
}

.cta-section .eyebrow::before {
  color: var(--ink);
}

.cta-section::before {
  content: "★";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  line-height: 1;
  color: rgba(23, 23, 18, 0.1);
  pointer-events: none;
}

.button-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-outline-ink:hover {
  background: var(--ink);
  color: var(--bone);
}

.cta-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.cta-shell > div:first-child {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.cta-summary {
  color: rgba(23, 23, 18, 0.75);
  font-size: 1.08rem;
  max-width: 30rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-inverse);
  border-top: 4px solid var(--olive);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding: 2.4rem 0 1.8rem;
}

.footer-brand {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.footer-brand .brand-logo {
  background: var(--bone);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  border-bottom: 2px solid var(--olive);
  padding-bottom: 2px;
}

.footer-links a:hover {
  color: var(--olive);
}

.footer-brand p {
  color: var(--text-inverse-soft);
  font-size: 0.95rem;
  max-width: 22rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-row a {
  border-bottom: 2px solid var(--olive);
  padding-bottom: 2px;
}

.social-row a:hover {
  color: var(--olive);
}

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

.footer-info-card h3,
.footer-heading-link {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--olive);
}

.footer-info-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-inverse-soft);
}

.info-list strong {
  display: block;
  color: var(--text-inverse);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-link:hover {
  color: var(--olive);
}

.footer-map-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  filter: grayscale(0.5);
}

.legal-bar {
  border-top: 1px solid var(--line-dark);
}

.legal-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.1rem 0;
  font-size: 0.78rem;
  color: var(--text-inverse-soft);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.2rem;
}

.legal-links a {
  padding: 0.7rem 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.legal-links a:hover {
  color: var(--olive);
  border-color: var(--olive);
}

/* ---------- Motion & micro-interactions ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hurdle-card,
.step-card,
.price-card,
.coach-card,
.blog-card,
.schedule-day-card,
.quote-card-light,
.result-card,
.program-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hurdle-card:hover,
.step-card:hover,
.price-card:hover,
.schedule-day-card:hover,
.quote-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 23, 18, 0.14), 0 0 0 1px rgba(155, 156, 54, 0.35);
}

.coach-card:hover,
.program-card:hover,
.result-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(23, 23, 18, 0.3), 0 0 0 1px rgba(155, 156, 54, 0.5);
}

.gallery-grid img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid div:hover img {
  transform: scale(1.03);
  box-shadow: 0 16px 36px rgba(23, 23, 18, 0.22);
}

.swipe-hint {
  display: none;
}

/* Tap targets */

.utility-link {
  padding: 0.55rem 0;
}

.social-row a,
.footer-links a {
  padding: 0.55rem 0 0.45rem;
}

/* ============================================================
   Inner pages
   ============================================================ */

.page-hero {
  background:
    radial-gradient(640px 320px at 88% 0%, rgba(155, 156, 54, 0.16), transparent 70%),
    var(--ink);
  color: var(--text-inverse);
  padding: clamp(2.2rem, 4.5vw, 3.2rem) 0 clamp(1.9rem, 3.6vw, 2.6rem);
  border-bottom: 4px solid var(--olive);
}

.page-hero-inner {
  display: grid;
  gap: 1rem;
  max-width: 780px;
}

.page-hero .eyebrow {
  color: var(--olive);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.page-hero p:not(.eyebrow) {
  color: var(--text-inverse-soft);
  max-width: 40rem;
}

.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  margin-top: 0.6rem;
}

.page-hero-stats div {
  display: grid;
  gap: 0.1rem;
}

.page-hero-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--olive);
}

.page-hero-stats span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-inverse-soft);
}

/* Hub card (dark statement block) */

.hub-card {
  background: var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 4.5vw, 3.4rem);
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hub-card .eyebrow {
  color: var(--olive);
}

.hub-card h2 {
  max-width: 22ch;
}

.hub-card p:not(.eyebrow) {
  color: var(--text-inverse-soft);
  max-width: 44rem;
}

/* Generic split (image + copy) */

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.split-block-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 5px solid var(--olive);
}

.split-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.2;
}

.split-block-copy {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}

.split-block-copy p:not(.eyebrow) {
  color: var(--text-soft);
  max-width: 32rem;
}

.split-reverse .split-block-media {
  order: 2;
}

/* Coach cards */

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

.coach-card {
  background: var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow);
}

.coach-photo {
  aspect-ratio: 3 / 2.15;
  overflow: hidden;
  background: var(--ink-2);
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-photo-placeholder {
  display: grid;
  place-content: center;
  gap: 0.3rem;
  text-align: center;
  border-bottom: 1px solid var(--line-dark);
}

.coach-initials {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--olive);
}

.coach-photo-placeholder span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-inverse-soft);
}

.coach-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  border-top: 3px solid var(--olive);
}

.coach-role {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.coach-body p:not(.coach-role) {
  color: var(--text-inverse-soft);
  font-size: 0.92rem;
}

/* Price cards */

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

.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  justify-items: start;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--olive-deep);
}

.price-amount small {
  font-size: 0.45em;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.price-card p:not(.price-amount) {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.price-card .button {
  margin-top: 0.4rem;
}

/* Gallery mosaic */

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

/* Embedded form / booking cards */

.embed-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--olive);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.embed-card iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.map-card iframe {
  min-height: 380px;
}

.split-form {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: stretch;
}

.split-form .split-form-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-form .split-form-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Schedule */

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

.schedule-day-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.time-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.time-pills span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.75rem 0.2rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: start;
}

.contact-info-card {
  background: var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  color: var(--olive);
}

.contact-info-card a {
  font-weight: 700;
  border-bottom: 2px solid var(--olive);
  padding-bottom: 1px;
  justify-self: start;
}

.contact-info-card p {
  color: var(--text-inverse-soft);
  font-size: 0.95rem;
}

/* Quotes on light background */

.quote-card-light {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.quote-card-light blockquote {
  margin: 0;
  color: var(--text-soft);
}

.quote-card-light p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--olive-deep);
}

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

/* Results */

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

.result-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow);
}

.result-card img {
  width: 100%;
  object-fit: cover;
}

.result-card-copy {
  padding: 1.3rem 1.4rem 1.5rem;
  display: grid;
  gap: 0.5rem;
  border-top: 4px solid var(--olive);
}

.result-card-copy blockquote {
  margin: 0;
  color: var(--text-soft);
}

.result-card-copy p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--olive-deep);
}

.fineprint {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 40rem;
  margin: 1.4rem auto 0;
}

/* Prose (blog articles, legal pages, landing copy) */

.prose-shell {
  max-width: 780px;
  margin: 0 auto;
}

.prose {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--olive);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  display: grid;
  gap: 1rem;
}

.prose h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-top: 0.6rem;
}

.prose h3 {
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: var(--text-soft);
}

.prose ul,
.prose ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.prose a {
  font-weight: 700;
  border-bottom: 2px solid var(--olive);
}

.prose .notice {
  background: rgba(155, 156, 54, 0.12);
  border: 1px solid rgba(155, 156, 54, 0.5);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  color: var(--text);
  font-size: 0.92rem;
}

/* Blog cards */

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

.blog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-copy {
  padding: 1.2rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  border-top: 4px solid var(--olive);
}

.blog-card-meta {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
}

.blog-card-copy p:not(.blog-card-meta) {
  color: var(--text-soft);
  font-size: 0.93rem;
}

/* Resource cards */

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

/* Inner-page responsive */

@media (max-width: 1100px) {
  .coach-grid,
  .price-grid,
  .schedule-grid,
  .quote-row,
  .blog-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-block,
  .split-form,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-reverse .split-block-media {
    order: 0;
  }
}

@media (max-width: 720px) {
  .coach-grid,
  .price-grid,
  .schedule-grid,
  .quote-row,
  .blog-grid,
  .resource-grid,
  .result-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .page-hero-stats {
    gap: 1.3rem;
  }

  .embed-card iframe {
    min-height: 700px;
  }
}

/* ============================================================
   Tablet: 721–1100
   ============================================================ */

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    width: min(360px, 86vw);
    background: var(--ink);
    color: var(--bone);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 5.4rem 2rem 2rem;
    font-size: 1.05rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -30px 0 60px rgba(23, 23, 18, 0.4);
  }

  .site-nav > a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-nav-cta {
    display: inline-flex;
    margin-top: 1.2rem;
    width: 100%;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: var(--olive);
    color: var(--ink);
    padding: 0.8rem 1rem 0.65rem;
    border-radius: var(--radius);
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 160;
  }

  .menu-toggle.is-open span {
    background: var(--bone);
  }

  .nav-actions {
    display: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hurdles-grid,
  .programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specials-shell,
  .results-shell,
  .cta-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================================
   Phone: ≤720
   ============================================================ */

@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.3rem);
  }

  h2 {
    font-size: clamp(2.1rem, 8.5vw, 2.6rem);
  }

  .section-block {
    padding: 1.9rem 0;
  }

  .promo-shell {
    justify-content: center;
    gap: 0.9rem;
    font-size: 0.76rem;
  }

  .brand-logo {
    height: 44px;
  }

  .hero-shell {
    min-height: 0;
    padding: 2.6rem 0 1.8rem;
  }

  .hero-copy {
    gap: 1.1rem;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 1.4rem;
  }

  .hero-proof strong {
    font-size: 1.8rem;
  }

  .marquee-track p {
    font-size: 1.15rem;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .section-actions .button {
    width: 100%;
  }

  .hurdles-grid,
  .pillars-grid,
  .footer-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Programs become a swipeable carousel on phones */
  .programs-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.25rem;
    gap: 0.8rem;
    margin: 0 calc(50% - 50vw);
    padding: 0 1.25rem 0.8rem;
    scrollbar-width: none;
  }

  .programs-grid::-webkit-scrollbar {
    display: none;
  }

  .program-card {
    scroll-snap-align: start;
  }

  .step-card {
    padding: 1.3rem 1.2rem 1.4rem;
  }

  .step-number {
    font-size: 2.4rem;
  }

  .trial-card iframe {
    min-height: 720px;
  }

  .cta-section::before {
    font-size: 12rem;
  }

  .cta-actions .button,
  .specials-copy .button {
    width: 100%;
  }

  .workout-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .workout-copy .button {
    width: 100%;
  }

  .stat-band-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    text-align: center;
  }

  .stat-band-shell strong {
    font-size: 1.9rem;
  }

  .stat-band-shell span {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-offer-chip {
    font-size: 0.78rem;
  }

  .button-xl {
    font-size: 1.2rem;
  }

  .hero-alt-link {
    align-self: start;
  }

  .legal-shell {
    justify-content: center;
    text-align: center;
    padding-bottom: 4.6rem; /* room above the sticky CTA bar */
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-strip-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-strip .button {
    width: 100%;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(23, 23, 18, 0.96);
    border-top: 1px solid var(--line-dark);
  }

  .swipe-hint {
    display: block;
    margin-top: 0.6rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--olive-deep);
  }

  .mobile-cta-bar .button {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.66rem 0.6rem 0.52rem;
  }

  .mobile-cta-bar .button-dark {
    border-color: rgba(244, 242, 233, 0.4);
  }

  body.mobile-menu-open .mobile-cta-bar {
    display: none;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schedule-strip-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }

  .schedule-strip .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
