/* =========================================================================
   RUTHLESS WRESTLING CLUB — Design System
   Premium athletic brand. Black / Charcoal / White / Deep Red.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Surfaces */
  --black:        #0B0B0C;
  --ink:          #08080A;
  --charcoal:     #131316;
  --charcoal-2:   #1A1A1E;
  --charcoal-3:   #232328;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.16);

  /* Brand */
  --red:          #D81E2C;
  --red-deep:     #A01018;
  --red-glow:     rgba(216,30,44,0.35);

  /* Text */
  --white:        #F6F6F4;
  --mute:         #A6A6AC;
  --mute-2:       #74747B;

  /* Type */
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms var(--ease);
  --t: 280ms var(--ease);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--red); color: #fff; }

/* ----------------------------------------------------------------- Type scale */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-display { font-size: clamp(3rem, 11vw, 9.5rem); font-weight: 800; line-height: 0.86; letter-spacing: -0.02em; }
.h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 800; }
.h2 { font-size: clamp(2rem, 5.2vw, 4rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--mute); line-height: 1.65; font-weight: 300; max-width: 60ch; }
.text-red { color: var(--red); }
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.45);
}

/* Eyebrow / label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--red);
}
.eyebrow--center::after {
  content: ""; width: 28px; height: 1px; background: var(--red);
}

/* ----------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-charcoal { background: var(--charcoal); }
.bg-ink { background: var(--ink); }
.divider { height: 1px; background: var(--line); border: 0; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 2rem); }
.section-head { max-width: 720px; }
.section-head .h2 { margin-top: 1.1rem; }
.section-head .lead { margin-top: 1.25rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-inline: auto; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05rem 1.9rem; border: 1px solid transparent;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  position: relative; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 30px -12px var(--red-glow); }
.btn--primary:hover { background: #ec2535; transform: translateY(-2px); box-shadow: 0 14px 36px -14px var(--red-glow); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.74rem; }

/* Text link with arrow */
.tlink { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); transition: gap var(--t-fast), color var(--t-fast); }
.tlink svg { width: 15px; height: 15px; color: var(--red); transition: transform var(--t-fast); }
.tlink:hover { gap: 0.85rem; }
.tlink:hover svg { transform: translateX(3px); }

