/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-orange:        #FF5F1F;
  --color-orange-dark:   #b03510;
  --color-orange-deeper: #8c2a0d;
  --color-charcoal:      #32373D;
  --color-charcoal-warm: #36454F;
  --color-slate:         #A5ABAF;
  --color-cream:         #eae6e5;
  --color-white:         #ffffff;

  --color-text-on-dark:       #ffffff;
  --color-text-muted-on-dark: rgba(255,255,255,0.68);
  --color-text-body:          #36454F;
  --color-text-muted:         #5a5f65;
  --color-border-dark:        rgba(255,255,255,0.1);
  --color-border-light:       rgba(47,42,37,0.12);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  22px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inria Sans', sans-serif;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-orange);
  color: white;
  font-family: 'Inria Sans', sans-serif;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================================
   FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-orange);
  transition: background 0.2s, border-bottom 0.2s;
  border-bottom: 1px solid transparent;
}

#main-nav.scrolled {
  background: var(--color-orange-dark);
  border-bottom-color: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-kanji {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  padding: 6px 0;
}

.nav-wordmark {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
  white-space: nowrap;
}

.nav-dot {
  color: var(--color-slate);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Inria Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
  white-space: nowrap;
}

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

.nav-cta {
  font-family: 'Magra', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: var(--color-white);
  color: var(--color-orange);
  padding: 7px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--color-cream);
  color: var(--color-orange-dark);
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.nav-social:hover {
  color: var(--color-white);
  background: rgba(0,0,0,0.1);
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  color: var(--color-white);
  background: rgba(0,0,0,0.1);
}

.nav-hamburger .icon-close {
  display: none;
}

.nav-hamburger.open .icon-menu {
  display: none;
}

.nav-hamburger.open .icon-close {
  display: block;
}

/* Mobile nav dropdown */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--color-orange-dark);
  z-index: 99;
  padding: 16px 24px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-mobile-panel.open {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-panel a {
  display: block;
  font-family: 'Inria Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  transition: color 0.15s;
}

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

.nav-mobile-panel .nav-mobile-cta {
  display: block;
  font-family: 'Magra', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: var(--color-white);
  color: var(--color-orange);
  text-align: center;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
/* Hero base is always orange — photo carousel layers on top */
.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 60px;
  background-color: #D64218;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #D64218;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
}

.hero-slide.active {
  opacity: 1;
}

/* Photo-background slides (slide 3) keep the old filter treatment */
.hero-slide--photo {
  background-size: cover;
  background-position: center;
  filter: grayscale(85%) brightness(0.60) sepia(40%);
}

/* Dark vignette inside photo slides */
.hero-slide-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to right,
    rgba(47,42,37,0.62) 0%,
    rgba(47,42,37,0.28) 55%,
    rgba(47,42,37,0.05) 100%
  );
  pointer-events: none;
}

/* Two-column layout inside each slide */
.hero-slide-layout {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

/* Flip: image on left, text on right */
.hero-slide-layout--flip {
  flex-direction: row-reverse;
}

/* Text content column */
.hero-content {
  flex: 0 0 auto;
  width: 50%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 0;
}

.hero-slide-layout--flip .hero-content {
  padding: 80px 0 80px 48px;
}

/* Image column */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-visual--bottom {
  align-items: flex-end;
}

.hero-visual--center {
  align-items: center;
}

.hero-slide-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.hero-eyebrow {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.hero-h1 {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--color-white);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-h1 em {
  color: rgba(255,255,255,0.62);
  font-style: normal;
}

.hero-body {
  font-family: 'Inria Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Magra', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: var(--color-white);
  color: var(--color-orange);
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-cream);
}

.btn-ghost {
  font-family: 'Magra', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.32);
  padding: 11px 18px;
  border-radius: var(--radius-md);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.35);
  transition: width 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.dot.active {
  background: var(--color-white);
  width: 20px;
}

