/* CONBODY draft — 2026 visual redesign. Not the live WordPress site. */

:root {
  --void: #070707;
  --raised: #111111;
  --bone: #F3EEE6;
  --muted: #C9C2B6;
  --red: #FF8000;
  --red-hot: #FF991A;
  --hairline: #2A2A2A;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-ui: "Oswald", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --draft-h: 0px;
  --header-h: 76px;
  --gutter: clamp(1.15rem, 4.2vw, 4.75rem);
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--void);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--bone);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

::selection {
  background: var(--red);
  color: var(--bone);
}

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

.skip {
  position: absolute;
  left: var(--gutter);
  top: -4rem;
  z-index: 80;
  background: var(--red);
  color: var(--bone);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.skip:focus {
  top: 0.5rem;
}

/* ——— Type helpers ——— */
.overline {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  max-width: 38rem;
}

/* ——— Buttons ——— */
.btn:hover {
  filter: brightness(1.08);
}
.btn-red:hover {
  background: var(--red-hot);
}
.btn-ghost:hover {
  background: var(--bone);
  color: var(--void);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--bone);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(243, 238, 230, 0.32);
}

.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(243, 238, 230, 0.06);
}

.btn-lg {
  padding: 1.1rem 1.7rem;
  font-size: 0.76rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.2rem;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.text-link:hover {
  color: var(--muted);
  border-color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ——— Draft bar ——— */
.draft-bar {
  height: var(--draft-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  border-bottom: 1px solid var(--hairline);
  border-top: 2px solid var(--red);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--gutter);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.94);
  border-bottom-color: var(--hairline);
}

.logo {
  display: flex;
  align-items: center;
  width: 138px;
  flex-shrink: 0;
}

.logo img {
  width: 138px;
  height: auto;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  gap: clamp(1.1rem, 2.4vw, 2.4rem);
}

.nav-desktop a {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--bone);
}

.nav-desktop a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--red);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.header-ctas .btn {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .header-ctas .header-buy {
    display: none;
  }
}
.header-book {
  justify-self: end;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
}

.nav-toggle span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

body.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(7, 7, 7, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-y: auto;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    visibility 0.35s;
}

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

body.nav-open {
  overflow: hidden;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--bone);
  border-bottom: 1px solid var(--hairline);
  padding: 0.35rem 0 0.45rem;
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--red);
}

.nav-mobile .nav-mobile-meta {
  margin-top: 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-mobile .nav-mobile-meta a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.6;
  border: 0;
  padding: 0;
  color: var(--bone);
  display: inline;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--draft-h) - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  transform: scale(1.04);
  animation: hero-ken 22s var(--ease) forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.88) 0%,
      rgba(7, 7, 7, 0.55) 38%,
      rgba(7, 7, 7, 0.18) 68%,
      rgba(7, 7, 7, 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0.2) 0%,
      rgba(7, 7, 7, 0.08) 40%,
      rgba(7, 7, 7, 0.92) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 8vh, 5.5rem) var(--gutter) clamp(2.4rem, 6vh, 4.2rem);
  max-width: 58rem;
}

.hero-content .overline {
  color: var(--bone);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 12.2vw, 9.4rem);
  line-height: 0.84;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 11ch;
}

.hero h1 .red-dot {
  color: var(--red);
}

.hero-sub {
  margin-top: 1.35rem;
  max-width: 32rem;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.hero-content .actions {
  margin-top: 1.85rem;
}

.hero-where {
  margin-top: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-hero {
  position: relative;
  min-height: min(58vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero .hero-media img {
  object-position: 50% 40%;
  animation: none;
  transform: scale(1.02);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8.5vw, 6.6rem);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 14ch;
}

.page-hero--solid {
  min-height: unset;
  background: var(--void);
  border-bottom: 1px solid var(--hairline);
}

.page-hero--solid .hero-content {
  padding-top: clamp(3.2rem, 8vh, 5.5rem);
}

.page-hero--solid::before {
  display: none;
}

/* ——— Marquee ——— */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--void);
  overflow: hidden;
  padding: 0.85rem 0;
}

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

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 0 0.15rem;
  white-space: nowrap;
}

.marquee-track .sep {
  color: var(--red);
  padding: 0 1.35rem;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ——— Layout ——— */
.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(3.75rem, 9vw, 7.5rem) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.section-head h2,
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}

