/* =========================================================
   O'PEOPLE COMMUNITY — PREMIUM PERFORMANCE CLUB THEME
   Black / white / pink. Condensed display + grotesk body.
   ========================================================= */

/* ---------- Fonts ----------
   Loaded via <link> in the layout (parallel + render-blocking handled by HTML).
   Two families only: Barlow Condensed (display) + Inter (body).
   Mono falls back to system ui-monospace stack. */

/* ---------- Tokens ---------- */
:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --black-card: #111111;
  --black-raise: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --muted: #E8E8E8;
  --gray: #8A8A8A;
  --gray-dim: #5a5a5a;

  --pink: #FF6A00;
  --pink-hot: #FF8A1F;
  --pink-glow: rgba(255, 106, 0, 0.26);
  --pink-glow-2: rgba(255, 106, 0, 0.10);

  /* Premium neutral accent — warm cream pulled from sportswear editorial.
     Use sparingly: eyebrows, manifesto pull-quotes, decorative numerals.
     Body text stays on --muted/--white to keep contrast tight. */
  --bone: #F5F1EA;
  --bone-dim: #C9C2B4;

  --display: 'Barlow Condensed', 'Oswald', 'Archivo Narrow', system-ui, sans-serif;
  /* Italic accent face — same family as --display, used italic for the
     register lift. Single-family approach keeps the type system tight
     and premium; italics counterpoint the upright display without
     bringing a foreign character. Token name kept for stability. */
  --serif: 'Barlow Condensed', 'Oswald', 'Archivo Narrow', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius: 2px;
  --radius-lg: 4px;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  /* Vertical rhythm — single source of truth for section spacing.
     Every full-bleed homepage section consumes --section-py top+bottom;
     "tight" strips (social-proof, intro shelves) use --section-py-tight.
     The final/back-cover section trims its bottom via --section-py-final-bottom. */
  --section-py: clamp(80px, 10vw, 160px);
  --section-py-tight: clamp(56px, 7vw, 100px);
  --section-py-final-bottom: clamp(60px, 7vw, 110px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

::selection {
  background: var(--pink);
  color: #000;
}

/* ---------- Type ---------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.h-xl {
  font-size: clamp(60px, 10vw, 180px);
}

.h-lg {
  font-size: clamp(44px, 6.2vw, 108px);
}

.h-md {
  font-size: clamp(32px, 4vw, 64px);
}

.h-sm {
  font-size: clamp(22px, 2.2vw, 36px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  line-height: 1;
}

.eyebrow-muted {
  color: var(--bone);
}

.eyebrow .dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--pink);
  transform: translateY(-1.5px);
}

.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}

.mono {
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.pink {
  color: var(--pink);
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-tight {
  padding: var(--section-py-tight) 0;
}

/* Section modifiers — tonal alternation + consistent dividers.
   Combine freely, e.g. `.section.section--soft.section--bordered`. */
.section--soft {
  background: var(--black-soft);
}

.section--card {
  background: var(--black-card);
}

.section--raise {
  background: var(--black-raise);
}

.section--bordered {
  border-top: 1px solid var(--line);
}

.section--bordered-b {
  border-bottom: 1px solid var(--line);
}



.grid {
  display: grid;
  gap: 24px;
}

.row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  --fg: var(--white);
  --bd: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px 15px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

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

.btn-primary {
  --bg: var(--pink);
  --fg: #0a0205;
  --bd: var(--pink);
  box-shadow: 0 10px 40px var(--pink-glow);
}

.btn-primary:hover {
  --bg: var(--pink-hot);
  box-shadow: 0 16px 60px var(--pink-glow);
}

.btn-ghost {
  --bd: var(--line-strong);
}

.btn-ghost:hover {
  --bd: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-solid {
  --bg: var(--white);
  --fg: #000;
  --bd: var(--white);
}

.btn-solid:hover {
  --bg: #eaeaea;
}

.btn-arrow::after {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}

.btn-arrow:hover::after {
  width: 22px;
}

/* Link with underline sweep */
.link-sweep {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
}

.link-sweep::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform-origin: right;
  transition: transform .5s var(--ease);
}

.link-sweep:hover::after {
  transform: scaleX(0);
}

/* ---------- Header ----------
   Two-tier premium magazine layout:
     1. .header-strip — thin editorial datelined bar (mono, location +
        season status + EST year). Reads like a masthead.
     2. .nav — main row: brand left, primary nav centered, actions right.
   On scroll the strip collapses (max-height 0) so only the main row
   stays — keeps the cue subtle but the nav usable. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  border-bottom-color: var(--line-strong);
}

/* ---------- Main nav row ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  transition: padding .4s var(--ease);
}

.nav-primary {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Scroll state keeps geometry stable — only the backdrop deepens.
   Premium navs lock height so the page below doesn't reflow under the
   header during scroll. */

/* ---------- Brand lockup ----------
   Two-line wordmark + tagline lockup, premium boutique pattern. Top
   line is the condensed display brand with a Big Shoulders italic apostrophe
   accent; bottom line is a tight mono tagline that anchors the wordmark
   as an editorial masthead. */
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity .25s var(--ease);
  line-height: 1;
  text-decoration: none;
}

.brand:hover {
  opacity: 0.85;
}

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.04em;
}

/* Image logo for header / footer brand. Sized by height; width auto
   keeps the original aspect ratio (~2.7:1 in this brand kit). */
.brand-logo {
  display: block;
  height: clamp(44px, 3.4vw, 60px);
  width: auto;
  transition: opacity .25s var(--ease), height .35s var(--ease);
}

.brand:hover .brand-logo {
  opacity: 0.82;
}

.site-header.scrolled .brand-logo {
  height: clamp(38px, 2.8vw, 48px);
}

.site-footer .brand-logo {
  height: 56px;
}

.brand-tagline {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
  transition: color .35s var(--ease);
}

.brand:hover .brand-tagline {
  color: var(--pink);
}

/* The apostrophe rides as a Big Shoulders italic accent — pink, larger,
   tilted by its own glyph italics. Single most expressive character
   in the whole wordmark. */
.brand-apos {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pink);
  font-size: 1.18em;
  letter-spacing: 0;
  margin: 0 0.04em 0 0.02em;
  transition: transform .35s var(--ease);
  display: inline-block;
}

.brand:hover .brand-apos {
  transform: translateY(-2px) rotate(-3deg);
}


/* Retained for footer usage (uses brand-text + brand-sub). */
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.brand-sub {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 32px);
  list-style: none;
}

/* Each link: muted at rest, white on hover/active. Underline draws in
   from the left on hover via ::after; the active state stays drawn
   in pink with bolder weight. */
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 10px 0;
  transition: color .3s var(--ease);
  white-space: nowrap;
}

/* Hover sweep — thin white underline draws in from the left. */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Active state — pink text, heavier weight, and a 2px pink underbar
   that sits flush against the bottom of the link. Calmer + more
   confident than the old dot-plus-line combo. */
.nav-links a.active {
  color: var(--pink);
  font-weight: 700;
}

.nav-links a.active::after {
  height: 2px;
  bottom: 0;
  background: var(--pink);
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Lang switch — sliding pill indicator. The white "tab" lives on the
   container as a pseudo-element and slides left/right via :has() match
   on the active option. CSS-only, no JS bookkeeping. */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  padding: 3px;
  gap: 0;
  position: relative;
  isolation: isolate;
  border-radius: 2px;
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--white);
  transition: transform .35s var(--ease);
  z-index: -1;
}

.lang-switch:has(.lang-opt:nth-child(2).is-active)::before {
  transform: translateX(100%);
}

/* Anchor-based (public header/footer) */
.lang-switch .lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 5px 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  text-transform: uppercase;
  transition: color .35s var(--ease);
  position: relative;
}

.lang-switch .lang-opt.is-active {
  color: #000;
}

.lang-switch .lang-opt:hover:not(.is-active) {
  color: var(--white);
}

/* Button-based (legacy — admin or any remaining markup) */
.lang-switch button {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray);
  transition: color .2s var(--ease), background .2s var(--ease);
}

.lang-switch button.active {
  background: var(--white);
  color: #000;
}

.lang-switch button:hover:not(.active) {
  color: var(--white);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  transition: border-color .3s var(--ease), color .3s var(--ease),
    background .3s var(--ease), transform .3s var(--ease);
  color: var(--bone-dim);
}

.icon-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 106, 0, 0.06);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
}

/* ----- Header-scoped compact sizing -----
   Lang switch, icon button and CTA all lock to the same 36px height
   so the nav row reads as one clean line. */
.site-header .nav-right .icon-btn,
.site-header .nav-right .btn,
.site-header .nav-right .btn-cta-line,
.site-header .lang-switch {
  height: 36px;
  box-sizing: border-box;
}

.site-header .nav-right .icon-btn {
  width: 36px;
}

.site-header .nav-right .icon-btn svg {
  width: 14px;
  height: 14px;
}

/* ---------- Header CTA — outlined pink pill ----------
   Premium spec: thin pink border, pink label, pink arrow at rest;
   on hover the pill fills pink and the label inverts to ink black.
   Reads more like a "button" than the old underline link, but stays
   far less aggressive than a filled accent button at all times. */
.btn-cta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid var(--pink);
  background: transparent;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color .35s var(--ease), border-color .35s var(--ease),
    transform .35s var(--ease);
  white-space: nowrap;
}

/* Pink fill slides up from the bottom on hover — mechanical, premium. */
.btn-cta-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}

.btn-cta-line:hover {
  color: #0a0205;
  transform: translateY(-1px);
}

.btn-cta-line:hover::before {
  transform: translateY(0);
}

.btn-cta-line-arrow {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform .35s var(--ease);
}

.btn-cta-line:hover .btn-cta-line-arrow {
  transform: translateX(4px);
}

/* When the header compacts (scrolled), CTA loses a little vertical
   weight too — keeps the row visually unified. */
/* Scroll keeps right-rail sizing identical — geometry stable. */

.site-header .nav-right .btn {
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  gap: 8px;
}

.site-header .nav-right .btn svg {
  width: 13px;
  height: 13px;
}

.site-header .lang-switch {
  padding: 2px;
}

.site-header .lang-switch .lang-opt {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-size: 10.5px;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-right .icon-btn {
    display: none;
  }
}