/* ============================================================
   EVENT TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--color-charcoal);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}

.ticker-label {
  background: rgba(214,66,24,0.18);
  color: var(--color-orange);
  font-family: 'Inria Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ticker-item {
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-item strong {
  color: var(--color-white);
  font-weight: 700;
}

.ticker-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 28px;
}

.section-header {
  margin-bottom: 28px;
}

.section-eyebrow {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 6px;
}

/* Base h2 for dark sections */
#events h2,
#tools h2,
#about h2 {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 8px;
}

/* Coaching section h2 is on white bg — needs dark text */
#coaching h2 {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--color-charcoal-warm);
  margin-bottom: 8px;
}

.section-sub {
  font-family: 'Inria Sans', sans-serif;
  font-size: 14px;
  color: var(--color-slate);
  max-width: 520px;
  line-height: 1.65;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
#events {
  background: var(--color-charcoal);
}

.event-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

.event-divider:first-of-type {
  margin-top: 0;
}

.divider-line {
  flex: 1;
  height: 0.5px;
  background: rgba(255,255,255,0.1);
}

.event-divider span {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  color: var(--color-slate);
  white-space: nowrap;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-divider span::before,
.event-divider span::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}

.event-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}

.event-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(214,66,24,0.25);
}

.event-body {
  padding: 14px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.event-footer {
  padding: 0 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.event-price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-name {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.3;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-item {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: 3px;
}

.meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.event-notes {
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.event-price {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
}

.price-unit {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-slate);
}

.event-spots {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  color: var(--color-orange);
}

.btn-event-register {
  display: inline-block;
  font-family: 'Magra', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-event-register:hover {
  background: var(--color-orange-dark);
}

.btn-event-waitlist {
  display: inline-block;
  font-family: 'Magra', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(214,66,24,0.5);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn-event-waitlist:hover {
  background: rgba(214,66,24,0.15);
  color: var(--color-white);
  border-color: rgba(214,66,24,0.8);
}

/* ============================================================
   TOOLS SECTION
   ============================================================ */
.section-tools,
#tools {
  background: var(--color-charcoal-warm);
}

#tools .section-inner {
  max-width: 1280px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.card-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.04);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  overflow: hidden;
  flex-shrink: 0;
}

.card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}

.app-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(214,66,24,0.4);
}

.app-card--featured {
  border: 1.5px solid rgba(214,66,24,0.5);
}

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

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-filled {
  background: var(--color-orange);
  color: var(--color-white);
}

.icon-soft {
  background: rgba(214,66,24,0.15);
  color: var(--color-orange);
}

.tag-badge {
  font-family: 'Inria Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.tag-live {
  background: rgba(99,153,34,0.2);
  color: #97C459;
}

.tag-soon {
  background: rgba(214,66,24,0.15);
  color: #F09595;
}

.tag-free {
  background: rgba(165,171,175,0.12);
  color: var(--color-slate);
}

.tag-external {
  background: rgba(165,171,175,0.12);
  color: var(--color-slate);
}

.tag-type {
  background: rgba(165,171,175,0.1);
  color: var(--color-slate);
  letter-spacing: 0.07em;
}

.card-name {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.card-desc {
  font-family: 'Inria Sans', sans-serif;
  font-size: 13px;
  color: var(--color-slate);
  line-height: 1.58;
  flex: 1;
}

.card-link {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  color: var(--color-orange);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.15s;
}

.card-link:hover {
  opacity: 0.75;
}

/* ============================================================
   COACHING SECTION
   ============================================================ */
.section-coaching {
  background: var(--color-white);
}

.section-coaching .section-eyebrow {
  color: var(--color-orange);
}

.section-coaching h2 {
  color: var(--color-charcoal-warm);
}

.section-coaching .section-sub {
  color: var(--color-text-muted);
}

.service-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}

.service-card:hover {
  border-color: rgba(214,66,24,0.3);
}

