/* E4 Brand Management Group · main.css */
:root {
  --ink: #0A0A0A;
  --ink-2: #141414;
  --ink-3: #1A1A1A;
  --paper: #FFFFFF;
  --paper-2: #F7F7F7;
  --paper-3: #EFEFEF;
  --red: #E31E24;
  --red-dark: #B81720;
  --red-bright: #FF2A30;
  --line: rgba(0,0,0,0.10);
  --line-strong: rgba(0,0,0,0.18);
  --line-dark: rgba(255,255,255,0.10);
  --line-dark-strong: rgba(255,255,255,0.20);
  --text: #0A0A0A;
  --text-mute: #5A5A5A;
  --text-dim: #8A8A8A;
  --text-on-dark: #FFFFFF;
  --text-on-dark-mute: #B0B0B0;
  --max: 1280px;
  --nav-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--paper); -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); }
body {
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.011em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--red); color: #fff; }

/* Keyboard focus indicator (was missing — required for WCAG 2.4.7). */
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.container { max-width: var(--max); margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) { .container { padding-left: 3rem; padding-right: 3rem; } }

.eyebrow { font-size: 0.75rem; text-transform: uppercase; color: var(--red); letter-spacing: 0.28em; font-weight: 700; }
.eyebrow-dark { font-size: 0.75rem; text-transform: uppercase; color: var(--red); letter-spacing: 0.28em; font-weight: 700; }

/* PAGE TRANSITION
   Body stays visible on load (no FOUC / white-flash). Fades out on internal
   navigation when JS adds .is-leaving. */
body { opacity: 1; transition: opacity 220ms ease; }
body.is-leaving { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  body { transition: none; }
}