/* On tight screens the line CTA collapses — label hides, arrow stays
   as a minimal indicator. (Legacy .btn-wa rules retained below for
   any fallback usage.) */
@media (max-width: 720px) {
  .btn-cta-line-label {
    display: none;
  }

  .btn-cta-line {
    padding: 0 8px;
  }

  .btn-cta-line::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header .nav-right .btn-wa .btn-text {
    display: none;
  }

  .site-header .nav-right .btn-wa {
    padding: 9px 10px;
  }
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--white);
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--white);
  transition: transform .3s var(--ease);
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger.open span {
  background: transparent;
}

.hamburger.open span::before {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 58px 0 0 0;
  z-index: 49;
  background: var(--black);
  padding: 40px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer a {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: -0.01em;
  line-height: 1;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.mobile-drawer a:hover {
  color: var(--pink);
}

.mobile-drawer .cta-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.02);
  transition: transform 0.05s linear;
}

/* ---------- Hero intro choreography ----------
   Page-load fade-up sequence: meta → headline → sub → CTA → strip.
   Each step lifts 24px and fades in over 900ms with --ease curve.
   Honors prefers-reduced-motion via the matching @media block. */
.hero-intro .hero-meta,
.hero-intro .hero-headline,
.hero-intro .hero-sub,
.hero-intro .hero-cta,
.hero-intro .hero-strip {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIntroIn 900ms var(--ease) forwards;
}

.hero-intro .hero-headline {
  animation-delay: 120ms;
}

.hero-intro .hero-sub {
  animation-delay: 260ms;
}

.hero-intro .hero-cta {
  animation-delay: 400ms;
}

.hero-intro .hero-strip {
  animation-delay: 560ms;
}

/* Headline letter-by-line stagger when split into spans. */
.hero-intro .hero-headline .accent,
.hero-intro .hero-headline .outline,
.hero-intro .hero-headline em {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIntroIn 800ms var(--ease) forwards;
  animation-delay: 320ms;
}

@keyframes heroIntroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-intro .hero-meta,
  .hero-intro .hero-headline,
  .hero-intro .hero-sub,
  .hero-intro .hero-cta,
  .hero-intro .hero-strip,
  .hero-intro .hero-headline .accent,
  .hero-intro .hero-headline .outline,
  .hero-intro .hero-headline em {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(108%) brightness(0.55);
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 10%, var(--pink-glow) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 106, 0, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.45) 0%, rgba(5, 5, 5, 0.55) 50%, rgba(5, 5, 5, 0.95) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-meta .left {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 128px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 18ch;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* Shared emphasis spans emitted by the heading() helper on any display
   heading (hero h1, page-hero h1, sec-head h2, …). Admins mark up
   content as `*word*` or `_word_` and these rules render the accent /
   outline treatment consistently. The accent ships as Big Shoulders
   italic — a condensed display sans with a true italic axis, giving
   the same editorial register lift as a serif counterpoint while
   staying inside the athletic visual language of the rest of the type. */
.hero-headline .accent,
.page-hero h1 .accent,
.sec-head h2 .accent,
.display .accent,
.display em,
.sec-head h2 em,
.final-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.005em;
}

.hero-headline .outline,
.page-hero h1 .outline,
.sec-head h2 .outline,
.display .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.hero-sub {
  margin-top: 28px;
  max-width: 58ch;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--muted);
  line-height: 1.55;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-link {
  color: var(--muted);
  transition: color .25s var(--ease);
}

.hero-link:hover {
  color: var(--pink);
}

/* ----- Hero bottom strip -----
   Two-column layout: upcoming event card + 4 pillar labels.
   Collapses to single column on tablet/mobile. */
.hero-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-strong);
}

.hero-strip.has-event {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
}

@media (max-width: 900px) {
  .hero-strip.has-event {
    grid-template-columns: 1fr;
  }
}

/* --- Upcoming event card --- */
.hero-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 106, 0, 0.04);
  transition: background .3s var(--ease), padding .3s var(--ease);
}

.hero-event:hover {
  background: rgba(255, 106, 0, 0.09);
}

@media (max-width: 900px) {
  .hero-event {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

.hero-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 10px 14px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1;
}

.hero-event-date .day {
  font-size: 28px;
  font-weight: 900;
}

.hero-event-date .mon {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.hero-event-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hero-event-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.hero-event-loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-event-arrow {
  font-size: 20px;
  color: var(--white);
  opacity: 0.7;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.hero-event:hover .hero-event-arrow {
  transform: translateX(6px);
  opacity: 1;
  color: var(--pink);
}

/* --- Pillars grid --- */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-pillars .pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.hero-pillars .pillar:last-child {
  border-right: 0;
}

.hero-pillars .pillar-index {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink);
}

.hero-pillars .pillar-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.hero-pillars .pillar-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 700px) {
  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-pillars .pillar {
    border-bottom: 1px solid var(--line);
  }

  .hero-pillars .pillar:nth-child(2n) {
    border-right: 0;
  }
}

.hero-scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gray);
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 40px;
  height: 1px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink);
  animation: scrollLine 2.2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ---------- HERO CINEMATIC ----------
   Full-bleed video background with gradient veil, top status rail,
   bottom-aligned editorial content block, and a floating event card
   anchored to the bottom-right corner. Layout overrides .hero defaults
   to flex-column instead of bottom-aligned, so the top rail can sit
   independently from the main content stack. */
.hero-cinematic {
  display: block;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 0;
  background: #050505;
}

.hero-cinematic .hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-cinematic .hero-video,
.hero-cinematic .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(28%) contrast(110%) brightness(0.62) saturate(96%);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Veil — three-stop dark gradient + radial vignettes for text contrast.
   Top stop is darker so the status rail stays legible; bottom stop is
   nearly opaque so the headline+CTA cluster reads at full contrast. */
.hero-cinematic .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(255, 106, 0, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 95% 92%, rgba(255, 106, 0, 0.10) 0%, transparent 40%),
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.72) 0%,
      rgba(5, 5, 5, 0.32) 28%,
      rgba(5, 5, 5, 0.55) 65%,
      rgba(5, 5, 5, 0.95) 100%);
}

.hero-cinematic .hero-grain {
  z-index: 2;
}

/* --- Main content block: bottom-aligned --- */
.hero-cinematic .hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(80px, 12vh, 140px);
}

.hero-cinematic .hero-pillars-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: clamp(28px, 4vh, 48px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.hero-cinematic .hero-pillars-eyebrow b {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 7px 2px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  color: var(--pink);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-cinematic .hero-pillars-eyebrow .dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bone-dim);
  opacity: 0.5;
}

.hero-cinematic .hero-headline {
  font-size: clamp(52px, 9vw, 168px);
  /* Spacing tuned for Turkish diacritics (Ç, İ, Ğ, Ş, Ü, Ö):
     - line-height 1.15 leaves room above for Ü / İ dots and below for
       Ç / Ş cedillas
     - letter-spacing 0 prevents adjacent glyphs from kissing
     - padding-top 0.12em + overflow visible guarantees the umlaut /
       title dots are not clipped by the parent's box. */
  line-height: 1.15;
  letter-spacing: 0;
  padding-top: 0.12em;
  overflow: visible;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-cinematic .hero-sub {
  margin-top: clamp(22px, 3vh, 34px);
  max-width: 56ch;
  color: var(--bone-dim);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-cinematic .hero-cta {
  margin-top: clamp(28px, 3.5vh, 40px);
}

/* --- Floating event card (right-bottom) --- */
.hero-event-floating {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(80px, 12vh, 140px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: clamp(280px, 24vw, 340px);
  padding: 18px 20px 18px 22px;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--pink);
  color: var(--white);
  text-decoration: none;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.hero-event-floating:hover {
  transform: translateY(-3px);
  background: rgba(20, 20, 20, 0.84);
  border-color: rgba(255, 106, 0, 0.35);
  border-left-color: var(--pink);
}

.hero-event-floating-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.hero-event-floating-tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

.hero-event-floating-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.hero-event-floating-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 10px 12px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1;
}

.hero-event-floating-date .day {
  font-size: 24px;
  font-weight: 900;
}

.hero-event-floating-date .mon {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-event-floating-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-event-floating-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
  overflow-wrap: break-word;
  margin: 0;
}

.hero-event-floating-body .loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.hero-event-floating-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  color: var(--white);
  opacity: 0.65;
  transition: transform .3s var(--ease), opacity .3s var(--ease), color .3s var(--ease);
}

.hero-event-floating:hover .hero-event-floating-arrow {
  transform: translateX(4px);
  opacity: 1;
  color: var(--pink);
}

@media (max-width: 900px) {
  .hero-event-floating {
    position: static;
    width: auto;
    margin: clamp(28px, 4vh, 40px) var(--gutter) clamp(24px, 4vh, 36px);
  }

  .hero-cinematic .hero-content {
    min-height: calc(100svh - 220px);
  }
}

/* Cinematic scroll cue — repositioned right side */
.hero-cinematic .hero-scroll {
  left: auto;
  right: var(--gutter);
  bottom: 18px;
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .hero-cinematic .hero-scroll {
    display: none;
  }

  .hero-cinematic .hero-headline {
    font-size: clamp(40px, 12vw, 64px);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--white);
  color: #000;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

.marquee-pink {
  background: var(--pink);
  color: #0a0205;
}

.marquee-dark {
  background: var(--black);
  color: var(--white);
}

/* Premium cream marquee — replaces the older pink shout. Outline
   words inherit a charcoal stroke so the band reads as editorial,
   not promotional. */
.marquee-bone {
  background: var(--bone);
  color: #16110b;
}

.marquee-bone .m-outline {
  -webkit-text-stroke-color: #16110b;
}

.marquee-bone .dot {
  color: var(--pink);
}

.marquee span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.marquee .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  margin: 0 28px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1;
  opacity: .85;
}

.marquee .dot::before {
  content: "✱";
  display: inline-block;
}

.marquee .m-item {
  display: inline-block;
}

.marquee em {
  font-style: italic;
  font-weight: 900;
  margin-left: 0.18em;
}

.marquee .m-item>em:first-child {
  margin-left: 0;
  margin-right: 0.18em;
}

.marquee .m-outline {
  color: transparent;
  -webkit-text-stroke: 1.6px currentColor;
  -webkit-text-stroke-color: #0a0205;
}

.marquee-dark .m-outline {
  -webkit-text-stroke-color: var(--white);
}

.marquee-dark .dot,
.marquee-dark span {
  color: var(--white);
}

.marquee-dark .dot {
  background: var(--pink);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

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

/* ---------- Section head ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.sec-head.single {
  grid-template-columns: 1fr;
}

.sec-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5.2vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
  margin: 0;
}

/* Sentence-case sec-head variant — restrained scale, no caps. Used
   for FAQ-style headings that should feel calmer than the brutalist
   default. The em accent stays serif italic + pink for register. */
.sec-head.sec-head-sentence h2 {
  font-size: clamp(34px, 3.6vw, 60px);
  text-transform: none;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 16ch;
}

/* Inline pink highlight that doesn't change the font — used to tint a
   word inside a display heading without dropping into the serif italic
   accent treatment. */
.sec-head h2 .hl,
.display .hl {
  color: var(--pink);
}

/* Section eyebrow — shared across .sec-head, .editorial-head and
   .hyrox-intro. Pink dot + bone-dim mono caps; matches the .intro-eyebrow
   used on internal intro sections so every up-title reads identically. */
.sec-head .num,
.editorial-head .num,
.hyrox-intro .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--bone-dim);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sec-head .num::before,
.editorial-head .num::before,
.hyrox-intro .num::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
  flex-shrink: 0;
}