/* ----------------------------------------------------------------- Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,10,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--display); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.02em; text-transform: uppercase; }
.brand .mark {
  width: 40px; height: 48px; flex: none;
  background: url('../img/ruthless-logo.png') center / contain no-repeat;
  display: block; font-size: 0; color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: transform var(--t-fast);
}
.brand:hover .mark { transform: translateY(-1px) scale(1.04); }
.footer-brand .brand .mark { width: 46px; height: 50px; }
.brand small { display: block; font-family: var(--body); font-size: 0.55rem; letter-spacing: 0.32em; color: var(--mute); font-weight: 600; margin-top: 2px; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--mute); transition: color var(--t-fast); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--red); transition: width var(--t-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }

.burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; z-index: 110; }
.burger span { width: 24px; height: 2px; background: var(--white); transition: transform var(--t), opacity var(--t-fast); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 105;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateX(100%); transition: transform var(--t);
}
.drawer.open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; }
.drawer a { display: block; font-family: var(--display); font-size: clamp(1.9rem, 8vw, 2.4rem); font-weight: 700; text-transform: uppercase; color: var(--white); padding: 0.55rem 0; border-bottom: 1px solid var(--line); transition: color var(--t-fast), padding-left var(--t-fast); }
.drawer a:hover { color: var(--red); padding-left: 0.5rem; }
.drawer .drawer-cta { margin-top: 2rem; }
.drawer .drawer-meta { margin-top: 2.5rem; color: var(--mute); font-size: 0.85rem; line-height: 1.9; }
.drawer .drawer-meta a { font-family: var(--body); font-size: 0.85rem; border: 0; padding: 0; display: inline; }

@media (min-width: 980px) {
  .nav-links, .nav-cta { display: flex; }
  .burger { display: none; }
  .drawer { display: none; }
}

/* ----------------------------------------------------------------- Image plates / placeholders */
.plate {
  position: relative; overflow: hidden; background: var(--charcoal-2);
  border: 1px solid var(--line);
}
.plate::after { /* subtle diagonal texture */
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 9px),
    radial-gradient(120% 90% at 70% 10%, rgba(216,30,44,0.10), transparent 55%),
    linear-gradient(160deg, #202024 0%, #121215 55%, #0c0c0e 100%);
  z-index: 0;
}
.plate__label {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute-2); display: inline-flex; align-items: center; gap: 0.5rem;
}
.plate__label::before { content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.plate img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.plate--tall { aspect-ratio: 3 / 4; }
.plate--wide { aspect-ratio: 16 / 9; }
.plate--sq { aspect-ratio: 1 / 1; }

/* Highlight video reel (portrait 9:16) */
.video-reel { max-width: 380px; margin: clamp(1.75rem, 4vw, 2.75rem) auto 0; }
.video-reel__player {
  width: 100%; aspect-ratio: 9 / 16; display: block;
  background: #000; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85);
}

/* ----------------------------------------------------------------- Hero */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: 120px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.30) 35%, rgba(8,8,10,0.78) 78%, var(--black) 100%),
    linear-gradient(90deg, rgba(8,8,10,0.7) 0%, transparent 55%);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 75% 25%, rgba(216,30,44,0.18), transparent 60%),
    repeating-linear-gradient(125deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px),
    linear-gradient(155deg, #232327 0%, #141417 45%, #0a0a0c 100%);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.16) translateY(-2%); } }
.hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero .h-display { margin: 1.25rem 0 1.5rem; max-width: 16ch; }
.hero .lead { color: #d9d9da; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.25rem; }
.hero__strip {
  margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem);
}
.hero__strip .stat .n { font-family: var(--display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; line-height: 1; }
.hero__strip .stat .l { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 0.4rem; }
.scroll-cue { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute-2); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--red), transparent); animation: cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* page hero (interior) */
.phero { position: relative; overflow: hidden; min-height: 72vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.phero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.9;
  background:
    radial-gradient(70% 80% at 80% 0%, rgba(216,30,44,0.16), transparent 60%),
    repeating-linear-gradient(125deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #1b1b1f 0%, #0d0d0f 60%);
}
.phero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, var(--black)); }
.phero .container { position: relative; z-index: 1; }
.phero .h1 { margin: 1.2rem 0 1.25rem; }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute-2); }
.breadcrumb a:hover { color: var(--white); }

/* ----------------------------------------------------------------- Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink); padding-block: 1.1rem; }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: scrollx 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--display); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mute); display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; color: var(--red); font-size: 0.9rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- Pillars */
.pillars { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar { padding: clamp(1.75rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line); transition: background var(--t-fast); position: relative; }
.pillar:last-child { border-bottom: 0; }
.pillar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.pillar:hover { background: var(--charcoal); }
.pillar:hover::before { transform: scaleY(1); }
.pillar .num { font-family: var(--display); font-size: 0.9rem; font-weight: 700; color: var(--red); letter-spacing: 0.1em; }
.pillar h3 { font-size: 1.55rem; margin: 0.8rem 0 0.6rem; }
.pillar p { color: var(--mute); font-size: 0.95rem; max-width: 46ch; }
.pillar .ico { width: 26px; height: 26px; color: var(--white); }
@media (min-width: 700px) { .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1080px) { .pillars { grid-template-columns: repeat(3, 1fr); }
  .pillar { border-right: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 1px solid var(--line); }
  .pillar:nth-child(3n) { border-right: 0; }
}

/* ----------------------------------------------------------------- Program cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.pcard {
  background: var(--charcoal); padding: clamp(1.6rem, 2.5vw, 2.1rem);
  display: flex; flex-direction: column; min-height: 250px;
  transition: background var(--t-fast); position: relative; overflow: hidden;
}
.pcard::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 100% 0%, var(--red-glow), transparent 45%); opacity: 0; transition: opacity var(--t); }
.pcard:hover { background: var(--charcoal-2); }
.pcard:hover::after { opacity: 0.5; }
.pcard__num { font-family: var(--display); font-size: 0.85rem; font-weight: 700; color: var(--mute-2); letter-spacing: 0.15em; position: relative; z-index: 1; }
.pcard h3 { font-size: 1.6rem; margin: 1.1rem 0 0.7rem; position: relative; z-index: 1; transition: color var(--t-fast); }
.pcard:hover h3 { color: var(--red); }
.pcard p { color: var(--mute); font-size: 0.92rem; flex: 1; position: relative; z-index: 1; }
.pcard .tag { display: inline-block; margin-bottom: 1rem; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute-2); }
.pcard .pcard__go { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); position: relative; z-index: 1; }
.pcard .pcard__go svg { width: 15px; height: 15px; color: var(--red); transition: transform var(--t-fast); }
.pcard:hover .pcard__go svg { transform: translateX(4px); }

/* ----------------------------------------------------------------- Stats / results */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { background: var(--ink); padding: clamp(1.75rem, 3vw, 2.75rem) 1.25rem; text-align: center; transition: background var(--t-fast); }
.stat-cell:hover { background: var(--charcoal); }
.stat-cell .n { font-family: var(--display); font-size: clamp(2.6rem, 6vw, 4.25rem); font-weight: 800; line-height: 1; color: var(--white); }
.stat-cell .n .plus { color: var(--red); }
.stat-cell .l { margin-top: 0.7rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }

/* ----------------------------------------------------------------- Split feature */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--media-right .split__media { order: 2; } }
.feature-list { margin-top: 1.75rem; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--mute); font-size: 0.96rem; }
.feature-list li svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.feature-list li b { color: var(--white); font-weight: 600; }

