:root {
  /* Core theme tokens. Change these first for broad color or rhythm updates. */
  --bg: #080807;
  --panel: #151310;
  --panel-soft: #1a1714;
  --cream: #ebe3d5;
  --red: #ef2634;
  --red-50: rgba(239, 38, 52, 0.5);
  --red-outline: rgba(239, 38, 52, 0.64);
  --line: rgba(235, 227, 213, 0.16);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Desktop renders the 1440px design uniformly scaled to viewport width, so every
   desktop size shows the same proportions instead of capping and centering.
   1440 / 16px base = 90, so 100vw/90 yields exactly 16px at 1440px wide. */
@media (min-width: 1051px) {
  html {
    font-size: calc(100vw / 90);
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

/* Page-level texture is intentionally applied behind all sections. */
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 80% 10%, rgba(239, 38, 52, 0.08), transparent 28rem),
    radial-gradient(circle at 18% 58%, rgba(180, 80, 48, 0.055), transparent 24rem),
    linear-gradient(180deg, #080807 0%, #0d0c0b 48%, #070707 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 70%, transparent);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

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

/* Header remains absolute so it overlays the hero image on desktop. */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 1.65rem clamp(1rem, 4vw, 4.1rem);
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.78), rgba(5, 5, 4, 0));
}

.brand {
  display: inline-grid;
  gap: 0.22rem;
  width: fit-content;
  text-transform: uppercase;
}

.brand span {
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.78rem);
  font-weight: 900;
  line-height: 1;
}

.brand strong,
.brand span::first-letter,
.hero h1 span,
.section-heading h2 span,
.about-copy h2 span,
.results h2 span,
.posing-clients h2 span,
.reviews h2 span,
.partners h2 span,
.apply-section h2 span,
.hero-kicker strong {
  color: var(--red);
}

.brand small {
  color: var(--cream);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3.4vw, 3.8rem);
  justify-content: center;
}

.nav-links a,
.header-cta,
.btn,
.section-label,
.line-label,
.program-card li,
.status-panel span,
.metric-row span,
.site-footer a,
.site-footer p,
.form-note,
label span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(235, 227, 213, 0.78);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--red);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.35rem;
  padding: 0 1.45rem;
  background: var(--red);
  color: #fff;
}

.menu-toggle {
  position: relative;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border: 1px solid rgba(235, 227, 213, 0.32);
  background: rgba(8, 8, 7, 0.55);
  color: var(--cream);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle-bar {
  position: absolute;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 120ms ease,
    transform 180ms cubic-bezier(0.7, 0, 0.2, 1);
}

.menu-toggle-bar:nth-child(1) {
  transform: translateY(-0.43rem);
}

.menu-toggle-bar:nth-child(3) {
  transform: translateY(0.43rem);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  position: fixed;
  z-index: 50;
  background: rgba(8, 8, 7, 0.96);
}

body.menu-open .menu-toggle {
  border-color: rgba(239, 38, 52, 0.8);
  background: rgba(239, 38, 52, 0.14);
  color: #fff;
}

body.menu-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

body.menu-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.15);
}

body.menu-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  padding: 6.6rem clamp(1rem, 5vw, 3rem) 2rem;
  overflow-y: auto;
  visibility: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.98), rgba(13, 12, 11, 0.98)),
    linear-gradient(90deg, rgba(239, 38, 52, 0.12), transparent 45%, rgba(235, 227, 213, 0.06));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu-nav {
  display: grid;
  width: min(100%, 34rem);
  gap: 0.18rem;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(235, 227, 213, 0.14);
  color: var(--cream);
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible {
  border-color: rgba(239, 38, 52, 0.75);
  color: var(--red);
}

.mobile-menu-nav .mobile-menu-cta {
  gap: 0.55rem;
  min-height: 3.7rem;
  margin-top: 0.9rem;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: clamp(0.88rem, 4vw, 1.35rem);
  letter-spacing: 0.16em;
}

/* Hero imagery is separated from copy so the same content works on mobile and desktop. */
.hero {
  position: relative;
  min-height: 87vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(239, 38, 52, 0.28);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  display: block;
  overflow: hidden;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.88) 35%, rgba(8, 8, 7, 0.24) 70%, rgba(8, 8, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(48rem, 92vw);
  padding: 8.4rem 0 5.4rem clamp(1.2rem, 4.4vw, 4.4rem);
}

.line-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--red);
}