.sec-head p {
  color: var(--muted);
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}

/* ---------- Editorial spread (homepage manifesto) ---------- */
.section-editorial {
  position: relative;
  overflow: hidden;
}

.editorial-watermark {
  position: absolute;
  right: -4vw;
  bottom: -6vw;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(220px, 32vw, 540px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  will-change: transform;
}

@media (max-width: 800px) {
  .editorial-watermark {
    display: none;
  }
}

.editorial-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}

.editorial-head {
  position: relative;
  z-index: 1;
  align-self: start;
  padding-top: 4px;
}

/* Editorial head — eyebrow style is owned by the shared .num rule
   above. Anything extra (h2 sizing) lives in .editorial-head h2. */

.editorial-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Manifesto headings drop into Big Shoulders italic for the emphasised
   word — counterpoints the upright condensed display with a sharper,
   atletik register lift. */
.editorial-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--pink);
  font-size: 1.02em;
  letter-spacing: -0.005em;
}

/* Editorial lede sizing is owned by .ed-lede-serif / .ed-lede-body,
   which compose typography for the manifesto + body pair. The base
   .lede only sets color + max-width as a fallback. */

/* Editorial leding — opening italic manifesto + body. Condensed italic
   sits above the body lede as a typographic counterpoint to the upright
   display. Sentence case keeps the body legible while italics carry the
   editorial register. */
.ed-lede-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.36;
  color: var(--bone);
  letter-spacing: 0.005em;
  max-width: 42ch;
  margin-top: 28px;
}

.ed-lede-body {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
}

/* Three principles strip — replaces the redundant stats. Roman numerals
   give a higher register than Arabic figures and reinforce the editorial
   tone. Each principle: a numeral, a label and a one-line maxim. */
.ed-principles {
  list-style: none;
  margin: clamp(34px, 4vw, 52px) 0 clamp(28px, 3vw, 40px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ed-principles li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line);
}

.ed-principles li:last-child {
  border-right: 0;
  padding-right: 0;
}

.ed-principles li+li {
  padding-left: 18px;
}

.ed-principles-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: 0.01em;
}

.ed-principles-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(15px, 1.05vw, 18px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}

.ed-principles-sub {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-dim);
  max-width: 26ch;
}

@media (max-width: 700px) {
  .ed-principles {
    grid-template-columns: 1fr;
  }

  .ed-principles li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .ed-principles li:last-child {
    border-bottom: 0;
  }

  .ed-principles li+li {
    padding-left: 0;
  }
}

.editorial-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.editorial-actions .link-sweep {
  color: var(--white);
}

.editorial-actions .link-sweep:hover {
  color: var(--pink);
}

/* ---------- Generic section CTA row utilities ---------- */
.section-cta-row {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.section-cta-split {
  justify-content: space-between;
}

/* ---------- HYROX intro body (paragraph + CTA stacked) ---------- */
.hyrox-intro-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hyrox-intro-cta {
  align-self: flex-start;
}

/* ---------- Final CTA eyebrow ---------- */
.final-eyebrow {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}

/* ---------- Community / Instagram block ---------- */
.ig-eyebrow {
  margin-bottom: 14px;
}

.ig-foot {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ig-foot-note {
  color: var(--gray-dim);
}

.editorial-images {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ed-img {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.ed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(108%);
  transition: transform 1s var(--ease), filter .6s var(--ease);
}

.ed-img:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(112%);
}

.ed-img figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.ed-img figcaption .dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pink);
  transform: translateY(-1px);
}

.ed-img-lead {
  aspect-ratio: 4 / 3;
  width: 100%;
  z-index: 1;
}

.ed-img-trail {
  aspect-ratio: 5 / 6;
  width: 45%;
  max-width: 100%;
  margin-left: auto;
  margin-top: -48px;
  z-index: 2;
  box-shadow: -14px -14px 0 0 var(--black);
  border-color: var(--line-strong);
}

.ed-img-lead::after,
.ed-img-trail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 5, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .4s var(--ease);
}

.ed-img:hover::after {
  opacity: 0.4;
}

@media (max-width: 1100px) {
  .editorial-top {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 64px);
  }

  .ed-img-lead {
    aspect-ratio: 4 / 3;
  }

  .ed-img-trail {
    aspect-ratio: 4 / 3;
    width: 60%;
    margin-top: -28px;
    box-shadow: -10px -10px 0 0 var(--black);
  }
}

@media (max-width: 600px) {
  .ed-img-trail {
    width: 75%;
    margin-top: -20px;
    box-shadow: -8px -8px 0 0 var(--black);
  }

  .editorial-meta li {
    padding-right: 12px;
    margin-right: 12px;
  }
}

/* ---------- Placeholder image ---------- */
.ph {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border: 1px solid var(--line);
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, var(--pink-glow-2) 0%, transparent 60%);
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.ph .ph-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ph .ph-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: grayscale(15%) contrast(105%) brightness(.82);
}

.ph.with-image::before,
.ph.with-image::after {
  display: none;
}

/* ---------- HYROX section ----------
   Background/border are owned by .section--soft / .section--bordered modifiers
   when this class is composed on a homepage section. */
.hyrox {
  position: relative;
}

.hyrox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hyrox-cell {
  padding: 24px 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: background .45s var(--ease), transform .45s var(--ease);
  overflow: hidden;
  isolation: isolate;
}

.hyrox-cell:hover {
  background: #0a0a0a;
  transform: translateY(-4px);
}

/* Bottom accent line draws in from left on hover. */
.hyrox-cell::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
  z-index: 2;
}

.hyrox-cell:hover::before {
  transform: scaleX(1);
}

/* Radial pink wash bleeds from the bottom-right corner on hover —
   reads like a stage spotlight catching the cell. */
.hyrox-cell::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -30%;
  width: 110%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, var(--pink-glow-2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .55s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.hyrox-cell:hover::after {
  opacity: 1;
}

.hyrox-cell-top,
.hyrox-cell-body {
  position: relative;
  z-index: 1;
}

/* Target metric grows + shifts pink on hover — the cell's vital number. */
.hyrox-cell .label,
.hyrox-cell .desc,
.hyrox-cell-target {
  transition: color .35s var(--ease), border-color .35s var(--ease),
    transform .45s var(--ease), letter-spacing .45s var(--ease);
}

.hyrox-cell:hover .label {
  transform: translateX(4px);
  color: var(--bone);
}

.hyrox-cell:hover .num {
  letter-spacing: 0.32em;
}

.hyrox-cell-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hyrox-cell .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.2em;
}

.hyrox-cell-target {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gray);
  padding: 4px 10px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.hyrox-cell:hover .hyrox-cell-target {
  border-color: var(--pink);
  color: var(--white);
}

.hyrox-cell-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hyrox-cell .label {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.4vw, 40px);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.hyrox-cell .desc {
  font-size: 12.5px;
  color: var(--gray-dim);
  line-height: 1.55;
  transition: color .3s var(--ease);
}

.hyrox-cell:hover .desc {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .hyrox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .hyrox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hyrox-cell {
    min-height: 160px;
    padding: 24px 20px;
  }
}

.hyrox-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(20px, 4vw, 64px);
  margin-bottom: 48px;
  align-items: end;
}

/* hyrox-intro eyebrow style is owned by the shared .num rule above. */

@media (max-width: 900px) {
  .hyrox-intro {
    grid-template-columns: 1fr;
  }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  padding: 32px 28px 32px;
  background: var(--black-soft);
  transition: background .35s var(--ease);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  background: #131313;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.2em;
}

.service-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gray);
  padding: 4px 10px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.service-card:hover .service-card-tag {
  border-color: var(--pink);
  color: var(--white);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  border: 1px solid var(--line-strong);
}

.service-card .icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 1.8vw, 30px);
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: -0.005em;
  line-height: 1;
}

.service-card p {
  margin-top: 14px;
  color: var(--gray-dim);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.service-card .arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s var(--ease), gap .3s var(--ease);
}

.service-card:hover .arrow {
  color: var(--pink);
  gap: 16px;
}

.service-card .arrow svg {
  width: 12px;
  height: 12px;
}

/* Homepage services preview: four equal cards instead of a broken 3+1 grid. */
body.page-homepage #services .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

body.page-homepage #services .service-card {
  min-height: 320px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035) 0%, rgba(255, 255, 255, 0) 42%),
    var(--black-soft);
}

body.page-homepage #services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--pink-glow-2) 0%, transparent 58%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

body.page-homepage #services .service-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

body.page-homepage #services .service-card {
  transition: background .45s var(--ease), border-color .45s var(--ease),
    transform .45s var(--ease);
}

body.page-homepage #services .service-card:hover {
  background: #121212;
  border-color: rgba(255, 255, 255, .22);
  transform: translateY(-6px);
}

body.page-homepage #services .service-card:hover::before {
  opacity: 1;
}

body.page-homepage #services .service-card:hover::after {
  transform: scaleX(1);
}

