/* =============================================================
   QC PUMP HOUSE · pump physique culture
   Deep ink · Cream · Cobalt blue · Chrome
   ============================================================= */

:root {
  --ink:        #0A0E15;
  --ink-2:      #131A28;
  --ink-3:      #1E2A40;
  --steel:      #2A3552;
  --steel-2:    #3D4A6E;

  --bone:       #F5F1E8;
  --bone-2:     rgba(245, 241, 232, 0.72);
  --bone-3:     rgba(245, 241, 232, 0.5);
  --bone-4:     rgba(245, 241, 232, 0.18);

  /* Cobalt blue (their brand color) — accent slot named --yellow internally
     for compatibility with template structure */
  --yellow:     #2563EB;
  --yellow-2:   #3B82F6;
  --yellow-3:   #1E40AF;
  --yellow-glow: rgba(37, 99, 235, 0.4);

  --hairline:   rgba(245, 241, 232, 0.10);
  --hairline-2: rgba(37, 99, 235, 0.30);

  --display:    "Archivo Black", "Arial Black", sans-serif;
  --display-2:  "Archivo", system-ui, sans-serif;
  --mono:       "Roboto Mono", "Courier New", monospace;

  --maxw:       1440px;
  --gutter:     clamp(1.25rem, 4.5vw, 4rem);

  --t-fast:  200ms cubic-bezier(.4, 0, .2, 1);
  --t-med:   360ms cubic-bezier(.4, 0, .2, 1);
  --t-slow:  820ms cubic-bezier(.16, 1, .3, 1);
  --t-glide: 1200ms cubic-bezier(.16, 1, .3, 1);
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection, *::selection { background: var(--yellow); color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); cursor: pointer; }
button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; }
ul { list-style: none; }

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

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--steel-2); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow-3); }

/* ---------------- type ---------------- */
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--bone);
}
.accent { color: var(--yellow); }

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--bone);
  line-height: 0.92;
  text-transform: uppercase;
  display: inline-block;
}
.brand--lg { font-size: 1.6rem; }
.brand__sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--bone-3);
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.4rem;
}
.eyebrow--join { color: var(--bone); }
.rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--yellow);
  margin: 1.4rem 0 2rem;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--t-med);
  white-space: nowrap;
  position: relative;
}
.btn--lg { min-height: 56px; padding: 0 2rem; font-size: 0.85rem; }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--yellow);
}
.btn--yellow svg { transition: transform var(--t-fast); }
.btn--yellow:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone-4);
}
.btn--ghost:hover { border-color: var(--bone); background: var(--bone); color: var(--ink); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  padding: 0.7rem 0;
  position: relative;
  z-index: 51;
}
.ticker__track {
  display: flex;
  gap: 1.8rem;
  white-space: nowrap;
  align-items: center;
  width: max-content;
  animation: marquee 50s linear infinite;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ticker__dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--ink);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem var(--gutter);
  background: var(--ink);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t-med), padding var(--t-med);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  padding: 0.7rem var(--gutter);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand { line-height: 1; }
.nav__links {
  display: flex;
  gap: 2.2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  color: var(--bone-2);
  padding: 0.5rem 0;
}
.nav__links a:hover { color: var(--yellow); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  transition: right var(--t-med);
}
.nav__links a:hover::after { right: 0; }
.nav__cta { min-height: 40px; padding: 0 1.2rem; font-size: 0.7rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px; height: 30px;
  justify-content: center;
}
.nav__toggle span { display: block; height: 2px; background: var(--bone); transition: all var(--t-med); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 64px 0 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  border-top: 1px solid var(--hairline);
  z-index: 49;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a { color: var(--bone-2); }
.nav__mobile a:hover { color: var(--yellow); }
.nav__mobile .btn { font-family: var(--mono); font-size: 0.78rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62) contrast(1.1) grayscale(0.15);
}
.hero__overlay {
  position: absolute;
  inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.9) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(255,182,39,0.10), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--yellow);
  padding: 0.5rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
}
.hero__chip-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 182, 39, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 182, 39, 0); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 12.5rem);
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero__title-line {
  display: block;
  color: var(--bone);
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}
.hero__title-line--accent {
  color: var(--yellow);
  text-shadow: 0 6px 30px rgba(0,0,0,0.7), 0 0 60px rgba(255,182,39,0.25);
}

.hero__lede {
  font-family: var(--mono);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--bone-2);
  max-width: 42ch;
  margin-bottom: 2.4rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__scroll-text {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--bone-3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--yellow-2));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.stats__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 2px solid rgba(10,10,10,0.2);
}
.stat:last-child { border-right: 0; }
.stat__num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.92;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.stat__lbl {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story__body {
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--bone-2);
  margin-bottom: 1.4rem;
  max-width: 56ch;
}
.story__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.4rem;
  transition: gap var(--t-fast);
}
.story__cta:hover { gap: 0.9rem; }