/* SCROLL PROGRESS */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--red); z-index: 200; transition: width 0.08s linear; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; height: 100%; }
@media (min-width: 1024px) { .nav-inner { padding: 0 3rem; } }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 36px; width: auto; display: block; object-fit: contain; }
@media (max-width: 640px) { .brand-logo { height: 30px; } }
.nav-links { display: none; gap: 1.75rem; align-items: center; }
@media (min-width: 1100px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); transition: color 0.2s; position: relative; padding: 0.5rem 0; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: none; }
@media (min-width: 1100px) { .nav-cta { display: inline-flex; } }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.95rem 1.5rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.2s ease; line-height: 1; text-align: center; border: 2px solid transparent; white-space: nowrap; }
.btn.nav-cta { padding: 0.85rem 1.25rem; font-size: 0.72rem; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(227,30,36,0.32); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--paper); }
.btn-ghost-light { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0.5rem; min-width: 44px; min-height: 44px; background: transparent; border: 0; cursor: pointer; }
@media (min-width: 1100px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); display: block; transition: transform 0.2s, opacity 0.2s; }
.mobile-menu { position: fixed; inset: var(--nav-h) 0 0 0; background: var(--paper); z-index: 99; padding: 2rem 1.5rem 3rem; display: none; flex-direction: column; gap: 0.5rem; border-top: 1px solid var(--line); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 1rem 0; font-size: 1rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.mobile-menu a.active { color: var(--red); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* HERO */
.hero { position: relative; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 6rem; background: var(--ink); color: #fff; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; right: -10%; top: 10%; width: 60%; height: 80%; background: radial-gradient(closest-side, rgba(227,30,36,0.18), transparent 70%); pointer-events: none; z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.85) 60%, var(--ink) 100%), repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 38px), repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 38px); pointer-events: none; z-index: 0; opacity: 0.7; }
.hero > * { position: relative; z-index: 1; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-photo-wrap { max-width: 520px; width: 100%; margin: 0 auto; }
.hero-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #000; border: 1px solid var(--line-dark); width: 100%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.hero-photo img.is-loaded { opacity: 1; }
.hero-caption { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.hero-caption .left .name { font-family: 'Anton', sans-serif; font-size: 1.0625rem; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.hero-caption .left .school { font-size: 0.75rem; color: var(--text-on-dark-mute); margin-top: 2px; }
.hero-caption .right { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.28em; color: var(--red); text-transform: uppercase; }
.hero-text .eyebrow { color: var(--red); }
.hero-text h1 { font-family: 'Anton', 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.95; letter-spacing: 0.005em; text-transform: uppercase; margin-top: 1rem; color: #fff; }
.hero-text h1 .accent { color: var(--red); }
.hero-text .sub { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-top: 1.25rem; }
.hero-text p.body { margin-top: 1.5rem; max-width: 480px; color: var(--text-on-dark-mute); font-size: 1.0625rem; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; align-items: center; z-index: 5; }
.hero-dots button { width: 22px; height: 4px; background: rgba(255,255,255,0.25); transition: background 0.2s, width 0.2s; }
.hero-dots button.is-active { background: var(--red); width: 32px; }

/* PAGE HERO (smaller) */
.page-hero { position: relative; padding: calc(var(--nav-h) + 4rem) 0 5rem; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -10%; top: -20%; width: 60%; height: 120%; background: radial-gradient(closest-side, rgba(227,30,36,0.18), transparent 70%); pointer-events: none; }
.page-hero .crumb { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; display: flex; gap: 0.5rem; align-items: center; }
.page-hero .crumb a { color: var(--red); }
.page-hero h1 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.5rem, 7vw, 5.5rem); line-height: 0.98; letter-spacing: 0.01em; text-transform: uppercase; }
.page-hero h1 .accent { color: var(--red); }
.page-hero .lead { margin-top: 1.5rem; max-width: 640px; color: var(--text-on-dark-mute); font-size: 1.125rem; line-height: 1.6; }
.page-hero .ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* SECTION BASE */
section { position: relative; }
.section-pad { padding: 6rem 0; }
@media (min-width: 1024px) { .section-pad { padding: 8rem 0; } }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 4rem; }
.section-head h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.02; letter-spacing: 0.005em; text-transform: uppercase; margin-top: 0.75rem; }
.section-head h2 .accent { color: var(--red); }
.section-head p { margin-top: 1.25rem; font-size: 1.0625rem; color: var(--text-mute); line-height: 1.6; }

/* WHAT IS E4 */
.what-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .what-grid { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.what-card { padding: 0 2rem; position: relative; }
@media (min-width: 768px) { .what-card + .what-card { border-left: 1px solid var(--line); } }
.what-card .num { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 4rem; color: var(--red); line-height: 1; }
.what-card .num::after { content: ''; display: block; width: 38px; height: 3px; background: var(--red); margin-top: 0.5rem; }
.what-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 2rem; letter-spacing: 0.02em; text-transform: uppercase; margin-top: 1.25rem; }
.what-card p { margin-top: 1rem; color: var(--text-mute); font-size: 0.9875rem; line-height: 1.7; }

/* ROSTER */
.roster-section { background: var(--ink); color: #fff; padding-top: 5rem; padding-bottom: 5rem; }
.roster-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .roster-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.roster-head h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; }
.roster-head .eyebrow { color: var(--red); }
.roster-head a { color: var(--red); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.5rem; }
.roster-head a:hover { color: #fff; }

.roster-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn { padding: 0.65rem 1.1rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; border: 1px solid var(--line-dark-strong); color: rgba(255,255,255,0.85); background: transparent; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--red); color: #fff; }
.filter-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.roster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .roster-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .roster-grid { grid-template-columns: repeat(10, 1fr); gap: 1.25rem; }
  .roster-grid > .athlete-card { grid-column: span 2; }
  /* Center an orphan row of 4 cards under a row of 5 (9 total) */
  .roster-grid > .athlete-card:nth-child(6):nth-last-child(4) { grid-column: 2 / span 2; }
  /* Center an orphan row of 3 cards under a row of 5 (8 total) */
  .roster-grid > .athlete-card:nth-child(6):nth-last-child(3) { grid-column: 3 / span 2; }
  /* Center an orphan row of 2 cards under a row of 5 (7 total) */
  .roster-grid > .athlete-card:nth-child(6):nth-last-child(2) { grid-column: 4 / span 2; }
  /* Center an orphan single card under a row of 5 (6 total) */
  .roster-grid > .athlete-card:nth-child(6):nth-last-child(1) { grid-column: 5 / span 2; }
}
.athlete-card { position: relative; aspect-ratio: 3/4; background: var(--ink-2); overflow: hidden; cursor: pointer; display: block; }
.athlete-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.4s ease; }
.athlete-card:hover img { transform: scale(1.04); }
.athlete-card::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 var(--red); transition: box-shadow 0.25s ease; pointer-events: none; }
.athlete-card:hover::after { box-shadow: inset 0 0 0 3px var(--red); }
.athlete-card .meta-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.85rem 1rem; background: rgba(10,10,10,0.92); transform: translateY(0); transition: transform 0.3s ease; }
/* Desktop with a real hover device: hide the meta-bar by default and
   slide it up on hover. Touch / keyboard users always see it (showing on
   :focus-within keeps keyboard parity). */