body.page-homepage #services .service-card .icon,
body.page-homepage #services .service-card h3,
body.page-homepage #services .service-card .arrow svg {
  transition: transform .45s var(--ease), color .35s var(--ease),
    border-color .35s var(--ease), background .35s var(--ease);
}

body.page-homepage #services .service-card:hover .icon {
  transform: scale(1.12) rotate(-3deg);
  border-color: var(--pink);
  background: rgba(255, 106, 0, 0.06);
}

body.page-homepage #services .service-card:hover h3 {
  transform: translateX(2px);
}

body.page-homepage #services .service-card:hover .arrow svg {
  transform: translateX(6px);
}

body.page-homepage #services .service-card .num {
  color: var(--pink);
}

body.page-homepage #services .service-card .icon {
  width: 52px;
  height: 52px;
  margin-top: 32px;
  background: rgba(255, 255, 255, .025);
  border-color: var(--line);
}

body.page-homepage #services .service-card h3 {
  margin-top: 28px;
  font-size: clamp(24px, 2vw, 34px);
}

body.page-homepage #services .service-card p {
  color: var(--gray);
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-homepage #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  body.page-homepage #services .services-grid {
    grid-template-columns: 1fr;
  }

  body.page-homepage #services .service-card {
    min-height: 260px;
  }
}

/* ---------- Experience ---------- */
.exp {
  position: relative;
}

.exp-flow {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.exp-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 280px) minmax(0, 1fr) 32px;
  grid-template-areas: "num img body arrow";
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(20px, 2.4vw, 32px) clamp(8px, 1vw, 16px);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease);
  position: relative;
}

.exp-row-num {
  grid-area: num;
}

.exp-row-img {
  grid-area: img;
}

.exp-row-body {
  grid-area: body;
}

.exp-row-arrow {
  grid-area: arrow;
}

.exp-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px) 80px 32px;
  grid-template-areas: "body img num arrow";
}

.exp-row:nth-child(even) .exp-row-body {
  text-align: right;
  align-items: flex-end;
}

.exp-row:nth-child(even) .exp-row-num {
  text-align: right;
}

.exp-row:nth-child(even)::before {
  left: auto;
  right: 0;
  transform-origin: bottom;
}

.exp-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}

.exp-row:hover {
  background: #0a0a0a;
}

.exp-row:hover::before {
  transform: scaleY(1);
}

.exp-row-num {
  font-family: var(--display);
  font-weight: 900;
  color: var(--pink);
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.exp-row-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.exp-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(108%);
  transition: transform 1s var(--ease), filter .6s var(--ease);
}

.exp-row:hover .exp-row-img img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(112%);
}

.exp-row-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.exp-row-body h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 2.2vw, 40px);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
}

.exp-row-body p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
  max-width: 64ch;
  transition: color .3s var(--ease);
}

.exp-row:hover .exp-row-body p {
  color: var(--muted);
}

.exp-row-arrow {
  font-family: var(--display);
  font-size: 24px;
  color: var(--gray-dim);
  justify-self: end;
  transition: color .3s var(--ease), transform .35s var(--ease);
}

.exp-row:hover .exp-row-arrow {
  color: var(--pink);
  transform: translateX(6px);
}

@media (max-width: 900px) {

  .exp-row,
  .exp-row:nth-child(even) {
    grid-template-columns: 60px minmax(0, 1fr);
    grid-template-areas:
      "num   body"
      "img   img";
    column-gap: 18px;
    row-gap: 18px;
    padding: 24px 8px;
  }

  .exp-row-img {
    aspect-ratio: 16 / 9;
  }

  .exp-row-arrow {
    display: none;
  }

  .exp-row:nth-child(even) .exp-row-body {
    text-align: left;
    align-items: flex-start;
  }

  .exp-row:nth-child(even) .exp-row-num {
    text-align: left;
  }
}

/* ---------- Schedule ----------
   Magazine programme layout. Outer card holds a date masthead, a day
   filter strip, the 7-column day grid, and the published-by footer. */
.schedule-wrap {
  border: 1px solid var(--line);
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

/* Subtle radial wash from the top-right — adds depth without noise. */
.schedule-wrap::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, var(--pink-glow-2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.schedule-wrap>* {
  position: relative;
  z-index: 1;
}

/* ---------- Date masthead ---------- */
.schedule-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
}

.schedule-top-mark {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-month {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.schedule-month-name {
  text-transform: capitalize;
}

.schedule-month-year {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  position: relative;
  padding-left: 14px;
}

.schedule-month-year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--pink);
  transform: translateY(-50%);
}

.schedule-top-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--bone-dim);
  text-transform: uppercase;
}

/* ---------- Day filters ---------- */
.schedule-filters {
  display: flex;
  gap: 8px;
  padding: 16px clamp(24px, 3vw, 36px);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

/* ---------- Day grid ---------- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-col {
  border-right: 1px solid var(--line);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.day-col:last-child {
  border-right: 0;
}

/* Day header: day name on the left in display, calendar ordinal on the
   right in pink — magazine date stamp pattern. */
.day-head {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.day-head .dow {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.day-head .dnum {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em;
}

/* Slot — class card. Time pink mono, name display sentence case,
   meta dim mono. Hover lifts the card with a pink left rail. */
.day-col .slot {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), padding .3s var(--ease);
  cursor: pointer;
  position: relative;
}

.day-col .slot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease);
}

.day-col .slot:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 22px;
}

.day-col .slot:hover::before {
  transform: scaleY(1);
}

.slot .time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--pink);
  letter-spacing: 0.12em;
  font-feature-settings: 'tnum' 1;
}

.slot .name {
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--white);
  transition: color .3s var(--ease);
}

.slot .meta {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Empty slot — no class today. Just a centered em-dash, no hover. */
.slot.is-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 14px;
  cursor: default;
  color: var(--gray-dim);
  border-bottom: 0;
}

.slot.is-empty span {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gray-dim);
  opacity: 0.4;
}

.slot.is-empty:hover {
  background: transparent;
  padding-left: 14px;
}

.slot.is-empty:hover::before {
  transform: scaleY(0);
}

/* ---------- Refined chip ---------- */
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease),
    background .3s var(--ease);
}

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

.chip.active {
  background: var(--white);
  color: #0a0205;
  border-color: var(--white);
}

.chip.pink.active {
  background: var(--pink);
  color: #0a0205;
  border-color: var(--pink);
}

/* ---------- Schedule footer (CTA + note) ---------- */
.schedule-cta {
  padding: clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
}


.schedule-wrap.is-image-only {
  padding: 24px;
}

.schedule-wrap.is-image-only img {
  width: 100%;
  height: auto;
}

.schedule-supplement {
  margin-top: 40px;
}

.schedule-supplement img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

/* ---------- Live schedule callout ----------
   Single-line card with an Instagram glyph, a two-tier label and an
   arrow. Replaces the older dashed-border ad-block layout. */
.schedule-live {
  margin-top: clamp(28px, 3.6vw, 44px);
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  color: var(--white);
  text-decoration: none;
  background: var(--black-soft);
  transition: border-color .35s var(--ease), background .35s var(--ease),
    transform .35s var(--ease);
}

.schedule-live:hover {
  border-color: var(--pink);
  background: rgba(255, 106, 0, 0.04);
  transform: translateY(-2px);
}

.schedule-live-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--pink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.schedule-live:hover .schedule-live-icon {
  border-color: var(--pink);
  background: rgba(255, 106, 0, 0.08);
}

.schedule-live-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.schedule-live-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.schedule-live-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.schedule-live-label {
  font-family: var(--body);
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

.schedule-live-arrow {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.04em;
  color: var(--pink);
  white-space: nowrap;
  transition: transform .35s var(--ease);
}

.schedule-live:hover .schedule-live-arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .day-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }

  .schedule-live {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .schedule-month-year {
    padding-left: 0;
  }

  .schedule-month-year::before {
    display: none;
  }

  .schedule-month {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}



/* Recovery service card meta line — kept compact, mono, monogram-style. */
.service-meta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.service-meta .dot-sep {
  color: var(--pink);
}

/* Recovery page location callout — replaces the old inline-styled box. */
.recovery-location {
  margin-top: clamp(40px, 5vw, 60px);
  padding: 22px 28px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--black-soft);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.recovery-location:hover {
  border-color: var(--pink);
  background: #121212;
}

.recovery-location>span {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Coaches ----------
   Photo card with bottom-overlay caption. Image fills the card edge
   to edge; a strong gradient at the bottom carries the name + role
   in caps. Rounded corners + subtle border give it a premium "card
   inside the page" feel rather than a flat magazine plate. */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.coach-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--black-soft);
  isolation: isolate;
  transition: transform .45s var(--ease), border-color .45s var(--ease),
    box-shadow .45s var(--ease);
}

.coach-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 106, 0, 0.18);
}

.coach-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(108%);
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
  z-index: 0;
}

.coach-card:hover>img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(112%);
}

/* Bottom gradient + caption — covers the lower half with a hard fade
   so caption text stays legible against any photo. */
.coach-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0 0;
  background: linear-gradient(180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.6) 50%,
      rgba(5, 5, 5, 0.96) 100%);
  pointer-events: none;
  z-index: 1;
}


/* Caption sits at the bottom of the photo, on top of the gradient. */
.coach-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Pink bar above the name — magazine credit accent. Widens on hover. */
.coach-bar {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--pink);
  margin-bottom: 10px;
  box-shadow: 0 0 14px var(--pink-glow);
  transition: width .4s var(--ease);
}

.coach-card:hover .coach-bar {
  width: 56px;
}

.coach-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
  transition: color .3s var(--ease);
}

.coach-card:hover .coach-name {
  color: var(--pink);
}

.coach-role {
  margin-top: 8px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
}

@media (max-width: 1000px) {
  .coaches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .coaches-grid {
    grid-template-columns: 1fr;
  }
}

/* Card is an <a> when slug links exist — strip the link decoration. */
a.coach-card {
  text-decoration: none;
  color: inherit;
}

/* ---------- Coach detail page ----------
   Hero shows the name in caps display + the role in mono caps below.
   Body splits into a left photo plate (with a stamped caption) and a
   right body column. Bottom: prev / next coach navigator. */
.coach-hero h1 {
  font-size: clamp(40px, 5.6vw, 84px);
}