.story__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--bone-4);
}
.story__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--t-glide);
  filter: contrast(1.05);
}
.story__visual:hover img { transform: scale(1.04); }
.story__visual figcaption {
  position: absolute;
  left: 0; bottom: 1.5rem;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  border-top: 2px solid var(--bone);
  border-bottom: 2px solid var(--bone);
}
.strip video,
.strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) contrast(1.1) grayscale(0.1);
}
.strip__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.strip__caption span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 4rem);
  color: var(--bone);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
  padding: 0 var(--gutter);
}

/* ============================================================
   IDENTITY · WHY THE FACTORY
   ============================================================ */
.identity {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.identity__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.identity__lede {
  font-family: var(--mono);
  font-size: 0.94rem;
  color: var(--bone-2);
  line-height: 1.75;
  margin-top: 1.4rem;
}
.identity__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 2px solid var(--bone);
}
.identity__col {
  padding: 2.5rem 2rem;
  position: relative;
}
.identity__col--yes { background: var(--ink); }
.identity__col--no {
  background: var(--ink-2);
  border-left: 2px solid var(--bone);
}
.identity__chk, .identity__x {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.identity__chk { background: var(--yellow); color: var(--ink); }
.identity__x { background: var(--ink-3); color: var(--bone); border: 2px solid var(--bone); }
.identity__hdr {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  margin-left: 2.6rem;
}
.identity__col--yes .identity__hdr { color: var(--yellow); }
.identity__col--no .identity__hdr { color: var(--bone-3); }
.identity__list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.identity__list li {
  font-family: var(--mono);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--bone-2);
  position: relative;
  padding-left: 1.5rem;
}
.identity__col--yes .identity__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-family: var(--display);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.1rem;
  line-height: 1;
  top: 0.15em;
}
.identity__col--no .identity__list li::before {
  content: "×";
  position: absolute;
  left: 0;
  font-family: var(--display);
  font-weight: 700;
  color: var(--bone-4);
  font-size: 1.2rem;
  line-height: 1;
  top: 0.1em;
}
.identity__col--no .identity__list li {
  color: var(--bone-3);
  text-decoration: line-through;
  text-decoration-color: var(--bone-4);
  text-decoration-thickness: 1px;
}

/* Culture gallery */
.identity__gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.6fr;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.ig__cell {
  overflow: hidden;
  margin: 0;
  position: relative;
  border: 2px solid var(--bone-4);
}
.ig__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-glide), filter var(--t-glide);
  filter: contrast(1.05) grayscale(0.1);
}
.ig__cell:hover img {
  transform: scale(1.05);
  filter: contrast(1.1) grayscale(0);
}
.ig__cell--1 { aspect-ratio: 4 / 5; grid-row: 1 / 3; }
.ig__cell--2 { aspect-ratio: 3 / 2; }
.ig__cell--3 { aspect-ratio: 3 / 2; }
.ig__cell--4 {
  aspect-ratio: 1 / 1;
  grid-column: 4;
  grid-row: 1 / 3;
  background: var(--ink-2);
}
.ig__cell--4 img { object-fit: contain; padding: 1rem; filter: none; }