@media (hover: hover) {
  .athlete-card .meta-bar { transform: translateY(102%); }
  .athlete-card:hover .meta-bar,
  .athlete-card:focus-within .meta-bar { transform: translateY(0); }
}
.athlete-card .meta-bar .name { font-family: 'Anton', sans-serif; font-size: 1rem; color: #fff; letter-spacing: 0.03em; text-transform: uppercase; }
.athlete-card .meta-bar .school { font-size: 0.72rem; color: var(--red); margin-top: 2px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

/* PARTNERS */
.partners-section { background: var(--paper-2); padding: 4rem 0; }
.partners-section .head { text-align: center; margin-bottom: 2.5rem; }
.partners-section .head .eyebrow { color: var(--red); }
.partners-section .head h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.5rem; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: center; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
.partner-cell { display: flex; align-items: center; justify-content: center; height: 110px; }
.partner-cell img { max-height: 96px; max-width: 220px; width: auto; height: auto; object-fit: contain; transition: transform 0.25s ease; }
.partner-cell:hover img { transform: scale(1.05); }

/* CHOOSE YOUR LANE */
.lane-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .lane-grid { grid-template-columns: 1fr 1fr; } }
.lane-card { position: relative; padding: 3rem 2.5rem; min-height: 380px; background: var(--ink); color: #fff; overflow: hidden; transition: transform 0.25s ease; display: flex; flex-direction: column; justify-content: flex-end; }
.lane-card:hover { transform: translateY(-4px); }
.lane-card::before { content: ''; position: absolute; inset: 0; background: var(--ink); z-index: 0; }
.lane-card.hs::before { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }
.lane-card.col::before { background: linear-gradient(135deg, var(--red-dark) 0%, var(--ink) 100%); }
.lane-card > * { position: relative; z-index: 1; }
.lane-card .phase { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; color: var(--red); text-transform: uppercase; }
.lane-card.col .phase { color: #fff; }
.lane-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2rem, 3.5vw, 2.75rem); letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.5rem; }
.lane-card p { margin-top: 1.25rem; color: rgba(255,255,255,0.78); font-size: 1rem; max-width: 460px; }
.lane-card .more { margin-top: 1.75rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 0.4rem; align-self: flex-start; transition: border-color 0.2s; }
.lane-card .more:hover { border-color: var(--red); color: var(--red); }

/* SERVICES */
.services-section { background: var(--paper); padding-top: 6rem; padding-bottom: 6rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--paper); padding: 2.5rem 2rem 2.75rem; transition: background 0.25s ease; position: relative; display: flex; flex-direction: column; }
.service-card:hover { background: var(--ink); color: #fff; }
.service-card:hover .num { color: var(--red); }
.service-card:hover h3 { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,0.78); }
.service-card:hover .more { color: var(--red); border-color: var(--red); }
.service-card .num { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.5rem; color: var(--red); }
.service-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; margin-top: 1rem; line-height: 1.1; min-height: 3.3em; transition: color 0.2s; color: var(--text); }
.service-card p { margin-top: 1rem; font-size: 0.9375rem; color: var(--text-mute); line-height: 1.65; transition: color 0.2s; flex: 1; }
.service-card .more { margin-top: 1.5rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); border-bottom: 2px solid var(--text); padding-bottom: 0.3rem; align-self: flex-start; transition: color 0.2s, border-color 0.2s; }