.coach-hero .crumb a {
  color: var(--bone-dim);
  text-decoration: none;
  transition: color .25s var(--ease);
}

.coach-hero .crumb a:hover {
  color: var(--white);
}

.coach-hero .crumb-sep {
  margin: 0 4px;
  color: var(--gray-dim);
}

/* Role tagline under the hero name — mono caps, bone tone, generous
   tracking. Sits inside .page-hero so its left margin aligns with the
   pink rail. */
.coach-hero-role {
  margin-top: clamp(20px, 2.4vw, 28px) !important;
  padding-top: 0 !important;
  font-family: var(--mono);
  font-size: clamp(11px, 0.95vw, 13px);
  letter-spacing: 0.32em;
  color: var(--bone);
  text-transform: uppercase;
  max-width: none !important;
}

.coach-hero-role::before {
  display: none !important;
}

.coach-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.coach-detail-photo {
  margin: 0;
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--black-soft);
  isolation: isolate;
}

.coach-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(108%);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}

.coach-detail-photo:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(112%);
}

/* Bottom gradient + stamped caption: pink ordinal on the left, name
   caps on the right. Reads like a magazine cover credit. */
.coach-detail-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.55) 55%,
      rgba(5, 5, 5, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.coach-detail-photo-meta {
  position: absolute;
  left: clamp(20px, 2vw, 26px);
  right: clamp(20px, 2vw, 26px);
  bottom: clamp(20px, 2.2vw, 28px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
  margin: 0;
}

.coach-detail-photo-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.coach-detail-photo-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  text-align: right;
}

.coach-detail-body {
  padding-top: clamp(8px, 1.4vw, 24px);
}

.coach-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.coach-detail-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
}

.coach-detail-bio {
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0;
}

.coach-detail-bio p {
  margin: 0 0 14px;
}

.coach-detail-bio p:last-child {
  margin-bottom: 0;
}

/* Premium key/value list — each row stamped with a pink mono ordinal. */
.coach-detail-meta {
  margin: clamp(28px, 3.4vw, 40px) 0 0;
  padding-top: clamp(24px, 2.8vw, 32px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.coach-detail-meta>div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) minmax(0, 2fr);
  align-items: baseline;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.coach-detail-meta>div:last-child {
  border-bottom: 0;
}

.coach-detail-meta-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--pink);
  font-feature-settings: 'tnum' 1;
}

.coach-detail-meta dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0;
}

.coach-detail-meta dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: -0.005em;
  color: var(--white);
  text-align: right;
}

.coach-detail-meta dd a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

.coach-detail-meta dd a:hover {
  color: var(--pink);
}

.coach-detail-actions {
  margin-top: clamp(28px, 3.4vw, 40px);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Prev / next coach navigator at the bottom of the detail page. */
.coach-nav {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.coach-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--black-soft);
  color: var(--white);
  text-decoration: none;
  transition: border-color .35s var(--ease), background .35s var(--ease),
    transform .35s var(--ease);
}

.coach-nav-link.is-next {
  justify-content: flex-end;
  text-align: right;
  justify-self: end;
}

.coach-nav-link.is-prev {
  justify-self: start;
}

.coach-nav-link:hover {
  border-color: var(--pink);
  background: rgba(255, 106, 0, 0.04);
  transform: translateY(-2px);
}

.coach-nav-arrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--pink);
  transition: transform .35s var(--ease);
}

.coach-nav-link.is-prev:hover .coach-nav-arrow {
  transform: translateX(-4px);
}

.coach-nav-link.is-next:hover .coach-nav-arrow {
  transform: translateX(4px);
}

.coach-nav-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.coach-nav-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.coach-nav-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--white);
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .coach-detail-grid {
    grid-template-columns: 1fr;
  }

  .coach-nav {
    grid-template-columns: 1fr;
  }

  .coach-nav-link.is-next {
    justify-self: stretch;
    text-align: right;
  }

  .coach-nav-link.is-prev {
    justify-self: stretch;
  }
}

/* ---------- Events ----------
   Magazine event cover pattern: full-bleed photo plate, big pink date
   stamp at the top-left, a category eyebrow + name + arrow caption
   over a bottom gradient. Past events fade slightly until hovered. */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.event-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--black-soft);
  isolation: isolate;
  cursor: pointer;
  transition: transform .45s var(--ease), border-color .45s var(--ease),
    box-shadow .45s var(--ease);
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 106, 0, 0.18);
}

.event-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(108%);
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
  z-index: 0;
}

.event-card:hover>img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(112%);
}

/* Bottom gradient — keeps the caption legible against any photo. */
.event-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0 0;
  background: linear-gradient(180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.6) 50%,
      rgba(5, 5, 5, 0.96) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---------- Date stamp (top-left) ----------
   Horizontal capsule: large pink day, thin pink rule, vertical mon
   over year. Glass blur + soft border anchors it without competing
   with the photo. Hover pulses the rule + glows. */
.event-stamp {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.event-card:hover .event-stamp {
  border-color: rgba(255, 106, 0, 0.5);
  background: rgba(5, 5, 5, 0.65);
}

.event-stamp-day {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 0.9;
  color: var(--pink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.event-stamp-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg,
      rgba(255, 106, 0, 0) 0%,
      rgba(255, 106, 0, 0.7) 50%,
      rgba(255, 106, 0, 0) 100%);
}

.event-stamp-rest {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.event-stamp-mon {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.event-stamp-year {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
}

/* ---------- Caption (bottom) ---------- */
.event-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-cat .dot {
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pink);
  flex-shrink: 0;
}

.event-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  transition: color .3s var(--ease);
}

.event-card:hover .event-name {
  color: var(--pink);
}

.event-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: var(--pink);
  transition: transform .35s var(--ease);
}

.event-arrow svg {
  width: 18px;
  height: 18px;
}

.event-card:hover .event-arrow {
  transform: translateX(8px);
}

/* Past events read at lower visual weight until hovered. */
.event-card.is-past>img {
  filter: grayscale(50%) contrast(102%);
  opacity: 0.7;
}

.event-card.is-past:hover>img {
  filter: grayscale(0%) contrast(112%);
  opacity: 1;
}

@media (max-width: 1000px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Community / IG ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.98;
  text-transform: none;
  letter-spacing: -0.01em;
}

.quote em {
  font-style: italic;
  color: var(--pink);
  font-weight: 800;
}

.quote-attr {
  margin-top: 24px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ig-grid .ph {
  aspect-ratio: 1/1;
}

.ig-grid .ph::after {
  content: "@opeoplecommunity";
}

@media (max-width: 900px) {
  .quote-wrap {
    grid-template-columns: 1fr;
  }
}

/* ---------- Final CTA (back-cover style, shared across all public pages) ---------- */
.section-final {
  padding: var(--section-py) 0 var(--section-py-final-bottom);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.section-final::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 50%;
  transform: translateY(-50%);
  width: 70vw;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, var(--pink-glow) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.final-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 60ch;
  margin-bottom: clamp(48px, 5vw, 80px);
}

.final-marker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
}

.final-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: none;
  margin: 0;
}

.final-headline em {
  font-style: italic;
  font-weight: 900;
  color: var(--pink);
}

.final-lede {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
}

/* 3 channel cards */
.final-channels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.final-channel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "icon eyebrow arrow"
    "icon label   arrow";
  align-items: center;
  column-gap: 18px;
  row-gap: 4px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid var(--line-strong);
  background: var(--black-soft);
  text-decoration: none;
  color: var(--white);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.final-channel:hover {
  background: #121212;
  border-color: var(--pink);
  transform: translateY(-2px);
}

.final-channel-icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--pink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.final-channel:hover .final-channel-icon {
  border-color: var(--pink);
  background: rgba(255, 106, 0, 0.08);
}

.final-channel-icon svg {
  width: 18px;
  height: 18px;
}

.final-channel-eyebrow {
  grid-area: eyebrow;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

.final-channel-label {
  grid-area: label;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
}

.final-channel-arrow {
  grid-area: arrow;
  font-family: var(--display);
  font-size: 22px;
  color: var(--gray);
  transition: color .3s var(--ease), transform .35s var(--ease);
}

.final-channel:hover .final-channel-arrow {
  color: var(--pink);
  transform: translateX(6px);
}


@media (max-width: 900px) {
  .final-channels {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   FOOTER — premium editorial closing
   Three-tier structure:
     1. .footer-closing    — eyebrow + huge slogan + CTA, asymmetric
     2. .footer-masthead   — full-width cream marquee (decorative bridge)
     3. .footer-top        — brand + columns + hours card
     4. .footer-watermark  — colossal outline wordmark, full-bleed
     5. .footer-bottom     — micro mono copyright row
   Background fades into deep black with a radial pink wash from the
   bottom-right — same atmosphere as .section-final, bookending the
   page in a single mood. */
.site-footer {
  position: relative;
  background: #030303;
  color: var(--muted);
  padding: 0 0 28px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -8vw;
  width: 80vw;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, var(--pink-glow) 0%, transparent 55%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

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

/* ---------- Masthead marquee ----------
   Full-bleed cream scroller, the visual bridge between the closing
   slogan and the listings below. Reuses .marquee.marquee-bone styling
   so the typographic register matches what's used elsewhere. */
.footer-masthead {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* ---------- Top columns ----------
   Bottom border lives on .footer-bottom only (single divider rule) so
   we don't get the "two parallel lines" effect that hits when both
   sections paint their own edge. */
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.6fr 1fr 1fr;
  gap: clamp(28px, 3.4vw, 56px);
  padding: clamp(56px, 6.5vw, 84px) 0 clamp(40px, 5vw, 64px);
}

.footer-brand .tag {
  margin-top: 18px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.65;
  max-width: 38ch;
}

/* Column heading — eyebrow with pink dot, premium register. */
.footer-col h5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--bone-dim);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-col h5 .dot {
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pink);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* GEZİN listesi 8 link içerir; tek sütunda dikeyde fazla uzar. 2-sütun
   grid daha kompakt + diğer kolonlarla yatayda denge kurar. */
.footer-col .footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px clamp(16px, 2vw, 28px);
}

/* Contact column — icon-led links. The icon sits in a tiny outlined
   square that mirrors the header's icon-button affordance, then the
   label, then the arrow on the far right. */
.footer-col-contact a {
  gap: 12px;
}

.footer-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--bone-dim);
  transition: border-color .3s var(--ease), color .3s var(--ease),
    background .3s var(--ease);
}