/* ----------------------------------------------------------------- Academy band */
.academy {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 6px;
  background: linear-gradient(160deg, #17171b, #0c0c0e);
}
.academy::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 100% 0%, var(--red-glow), transparent 50%); opacity: 0.5; }
.academy__inner { position: relative; z-index: 1; padding: clamp(2rem, 5vw, 4.5rem); }
.academy .badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); border: 1px solid var(--red-deep); padding: 0.45rem 0.9rem; border-radius: 100px; }
.academy ul.mini { margin-top: 1.75rem; display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
@media (min-width: 640px){ .academy ul.mini { grid-template-columns: 1fr 1fr; } }
.academy ul.mini li { display: flex; gap: 0.6rem; align-items: center; color: var(--mute); font-size: 0.92rem; }
.academy ul.mini li svg { width: 16px; height: 16px; color: var(--red); flex: none; }

/* ----------------------------------------------------------------- Coaches */
.coach-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (min-width: 640px){ .coach-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .coach-grid { grid-template-columns: repeat(3, 1fr); } }
.coach { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--charcoal); transition: transform var(--t), border-color var(--t); }
.coach:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.coach .plate { aspect-ratio: 4/5; border: 0; }
.coach__body { padding: 1.3rem 1.4rem 1.5rem; }
.coach__body .role { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.coach__body h3 { font-size: 1.5rem; margin: 0.5rem 0 0.5rem; }
.coach__body p { color: var(--mute); font-size: 0.9rem; }
.coach__tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.coach__tags span { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); border: 1px solid var(--line); padding: 0.32rem 0.6rem; border-radius: 100px; }

/* ----------------------------------------------------------------- Culture / quote band */
.band { position: relative; overflow: hidden; }
.band__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 90% at 20% 30%, rgba(216,30,44,0.16), transparent 55%),
    repeating-linear-gradient(125deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, #16161a, #0a0a0c);
}
.band__bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--black), transparent 25%, transparent 75%, var(--black)); }
.band .container { position: relative; z-index: 1; }
.bigquote { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(2.2rem, 6vw, 4.75rem); line-height: 0.98; max-width: 18ch; }

/* ----------------------------------------------------------------- Testimonials */
.tgrid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 768px){ .tgrid { grid-template-columns: repeat(3, 1fr); } }
.tcard { border: 1px solid var(--line); border-radius: var(--radius); background: var(--charcoal); padding: 1.8rem; display: flex; flex-direction: column; transition: border-color var(--t-fast), transform var(--t-fast); }
.tcard:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.tcard .stars { display: flex; gap: 3px; color: var(--red); margin-bottom: 1.1rem; }
.tcard .stars svg { width: 16px; height: 16px; }
.tcard blockquote { font-size: 1.02rem; color: var(--white); line-height: 1.6; flex: 1; }
.tcard .who { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.8rem; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--charcoal-3); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--red); flex: none; }
.tcard .who .nm { font-weight: 600; font-size: 0.92rem; }
.tcard .who .rl { font-size: 0.74rem; color: var(--mute); }