/* ——— Stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hairline);
}

.stat {
  padding: clamp(1.6rem, 3.5vw, 2.6rem) var(--gutter);
  border-right: 1px solid var(--hairline);
}

.stat:first-child {
  padding-left: var(--gutter);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  line-height: 0.85;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.stat span {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 16ch;
  line-height: 1.45;
}

/* ——— Method ——— */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.method-card {
  background: var(--void);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.3rem, 2.4vw, 2rem) 2rem;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  transition: background 0.3s;
}

.method-card:hover {
  background: var(--raised);
}

.method-num {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7vw, 6.4rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--hairline);
  letter-spacing: 0.02em;
}

.method-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  line-height: 0.95;
  margin: 1.1rem 0 0.9rem;
  letter-spacing: 0.02em;
}

.method-card p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 28ch;
  flex: 1;
}

.method-card .text-link {
  margin-top: 1.4rem;
}

/* ——— Split ——— */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 78vh;
  background: var(--void);
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.split-media img,
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.split-media:hover img,
.media:hover img {
  transform: scale(1.04);
}

.split-media img {
  object-position: 50% 40%;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.5rem) clamp(1.6rem, 4vw, 4rem);
  border-left: 1px solid var(--hairline);
  background: var(--raised);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 0.9;
  margin: 0.85rem 0 1.2rem;
  max-width: 10ch;
}

.split-kicker {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.split-copy p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}

.split-copy p + p {
  margin-top: 1rem;
}

.split-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  mix-blend-mode: difference;
}

/* ——— Instructors / floor ——— */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.floor-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--raised);
  aspect-ratio: 3 / 4;
}

.floor-card .media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.4s var(--ease);
}

.floor-card:hover img {
  transform: scale(1.04);
}

.floor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(7, 7, 7, 0.55) 68%,
    rgba(7, 7, 7, 0.96) 100%
  );
  pointer-events: none;
}

.floor-meta {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 1;
}

.floor-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.floor-meta p {
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.82;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 0.7rem;
}

.bio-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--raised);
  border: 1px solid var(--hairline);
  min-height: 280px;
}

.bio-card .media {
  overflow: hidden;
  min-height: 280px;
}

.bio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 1.4s var(--ease);
}

.bio-card:hover img {
  transform: scale(1.04);
}

.bio-copy {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.bio-copy .role {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0.45rem 0 0.85rem;
}

.bio-copy p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ——— First class ——— */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.expect-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.15rem;
  height: 1px;
  background: var(--hairline);
}

.expect-step {
  padding: 0 clamp(1rem, 2vw, 2rem) 0 0;
  position: relative;
}

.expect-step:not(:last-child) {
  padding-right: clamp(1.4rem, 3vw, 2.6rem);
}

.expect-n {
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  border: 1px solid var(--red);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.expect-step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.7rem;
}

.expect-step p {
  color: var(--muted);
  font-weight: 300;
  max-width: 28ch;
  font-size: 0.98rem;
}

/* ——— Press ——— */
.press {
  padding: clamp(2.2rem, 5vw, 3.2rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.press-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.press-row .overline {
  flex: 0 0 auto;
}

.press-logos {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex: 1;
  justify-content: space-around;
  flex-wrap: wrap;
}

.press-logos img {
  height: 28px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
}

.press-logos img[src*="gma"] {
  height: 42px;
}

.press-note {
  margin-top: 1.35rem;
  max-width: 40rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

/* ——— Closer ——— */
.closer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 72vh;
}

.closer-copy {
  padding: clamp(2.4rem, 6vw, 5rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--hairline);
}

.closer-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6.5vw, 5.6rem);
  line-height: 0.88;
  max-width: 10ch;
  margin: 0.7rem 0 1.3rem;
}

.closer-copy p {
  color: var(--muted);
  font-weight: 300;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.closer-copy .actions {
  margin-top: 1.8rem;
}

.closer-media {
  overflow: hidden;
  min-height: 360px;
}

.closer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transition: transform 1.6s var(--ease);
}

.closer-media:hover img {
  transform: scale(1.04);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 3.2rem 0 1.6rem;
  background: var(--void);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
}

.footer-brand .logo {
  margin-bottom: 1.15rem;
}

.footer-brand address {
  font-style: normal;
  font-weight: 300;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-brand a {
  color: var(--bone);
}

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

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--bone);
  padding: 0.18rem 0;
  width: fit-content;
}

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

.footer-base {
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Inner: workout ——— */
.prose-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--hairline);
}

.prose-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
  max-width: 12ch;
}

.prose-block p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 40rem;
}