.footer-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-col-contact a:hover .footer-icon {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 106, 0, 0.06);
}

/* Make the label flex-fill so the arrow lands on the right edge of
   each row uniformly — even when the email address is longer. */
.footer-col-contact a>span:nth-child(2) {
  flex: 1;
}


/* Each link slides its label slightly right and reveals an arrow on
   hover — premium magazine pattern. */
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  transition: color .3s var(--ease);
  position: relative;
}

.footer-col a>span:first-child {
  transition: transform .35s var(--ease);
}

.footer-col a .arrow {
  font-family: var(--display);
  font-size: 13px;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s var(--ease), transform .35s var(--ease);
}

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

.footer-col a:hover>span:first-child {
  transform: translateX(4px);
}

.footer-col a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Meta column ----------
   Two distinct outlined cards (DİL + SAATLER) so the eyebrow labels
   can never visually run together, and the meta column gains the
   visual weight needed to balance the longer link columns. */
.footer-col-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-meta-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.footer-meta-card:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.footer-meta-card h5 {
  margin-bottom: 0;
}

/* Hours grid — each row is a labeled day-range + a mono time range,
   joined by space-between so the times right-align on every row.
   Reads like a programme listing rather than a paragraph. */
.hours-grid {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.hours-row:first-child {
  padding-top: 2px;
}

.hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-day {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}

.hours-time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white);
  font-feature-settings: 'tnum' 1;
  white-space: nowrap;
}

/* ---------- Bottom row ---------- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gray-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-bottom-loc em,
.footer-bottom-copy em {
  color: var(--pink);
  font-style: normal;
  margin: 0 6px;
}

/* Studio credit — sits centered between the copyright and the rights
   line. Reads as a quiet eyebrow at rest, brightens on hover. The
   logo slot (.footer-credit-name) is intentionally text-first so the
   layout doesn't break before the real asset lands. */
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-dim);
  text-decoration: none;
  white-space: nowrap;
}

.footer-credit-label,
.footer-credit-by {
  color: var(--gray-dim);
}

.footer-credit-by {
  opacity: 0.7;
}

.footer-credit-name {
  display: inline-flex;
  align-items: center;
}

/* Logo is rendered as-is (no color filters). Sits muted at rest and
   lifts to full opacity + a faint scale on hover — gives the same
   "this is a link" affordance the surrounding text gets, without
   touching the logo's actual colors. */
.footer-credit-name img {
  display: block;
  height: 16px;
  width: auto;
  opacity: 0.78;
  transform: scale(1);
  transition: opacity .3s var(--ease), transform .35s var(--ease);
}

/* Hover scoped to the logo span only — moving the cursor over the
   label or the "by" connector leaves the logo at rest. */
.footer-credit-name:hover img {
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-col-explore {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-meta-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ---------- FAQ accordion ---------- */
.faq {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
  position: relative;
  transition: padding .3s var(--ease);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}

.faq-item:hover::before,
.faq-item.open::before {
  transform: scaleY(1);
}

.faq-item:hover {
  padding-left: 18px;
}

.faq-item.open {
  padding-left: 18px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Question label — sentence case display, restrained scale. Caps was
   too brutal at this density; this reads like a magazine FAQ block. */
.faq-q h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--white);
  transition: color .3s var(--ease);
  margin: 0;
}

.faq-item:hover .faq-q h4 {
  color: var(--pink);
}

/* Plus toggle — frame-less, just two thin strokes. The cross collapses
   into a minus when the item opens. */
.faq-q .plus {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 0;
  position: relative;
  transition: transform .35s var(--ease);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--bone-dim);
  transition: transform .35s var(--ease), background .3s var(--ease);
}

.faq-q .plus::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-q .plus::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item:hover .faq-q .plus::before,
.faq-item:hover .faq-q .plus::after,
.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after {
  background: var(--pink);
}

.faq-item.open .faq-q .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.faq-a .inner {
  padding-top: 16px;
  color: var(--muted);
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Custom cursor ----------
   Active only on fine-pointer devices; JS adds .has-op-cursor on <html>
   to hide native cursor everywhere. Ring lerps with weight; dot snaps. */
.has-op-cursor,
.has-op-cursor * {
  cursor: none !important;
}

.op-cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s var(--ease);
  mix-blend-mode: difference;
}

.op-cursor.is-visible {
  opacity: 1;
}

.op-cursor-ring,
.op-cursor-dot,
.op-cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}

.op-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: width .3s var(--ease), height .3s var(--ease),
    background .3s var(--ease), border-color .3s var(--ease);
}

.op-cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.op-cursor-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s var(--ease);
  padding: 0 4px;
}

/* Active state — hovering a link/card. Ring inflates, dot fades. */
.op-cursor.is-active .op-cursor-ring {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.85);
}

.op-cursor.is-active .op-cursor-dot {
  opacity: 0;
}

/* With-label state — ring inflates further, label appears. */
.op-cursor.has-label .op-cursor-ring {
  width: 84px;
  height: 84px;
  background: var(--pink);
  border-color: var(--pink);
}

.op-cursor.has-label .op-cursor-label {
  opacity: 1;
}

@media (pointer: coarse) {
  .op-cursor {
    display: none;
  }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slow {
  transition-duration: 1.2s;
}

/* ---------- Event modal ----------
   Premium magazine-style detail. Top: photo plate with a pink date
   stamp. Bottom: eyebrow + name (sentence case) + meta row + desc +
   CTA pair. Rounded corners, generous padding, restrained tipografi. */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--black-card);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .45s var(--ease);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.modal-backdrop.open .modal {
  transform: translateY(0);
}

/* Photo aspect-ratio matches the event card (4:5) so the same image
   crops identically in both places. max-height caps the plate so the
   modal stays inside the viewport on shorter screens. No border —
   the photo flows straight into the body. */
.modal .ph {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 48vh;
  background-color: var(--black-soft);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

/* Modal's .ph element keeps the global .ph rule's pseudo-elements,
   which paint a "with-image" hint label. Suppress them inside the
   modal — the date stamp + body header already carry context. */
.modal .ph::before,
.modal .ph::after {
  content: none;
}

.modal .body {
  padding: clamp(22px, 2.6vw, 32px);
}

/* Modal stamp shares all .event-stamp* styles. Just position it inside
   the modal photo plate. */
.modal .event-stamp {
  top: 14px;
  left: 14px;
}

.modal-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--white);
  margin: 0;
  max-width: 24ch;
}

/* Meta strip — date + location chips. Each chip: small icon + text,
   mono caps. Sits between the name and the description. */
.modal-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.modal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.modal-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--pink);
  flex-shrink: 0;
}

.modal-desc {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 56ch;
}

.modal-actions {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Compact CTA inside the modal — primary button drops a touch in
   padding + size to stop dominating the row visually. */
.modal-actions .btn-primary {
  padding: 12px 18px 11px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.modal-actions .btn-primary svg {
  width: 13px;
  height: 13px;
}

.modal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color .3s var(--ease);
}

.modal-link-arrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--pink);
  transition: transform .35s var(--ease);
}

.modal-link:hover {
  color: var(--pink);
}

.modal-link:hover .modal-link-arrow {
  transform: translate(4px, -4px);
}

/* Close button — minimalist, sits over the photo. */
.modal .close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s var(--ease), color .3s var(--ease),
    background .3s var(--ease), transform .3s var(--ease);
}

.modal .close:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 106, 0, 0.1);
  transform: rotate(90deg);
}

/* ---------- Hero variants (internal pages) ---------- */
/* ---------- Page hero (internal pages) ----------
   Asymmetric editorial hero. Sits the crumb + headline + lede in a
   left-leaning column (max ~14 cols of a 16-col grid) so the right
   gutter breathes; a thin pink rail on the left edge plus a corner
   tick on the right anchor it as a magazine masthead rather than a
   centered banner. Headline scale is restrained (40 → 96px) so
   long Turkish copy reads on two-three lines, not a wall of glyphs. */
.page-hero {
  position: relative;
  padding: clamp(140px, 15vw, 200px) 0 clamp(72px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 88% 28%, var(--pink-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 6% 86%, rgba(255, 106, 0, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Right-side corner tick — editorial register, masthead-style. */
.page-hero::after {
  content: "";
  position: absolute;
  top: clamp(110px, 12vw, 160px);
  right: var(--gutter);
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--pink);
  border-right: 1px solid var(--pink);
  pointer-events: none;
  z-index: 1;
}

/* Inner block lives inside .container; we add a left rail by giving
   .container an inner pseudo-element that draws the spine. Avoids
   touching every page view's markup. */
.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .container>.crumb,
.page-hero .container>h1,
.page-hero .container>p {
  margin-left: clamp(20px, 3vw, 56px);
  max-width: calc(100% - clamp(20px, 3vw, 56px));
}

/* Vertical pink rail running down the left edge of the hero content —
   the masthead's spine. Premium magazine accent. */
.page-hero .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink) 30%, transparent 100%);
  pointer-events: none;
}

.page-hero .container::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 6px;
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--pink);
  pointer-events: none;
}

.page-hero .crumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--bone-dim);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: clamp(28px, 3.6vw, 44px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

/* spine + dot replaces old crumb dot */

.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  max-width: 22ch;
  overflow-wrap: break-word;
  margin: 0;
}

/* Italic accent for the page-hero h1 .accent / em — same typographic
   move used everywhere else (Big Shoulders italic, pink). */
.page-hero h1 em,
.page-hero h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.005em;
}

/* Short pink rule between headline and lede — magazine-style break. */
.page-hero p {
  position: relative;
  margin: clamp(28px, 3.4vw, 44px) 0 0;
  padding-top: clamp(20px, 2.4vw, 28px);
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
}

.page-hero p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 1px;
  background: var(--pink);
}

@media (max-width: 700px) {

  .page-hero .container>.crumb,
  .page-hero .container>h1,
  .page-hero .container>p {
    margin-left: 16px;
    max-width: calc(100% - 16px);
  }

  .page-hero h1 {
    max-width: 100%;
  }
}

/* Page hero intro choreography — same staggered fade-up the homepage
   uses. Adds a premium "page enters frame" feel on every internal page.
   Honors prefers-reduced-motion via the matching @media block. */