/* ----------------------------------------------------------------- Media grid */
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.5rem, 1.2vw, 0.85rem); }
@media (min-width: 768px){ .media-grid { grid-template-columns: repeat(4, 1fr); } }
.media-grid .plate { aspect-ratio: 1/1; }
.media-grid .plate.tall { grid-row: span 2; aspect-ratio: auto; }
.media-grid .plate .play { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; }
.media-grid .plate .play span { width: 52px; height: 52px; border-radius: 50%; background: rgba(216,30,44,0.9); display: grid; place-items: center; transition: transform var(--t-fast); }
.media-grid .plate:hover .play span { transform: scale(1.12); }
.media-grid .plate .play svg { width: 20px; height: 20px; color: #fff; }

/* ----------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--line); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(216,30,44,0.30), transparent 55%),
    linear-gradient(160deg, #1a1014, #0b0b0d 60%);
}
.cta-band .inner { position: relative; z-index: 1; padding: clamp(3rem, 7vw, 6rem) var(--gutter); text-align: center; }
.cta-band .h1 { margin-bottom: 1.2rem; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }

/* ----------------------------------------------------------------- Forms */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 0.95rem; color: var(--white);
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.95rem 1rem; transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #0d0d10; }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 600px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.82rem; color: var(--mute-2); }
.form-success { display: none; padding: 1rem 1.2rem; border: 1px solid var(--red-deep); border-radius: var(--radius); background: rgba(216,30,44,0.08); color: var(--white); font-size: 0.92rem; }
.form-success.show { display: block; }

/* ----------------------------------------------------------------- Info cards (contact) */
.info-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--charcoal); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color var(--t-fast); }
.info-card:hover { border-color: var(--line-strong); }
.info-card .ico { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(216,30,44,0.12); color: var(--red); display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 20px; height: 20px; }
.info-card .t { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.info-card .v { font-size: 1.05rem; font-weight: 600; margin-top: 0.25rem; word-break: break-word; }
.info-card .v a:hover { color: var(--red); }

/* ----------------------------------------------------------------- Schedule table */
.sched { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sched__row { display: grid; grid-template-columns: 1fr; gap: 0; border-bottom: 1px solid var(--line); transition: background var(--t-fast); }
.sched__row:last-child { border-bottom: 0; }
.sched__row:hover { background: var(--charcoal); }
.sched__row > div { padding: 1.1rem 1.3rem; }
@media (min-width: 760px){ .sched__row { grid-template-columns: 1.4fr 1fr 1.2fr auto; align-items: center; } }
.sched__day { font-family: var(--display); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; }
.sched__prog { color: var(--white); font-weight: 500; }
.sched__time { color: var(--mute); font-size: 0.9rem; }
.sched__level { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.sched__head { background: var(--ink); display: none; }
@media (min-width: 760px){ .sched__head { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr auto; } .sched__head > div { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); font-weight: 600; } }

/* ----------------------------------------------------------------- Accordion (program details) */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item:last-child { border-bottom: 0; }
.acc__head { width: 100%; background: var(--charcoal); border: 0; color: var(--white); text-align: left; padding: 1.4rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: background var(--t-fast); }
.acc__head:hover { background: var(--charcoal-2); }
.acc__head h3 { font-size: 1.4rem; }
.acc__head .pm { width: 26px; height: 26px; flex: none; position: relative; }
.acc__head .pm::before, .acc__head .pm::after { content:""; position: absolute; background: var(--red); transition: transform var(--t); }
.acc__head .pm::before { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.acc__head .pm::after { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.acc__item.open .pm::before { transform: translateX(-50%) scaleY(0); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.acc__body-inner { padding: 0 1.5rem 1.6rem; color: var(--mute); }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { color: var(--mute); font-size: 0.92rem; max-width: 34ch; }
.foot-col h4 { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute-2); margin-bottom: 1.1rem; }
.foot-col a, .foot-col p { display: block; color: var(--mute); font-size: 0.92rem; padding: 0.3rem 0; transition: color var(--t-fast); }
.foot-col a:hover { color: var(--white); }
.socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; color: var(--mute); transition: all var(--t-fast); }
.socials a:hover { color: #fff; border-color: var(--red); background: rgba(216,30,44,0.1); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: clamp(2.5rem,5vw,4rem); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; color: var(--mute-2); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--white); }

/* ----------------------------------------------------------------- Sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform var(--t);
  backdrop-filter: blur(10px);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta a { padding: 1.05rem; text-align: center; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(8,8,10,0.92); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.mobile-cta a.primary { background: var(--red); color: #fff; }
.mobile-cta a svg { width: 15px; height: 15px; }
@media (min-width: 980px){ .mobile-cta { display: none !important; } }

/* ----------------------------------------------------------------- Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

/* ----------------------------------------------------------------- Utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.maxw-prose { max-width: 64ch; }
.flex-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.muted { color: var(--mute); }
.nowrap { white-space: nowrap; }
.pad-bottom-cta { padding-bottom: 5rem; }
@media (max-width: 979px){ body.has-mobile-cta { padding-bottom: 56px; } }

/* ----------------------------------------------------------------- Brand crest (logo watermark) */
/* Cinematic gorilla watermark behind hero headlines. mix-blend screen drops the
   black art so only the line-work floats on the dark canvas. */
/* Unified crest — identical size & position on every page hero (mirrors Academy). */
.hero::after, .phero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: clamp(-6%, -1vw, 2%); top: 46%; transform: translateY(-50%);
  width: min(50vw, 660px); height: 86%;
  background: url('../img/ruthless-logo.png') right center / contain no-repeat;
  opacity: 0.20;
}
/* Footer monogram watermark */
.site-footer { position: relative; overflow: hidden; }
.site-footer::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: -2%; bottom: -14%; width: 300px; height: 340px;
  background: url('../img/ruthless-logo.png') center / contain no-repeat;
  opacity: 0.07;
}
.site-footer .container { position: relative; z-index: 1; }
/* Standalone decorative crest you can drop into any section */
.crest {
  display: block; pointer-events: none;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5));
}
@media (max-width: 760px) {
  .hero::after, .phero::after { opacity: 0.13; width: 92vw; right: -22%; top: 40%; }
  .site-footer::after { width: 200px; height: 230px; opacity: 0.06; }
}