/* SERVICE DEEP CARDS (services.html) */
.service-deep { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; border-bottom: 1px solid var(--line); align-items: center; }
@media (min-width: 1024px) { .service-deep { grid-template-columns: 1fr 1fr; gap: 5rem; } .service-deep:nth-child(even) > .service-deep__art { order: 2; } }
.service-deep:last-child { border-bottom: 0; }
.service-deep__art { position: relative; aspect-ratio: 4/3; background: var(--ink); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-deep__art .num { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(8rem, 18vw, 16rem); color: var(--red); line-height: 0.85; opacity: 0.85; }
.service-deep__copy h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2rem, 3.5vw, 2.75rem); letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.75rem; }
.service-deep__copy p { margin-top: 1.25rem; color: var(--text-mute); font-size: 1.0625rem; }
.service-deep__copy ul { margin-top: 1.5rem; list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .service-deep__copy ul { grid-template-columns: 1fr 1fr; } }
.service-deep__copy ul li { padding-left: 1.5rem; position: relative; font-size: 0.95rem; }
.service-deep__copy ul li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 8px; height: 8px; background: var(--red); }

/* CONNECT APP */
.connect-section { background: var(--ink); color: #fff; }
.connect-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .connect-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }
.connect-section h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.75rem; }
.connect-section h2 .accent { color: var(--red); }
.connect-section p { color: var(--text-on-dark-mute); margin-top: 1.5rem; font-size: 1.0625rem; max-width: 480px; line-height: 1.6; }
.connect-cta { margin-top: 2rem; display: inline-flex; gap: 0.75rem; flex-wrap: wrap; }
.connect-mock { position: relative; aspect-ratio: 4/5; background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%); border: 1px solid var(--line-dark-strong); display: flex; align-items: center; justify-content: center; max-width: 460px; margin: 0 auto; padding: 3rem 2rem; }
.connect-mock svg { width: 100%; height: auto; max-width: 320px; opacity: 0.95; }

/* BRAND BOX */
.brandbox-section { background: var(--paper-2); }
.brandbox-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .brandbox-grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; } }
.brandbox-art { aspect-ratio: 1/1; background: var(--ink); position: relative; overflow: hidden; }
.brandbox-art img { width: 100%; height: 100%; object-fit: cover; }
.brandbox-text h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.75rem; }
.brandbox-text p { margin-top: 1.5rem; color: var(--text-mute); font-size: 1.0625rem; max-width: 540px; }
.brandbox-list { margin: 2rem 0 0; list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .brandbox-list { grid-template-columns: 1fr 1fr; } }
.brandbox-list li { padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: var(--text); }
.brandbox-list li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 8px; height: 8px; background: var(--red); }

/* DUO CARDS */
.duo-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); }
@media (min-width: 768px) { .duo-grid { grid-template-columns: 1fr 1fr; } }
.duo-card { padding: 3rem 2.5rem; background: var(--paper); }
.duo-card + .duo-card { border-top: 1px solid var(--line); }
@media (min-width: 768px) { .duo-card + .duo-card { border-top: 0; border-left: 1px solid var(--line); } }
.duo-card .eyebrow { color: var(--red); }
.duo-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 2rem; letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.5rem; }
.duo-card p { margin-top: 1.25rem; color: var(--text-mute); font-size: 1rem; }
.duo-card .arrow-link { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); border-bottom: 2px solid var(--red); padding-bottom: 0.35rem; }
.duo-card .arrow-link:hover { color: var(--red); }

/* CAMPS */
.camps-section { background: var(--ink); color: #fff; }
.camps-section h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; }
.camps-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: 3rem; }
@media (min-width: 768px) { .camps-grid { grid-template-columns: repeat(3, 1fr); } }
.camp-cell { background: var(--ink); padding: 2rem 1.5rem; }
.camp-cell .icon { width: 38px; height: 38px; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Anton', sans-serif; font-size: 1.125rem; margin-bottom: 1rem; }
.camp-cell h4 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.125rem; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.camp-cell p { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 980px; margin: 0 auto; }
@media (min-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { background: var(--paper); }
.team-photo { aspect-ratio: 4/5; background: var(--paper-3); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-info { padding: 1.5rem 0; }
.team-info .name { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; }
.team-info .role { margin-top: 0.5rem; font-size: 0.88rem; color: var(--text-mute); letter-spacing: 0.04em; }
.team-info .role strong { color: var(--red); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; display: block; margin-bottom: 0.25rem; }

/* TEAM DEEP BIOS (team.html) */
.bio-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.bio-card { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .bio-card { grid-template-columns: 380px 1fr; gap: 3rem; align-items: start; } }
.bio-photo { aspect-ratio: 3/4; background: var(--paper-3); overflow: hidden; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.bio-content .role-tag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); }
.bio-content h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2rem, 3.5vw, 2.75rem); letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.5rem; }
.bio-content .role { margin-top: 0.5rem; font-size: 0.95rem; color: var(--text-mute); }
.bio-content p { margin-top: 1.25rem; font-size: 1rem; color: var(--text); line-height: 1.7; }
.bio-stats { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 480px; }
.bio-stat .num { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 2.25rem; color: var(--red); line-height: 1; }
.bio-stat .lab { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-top: 0.5rem; }