.page-hero .crumb,
.page-hero h1,
.page-hero p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIntroIn 900ms var(--ease) forwards;
}

.page-hero h1 {
  animation-delay: 120ms;
}

.page-hero p {
  animation-delay: 260ms;
}

@media (prefers-reduced-motion: reduce) {

  .page-hero .crumb,
  .page-hero h1,
  .page-hero p {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Concept page: editorial intro ----------
   Restrained magazine spread. Left column: small mono eyebrow →
   display headline with a single italic accent word → body lede →
   CTA pair. Right column: one tall plate + mono caption stamp.
   No watermark, no overlap, no italic body — just the essentials. */
.intro-editorial-section {
  position: relative;
}

.intro-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
}

.kicker-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: clamp(24px, 3vw, 32px);
}

.intro-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
}

.big-text {
  font-family: var(--display);
  font-weight: 800;
  text-transform: none;
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}

/* A single italic accent word — Big Shoulders italic, pink, condensed.
   Reads as a typographic counterpoint to the upright display family. */
.big-text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -0.005em;
}

.intro-body {
  margin: clamp(28px, 3.2vw, 36px) 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
}

.intro-actions {
  margin-top: clamp(32px, 3.6vw, 44px);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Premium understated arrow link — no underline at rest, just a label
   and a pink arrow that nudges right on hover. */
.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color .3s var(--ease);
  white-space: nowrap;
}

.intro-link-arrow {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pink);
  transition: transform .35s var(--ease);
}

.intro-link:hover {
  color: var(--pink);
}

.intro-link:hover .intro-link-arrow {
  transform: translateX(6px);
}

/* ---------- Single feature plate ---------- */
.intro-figure {
  position: relative;
  margin: 0;
}

.intro-figure-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--black-soft);
}

.intro-figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(108%);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}

.intro-figure:hover .intro-figure-frame img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(112%);
}

.intro-figure-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 5, 0.65) 100%);
  pointer-events: none;
}

/* Caption sits at the bottom of the plate — pink ordinal + label. */
.intro-figure-meta {
  position: absolute;
  left: clamp(28px, 3vw, 36px);
  right: clamp(28px, 3vw, 36px);
  bottom: clamp(26px, 2.8vw, 34px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
}

.intro-figure-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.intro-figure-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-align: right;
}

@media (max-width: 900px) {
  .intro-editorial {
    grid-template-columns: 1fr;
  }
}

/* ---------- Editorial triptych — concept manifesto figure ----------
   Asymmetric two-column magazine spread: a single large portrait lead
   on the left + two stacked landscape side plates on the right. The
   ordinal "01" sits inside the lead's bottom-left corner as a solid
   pink display numeral; a meta strip closes the figure below. */
.intro-triptych {
  position: relative;
  margin: 0;
}

.intro-triptych-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  /* Two equal rows. Row height set explicitly so the lead's full-column
     height and the two side cells' total height always match. Sized to
     align roughly with the manifesto text column on the left. */
  grid-template-rows: clamp(160px, 14vw, 220px) clamp(160px, 14vw, 220px);
  gap: clamp(10px, 1.2vw, 18px);
}

.intro-triptych-cell {
  position: relative;
  overflow: hidden;
  /* Subtle warm gradient — keeps the figure visually "alive" even when
     an image source is missing or still loading. */
  background:
    radial-gradient(ellipse at 18% 14%, rgba(255, 106, 0, 0.10) 0%, transparent 55%),
    linear-gradient(160deg, #161616 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
}

.intro-triptych-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Hide broken-image alt text — the cell's gradient stands in instead. */
  font-size: 0;
  color: transparent;
  filter: grayscale(15%) contrast(106%) saturate(95%);
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}

.intro-triptych-cell:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(110%);
}

/* Lead — left column, spans both rows. */
.intro-triptych-lead {
  grid-column: 1;
  grid-row: 1 / -1;
}

/* Side cells — right column, stacked. */
.intro-triptych-side {
  grid-column: 2;
}

.intro-triptych-side-top {
  grid-row: 1;
}

.intro-triptych-side-bot {
  grid-row: 2;
}

/* Lead overlay gradient so the ordinal + label read on any photo. */
.intro-triptych-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Solid display ordinal anchored to the lead's bottom-left corner. */
.intro-triptych-num {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  bottom: clamp(56px, 5vw, 72px);
  z-index: 2;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 8.5vw, 132px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--pink);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  user-select: none;
}

/* Per-cell mono label, anchored bottom-left of each plate. */
.intro-triptych-label {
  position: absolute;
  bottom: clamp(14px, 1.4vw, 20px);
  left: clamp(14px, 1.4vw, 20px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(15, 15, 15, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
}

.intro-triptych-label .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

/* The lead's label anchors bottom-right so it doesn't collide with the
   bottom-left ordinal. Side cells stay default (bottom-left). */
.intro-triptych-lead .intro-triptych-label {
  left: auto;
  right: clamp(14px, 1.4vw, 20px);
}

/* Bottom meta strip — tagline + location/year. */
.intro-triptych-meta {
  margin-top: clamp(20px, 2.4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: clamp(14px, 1.6vw, 18px);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.intro-triptych-meta-label {
  color: var(--bone);
}

@media (max-width: 900px) {
  .intro-triptych-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: clamp(200px, 50vw, 280px) clamp(140px, 32vw, 200px);
  }

  .intro-triptych-lead {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .intro-triptych-side-top {
    grid-row: 2;
    grid-column: 1;
  }

  .intro-triptych-side-bot {
    grid-row: 2;
    grid-column: 2;
  }
}

/* ---------- Concept pillars (no-image) ----------
   Editorial 4-column grid for the manifesto pillars. Pure typography:
   mono eyebrow + giant outline ordinal + display title with pink underline
   accent + body. No image plates — type carries the visual weight, hover
   adds a subtle warm glow. */
.concept-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
}

.concept-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(28px, 3vw, 44px) clamp(22px, 2.4vw, 32px) clamp(32px, 3.4vw, 48px);
  background: var(--ink);
  overflow: hidden;
  transition: background .4s var(--ease);
}

.concept-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 12% 18%, rgba(255, 106, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.concept-pillar:hover::before {
  opacity: 1;
}

.concept-pillar:hover .concept-pillar-num {
  -webkit-text-stroke-color: rgba(255, 106, 0, 0.85);
}

.concept-pillar>* {
  position: relative;
  z-index: 1;
}

.concept-pillar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.concept-pillar-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

/* Giant outline ordinal — visual anchor without an image. */
.concept-pillar-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 7.5vw, 124px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 106, 0, 0.55);
  margin-top: clamp(16px, 2vw, 28px);
  margin-bottom: clamp(8px, 1vw, 16px);
  transition: -webkit-text-stroke-color .4s var(--ease);
}

.concept-pillar-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: clamp(10px, 1.2vw, 14px);
  margin: 0;
}

.concept-pillar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--pink);
  transition: width .4s var(--ease);
}

.concept-pillar:hover .concept-pillar-title::after {
  width: 56px;
}

.concept-pillar-body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
  color: var(--bone-dim);
}

@media (max-width: 900px) {
  .concept-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .concept-pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- HYROX Categories — magazine TOC list ----------
   Editorial table-of-contents row layout. Each category is a single
   row: ordinal · title · description · arrow. Top + bottom rules
   carve the list, hover sweeps a warm gradient from left and pushes
   the arrow right. Used on hyrox.php for the four-category section. */
.hyrox-cats {
  list-style: none;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.hyrox-cat {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) minmax(0, 2.2fr) auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(22px, 2.6vw, 36px) clamp(8px, 1vw, 14px);
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: background .35s var(--ease);
}

.hyrox-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.hyrox-cat:hover::before {
  opacity: 1;
}

.hyrox-cat>* {
  position: relative;
  z-index: 1;
}

.hyrox-cat-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--pink);
}

.hyrox-cat-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
}

.hyrox-cat-desc {
  font-family: var(--body);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  color: var(--bone-dim);
  margin: 0;
  max-width: 60ch;
}

.hyrox-cat-arrow {
  font-size: 22px;
  color: var(--bone-dim);
  transition: transform .35s var(--ease), color .35s var(--ease);
}

.hyrox-cat:hover .hyrox-cat-arrow {
  transform: translateX(8px);
  color: var(--pink);
}

@media (max-width: 900px) {
  .hyrox-cat {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 10px;
    padding: 22px 8px;
  }

  .hyrox-cat-num {
    grid-column: 1;
    grid-row: 1;
  }

  .hyrox-cat-title {
    grid-column: 2;
    grid-row: 1;
  }

  .hyrox-cat-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .hyrox-cat-desc {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* ---------- HYROX Prep — horizontal timeline ----------
   Four phase stops connected by a thin line. Each stop: pink dot +
   ordinal mono · phase title · short body. Used on hyrox.php for the
   BASE → BUILD → PEAK → RACE preparation arc. Stacks vertically with
   a left rail on mobile. */
.prep-timeline {
  list-style: none;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  position: relative;
}

.prep-timeline::before {
  /* Connecting rail behind the dots — sits at the dot centreline (5px). */
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  right: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  z-index: 0;
}

.prep-step {
  position: relative;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
}

/* Marker height locked to the dot height so the dot's centre always
   sits at exactly 5px — the rail's centreline. The num text uses
   line-height:1 and overflows visibly without inflating the marker. */
.prep-step-marker {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.prep-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.prep-step-num {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.prep-step-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}

.prep-step-desc {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 36ch;
}

@media (max-width: 900px) {
  .prep-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prep-timeline::before {
    top: 6px;
    bottom: 6px;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
    background: rgba(255, 255, 255, 0.10);
  }

  .prep-step {
    padding-top: 0;
    padding-left: 28px;
  }

  .prep-step-marker {
    top: 2px;
    left: 0;
  }
}

/* ---------- Recovery ecosystem — 2x2 editorial grid ----------
   Magazine-cover composition: each item carries a giant italic display
   word as its visual anchor (no images), prefixed by a mono eyebrow and
   followed by a short body. Hover sweeps a thin pink rule across the
   top edge. Used on recovery.php for NUTRITION · PHYSIO · SLEEP · FLOW. */
.recovery-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
}

.recovery-stack-item {
  position: relative;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) clamp(36px, 4vw, 56px);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 26px);
  overflow: hidden;
  transition: background .4s var(--ease);
}