/* Founders — balanced 2-up layout */
.coach-grid--founders { max-width: 900px; margin-inline: auto; }
@media (min-width: 1024px){ .coach-grid--founders { grid-template-columns: 1fr 1fr; } }

/* ----------------------------------------------------------------- Schedule day cards */
.sched-cards { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.5rem); align-items: start; }
@media (min-width: 720px){ .sched-cards { grid-template-columns: repeat(3, 1fr); } }
.sched-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--charcoal); overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--t-fast), transform var(--t-fast); }
.sched-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.sched-card__head { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; background: var(--ink); }
.sched-card__day { font-family: var(--display); font-size: 1.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1; }
.sched-card__count { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute-2); white-space: nowrap; }
.sched-card__list { display: flex; flex-direction: column; }
.sess { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.4rem; border-bottom: 1px solid var(--line); transition: background var(--t-fast); }
.sess:last-child { border-bottom: 0; }
.sess:hover { background: var(--charcoal-2); }
.sess__info { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.sess__prog { font-weight: 600; font-size: 1rem; color: var(--white); line-height: 1.1; }
.sess__level { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.sess__time { font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--mute); white-space: nowrap; letter-spacing: 0.01em; }
.sess:hover .sess__time { color: var(--white); }

/* ----------------------------------------------------------------- Results collage (masonry) */
.collage { column-count: 2; column-gap: clamp(0.45rem, 1.1vw, 0.8rem); }
@media (min-width: 620px){ .collage { column-count: 3; } }
@media (min-width: 1000px){ .collage { column-count: 4; } }
.collage .plate { break-inside: avoid; margin: 0 0 clamp(0.45rem, 1.1vw, 0.8rem); display: block; border-radius: var(--radius); transition: border-color var(--t-fast); }
.collage .plate::after { display: none; }
.collage .plate img { position: static; width: 100%; height: auto; display: block; object-fit: contain; transition: transform var(--t); }
.collage .plate:hover { border-color: var(--red); }
.collage .plate:hover img { transform: scale(1.03); }

/* Follow The Grind — feature tile in the media grid */
.media-grid .plate.big { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.media-grid .plate img { transition: transform var(--t); }
.media-grid .plate:hover img { transform: scale(1.05); }