/* TESTIMONIAL */
.testimonial-section { background: var(--red); color: #fff; }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: 0.9fr 1.4fr; gap: 4rem; } }
.testimonial-photo { aspect-ratio: 4/5; background: rgba(0,0,0,0.2); overflow: hidden; max-width: 420px; }
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-text .label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; color: rgba(255,255,255,0.85); text-transform: uppercase; }
.testimonial-text blockquote { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.5rem); line-height: 1.15; letter-spacing: 0.005em; margin-top: 1.5rem; max-width: 760px; }
.testimonial-text blockquote::before { content: '\201C'; font-size: 4rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.1em; opacity: 0.45; }
.testimonial-text .who { margin-top: 2rem; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.testimonial-text .who span { display: block; font-weight: 400; opacity: 0.85; margin-top: 4px; letter-spacing: 0.08em; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.process-step { padding: 0 2rem; position: relative; }
@media (min-width: 768px) { .process-step + .process-step { border-left: 1px solid var(--line); } }
.process-step .num { font-family: 'Anton', sans-serif; font-size: 4rem; color: var(--red); line-height: 1; }
.process-step h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.75rem; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1rem; }
.process-step p { margin-top: 1rem; color: var(--text-mute); font-size: 0.96rem; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; padding: 1.5rem 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: 'Anton', sans-serif; font-size: 1.25rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item summary::after { content: '+'; font-family: 'Anton', sans-serif; font-size: 1.75rem; color: var(--red); transition: transform 0.2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .body { padding: 0 0 1.5rem; color: var(--text-mute); font-size: 1rem; line-height: 1.7; max-width: 720px; }

/* PRICING / TIERS */
.tiers-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .tiers-grid { grid-template-columns: repeat(3, 1fr); } }
.tier-card { background: var(--paper); border: 1px solid var(--line); padding: 2.5rem 2rem; display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s ease; }
.tier-card:hover { transform: translateY(-4px); border-color: var(--red); }
.tier-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); position: relative; }
.tier-card.featured::before { content: 'Most Chosen'; position: absolute; top: -10px; right: 1.5rem; background: var(--red); color: #fff; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.4rem 0.7rem; }
.tier-card .lab { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); }
.tier-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 2rem; letter-spacing: 0.02em; text-transform: uppercase; margin-top: 0.5rem; }
.tier-card .for { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-mute); }
.tier-card.featured .for { color: var(--text-on-dark-mute); }
.tier-card ul { margin-top: 1.5rem; list-style: none; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.tier-card ul li { padding-left: 1.5rem; position: relative; font-size: 0.94rem; }
.tier-card ul li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 8px; height: 8px; background: var(--red); }
.tier-card .cta { margin-top: 2rem; }

/* TIMELINE (recruiting) */
.timeline { max-width: 880px; margin: 0 auto; position: relative; padding-left: 1.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--red); }
.timeline-item { padding: 0 0 2.5rem 1.5rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -1.95rem; top: 0.3rem; width: 14px; height: 14px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 4px var(--paper); }
.timeline-item .age { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.timeline-item h4 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.25rem; letter-spacing: 0.02em; text-transform: uppercase; margin-top: 0.5rem; }
.timeline-item p { margin-top: 0.5rem; color: var(--text-mute); font-size: 0.95rem; }