.identity__cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.identity__line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.programs__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}
.programs__lede {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--bone-2);
  line-height: 1.75;
  margin-top: 1.4rem;
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--bone);
  border-left: 2px solid var(--bone);
}
.prog {
  padding: 2.2rem 1.8rem;
  border-right: 2px solid var(--bone);
  border-bottom: 2px solid var(--bone);
  background: var(--ink);
  transition: background var(--t-med), color var(--t-med);
  cursor: default;
}
.prog:hover { background: var(--ink-2); }
.prog__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
  letter-spacing: -0.005em;
}
.prog__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--bone);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.005em;
}
.prog__desc {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--bone-2);
  margin-bottom: 1.4rem;
}
.prog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.prog__meta li {
  border: 1px solid var(--bone-4);
  padding: 0.3rem 0.6rem;
}
.prog--cta { background: var(--yellow); }
.prog--cta:hover { background: var(--bone); }
.prog--cta .prog__num, .prog--cta .prog__name { color: var(--ink); }
.prog--cta .prog__desc { color: rgba(10,10,10,0.78); }
.prog__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.3rem;
  transition: gap var(--t-fast);
}
.prog__cta:hover { gap: 0.85rem; }
.programs__cta {
  max-width: 760px;
  margin: 4rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.programs__line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ============================================================
   FEATURE
   ============================================================ */
.feature {
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature__media {
  overflow: hidden;
  position: relative;
  border: 2px solid var(--bone);
}
.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform var(--t-glide);
}
.feature__media:hover img { transform: scale(1.04); }
.feature__body {
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--bone-2);
  margin-bottom: 1.6rem;
  max-width: 50ch;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline-2);
}
.feature__list li {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--bone-2);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.feature__list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--yellow);
}
.feature__list strong {
  font-family: var(--display);
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-right: 0.4rem;
  font-size: 0.95rem;
}
.feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.4rem;
  transition: gap var(--t-fast);
}
.feature__cta:hover { gap: 0.95rem; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull {
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pull__quote p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.18;
  color: var(--bone);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.pull__quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: clamp(5rem, 9vw, 7.5rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.reviews__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}
.reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--bone-2);
  margin-bottom: 1.4rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.rev {
  position: relative;
  background: var(--ink-2);
  border: 2px solid var(--bone-4);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t-fast), transform var(--t-med);
}
.rev:hover { border-color: var(--yellow); transform: translateY(-3px); }
.rev__tag {
  position: absolute;
  top: -10px;
  left: 1.4rem;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.3rem 0.6rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  border: 1px solid var(--yellow);
}
.rev__tag--alt { color: var(--bone); border-color: var(--bone-4); background: var(--ink-3); }
.rev__tag--first { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.rev__stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.rev__body {
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--bone-2);
  flex: 1;
}
.rev__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
}
.rev__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: 0.005em;
}
.rev__meta {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--bone-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reviews__cta {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.reviews__line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ============================================================
   JOIN / MEMBERSHIP
   ============================================================ */
.join {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.join__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.join__head {
  text-align: center;
  margin-bottom: 4rem;
}
.join__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--bone);
}
.join__cards {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}
.card {
  background: var(--ink);
  border: 2px solid var(--bone-4);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--t-med);
}
.card:hover { border-color: var(--yellow); }
.card--featured {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 14px 50px rgba(0,0,0,0.4);
}
.card__tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.7rem;
  background: var(--ink-2);
  border: 1px solid var(--yellow);
  display: inline-block;
  width: max-content;
}
.card__tag--gold {
  background: var(--ink);
  color: var(--yellow-2);
  border-color: var(--ink);
}
.card--featured .card__tag {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.card__dollar {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  margin-top: 0.5rem;
  color: var(--bone);
}
.card--featured .card__dollar { color: var(--ink); }
.card__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 5.5rem;
  letter-spacing: -0.02em;
  line-height: 0.86;
  color: var(--bone);
}
.card--featured .card__num { color: var(--ink); }
.card__period {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.6rem;
  color: var(--bone);
  letter-spacing: 0.04em;
}
.card--featured .card__period { color: var(--ink); }
.card__sub {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bone-2);
  margin-bottom: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card--featured .card__sub { color: rgba(10,10,10,0.78); }
.card__feats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--hairline);
  flex: 1;
}
.card--featured .card__feats { border-bottom-color: rgba(10,10,10,0.25); }
.card__feats li {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--bone-2);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.55;
}
.card--featured .card__feats li { color: var(--ink); }
.card__feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 2px;
  background: var(--yellow);
}
.card--featured .card__feats li::before { background: var(--ink); }
.card__feats strong {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  background: transparent;
  color: var(--bone);
  border: 2px solid var(--bone-4);
  transition: all var(--t-fast);
}
.card__cta:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.card__cta--prime {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.card__cta--prime:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.card__fine {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: rgba(10,10,10,0.7);
  margin-top: 0.8rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.join__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.join__lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.join__val {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bone);
  line-height: 1.6;
}
.join__val strong { color: var(--yellow); font-weight: 700; }
.join__val a:hover { color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer__brand .brand { font-size: 1.5rem; }
.footer__lineage {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--yellow);
  margin-top: 0.8rem;
  letter-spacing: 0.04em;
}
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.footer__col p {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--bone-2);
  line-height: 1.6;
}
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-3);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 1.2rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink), 0 10px 30px rgba(255,182,39,0.4);
  transform: translateY(120%);
  transition: transform var(--t-med);
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 760px) { .sticky-cta { display: flex; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; }
.reveal[data-rev="up"] { transform: translateY(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal[data-rev="line"] { transform: scaleX(0); transform-origin: left; transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal[data-rev="reveal"] { clip-path: inset(0 0 100% 0); transition: opacity var(--t-glide), clip-path var(--t-glide); opacity: 1; }
.reveal.is-visible { opacity: 1; transform: translateY(0) scaleX(1); clip-path: inset(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programs__grid { grid-template-columns: 1fr 1fr; }
  .story__grid, .feature { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 2px solid rgba(10,10,10,0.2); padding-bottom: 1.5rem; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 1.5rem; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .join__cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .card--featured { transform: none; }
  .join__details, .footer__inner { grid-template-columns: 1fr 1fr; }
  /* Identity section */
  .identity__cols { grid-template-columns: 1fr; }
  .identity__col--no { border-left: 0; border-top: 2px solid var(--bone); }
  .identity__gallery { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .ig__cell--1 { grid-row: auto; aspect-ratio: 4 / 3; }
  .ig__cell--4 { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .programs__grid { grid-template-columns: 1fr; }
  .reviews__grid, .join__details, .footer__inner { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  body { padding-bottom: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; clip-path: none; }
}