.service-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.service-icon {
  font-size: 22px;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.service-card .card-name {
  color: var(--color-charcoal-warm);
  margin-bottom: 0;
}

.service-card .card-desc {
  color: var(--color-text-muted);
}

.service-price {
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange);
  margin-top: 12px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  background: var(--color-charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}

.about-photo {
  background-image: url('../assets/images/profile-photo.jpg');
  background-size: cover;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-slate);
}

.about-photo span {
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  color: var(--color-slate);
}

.about-content .section-eyebrow {
  margin-bottom: 4px;
}

.about-content h2 {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.about-body {
  font-family: 'Inria Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.78;
  margin-bottom: 12px;
}

.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.credential {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: var(--color-slate);
}

.credential--hot {
  background: rgba(214,66,24,0.15);
  border-color: rgba(214,66,24,0.3);
  color: #F09595;
}

/* ============================================================
   ATHLETIC UNIVERSE PROMO
   ============================================================ */
.section-au {
  background: linear-gradient(135deg, #241f1c 0%, #36454F 60%, #3a1816 100%);
  position: relative;
  overflow: hidden;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.au-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.au-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.au-logo {
  height: 30px;
  width: auto;
}

.au-tag {
  background: rgba(255,83,83,0.15);
  color: #ff8a8a;
}

.au-headline {
  font-family: 'Magra', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 14px;
}

.au-sub {
  font-family: 'Inria Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 22px;
}

.au-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.au-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 99px;
}

.au-feature svg {
  flex-shrink: 0;
  color: #ff5353;
}

.au-feature--soon {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.au-feature--soon svg {
  color: rgba(255,255,255,0.4);
}

.au-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.au-btn {
  font-family: 'Magra', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.au-btn-store {
  background: #ff5353;
  color: var(--color-white);
}

.au-btn-store:hover {
  background: #e84343;
}

.au-btn-web {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.32);
  color: var(--color-white);
}

.au-btn-web:hover {
  background: rgba(255,255,255,0.08);
}

.au-visual {
  display: flex;
  justify-content: center;
}

.au-hero-img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* ============================================================
   CROSS-LINK STRIP
   ============================================================ */
.crosslink-strip {
  background: var(--color-charcoal-warm);
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.crosslink-icon {
  color: var(--color-orange);
  flex-shrink: 0;
}

.crosslink-text {
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  color: var(--color-slate);
  flex: 1;
  line-height: 1.5;
}

.crosslink-link {
  font-family: 'Inria Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.crosslink-link:hover {
  opacity: 0.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal-warm);
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  color: rgba(165,171,175,0.55);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  font-family: 'Inria Sans', sans-serif;
  font-size: 11px;
  color: rgba(165,171,175,0.55);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--color-slate);
}

/* ============================================================
   STAGGER DELAYS FOR GRIDS
   ============================================================ */
.cards-grid .animate-up:nth-child(1) { transition-delay: 0s; }
.cards-grid .animate-up:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .animate-up:nth-child(3) { transition-delay: 0.16s; }
.cards-grid .animate-up:nth-child(4) { transition-delay: 0.24s; }
.cards-grid .animate-up:nth-child(5) { transition-delay: 0.32s; }
.cards-grid .animate-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-panel {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero-slide-layout {
    padding: 0 20px;
    flex-direction: column;
  }

  .hero-slide-layout--flip {
    flex-direction: column;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 40px 0 32px;
  }

  .hero-slide-layout--flip .hero-content {
    padding: 40px 0 32px;
  }

  .hero-visual {
    display: none;
  }

  .hero-h1 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Ticker */
  .ticker-item {
    font-size: 11px;
  }

  .ticker-sep {
    display: none;
  }

  /* Events */
  .event-footer {
    flex-wrap: wrap;
  }

  /* Grids */
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 120px;
  }

  /* Athletic Universe promo */
  .au-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    text-align: center;
  }

  .au-eyebrow-row,
  .au-features,
  .au-actions {
    justify-content: center;
  }

  .au-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .au-hero-img {
    max-width: 220px;
  }

  /* Cross-link */
  .crosslink-strip {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* Section inner padding */
  .section-inner {
    padding: 40px 20px;
  }
}