/* CTA BIG */
.cta-big { background: var(--ink); color: #fff; padding: 6rem 0; text-align: center; }
.cta-big h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.98; letter-spacing: 0.01em; text-transform: uppercase; }
.cta-big h2 .accent { color: var(--red); }
.cta-big p { margin-top: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; color: var(--text-on-dark-mute); font-size: 1.0625rem; }
.cta-big .ctas { margin-top: 2.5rem; display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* MORE THAN NIL */
.more-than { background: var(--ink); color: #fff; padding: 4rem 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); text-align: center; }
.more-than .eye { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.32em; color: var(--red); text-transform: uppercase; }
.more-than h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: 0.02em; text-transform: uppercase; margin-top: 0.75rem; }

/* FORM */
.contact-section { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; } }
.contact-info h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.02; }
.contact-info .lead { margin-top: 1.25rem; color: var(--text-mute); }
.contact-list { margin-top: 2rem; list-style: none; padding: 0; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.contact-list .lab { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.contact-list .val { font-size: 1.0625rem; font-weight: 600; color: var(--text); }
form.apply { background: var(--paper); padding: 2.5rem; border: 1px solid var(--line); }
form.apply h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; }
form.apply p.note { font-size: 0.85rem; color: var(--text-mute); margin-top: 0.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1.25rem; }
.field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 0.95rem; padding: 0.85rem 1rem; border: 1px solid var(--line-strong); background: var(--paper); color: var(--text); transition: border-color 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { min-height: 120px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }
form.apply button { margin-top: 1.5rem; width: 100%; }
.form-note { margin-top: 1rem; font-size: 0.78rem; color: var(--text-mute); }

/* FEATURES (connect.html) */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.features-grid.two-up-center { grid-template-columns: 1fr; max-width: 880px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .features-grid.two-up-center { grid-template-columns: repeat(2, 1fr); } }
.feature-card { padding: 2rem 1.75rem; background: var(--paper-2); border: 1px solid var(--line); transition: all 0.2s; }
.feature-card:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.feature-card:hover h4 { color: #fff; }
.feature-card:hover p { color: rgba(255,255,255,0.78); }
.feature-card .icon { width: 44px; height: 44px; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Anton', sans-serif; font-size: 1.25rem; margin-bottom: 1rem; }
.feature-card h4 { font-family: 'Anton', sans-serif; font-size: 1.25rem; letter-spacing: 0.02em; text-transform: uppercase; transition: color 0.2s; }
.feature-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--text-mute); transition: color 0.2s; }

/* ACTIVATE SECTION (connect.html) */
.activate-section { background: var(--paper-2); position: relative; overflow: hidden; }
.activate-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(10,10,10,0.025) 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, rgba(10,10,10,0.025) 0 1px, transparent 1px 80px); pointer-events: none; }
.activate-section > .container { position: relative; z-index: 1; }
.activate-head { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; display: flex; flex-direction: column; align-items: center; }
.connect-logo { width: 100%; max-width: 360px; height: auto; display: block; }
@media (max-width: 640px) { .connect-logo { max-width: 280px; } }
.activate-head h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.75rem; }
.activate-head h2 .accent { color: var(--red); }
.activate-head p.lead { margin-top: 1.25rem; max-width: 640px; }

.activate-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .activate-grid { grid-template-columns: 1.35fr 1fr; gap: 4rem; } }

.step-list { list-style: none; padding: 0; margin: 0; counter-reset: step; display: flex; flex-direction: column; gap: 1.25rem; }
.step-list li { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); padding: 1.5rem 1.5rem 1.4rem; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
@media (hover: hover) { .step-list li:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,10,10,0.06); } }
.step-num { flex: 0 0 44px; height: 44px; width: 44px; background: var(--red); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif; font-size: 1.35rem; line-height: 1; }
.step-body { flex: 1; }
.step-body h4 { font-family: 'Anton', sans-serif; font-size: 1.125rem; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.2; }
.step-body p { margin-top: 0.4rem; font-size: 0.92rem; color: var(--text-mute); line-height: 1.55; }

.activate-cta { background: var(--ink); color: #fff; padding: 2.25rem 2rem; border: 1px solid var(--line-dark-strong); position: sticky; top: calc(var(--nav-h) + 1.5rem); }
@media (max-width: 960px) { .activate-cta { position: static; } }
.activate-primary { width: 100%; justify-content: center; font-size: 1rem; padding: 1.1rem 1.5rem; gap: 0.5rem; }
.btn-icon { width: 18px; height: 18px; display: inline-block; transition: transform 0.2s ease; }
.activate-primary:hover .btn-icon { transform: translateX(3px); }
.activate-note { margin-top: 0.85rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); text-align: center; line-height: 1.4; }
.activate-divider { position: relative; text-align: center; margin: 1.75rem 0 1.25rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.activate-divider::before, .activate-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 5.5rem); height: 1px; background: rgba(255,255,255,0.12); }
.activate-divider::before { left: 0; }
.activate-divider::after { right: 0; }