.recovery-stack-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width .55s var(--ease);
}

.recovery-stack-item:hover::before {
  width: 100%;
}

.recovery-stack-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.recovery-stack-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

/* Giant italic display title — visual anchor without an image. */
.recovery-stack-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(54px, 6.4vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}

.recovery-stack-desc {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 48ch;
}

@media (max-width: 700px) {
  .recovery-stack {
    grid-template-columns: 1fr;
  }
}

/* ---------- Experience flow (homepage race-day rehearsal) ----------
   Editorial vertical step list with no images. Each step: a giant solid
   pink ordinal anchored on the left (the visual hero), an uppercase
   display title and a short body in the right column. Steps are
   separated by a thin rule. Scale of the numeral does the work that
   would normally fall to a photograph. */
.experience-flow {
  list-style: none;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.experience-step {
  display: grid;
  grid-template-columns: clamp(96px, 14vw, 180px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
  padding: clamp(28px, 3.4vw, 52px) clamp(8px, 1vw, 16px);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .35s var(--ease);
}

.experience-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
  transition: width .55s var(--ease);
  pointer-events: none;
}

.experience-step:hover::before {
  width: 100%;
}

.experience-step>* {
  position: relative;
  z-index: 1;
}

.experience-step-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--pink);
  align-self: center;
}

.experience-step-body {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
  max-width: 64ch;
}

.experience-step-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}

.experience-step-desc {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.6;
  color: var(--bone-dim);
}

@media (max-width: 700px) {
  .experience-step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 8px;
  }

  .experience-step-num {
    font-size: clamp(40px, 12vw, 64px);
  }

  .experience-step-title {
    font-size: clamp(22px, 6vw, 32px);
  }
}

/* ---------- Experience steps grid (concept / hyrox / recovery) ----------
   4-column premium card grid sharing the homepage exp-flow visual
   register. Each step: image plate + index numeral + heading + body. */
.exp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
}

.exp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 26px;
  background: var(--black-soft);
  transition: background .45s var(--ease), transform .45s var(--ease);
  isolation: isolate;
  overflow: hidden;
}

.exp-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
  z-index: 2;
}

.exp-step:hover {
  background: #121212;
  transform: translateY(-4px);
}

.exp-step:hover::after {
  transform: scaleX(1);
}

.exp-step .ph {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.exp-step .ph img {
  transition: transform .8s var(--ease), filter .6s var(--ease);
}

.exp-step:hover .ph img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(112%);
}

.exp-step .index {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.exp-step h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0;
}

.exp-step p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
  transition: color .35s var(--ease);
}

.exp-step:hover p {
  color: var(--muted);
}

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

@media (max-width: 600px) {
  .exp-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Forms ---------- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 600;
}

/* Inputs: subtle dark fill + soft outline. Focus pulls in a pink
   ring so the active field reads clearly without changing layout. */
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease),
    box-shadow .25s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-dim);
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--pink);
  background: rgba(255, 106, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

/* Custom select: drop the native dropdown arrow, paint a pink chevron
   via background SVG. Reads consistent across browsers. */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23FF6A00' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-field select option {
  background: var(--black-card);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Utility ---------- */
.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.center {
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ---------- Flash messages (stacked top-right) ---------- */
.flash-stack {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: calc(100vw - 40px);
  pointer-events: none;
}

.flash-stack .flash {
  pointer-events: auto;
  padding: 14px 18px;
  background: var(--black-card);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: flashIn .4s var(--ease);
}

.flash .flash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex: 0 0 8px;
}

.flash.flash-success {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 106, 0, 0.18);
}

.flash.flash-success .flash-dot {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: flashPulse 1.6s ease-in-out infinite;
}

@keyframes flashPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flash.flash-success .flash-dot {
    animation: none;
  }
}

.flash.flash-error {
  border-color: #ff6b6b;
}

.flash.flash-error .flash-dot {
  background: #ff6b6b;
  box-shadow: 0 0 10px #ff6b6b;
}

.flash.flash-info .flash-dot {
  background: var(--white);
}

@keyframes flashIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Field errors ---------- */
.field-err {
  color: #ff6b6b;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.form-field input.has-err,
.form-field textarea.has-err,
.form-field select.has-err {
  border-bottom-color: #ff6b6b;
}

/* ---------- Honeypot (visually hidden) ---------- */
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.92);
  color: var(--white);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.sticky-cta a svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.sticky-cta a.is-primary {
  background: var(--pink);
  color: #0a0205;
}

.sticky-cta a.is-primary:hover {
  background: var(--pink-hot);
}

.sticky-cta a.is-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--pink);
}

@media (max-width: 900px) {
  .sticky-cta {
    display: grid;
  }

  body {
    padding-bottom: 56px;
  }
}

/* ---------- Hero brand fallback (no image uploaded) ---------- */
.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--pink-glow) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255, 106, 0, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #111 100%);
  overflow: hidden;
}

.hero-fallback::before {
  content: "O'PEOPLE";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 360px);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
}

/* ---------- Contact page (extracted from inline styles) ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: stretch;
}

/* Both columns stretch to the grid's tallest row; the form column
   then forwards that height down to .contact-form-card so the right
   side never ends short of the left. */
.contact-layout>.reveal {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


/* ---------- Contact info cells ----------
   Outlined grid of key/value cells. Each cell: pink-dot eyebrow, a
   display value, and a sweeping link. Hover lights up the border. */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-info-cell {
  padding: 22px 24px;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .35s var(--ease), background .35s var(--ease),
    transform .35s var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-info-cell:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

a.contact-info-cell:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.contact-info-cell .info-link {
  transition: color .3s var(--ease), transform .35s var(--ease);
}

a.contact-info-cell:hover .info-link {
  color: var(--white);
  transform: translateX(4px);
}

/* Primary cell — WhatsApp. Pink left rail + pink eyebrow dot stays
   loud, but the cell still sits in the same grid as everything else. */
.contact-info-cell.is-primary {
  position: relative;
  border-color: var(--pink);
  background:
    radial-gradient(circle at 100% 100%, var(--pink-glow-2) 0%, transparent 55%),
    var(--black-soft);
}

.contact-info-cell.is-primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink-glow);
}

.contact-info-cell.is-primary:hover {
  border-color: var(--pink);
  background:
    radial-gradient(circle at 100% 100%, var(--pink-glow) 0%, transparent 55%),
    rgba(255, 106, 0, 0.04);
}

.contact-info-cell.is-primary .info-link {
  color: var(--pink);
}

.contact-info-cell h3 {
  margin-top: 10px;
  word-break: break-word;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 20px);
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--white);
}

.contact-info-cell .info-text {
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -0.005em;
  white-space: pre-line;
  color: var(--white);
}

.contact-info-cell .info-text.is-hours {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--bone);
}

.contact-info-cell .info-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pink);
  transition: color .3s var(--ease);
}

.contact-info-cell .info-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Hours inside the contact cell — stacked layout: small mono day
   label on top, larger display time row below. Reads as a programme
   listing rather than a cramped key/value row. */
.contact-info-cell .hours-grid {
  margin-top: 12px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.contact-info-cell .hours-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 0 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.contact-info-cell .hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-cell .hours-day {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.contact-info-cell .hours-time {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.contact-map-frame {
  margin-top: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

/* Static dark-themed Google Maps embed:
   - pointer-events: none  → no panning, zoom or info-window clicks
   - filter chain          → light tiles flip to charcoal while water
                             stays blue and the pin reads as pink
   The "Google Haritalar" link in the contact grid handles the live
   map use case. */
.contact-map-frame iframe {
  width: 100%;
  display: block;
  border: 0;
  pointer-events: none;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.92) saturate(0.85);
}

.contact-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 10%, var(--pink-glow-2) 0%, transparent 55%);
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.contact-map-placeholder {
  aspect-ratio: 16/7;
  margin-top: 40px;
}

.contact-map-placeholder .ph-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contact-map-placeholder .ph-icon {
  margin: 0 auto;
}

.contact-map-placeholder .ph-label {
  margin-top: 14px;
}

.contact-form-card {
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--black-soft);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Textarea field eats remaining vertical space so the message box
   grows to fill the column. Submit row stays pinned to the bottom. */
.contact-form-card .form-field:has(textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-card .form-field textarea {
  flex: 1;
  min-height: 110px;
  resize: vertical;
}

.contact-form-headline {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
}

.contact-form-headline .hl {
  color: var(--pink);
}

.contact-form-card .form-intro {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 44ch;
}

.contact-form-card form {
  margin-top: clamp(24px, 2.8vw, 32px);
}

.contact-form-card .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.contact-form-card .required-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  text-transform: uppercase;
}

/* Submit button — slightly more padding than default btn-primary,
   pink shadow grows on hover. */
.contact-form-card .form-actions .btn-primary {
  padding: 14px 24px 13px;
  font-size: 12px;
  letter-spacing: 0.22em;
  box-shadow: 0 12px 36px var(--pink-glow);
}

.contact-form-card .form-actions .btn-primary:hover {
  box-shadow: 0 18px 50px var(--pink-glow);
}

@media (max-width: 600px) {
  .contact-form-card .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .contact-form-card .form-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Allow .hl to tint a word inside the page-hero h1. */
.page-hero h1 .hl {
  color: var(--pink);
}

/* Form errors live region */
.form-errors-live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-err {
  display: block;
}

/* ---------- Social proof strip ---------- */
.social-proof {
  padding: var(--section-py-tight) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-soft);
}

.social-proof .sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.social-proof .sp-stat {
  padding: 24px clamp(16px, 2vw, 32px);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-proof .sp-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.social-proof .sp-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
}

.social-proof .sp-num .accent {
  color: var(--pink);
}

.social-proof .sp-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

.social-proof .sp-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28ch;
}

@media (max-width: 900px) {
  .social-proof .sp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof .sp-stat {
    border-left: 1px solid var(--line);
    padding-left: clamp(16px, 4vw, 32px);
  }

  .social-proof .sp-stat:nth-child(2n+1) {
    border-left: 0;
    padding-left: 0;
  }

  .social-proof .sp-stat:nth-child(n+3) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 8px;
  }
}