.prose-block p + p {
  margin-top: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.two-col article {
  background: var(--void);
  padding: clamp(2rem, 4vw, 3.2rem);
}

.two-col h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.two-col li {
  color: var(--muted);
  font-weight: 300;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 1.02rem;
}

.two-col li:last-child {
  border-bottom: 0;
}

.cta-band {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: left;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.88;
  margin: 0.6rem 0 1.4rem;
  max-width: 14ch;
}

/* ——— About extras ——— */
.stat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.stat-band .stat {
  padding: clamp(2.2rem, 5vw, 3.6rem) var(--gutter);
}

.studio-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.studio-strip .split-copy {
  border-left: 0;
  border-right: 1px solid var(--hairline);
}

/* ——— Schedule ——— */
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.day {
  background: var(--void);
  min-height: 220px;
  padding: 1.1rem 0.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.25s;
}

.day:hover {
  background: var(--raised);
}

.day b {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: 0.04em;
  writing-mode: horizontal-tb;
  line-height: 0.9;
}

.day span {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.day em {
  font-style: normal;
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-note {
  margin-top: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  max-width: 42rem;
}

.ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.way {
  background: var(--void);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  min-height: 16rem;
  display: flex;
  flex-direction: column;
}

.way .n {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--hairline);
}

.way h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 1rem 0 0.7rem;
}

.way p {
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}

.way a {
  margin-top: 1.2rem;
}

.types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.type-card {
  border: 1px solid var(--hairline);
  padding: 1.4rem 1.1rem 1.3rem;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--raised);
  transition: border-color 0.25s, background 0.25s;
}

.type-card:hover {
  border-color: var(--red);
}

.type-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.type-card p {
  margin-top: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ——— Donate / Foundation ——— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.donate-hero {
  min-height: min(72vh, 680px);
}

.donate-hero h1 {
  font-family: var(--font-display);
  max-width: 10ch;
  font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.donate-hero h1 .red-dot {
  color: var(--red);
}

.donate-hero .hero-sub {
  max-width: 36rem;
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.88) 0%,
      rgba(7, 7, 7, 0.52) 40%,
      rgba(7, 7, 7, 0.18) 72%,
      rgba(7, 7, 7, 0.5) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0.22) 0%,
      rgba(7, 7, 7, 0.08) 38%,
      rgba(7, 7, 7, 0.92) 100%
    );
  pointer-events: none;
}

.donate-hero .hero-media img {
  object-position: 48% 42%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0;
  padding: 0.95rem var(--gutter);
  border-bottom: 1px solid var(--hairline);
  background: var(--void);
}

.trust-strip span {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.2rem 0.95rem;
}

.trust-strip span:not(:last-child) {
  border-right: 1px solid var(--hairline);
}

.give-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1px;
  background: var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.give-widget,
.give-where {
  background: var(--void);
  padding: clamp(2.2rem, 5vw, 4.2rem) var(--gutter);
}

.give-where {
  background: var(--raised);
}

.give-widget h2,
.give-where h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0.7rem 0 1.15rem;
  max-width: 12ch;
}

.give-lead {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 34rem;
  margin-bottom: 1.55rem;
}

.freq-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hairline);
}