.store-badges { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 480px) { .store-badges { grid-template-columns: 1fr 1fr; } }
.store-badge { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.18); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; min-height: 56px; }
.store-badge:hover { border-color: var(--red); transform: translateY(-1px); }
.store-icon { width: 26px; height: 26px; flex: 0 0 26px; }
.store-text { display: flex; flex-direction: column; line-height: 1.05; }
.store-pre { font-size: 0.6rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.store-name { font-family: 'Anton', sans-serif; font-size: 1.05rem; letter-spacing: 0.02em; }

.activate-foot { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--line); text-align: center; }
.activate-foot h3 { font-family: 'Anton', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.02em; text-transform: uppercase; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
.check-list li { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1rem; color: var(--text); font-weight: 600; }
.check { width: 24px; height: 24px; background: var(--red); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; flex: 0 0 24px; border-radius: 999px; }

/* ATHLETE INDIVIDUAL HIGHLIGHT (athletes.html) */
.athlete-spotlight { background: var(--ink); color: #fff; padding: 5rem 0; border-top: 1px solid var(--line-dark); }
.spotlight-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .spotlight-grid { grid-template-columns: 1fr 1.3fr; gap: 5rem; } }
.spotlight-photo { aspect-ratio: 3/4; background: var(--ink-2); overflow: hidden; }
.spotlight-photo img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-content .lab { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); }
.spotlight-content h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; margin-top: 0.5rem; }
.spotlight-content .school { margin-top: 0.75rem; color: var(--text-on-dark-mute); font-size: 1rem; }
.spotlight-content blockquote { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(1.25rem, 2.2vw, 1.875rem); line-height: 1.2; letter-spacing: 0.005em; margin-top: 2rem; max-width: 720px; color: #fff; }
.spotlight-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 520px; padding-top: 2rem; border-top: 1px solid var(--line-dark); }
.spotlight-stats .stat .v { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--red); line-height: 1; }
.spotlight-stats .stat .l { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-dark-mute); margin-top: 0.4rem; }

/* RESOURCE TILES (resources.html) */
.resource-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .resource-grid { grid-template-columns: repeat(3, 1fr); } }
/* Center a single orphan card on the last row */
@media (min-width: 1024px) {
  .resource-grid .resource-card:last-child:nth-child(3n+1) { grid-column: 2 / 3; }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .resource-grid .resource-card:last-child:nth-child(2n+1) { grid-column: 1 / 3; max-width: 50%; justify-self: center; }
}
.resource-card { background: var(--paper); border: 1px solid var(--line); padding: 2rem 1.75rem; display: flex; flex-direction: column; transition: all 0.2s; }
.resource-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.resource-card .lab { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); }
.resource-card h3 { font-family: 'Anton', sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; margin-top: 0.5rem; }
.resource-card p { margin-top: 0.75rem; color: var(--text-mute); font-size: 0.95rem; flex: 1; }
.resource-card .more { margin-top: 1.25rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); border-bottom: 2px solid var(--red); padding-bottom: 0.3rem; align-self: flex-start; }

/* FOOTER */
footer { background: var(--ink); color: #fff; padding: 5rem 0 2rem; }
.foot-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 768px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.foot-tag { color: var(--text-on-dark-mute); margin-top: 1rem; max-width: 320px; font-size: 0.95rem; }
.foot-col h5 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; }
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col a { color: rgba(255,255,255,0.85); font-size: 0.95rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--red); }
.foot-bottom { padding-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
@media (min-width: 768px) { .foot-bottom { flex-direction: row; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(0.2,0.6,0.2,1), transform 700ms cubic-bezier(0.2,0.6,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* MOBILE TWEAKS */
@media (max-width: 768px) {
  .section-pad { padding: 4.5rem 0; }
  .what-card + .what-card { border-left: 0; border-top: 1px solid var(--line); padding-top: 2.5rem; }
  .process-step + .process-step { border-left: 0; border-top: 1px solid var(--line); padding-top: 2.5rem; }
  .page-hero { padding: calc(var(--nav-h) + 2rem) 0 3.5rem; }
}