.line-label::before,
.line-label::after {
  display: inline-block;
  width: 3.1rem;
  height: 1px;
  content: "";
  background: var(--red);
}

.hero h1,
.about-copy h2,
.programs h2,
.results h2,
.posing-clients h2,
.reviews h2,
.apply-section h2 {
  margin: 0;
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1.4rem;
  font-size: clamp(4.8rem, 13.3vw, 13.2rem);
  line-height: 0.82;
}

.hero h1 span {
  display: block;
}

.hero-kicker {
  margin: 1.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 28rem;
  margin: 1.15rem 0 0;
  color: rgba(235, 227, 213, 0.88);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  font-weight: 700;
  line-height: 1.62;
}

.hero-actions,
.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.5rem;
  padding: 0 1.7rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #c71924);
  color: #fff;
  box-shadow: 0 1.2rem 3rem rgba(239, 38, 52, 0.16);
}

.btn-ghost {
  border-color: var(--red-outline);
  color: var(--cream);
  background: rgba(18, 14, 12, 0.45);
}

.btn-ghost:hover {
  border-color: var(--red);
  background: rgba(239, 38, 52, 0.1);
}

.compact {
  min-height: 3rem;
  padding-inline: 1.3rem;
}

/* The proof strip is CSS-only; duplicated markup inside the track creates the loop. */
.proof-strip {
  min-height: 3.15rem;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(41, 16, 15, 0.86), rgba(105, 19, 23, 0.72), rgba(36, 12, 12, 0.9));
  border-block: 1px solid rgba(239, 38, 52, 0.18);
}

.proof-strip-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  transform: translate3d(0, 0, 0);
  animation: proof-strip-marquee 17s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.proof-strip-group {
  display: flex;
  flex: 0 0 auto;
  min-height: 3.15rem;
  align-items: center;
}

.proof-strip-item,
.proof-strip-separator {
  flex: 0 0 auto;
  display: block;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.proof-strip-item {
  margin-right: clamp(0.95rem, 1.8vw, 1.45rem);
}

.proof-strip-separator {
  margin-right: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--red);
  letter-spacing: 0.02em;
}

@keyframes proof-strip-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}