.freq-btn {
  padding: 1rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  text-align: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.freq-btn + .freq-btn {
  border-left: 1px solid var(--hairline);
}

.freq-btn:hover {
  color: var(--bone);
}

.freq-btn[aria-pressed="true"] {
  background: var(--red);
  color: var(--bone);
}

.freq-prefer {
  margin: 0.7rem 0 1.15rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.amount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.amount-chip {
  flex: 1 0 calc(20% - 0.45rem);
  min-width: 4.4rem;
  padding: 0.95rem 0.4rem;
  border: 1px solid var(--hairline);
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.amount-chip:hover {
  border-color: var(--bone);
}

.amount-chip.is-selected,
.amount-chip[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--bone);
}

.give-custom {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  border: 1px solid var(--hairline);
  background: var(--void);
  color: var(--bone);
  padding: 0 1rem;
  margin-bottom: 1.15rem;
  min-height: 3.2rem;
  transition: border-color 0.2s var(--ease);
}

.give-custom.is-active {
  border-color: var(--red);
}

.give-custom .give-dollar {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1;
}

.give-custom input {
  flex: 1;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 0;
  outline: none;
  min-width: 0;
}

.give-custom input::placeholder {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.give-custom input::-webkit-outer-spin-button,
.give-custom input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.give-custom input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.give-cta {
  width: 100%;
}

.give-legal {
  margin-top: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 36rem;
}

.where-list {
  display: flex;
  flex-direction: column;
}

.where-item {
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid var(--hairline);
}

.where-item:first-child {
  border-top: 1px solid var(--hairline);
}

.where-item .n {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.where-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.where-item p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 38ch;
}

.give-ways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.give-ways .method-card {
  min-height: 18rem;
}

.foundation-legal {
  padding: 1.35rem var(--gutter) 1.5rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

#give {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

.hero-content {
  animation: rise 1s var(--ease) both;
}

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

@keyframes hero-ken {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-media img,
  .split-media:hover img,
  .media:hover img,
  .floor-card:hover img,
  .bio-card:hover img,
  .closer-media:hover img {
    transform: none;
  }
}

/* ——— 1440 is default. Tablet ——— */
@media (max-width: 980px) {
  .nav-desktop {
    display: none;
  }

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

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-book {
    justify-self: end;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--hairline);
  }

  .method-grid,
  .expect-grid,
  .ways,
  .types {
    grid-template-columns: 1fr;
  }

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

  .expect-grid::before {
    display: none;
  }

  .expect-step {
    padding: 0 0 1.8rem;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 1.4rem;
  }

  .expect-step:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .split,
  .closer,
  .studio-strip,
  .prose-block,
  .bio-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .closer-copy,
  .studio-strip .split-copy {
    border: 0;
    border-top: 1px solid var(--hairline);
  }

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

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

  .bio-card {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .days {
    grid-template-columns: repeat(4, 1fr);
  }

  .day {
    min-height: 160px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .give-layout {
    grid-template-columns: 1fr;
  }

  .give-ways {
    grid-template-columns: 1fr 1fr;
  }

  .give-ways .method-card {
    min-height: 0;
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .trust-strip span {
    padding: 0.25rem 0.85rem 0.25rem 0;
  }

  .trust-strip span:not(:last-child) {
    border-right: 0;
  }

  .trust-strip span:not(:last-child)::after {
    content: "·";
    color: var(--red);
    margin-left: 0.85rem;
  }
}

/* ——— 390 ——— */
@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .logo,
  .logo img {
    width: 112px;
  }

  .header-book {
    padding: 0.78rem 0.9rem;
    font-size: 0.64rem;
  }

  .draft-bar {
    letter-spacing: 0.14em;
    font-size: 0.56rem;
  }

  .hero {
    min-height: calc(100svh - var(--draft-h) - var(--header-h));
  }

  .hero-media img {
    object-position: 70% 40%;
  }

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

  .floor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .bio-card {
    grid-template-columns: 1fr;
  }

  .bio-card .media {
    min-height: 320px;
    aspect-ratio: 3 / 4;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .press-logos img {
    height: 22px;
    max-width: 120px;
  }

  .press-logos img[src*="gma"] {
    height: 34px;
  }

  .days {
    grid-template-columns: repeat(7, 1fr);
  }

  .day {
    min-height: 140px;
    padding: 0.7rem 0.35rem 0.9rem;
  }

  .day b {
    font-size: 1.15rem;
  }

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

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

  .give-ways {
    grid-template-columns: 1fr;
  }

  .amount-chip {
    flex: 1 0 calc(33.33% - 0.45rem);
  }
}

@media (max-width: 420px) {
  .actions .btn {
    width: 100%;
  }

  .hero-content .actions .btn {
    width: auto;
  }

  .donate-hero .hero-content .actions .btn {
    width: 100%;
  }
}

/* Anchors sit below the sticky header */
#first,
.bio-card[id] {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

html {
  color-scheme: dark;
}

body {
  overflow-x: hidden;
}


/* qa-pass */
.text-link {
  white-space: nowrap;
}
.stat span {
  max-width: 11em;
  font-size: 0.68rem;
  line-height: 1.35;
}
.section-head .text-link {
  flex: 0 0 auto;
}

.draft-bar{display:none!important}
body{padding-top:var(--header-h)}

/* ——— Hero video + film band ——— */
.hero-media {
  overflow: hidden;
  background: #070707;
}
.hero-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  border: 0;
  transform: translate(-50%, -50%) scale(1.35);
}
.hero-film {
  margin-top: 0.85rem;
}
.hero-film a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.15rem;
}
.film-band {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--raised);
  padding: clamp(2.4rem, 6vw, 4.2rem) 0;
}
.film-band-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.film-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.9;
  margin: 0.7rem 0 0.85rem;
  max-width: 14ch;
}
.film-band p:not(.overline) {
  color: var(--muted);
  font-weight: 300;
  max-width: 36rem;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* ——— Film page ——— */
.film-watch {
  padding: clamp(2.4rem, 6vw, 4.4rem) 0;
  background: var(--void);
  border-bottom: 1px solid var(--hairline);
}
.film-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.film-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.film-legal {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}