/* Shared section padding keeps the page rhythm consistent across content blocks. */
.section-pad {
  padding: clamp(3.6rem, 7vw, 5.8rem) clamp(1.2rem, 4.6vw, 4.4rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(17rem, 25rem) minmax(20rem, 1fr) minmax(13rem, 18rem);
  gap: clamp(2rem, 4vw, 4.6rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(235, 227, 213, 0.1);
  background: var(--panel);
  box-shadow: 0 2rem 5rem var(--shadow);
}

.portrait-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.portrait-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portrait-caption span {
  display: none;
}

.portrait-caption small {
  color: var(--cream);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 1rem;
  color: var(--red);
}

.about-copy h2,
.programs h2,
.results h2,
.reviews h2,
.partners h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

/* Section heading sub-titles (in red) stack onto their own line so they
   stay readable and never clip on narrow viewports. */
.about-copy h2 span,
.programs h2 span,
.results h2 span,
.posing-clients h2 span,
.reviews h2 span,
.partners h2 span {
  display: block;
}

.about-copy p:not(.section-label) {
  max-width: 42rem;
  color: rgba(235, 227, 213, 0.86);
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.2rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.status-panel {
  display: grid;
  border-left: 1px solid var(--line);
}

.status-panel div {
  padding: 1.2rem 0 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
}

.status-panel p {
  margin: 0 0 0.4rem;
  color: var(--red);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 0.95;
}

.status-panel span {
  color: rgba(235, 227, 213, 0.64);
}

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

.section-heading {
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 23.2rem;
  padding: 1.55rem 1.55rem 1.75rem;
  border: 1px solid rgba(235, 227, 213, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--panel-soft);
  box-shadow: inset 0 0 4rem rgba(255, 255, 255, 0.015);
}

/* The details wrapper and its body stretch to fill the card so the price stays
   pinned to the bottom (via margin-top: auto). */
.program-card-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card-details > summary {
  display: block;
  list-style: none;
  cursor: default;
}

.program-card-details > summary::-webkit-details-marker,
.program-card-details > summary::marker {
  display: none;
}

.program-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Plus/minus toggle is hidden by default; the mobile breakpoint reveals it. */
.card-toggle {
  display: none;
}

.card-icon {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(239, 38, 52, 0.75);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 950;
}

.program-card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--cream);
  font-size: 1.13rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card p {
  max-width: 26rem;
  min-height: 0;
  margin: 0.75rem 0 0;
  color: rgba(235, 227, 213, 0.74);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.program-card .challenge-description {
  margin-bottom: 1rem;
}

.program-card .best-for {
  margin-top: 0.95rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(239, 38, 52, 0.82);
  color: rgba(235, 227, 213, 0.9);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.48;
}

.program-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(235, 227, 213, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.program-card li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "/";
}

.price {
  display: block;
  margin-top: auto;
  color: var(--red);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price span {
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.results {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(22rem, 35rem);
  gap: clamp(1.6rem, 5vw, 4.5rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.results-content {
  align-self: center;
}

/* Compact partners strip: affiliate credibility, intentionally quieter than offers. */
.partners {
  padding-top: clamp(2.2rem, 4vw, 3.1rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.1rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(239, 38, 52, 0.035), rgba(239, 38, 52, 0)),
    rgba(255, 255, 255, 0.01);
  scroll-margin-top: 1rem;
}

.partners-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(239, 38, 52, 0.34);
}

.partners-header .section-label {
  margin: 0;
}

.partners h2 {
  margin: 0;
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-card {
  position: relative;
  display: flex;
  min-height: 11.2rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(235, 227, 213, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: inset 0 0 4rem rgba(255, 255, 255, 0.012);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-card:hover,
.partner-card:focus-within {
  border-color: rgba(239, 38, 52, 0.72);
  box-shadow:
    inset 0 0 4rem rgba(255, 255, 255, 0.012),
    0 0 1.2rem rgba(239, 38, 52, 0.12);
  transform: translateY(-2px);
}

.partner-category {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partner-card h3 {
  max-width: 12rem;
  margin: 0;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1.16;
  text-transform: uppercase;
}

.partner-description {
  margin: 0.6rem 0 1rem;
  color: rgba(235, 227, 213, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.partner-card-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-right: 2.6rem;
}

.partner-link {
  color: rgba(235, 227, 213, 0.72);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.partner-link:hover,
.partner-link:focus-visible {
  color: var(--red);
}

.partner-code {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(239, 38, 52, 0.78);
  border-radius: 1px;
  background: rgba(239, 38, 52, 0.14);
  color: #fff;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  user-select: all;
  white-space: nowrap;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(10rem, 1fr));
  gap: 0.9rem 2rem;
  max-width: 33rem;
  margin-top: 1.5rem;
}

.metric-row div {
  min-height: 0;
  padding: 0 0 0.9rem;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.metric-row div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metric-row strong {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: var(--cream);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.25rem, 3.25vw, 3.05rem);
  font-weight: 950;
  line-height: 0.95;
  white-space: nowrap;
  text-transform: uppercase;
}

.metric-row span {
  display: block;
  max-width: 9.3rem;
  color: rgba(235, 227, 213, 0.64);
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
}

.metric-row .mobile-break {
  display: inline;
}

.result-image {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  border: 1px solid rgba(235, 227, 213, 0.12);
  background: var(--panel);
}

.result-image img {
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.result-image picture {
  height: 100%;
}

.result-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 45%);
}

.result-image p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-badge {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  width: 4.7rem;
  height: 4.7rem;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 3rem;
}

.place-badge span {
  align-self: flex-start;
  margin-top: 1.1rem;
  font-family: inherit;
  font-size: 0.72rem;
}

.transformations {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(239, 38, 52, 0.045), rgba(239, 38, 52, 0)),
    #070707;
  scroll-margin-top: 1rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

.comparison-card {
  min-width: 0;
}

.transformation-photo {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(235, 227, 213, 0.16);
  background: var(--panel);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.34);
}

.transformation-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.posing-clients {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 10%, rgba(239, 38, 52, 0.11), transparent 34rem),
    #090908;
  scroll-margin-top: 1rem;
}

.posing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.posing-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(235, 227, 213, 0.16);
  background: var(--panel);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.34);
}

.posing-card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
  pointer-events: none;
}

.posing-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.posing-card:hover img {
  transform: scale(1.018);
}

.posing-card figcaption {
  position: absolute;
  z-index: 1;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Reviews become a 3-column set on roomy screens, then a swipe row on smaller viewports. */
.reviews {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(239, 38, 52, 0.08), rgba(239, 38, 52, 0)),
    rgba(255, 255, 255, 0.01);
  scroll-margin-top: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
  margin-inline: 0;
  padding: 0;
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 24rem;
  height: auto;
  flex-direction: column;
  padding: 2.15rem 2.1rem 2.25rem;
  border: 1px solid rgba(235, 227, 213, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #0a0a09;
  box-shadow:
    inset 0 0 4rem rgba(255, 255, 255, 0.012),
    0 1.4rem 3rem rgba(0, 0, 0, 0.32);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.quote-mark {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.72;
}

.review-card p {
  margin: 0.8rem 0 0;
  color: rgba(235, 227, 213, 0.78);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.6;
}

.review-meta {
  margin-top: auto;
  padding-top: 1.4rem;
}

.review-card strong {
  display: block;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.2;
}

.review-dots {
  display: none;
}

.hazard-bar {
  height: 2px;
  margin: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 4.6vw, 4.4rem);
  background: var(--red);
}

/* Application form stays local-only; script.js handles the friendly success message. */
.apply-section {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(20rem, 43rem);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.apply-section h2 {
  font-size: clamp(3.4rem, 7.4vw, 6.4rem);
  line-height: 0.86;
}

.apply-section h2 span {
  display: block;
}

.apply-section p {
  color: var(--cream);
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.apply-proof {
  display: grid;
  gap: 0.85rem;
  max-width: 30rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.apply-proof li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(235, 227, 213, 0.78);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.apply-proof li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "/";
  font-weight: 950;
}

.apply-form {
  display: grid;
  gap: 1rem;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  color: rgba(235, 227, 213, 0.76);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(235, 227, 213, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--cream);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 2.8rem;
  padding: 0.8rem 1rem;
  outline: none;
}

select {
  appearance: none;
  padding-right: 2.7rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%) calc(100% - 1.15rem) 50% / 0.42rem 0.42rem no-repeat,
    linear-gradient(135deg, var(--red) 50%, transparent 50%) calc(100% - 0.86rem) 50% / 0.42rem 0.42rem no-repeat,
    rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

select:invalid {
  color: rgba(235, 227, 213, 0.42);
}

select option {
  background: #14110f;
  color: var(--cream);
}

textarea {
  resize: vertical;
}

.submit-slot {
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

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

.captcha-wrap[hidden] {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(239, 38, 52, 0.8);
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: -0.2rem 0 0;
  color: rgba(235, 227, 213, 0.42);
  text-align: center;
}

.payment-note {
  margin-top: 0.1rem;
  color: rgba(235, 227, 213, 0.55);
}

.form-status {
  min-height: 1rem;
  color: var(--red);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 43rem) max-content max-content max-content;
  gap: 1.8rem clamp(2.5rem, 4vw, 5rem);
  align-items: start;
  width: 100%;
  padding: 3.5rem clamp(1.2rem, 4vw, 3.6rem) 3.75rem;
  overflow: hidden;
  border-top: 1px solid rgba(239, 38, 52, 0.34);
  background:
    linear-gradient(180deg, rgba(239, 38, 52, 0.075), rgba(239, 38, 52, 0.018) 42%, rgba(0, 0, 0, 0)),
    rgba(255, 255, 255, 0.018);
}

.site-footer h3 {
  margin: 0 0 0.95rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.site-footer a,
.site-footer p {
  margin: 0;
  color: rgba(235, 227, 213, 0.62);
  line-height: 1.55;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-brand span {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: 0.01em;
}

.footer-mark {
  position: absolute;
  right: -0.45rem;
  bottom: -1.05rem;
  z-index: 0;
  pointer-events: none;
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(5.95rem, 10.2vw, 11.475rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  opacity: 0.08;
}

.site-footer > div {
  position: relative;
  z-index: 1;
}

.site-footer > div:nth-child(4) {
  margin-left: clamp(-2.4rem, -2vw, -1.4rem);
}

/* Tablet breakpoint: image-heavy sections stack, but achievements stay 4 columns x 2 rows. */
@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.85rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .about-section {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
  }

  .status-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .status-panel div {
    padding: 1.1rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  /* Use the portrait hero image at tablet sizes and pin it to the top-right
     so the subject's full head stays visible and sits to the right of the text. */
  .hero-bg img {
    object-position: 75% 0%;
  }

  /* Constrain hero text to the left ~58% so it never lands on the subject. */
  .hero-content {
    width: min(36rem, 58vw);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.9) 50%, rgba(8, 8, 7, 0.55) 72%, rgba(8, 8, 7, 0.2) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.78) 100%);
  }

  .proof-strip-item {
    margin-right: 1rem;
  }

  .proof-strip-separator {
    margin-right: 1.75rem;
  }

  /* At tablet, keep all three program cards on a single row. The smaller
     minmax allows 3 columns down through the entire tablet range. */
  .program-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  /* Compact card layout for tablet - tighter padding and type so 3 cards
     fit comfortably side by side without dominating the page. */
  .program-card {
    min-height: 0;
    padding: 1.05rem 1.1rem 1.2rem;
  }

  .program-card h3 {
    margin-top: 0.65rem;
    font-size: 0.96rem;
    letter-spacing: 0.1em;
  }

  .program-card p {
    min-height: 0;
    font-size: 0.82rem;
  }

  .program-card .best-for {
    font-size: 0.78rem;
  }

  .program-card ul {
    gap: 0.42rem;
    margin: 0.85rem 0 1rem;
  }

  .program-card li {
    font-size: 0.62rem;
    padding-left: 1.1rem;
  }

  .card-icon {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.62rem;
  }

  .price {
    font-size: 1.1rem;
  }

  .results,
  .apply-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .metric-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 56rem;
  }

  .metric-row div:nth-last-child(-n + 4) {
    border-bottom: 0;
  }

  /* Footer reflows as brand on top with a 3-column row underneath at tablet widths. */
  .site-footer {
    grid-template-columns: repeat(3, 1fr);
    justify-content: stretch;
  }

  .site-footer > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer > div:nth-child(4) {
    margin-left: 0;
  }

  .footer-mark {
    font-size: clamp(5rem, 14vw, 8.5rem);
    opacity: 0.07;
  }

  .footer-brand span {
    font-size: 1.45rem;
  }

  .review-card {
    flex: 0 0 min(31rem, calc(100vw - 2.4rem));
    min-height: 25.5rem;
  }

  .review-grid {
    display: flex;
    margin-inline: calc(clamp(1.2rem, 4.6vw, 4.4rem) * -1);
    padding: 0 clamp(1.2rem, 4.6vw, 4.4rem) 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: clamp(1.2rem, 4.6vw, 4.4rem);
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: 0;
    padding: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .review-card {
    flex: initial;
    min-height: 27.5rem;
  }
}

/* Mobile breakpoint: prioritize readable hero copy and touch-friendly controls. */
@media (max-width: 720px) {
  .site-header {
    padding: 1rem;
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .brand small {
    font-size: 0.48rem;
  }

  .menu-toggle {
    width: 3rem;
    height: 3rem;
  }

  .mobile-menu {
    padding: 5.75rem 1rem 1.25rem;
  }

  .mobile-menu-nav a {
    min-height: 2.85rem;
    font-size: clamp(1.38rem, 7vw, 2.05rem);
  }

  .mobile-menu-nav .mobile-menu-cta {
    min-height: 3.35rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 46rem;
  }

  .hero-bg img {
    object-position: 45% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.95) 0%, rgba(8, 8, 7, 0.88) 48%, rgba(8, 8, 7, 0.4) 82%, rgba(8, 8, 7, 0.15) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
  }

  .hero-content {
    padding: 7rem 1rem 3rem;
  }

  .hero .line-label {
    width: fit-content;
    max-width: none;
    justify-content: flex-start;
    gap: 0.65rem;
    margin-top: 2.1rem;
    white-space: nowrap;
  }

  .hero .line-label span {
    display: inline-block;
    max-width: none;
    white-space: nowrap;
  }

  .hero .line-label::before,
  .hero .line-label::after {
    flex: 0 0 1.35rem;
    width: 1.35rem;
  }

  .hero h1 {
    margin-top: 0.8rem;
    font-size: clamp(4.4rem, 21vw, 7.8rem);
  }

  .proof-strip-item,
  .proof-strip-separator {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .proof-strip-item {
    margin-right: 0.82rem;
  }

  .proof-strip-separator {
    margin-right: 1.35rem;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .transformation-heading {
    gap: 1rem;
  }

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

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

  .portrait-card {
    justify-self: center;
    width: min(100%, 26rem);
    max-width: 26rem;
  }

  .status-panel {
    grid-template-columns: 1fr 1fr;
  }

  .program-grid,
  .partner-grid,
  .field-pair,
  .site-footer {
    grid-template-columns: 1fr;
  }

  /* Restore comfortable type at mobile widths where each card is full-width
     and has room to breathe. Tablet keeps its tighter sizing. */
  .program-card {
    padding: 1.1rem 1.25rem 1.25rem;
  }

  .program-card h3 {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }

  .program-card p {
    font-size: 0.95rem;
  }

  .program-card .best-for {
    font-size: 0.9rem;
  }

  .program-card ul {
    gap: 0.55rem;
    margin: 1rem 0 1.25rem;
  }

  .program-card li {
    font-size: 0.7rem;
    padding-left: 1.3rem;
  }

  .card-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.66rem;
  }

  .price {
    font-size: 1.25rem;
  }

  /* Mobile-only accordion: each card becomes a tappable header that expands
     its body. Saves a lot of vertical scroll when browsing programs. */
  .program-card-details > summary {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .program-card-details > summary h3 {
    flex: 1;
    margin: 0;
  }

  .program-card-details > summary .card-icon {
    flex: 0 0 auto;
  }

  .card-toggle {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid rgba(239, 38, 52, 0.75);
  }

  .card-toggle::before,
  .card-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
    transition: transform 220ms ease;
    content: "";
  }

  .card-toggle::before {
    width: 55%;
    height: 1.5px;
  }

  .card-toggle::after {
    width: 1.5px;
    height: 55%;
  }

  /* When open, the vertical bar collapses so the + becomes a minus. */
  .program-card-details[open] .card-toggle::after {
    transform: translate(-50%, -50%) scaleY(0);
  }

  /* Add breathing room between summary and body only when expanded. */
  .program-card-details[open] .card-body {
    margin-top: 1rem;
  }

  /* When collapsed, drop the card's bottom padding so the header sits clean. */
  .program-card:has(.program-card-details:not([open])) {
    padding-bottom: 1.1rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-card {
    min-height: 0;
  }

  .metric-row {
    /* Phone achievement cards switch to 2 columns x 4 rows for readable labels. */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    max-width: none;
  }

  .metric-row div {
    min-height: 6.65rem;
    padding-bottom: 0.9rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-row div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .metric-row strong {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .metric-row span {
    max-width: none;
    font-size: 0.9rem;
    letter-spacing: 0;
    line-height: 1.22;
    text-transform: none;
  }

  .metric-row .mobile-break {
    display: block;
  }

  .review-card {
    min-height: 25.5rem;
    padding: 1.75rem 1.6rem 1.8rem;
  }

  .review-grid {
    align-items: flex-start;
  }

  .review-dots {
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    margin-top: 0.95rem;
  }

  .review-dot {
    width: 0.62rem;
    height: 0.62rem;
    padding: 0;
    border: 1px solid rgba(239, 38, 52, 0.55);
    border-radius: 999px;
    background: rgba(239, 38, 52, 0.28);
  }

  .review-dot[aria-current="true"] {
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 0 0.7rem rgba(239, 38, 52, 0.38);
  }

  .review-card .review-meta {
    margin-top: auto;
  }

}

/* Respect reduced-motion settings for the marquee. */
@media (prefers-reduced-motion: reduce) {
  .proof-strip-track {
    animation: none;
    transform: none;
  }
}

/* Narrow phones need full-width buttons and a simpler hero label. */
@media (max-width: 460px) {
  .btn,
  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .hero .line-label {
    gap: 0;
    font-size: 0.75rem;
    letter-spacing: 0.055em;
    margin-top: 2.7rem;
  }

  .hero .line-label::before,
  .hero .line-label::after {
    display: none;
  }

  .hero h1 {
    margin-top: 0.35rem;
  }

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

  .status-panel div {
    padding: 1rem 0.8rem;
  }

  .metric-row {
    gap: 0.8rem;
  }

  .metric-row div {
    min-height: 6.9rem;
  }

  .metric-row strong {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .metric-row span {
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .review-card {
    min-height: 25.5rem;
  }
}

@media (min-width: 421px) and (max-width: 460px) {
  .hero .line-label {
    font-size: 0.78rem;
  }
}
