/*
 * TennisNation Design System v1.0
 * Staging — based on live site brand extraction (May 2026)
 * Brand: Infinity Pro (Genesis) → GeneratePress child
 * Colors: Red #dd3333 / Dark #1a1a1a / White — athletic red/black/white palette
 * Fonts: Raleway (display/UI) + Inter (body)
 */

/* ============================================
   1. CSS VARIABLES — Brand Design Tokens
   ============================================ */
:root {

  /* --- Primary Palette --- */
  --tn-red:          #dd3333;   /* Primary CTA, buttons, key accents */
  --tn-red-dark:     #bb2222;   /* Hover state */
  --tn-red-light:    #f5e6e6;   /* Subtle red tint backgrounds */
  --tn-red-rgb:      221,51,51; /* For rgba() usage */

  /* --- Dark Palette --- */
  --tn-dark:         #1a1a1a;   /* Hero backgrounds, dark sections */
  --tn-dark-mid:     #2a2a2a;   /* Secondary dark elements */
  --tn-dark-soft:    #3a3a3a;   /* Tertiary dark */

  /* --- Neutral Palette --- */
  --tn-white:        #ffffff;
  --tn-off-white:    #f8f7f5;   /* Alternate section backgrounds */
  --tn-gray-light:   #f2f2f2;   /* Card backgrounds, zebra rows */
  --tn-border:       #e8e8e8;   /* Dividers, card borders */
  --tn-border-mid:   #d4d4d4;   /* Medium-weight borders */

  /* --- Text --- */
  --tn-text-primary:   #1a1a1a;
  --tn-text-secondary: #555555;
  --tn-text-muted:     #888888;
  --tn-text-hint:      #b0b0b0;

  /* --- Status / Tag Colors --- */
  --tn-green:        #2d7d46;   /* Available, beginner-friendly */
  --tn-green-light:  #eaf4ee;
  --tn-amber:        #d97706;   /* Intermediate, limited spots */
  --tn-amber-light:  #fef3c7;
  --tn-navy:         #1e3a5f;   /* Premium, competitive */
  --tn-navy-light:   #e8eef6;

  /* --- Typography --- */
  --tn-font-display: 'Raleway', 'Arial Black', sans-serif;   /* Headings, labels */
  --tn-font-body:    'Inter', system-ui, -apple-system, sans-serif;  /* Body text */
  --tn-font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* --- Font Sizes (fluid where useful) --- */
  --tn-text-xs:   11px;
  --tn-text-sm:   13px;
  --tn-text-base: 16px;
  --tn-text-lg:   18px;
  --tn-text-xl:   22px;
  --tn-text-2xl:  28px;
  --tn-text-3xl:  36px;
  --tn-text-4xl:  clamp(30px, 4vw, 48px);
  --tn-text-hero: clamp(40px, 6.5vw, 76px);

  /* --- Spacing --- */
  --tn-space-xs:  8px;
  --tn-space-sm:  16px;
  --tn-space-md:  28px;
  --tn-space-lg:  48px;
  --tn-space-xl:  72px;
  --tn-space-2xl: 100px;

  /* --- Layout --- */
  --tn-container:     1240px;
  --tn-container-sm:  860px;
  --tn-site-gutter:   5%;
  --tn-header-height: 76px;

  /* --- Radius --- */
  --tn-radius-sm:   4px;
  --tn-radius-md:   8px;
  --tn-radius-lg:   12px;
  --tn-radius-xl:   20px;
  --tn-radius-pill: 100px;

  /* --- Shadows --- */
  --tn-shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --tn-shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --tn-shadow-lg:   0 12px 36px rgba(0,0,0,.14);
  --tn-shadow-red:  0 6px 20px rgba(221,51,51,.25);

  /* --- Transitions --- */
  --tn-transition:      all .22s ease;
  --tn-transition-slow: all .42s ease;

  /* --- Gradients --- */
  --tn-gradient-dark:   linear-gradient(to bottom, rgba(0,0,0,.82) 0%, rgba(0,0,0,.08) 40%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.88) 100%);
  --tn-gradient-red:    linear-gradient(135deg, #dd3333 0%, #bb2222 100%);
  --tn-gradient-dark-red: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);

  /* --- Z-index layers --- */
  --tn-z-header:  900;
  --tn-z-overlay: 800;
  --tn-z-modal:   1000;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--tn-font-body);
  background: var(--tn-white);
  color: var(--tn-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--tn-red); text-decoration: none; transition: var(--tn-transition); }
a:hover { color: var(--tn-red-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--tn-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tn-text-primary);
}

/* ============================================
   3. GENERATEPRESS BLANK TEMPLATE RESET
   ============================================ */
body.tn-blank-page {
  --gutter-size: 0px !important;
  --content-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.tn-blank-page #page,
body.tn-blank-page #content,
body.tn-blank-page .site-header,
body.tn-blank-page .site-footer,
body.tn-blank-page .inside-site-header,
body.tn-blank-page .site-branding,
body.tn-blank-page .navigation-branding,
body.tn-blank-page #site-navigation,
body.tn-blank-page .main-navigation,
body.tn-blank-page .inside-navigation,
body.tn-blank-page .site-info,
body.tn-blank-page #colophon,
body.tn-blank-page .generate-back-to-top,
body.tn-blank-page #generate-back-to-top { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; }
body.tn-blank-page .site-content,
body.tn-blank-page .inside-page-hero-image,
body.tn-blank-page .content-area,
body.tn-blank-page .entry,
body.tn-blank-page .entry-content,
body.tn-blank-page .inside-article,
body.tn-blank-page .page-content { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; float: none !important; }
body.tn-blank-page .hentry { margin: 0 !important; }
body.tn-blank-page .page { padding: 0 !important; }
body.admin-bar .tn-header { top: 32px !important; }

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */
.tn-wrap {
  max-width: var(--tn-container);
  margin: 0 auto;
  padding: 0 var(--tn-site-gutter);
}
.tn-wrap--sm { max-width: var(--tn-container-sm); margin: 0 auto; padding: 0 var(--tn-site-gutter); }
.tn-section { padding: var(--tn-space-xl) 0; }
.tn-section--alt { background: var(--tn-off-white); }
.tn-section--dark { background: var(--tn-dark); color: var(--tn-white); }
.tn-section--red { background: var(--tn-red); color: var(--tn-white); }
.tn-border-top { border-top: 1px solid var(--tn-border); }
.tn-border-red { border-top: 3px solid var(--tn-red); }
.tn-accent-bar { height: 4px; background: var(--tn-gradient-red); width: 100%; }

/* ============================================
   5. HEADER / NAVIGATION
   ============================================ */
.tn-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--tn-header-height);
  background: #ffffff;
  border-bottom: 3px solid var(--tn-red);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  z-index: var(--tn-z-header);
  display: flex;
  align-items: center;
  padding: 0 var(--tn-site-gutter);
}
.tn-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.tn-header__logo img { height: 44px; width: auto; }
.tn-header__logo-text {
  font-family: var(--tn-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--tn-text-primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.tn-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.tn-nav__item {
  position: relative;
}
.tn-nav__link {
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tn-text-secondary);
  padding: 10px 14px;
  display: block;
  border-radius: var(--tn-radius-sm);
  transition: var(--tn-transition);
}
.tn-nav__link:hover,
.tn-nav__link.is-active { color: var(--tn-red); background: var(--tn-red-light); }
.tn-nav__cta {
  background: var(--tn-red);
  color: var(--tn-white) !important;
  padding: 10px 18px;
  border-radius: var(--tn-radius-sm);
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: 8px;
  transition: var(--tn-transition);
}
.tn-nav__cta:hover { background: var(--tn-red-dark); color: var(--tn-white) !important; transform: translateY(-1px); box-shadow: var(--tn-shadow-red); }

/* Dropdown */
.tn-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--tn-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--tn-red);
  border-radius: 0 0 var(--tn-radius-md) var(--tn-radius-md);
  box-shadow: var(--tn-shadow-lg);
  z-index: var(--tn-z-header);
  padding: 8px 0;
}
.tn-nav__item:hover .tn-nav__dropdown { display: block; }
.tn-nav__dropdown a {
  display: block;
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 10px 18px;
  transition: var(--tn-transition);
}
.tn-nav__dropdown a:hover { color: var(--tn-white); background: rgba(221,51,51,.15); padding-left: 24px; }

/* Mobile hamburger */
.tn-nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.tn-nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tn-white);
  margin: 5px 0;
  transition: var(--tn-transition);
}

/* ============================================
   6. HERO — Inner pages
   ============================================ */
.tn-page-wrap { padding-top: var(--tn-header-height); }

.tn-inner-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tn-inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.tn-inner-hero:hover .tn-inner-hero__bg { transform: scale(1); }
.tn-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--tn-gradient-dark);
}
.tn-inner-hero__body {
  position: relative;
  z-index: 2;
  padding: var(--tn-space-lg) var(--tn-site-gutter);
  max-width: var(--tn-container);
  margin: 0 auto;
  width: 100%;
}
.tn-inner-hero__breadcrumb {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.tn-inner-hero__breadcrumb a { color: rgba(255,255,255,.5); }
.tn-inner-hero__breadcrumb a:hover { color: var(--tn-red); }
.tn-inner-hero__breadcrumb span { margin: 0 6px; }
.tn-inner-hero__h1 {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-4xl);
  font-weight: 700;
  color: var(--tn-white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.tn-inner-hero__h1 em { font-style: normal; color: var(--tn-red); }
.tn-inner-hero__meta {
  font-size: var(--tn-text-sm);
  color: rgba(255,255,255,.55);
  font-family: var(--tn-font-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================
   7. KICKERS & LABELS
   ============================================ */
.tn-kicker {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-bottom: 8px;
  display: block;
}
.tn-kicker--white { color: rgba(255,255,255,.5); }

/* ============================================
   8. BUTTONS
   ============================================ */
.tn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--tn-red);
  color: var(--tn-white);
  border: none;
  border-radius: var(--tn-radius-sm);
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--tn-transition);
  white-space: nowrap;
}
.tn-btn:hover {
  background: var(--tn-red-dark);
  color: var(--tn-white);
  transform: translateY(-2px);
  box-shadow: var(--tn-shadow-red);
}
.tn-btn--outline {
  background: transparent;
  border: 2px solid var(--tn-red);
  color: var(--tn-red);
}
.tn-btn--outline:hover { background: var(--tn-red); color: var(--tn-white); }
.tn-btn--dark { background: var(--tn-dark); color: var(--tn-white); }
.tn-btn--dark:hover { background: var(--tn-dark-mid); color: var(--tn-white); }
.tn-btn--white { background: var(--tn-white); color: var(--tn-red); }
.tn-btn--white:hover { background: var(--tn-red); color: var(--tn-white); }
.tn-btn--lg { padding: 16px 32px; font-size: var(--tn-text-base); }
.tn-btn--sm { padding: 10px 18px; font-size: var(--tn-text-xs); }

/* ============================================
   9. TRUST BAR (above hero or after hero)
   ============================================ */
.tn-trust-bar {
  background: var(--tn-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px var(--tn-site-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tn-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.tn-trust-item strong { color: var(--tn-red); font-size: var(--tn-text-sm); }

/* ============================================
   10. STAT STRIP
   ============================================ */
.tn-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--tn-border);
}
.tn-stat-item {
  padding: var(--tn-space-md) var(--tn-space-sm);
  text-align: center;
  border-right: 1px solid var(--tn-border);
}
.tn-stat-item:last-child { border-right: none; }
.tn-stat-num {
  font-family: var(--tn-font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--tn-dark);
  line-height: 1;
}
.tn-stat-num span { font-size: 14px; color: var(--tn-red); }
.tn-stat-label {
  font-size: var(--tn-text-xs);
  color: var(--tn-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  font-family: var(--tn-font-display);
  font-weight: 600;
}

/* ============================================
   11. SERVICE CARDS
   ============================================ */
.tn-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--tn-border);
  border: 1px solid var(--tn-border);
}
.tn-service-card {
  background: var(--tn-white);
  padding: var(--tn-space-lg) var(--tn-space-md);
  transition: var(--tn-transition);
  position: relative;
  overflow: hidden;
}
.tn-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tn-border);
  transition: var(--tn-transition);
}
.tn-service-card:hover::before { background: var(--tn-red); }
.tn-service-card:hover { transform: translateY(-2px); box-shadow: var(--tn-shadow-md); z-index: 1; }
.tn-service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--tn-red-light);
  border-radius: var(--tn-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--tn-space-sm);
}
.tn-service-card__icon svg path,
.tn-service-card__icon svg circle { stroke: var(--tn-red); }
.tn-service-card__tag {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-bottom: 8px;
  display: block;
}
.tn-service-card__title {
  font-family: var(--tn-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--tn-text-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.tn-service-card__desc {
  font-size: var(--tn-text-sm);
  color: var(--tn-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--tn-space-sm);
}
.tn-service-card__price {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  color: var(--tn-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--tn-space-sm);
}
.tn-service-card__price strong { color: var(--tn-dark); font-size: 15px; }
.tn-service-card__link {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tn-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tn-service-card__link:hover { gap: 8px; }

/* ============================================
   12. INTENT SPLIT (homepage)
   ============================================ */
.tn-intent-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tn-intent-panel {
  padding: var(--tn-space-lg) var(--tn-space-md);
  border-right: 1px solid var(--tn-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--tn-transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.tn-intent-panel:last-child { border-right: none; }
.tn-intent-panel:hover { background: var(--tn-gray-light); }
.tn-intent-panel__num {
  font-family: var(--tn-font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--tn-border);
  line-height: 1;
}
.tn-intent-panel__tag {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tn-red);
}
.tn-intent-panel__title {
  font-family: var(--tn-font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--tn-text-primary);
}
.tn-intent-panel__desc {
  font-size: var(--tn-text-sm);
  color: var(--tn-text-secondary);
  line-height: 1.6;
}
.tn-intent-panel__cta {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-top: auto;
}

/* ============================================
   13. CONTENT ARTICLE (inner pages)
   ============================================ */
.tn-article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--tn-space-lg);
  max-width: var(--tn-container);
  margin: 0 auto;
  padding: var(--tn-space-xl) var(--tn-site-gutter);
  align-items: start;
}
.tn-article h2 {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--tn-text-primary);
  margin: var(--tn-space-lg) 0 var(--tn-space-sm);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tn-border);
}
.tn-article h2:first-child { margin-top: 0; }
.tn-article h3 {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tn-text-primary);
  margin: var(--tn-space-md) 0 var(--tn-space-xs);
}
.tn-article p {
  font-size: var(--tn-text-base);
  color: var(--tn-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--tn-space-sm);
}
.tn-article__intro {
  font-size: var(--tn-text-lg);
  color: var(--tn-text-primary);
  line-height: 1.7;
  margin-bottom: var(--tn-space-md);
  border-left: 3px solid var(--tn-red);
  padding-left: var(--tn-space-sm);
}

/* ============================================
   14. CALLOUT BOX
   ============================================ */
.tn-callout {
  display: flex;
  gap: 14px;
  background: var(--tn-gray-light);
  border: 1px solid var(--tn-border);
  border-left: 3px solid var(--tn-red);
  border-radius: 0 var(--tn-radius-md) var(--tn-radius-md) 0;
  padding: var(--tn-space-sm) var(--tn-space-md);
  margin: var(--tn-space-md) 0;
}
.tn-callout--dark {
  background: var(--tn-dark);
  border-color: var(--tn-red);
  color: var(--tn-white);
}
.tn-callout--dark p { color: rgba(255,255,255,.8); }
.tn-callout--dark a { color: var(--tn-red); }
.tn-callout__icon { flex-shrink: 0; margin-top: 2px; }
.tn-callout p { font-size: var(--tn-text-sm); color: var(--tn-text-secondary); line-height: 1.65; margin: 0; }
.tn-callout a { color: var(--tn-red); font-weight: 600; }
.tn-callout a:hover { color: var(--tn-red-dark); }

/* ============================================
   15. PRICING TABLE
   ============================================ */
.tn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--tn-space-sm);
  margin: var(--tn-space-md) 0;
}
.tn-pricing-card {
  border: 1px solid var(--tn-border);
  border-radius: var(--tn-radius-lg);
  overflow: hidden;
  transition: var(--tn-transition);
}
.tn-pricing-card:hover { box-shadow: var(--tn-shadow-md); transform: translateY(-2px); }
.tn-pricing-card--featured {
  border-color: var(--tn-red);
  box-shadow: var(--tn-shadow-red);
  position: relative;
}
.tn-pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--tn-red);
  color: var(--tn-white);
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 var(--tn-radius-sm) var(--tn-radius-sm);
}
.tn-pricing-card__header {
  background: var(--tn-dark);
  padding: var(--tn-space-md);
  text-align: center;
}
.tn-pricing-card--featured .tn-pricing-card__header { background: var(--tn-red); }
.tn-pricing-card__name {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.tn-pricing-card__price {
  font-family: var(--tn-font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--tn-white);
  line-height: 1;
}
.tn-pricing-card__price sup { font-size: 20px; vertical-align: super; }
.tn-pricing-card__price sub { font-size: 14px; color: rgba(255,255,255,.6); }
.tn-pricing-card__body { padding: var(--tn-space-md); }
.tn-pricing-card__features { margin-bottom: var(--tn-space-md); }
.tn-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--tn-border);
  font-size: var(--tn-text-sm);
  color: var(--tn-text-secondary);
  line-height: 1.4;
}
.tn-pricing-card__feature:last-child { border-bottom: none; }
.tn-pricing-card__feature::before {
  content: '✓';
  color: var(--tn-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   16. PROGRAM PATHWAY (progression track)
   ============================================ */
.tn-pathway {
  display: flex;
  align-items: center;
  gap: 0;
  margin: var(--tn-space-md) 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.tn-pathway__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 80px;
  position: relative;
}
.tn-pathway__step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--tn-border);
  z-index: 0;
}
.tn-pathway__step:last-child::after { display: none; }
.tn-pathway__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  color: var(--tn-text-muted);
  position: relative;
  z-index: 1;
  transition: var(--tn-transition);
}
.tn-pathway__step--active .tn-pathway__dot { background: var(--tn-red); color: var(--tn-white); }
.tn-pathway__label {
  font-family: var(--tn-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tn-text-muted);
  text-align: center;
}
.tn-pathway__step--active .tn-pathway__label { color: var(--tn-red); }

/* ============================================
   17. FAQ
   ============================================ */
.tn-faq { border-top: 1px solid var(--tn-border); }
.tn-faq__item { border-bottom: 1px solid var(--tn-border); }
.tn-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--tn-text-primary);
  text-align: left;
  transition: var(--tn-transition);
}
.tn-faq__question:hover { color: var(--tn-red); }
.tn-faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--tn-red);
  flex-shrink: 0;
  transition: var(--tn-transition);
}
.tn-faq__question[aria-expanded="true"]::after { content: '−'; }
.tn-faq__answer {
  display: none;
  padding: 0 0 var(--tn-space-md);
  font-size: var(--tn-text-sm);
  color: var(--tn-text-secondary);
  line-height: 1.75;
}
.tn-faq__answer.is-open { display: block; }
.tn-faq__answer a { color: var(--tn-red); font-weight: 600; }

/* ============================================
   18. SIDEBAR
   ============================================ */
.tn-sidebar { display: flex; flex-direction: column; gap: var(--tn-space-sm); position: sticky; top: calc(var(--tn-header-height) + 24px); }
.tn-sidebar__card {
  border: 1px solid var(--tn-border);
  border-radius: var(--tn-radius-lg);
  padding: var(--tn-space-md);
  background: var(--tn-white);
}
.tn-sidebar__card--dark {
  background: var(--tn-dark);
  border-color: var(--tn-dark);
  color: var(--tn-white);
}
.tn-sidebar__card--red {
  background: var(--tn-red);
  border-color: var(--tn-red);
  color: var(--tn-white);
}
.tn-sidebar__title {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tn-text-muted);
  margin-bottom: var(--tn-space-sm);
}
.tn-sidebar__card--dark .tn-sidebar__title { color: rgba(255,255,255,.4); }
.tn-sidebar__card--red .tn-sidebar__title { color: rgba(255,255,255,.7); }
.tn-sidebar__links li + li { margin-top: 6px; }
.tn-sidebar__links a {
  font-size: var(--tn-text-sm);
  color: var(--tn-text-secondary);
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid var(--tn-border);
  transition: var(--tn-transition);
}
.tn-sidebar__links a:hover { color: var(--tn-red); padding-left: 4px; }
.tn-sidebar__card--dark .tn-sidebar__links a { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.08); }
.tn-sidebar__card--dark .tn-sidebar__links a:hover { color: var(--tn-white); }

/* Booking CTA in sidebar */
.tn-sidebar__book {
  background: var(--tn-red);
  border-radius: var(--tn-radius-lg);
  padding: var(--tn-space-md);
  text-align: center;
}
.tn-sidebar__book-title {
  font-family: var(--tn-font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tn-white);
  margin-bottom: 6px;
}
.tn-sidebar__book-desc {
  font-size: var(--tn-text-xs);
  color: rgba(255,255,255,.7);
  margin-bottom: var(--tn-space-sm);
  line-height: 1.5;
}
.tn-sidebar__book .tn-btn {
  background: var(--tn-white);
  color: var(--tn-red);
  width: 100%;
  justify-content: center;
}
.tn-sidebar__book .tn-btn:hover { background: var(--tn-dark); color: var(--tn-white); }

/* ============================================
   19. HANDOFF SECTION (bottom of inner pages)
   ============================================ */
.tn-handoff {
  background: var(--tn-dark);
  border-top: 3px solid var(--tn-red);
  padding: var(--tn-space-xl) var(--tn-site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tn-space-lg);
  flex-wrap: wrap;
}
.tn-handoff__left { max-width: 600px; }
.tn-handoff__kicker {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-bottom: 8px;
  display: block;
}
.tn-handoff h2 {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-2xl);
  font-weight: 700;
  color: var(--tn-white);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.tn-handoff p {
  font-size: var(--tn-text-base);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ============================================
   20. FOOTER
   ============================================ */
.tn-footer {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--tn-space-xl) var(--tn-site-gutter) var(--tn-space-lg);
}
.tn-footer__grid {
  max-width: var(--tn-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--tn-space-lg);
  padding-bottom: var(--tn-space-lg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tn-footer__brand-name {
  font-family: var(--tn-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tn-white);
  margin-bottom: 8px;
}
.tn-footer__address {
  font-size: var(--tn-text-sm);
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: var(--tn-space-sm);
}
.tn-footer__address a { color: rgba(255,255,255,.45); }
.tn-footer__address a:hover { color: var(--tn-red); }
.tn-footer__col-title {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: var(--tn-space-sm);
}
.tn-footer__links li + li { margin-top: 6px; }
.tn-footer__links a {
  font-size: var(--tn-text-sm);
  color: rgba(255,255,255,.5);
  transition: var(--tn-transition);
}
.tn-footer__links a:hover { color: var(--tn-red); }
.tn-footer__bottom {
  max-width: var(--tn-container);
  margin: var(--tn-space-md) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tn-footer__copy {
  font-size: var(--tn-text-xs);
  color: rgba(255,255,255,.25);
  font-family: var(--tn-font-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================
   21. TAGS & BADGES
   ============================================ */
.tn-tag {
  display: inline-block;
  font-family: var(--tn-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--tn-radius-pill);
  border: 1px solid var(--tn-border);
  color: var(--tn-text-muted);
  background: var(--tn-gray-light);
  white-space: nowrap;
}
.tn-tag--red { background: var(--tn-red-light); color: var(--tn-red); border-color: var(--tn-red-light); }
.tn-tag--dark { background: var(--tn-dark); color: var(--tn-white); border-color: var(--tn-dark); }
.tn-tag--green { background: var(--tn-green-light); color: var(--tn-green); border-color: var(--tn-green-light); }
.tn-tag--amber { background: var(--tn-amber-light); color: var(--tn-amber); border-color: var(--tn-amber-light); }
.tn-tag--navy { background: var(--tn-navy-light); color: var(--tn-navy); border-color: var(--tn-navy-light); }

/* ============================================
   22. HOMEPAGE HERO — Athletic full-screen
   ============================================ */
.tn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.tn-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.tn-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.15) 35%,
    rgba(0,0,0,.10) 55%,
    rgba(0,0,0,.85) 100%
  );
}
.tn-hero__body {
  position: relative;
  z-index: 2;
  padding: var(--tn-space-2xl) var(--tn-site-gutter) var(--tn-space-xl);
  max-width: var(--tn-container);
  margin: 0 auto;
  width: 100%;
}
.tn-hero__eyebrow {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tn-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--tn-red);
}
.tn-hero__h1 {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-hero);
  font-weight: 900;
  color: var(--tn-white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: var(--tn-space-md);
  max-width: 780px;
}
.tn-hero__h1 em {
  font-style: normal;
  color: var(--tn-red);
}
.tn-hero__sub {
  font-size: var(--tn-text-lg);
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: var(--tn-space-md);
}
.tn-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.tn-hero__meta {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: var(--tn-space-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.tn-hero__meta span { display: flex; align-items: center; gap: 6px; }

/* ============================================
   23. TRUST BAR — Phone + Address + Hours
   Always visible, anchored to brand
   ============================================ */
.tn-trust-bar {
  background: #111;
  border-bottom: 1px solid rgba(221,51,51,.3);
  padding: 10px var(--tn-site-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tn-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.tn-trust-item a { color: rgba(255,255,255,.45); }
.tn-trust-item a:hover { color: var(--tn-red); }
.tn-trust-item strong { color: rgba(255,255,255,.85); }
.tn-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.12);
}

/* ============================================
   24. LP SECTIONS — Landing page commercial blocks
   TennisNation service pages: NOT article-style
   ============================================ */

/* LP Hero — above-the-fold service intro */
.tn-lp-hero {
  background: var(--tn-dark);
  padding: var(--tn-space-xl) var(--tn-site-gutter);
  display: flex;
  align-items: center;
  gap: var(--tn-space-xl);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.tn-lp-hero__bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.tn-lp-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--tn-dark) 20%, transparent 100%);
}
.tn-lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.tn-lp-hero__title {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-4xl);
  font-weight: 900;
  color: var(--tn-white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.tn-lp-hero__title em { font-style: normal; color: var(--tn-red); }
.tn-lp-hero__desc {
  font-size: var(--tn-text-lg);
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: var(--tn-space-md);
}
.tn-lp-hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(221,51,51,.15);
  border: 1px solid rgba(221,51,51,.3);
  border-radius: var(--tn-radius-sm);
  padding: 8px 14px;
  margin-bottom: var(--tn-space-sm);
}
.tn-lp-hero__price-from {
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.tn-lp-hero__price-val {
  font-family: var(--tn-font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--tn-white);
  line-height: 1;
}
.tn-lp-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* LP Feature row — alternating dark/white photo + text */
.tn-lp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.tn-lp-feature--reverse { direction: rtl; }
.tn-lp-feature--reverse > * { direction: ltr; }
.tn-lp-feature__photo {
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.tn-lp-feature__content {
  padding: var(--tn-space-xl) var(--tn-space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--tn-space-sm);
}
.tn-lp-feature--dark .tn-lp-feature__content { background: var(--tn-dark); }
.tn-lp-feature__title {
  font-family: var(--tn-font-display);
  font-size: var(--tn-text-3xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--tn-text-primary);
  line-height: 1.1;
}
.tn-lp-feature--dark .tn-lp-feature__title { color: var(--tn-white); }
.tn-lp-feature__text {
  font-size: var(--tn-text-base);
  color: var(--tn-text-secondary);
  line-height: 1.75;
}
.tn-lp-feature--dark .tn-lp-feature__text { color: rgba(255,255,255,.6); }

/* LP Proof strip — reviews, numbers, social proof */
.tn-proof-strip {
  background: var(--tn-dark);
  padding: var(--tn-space-lg) var(--tn-site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tn-space-lg);
  flex-wrap: wrap;
}
.tn-proof-strip__reviews {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tn-proof-strip__rating {
  font-family: var(--tn-font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--tn-white);
  line-height: 1;
}
.tn-proof-strip__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.tn-proof-strip__star {
  width: 16px;
  height: 16px;
  background: var(--tn-red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tn-proof-strip__label {
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.tn-proof-strip__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}
.tn-proof-strip__stat {
  text-align: center;
}
.tn-proof-strip__stat-num {
  font-family: var(--tn-font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--tn-white);
  line-height: 1;
}
.tn-proof-strip__stat-num span { color: var(--tn-red); font-size: 16px; }
.tn-proof-strip__stat-label {
  font-family: var(--tn-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
}

/* LP Program tiers — levels/tracks for adult or junior programs */
.tn-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--tn-border);
}
.tn-tier {
  padding: var(--tn-space-lg) var(--tn-space-md);
  border-right: 1px solid var(--tn-border);
  position: relative;
}
.tn-tier:last-child { border-right: none; }
.tn-tier--featured { background: var(--tn-dark); }
.tn-tier__level {
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-bottom: 10px;
}
.tn-tier__name {
  font-family: var(--tn-font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--tn-text-primary);
  margin-bottom: 10px;
  line-height: 1.1;
}
.tn-tier--featured .tn-tier__name { color: var(--tn-white); }
.tn-tier__desc {
  font-size: var(--tn-text-sm);
  color: var(--tn-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--tn-space-sm);
}
.tn-tier--featured .tn-tier__desc { color: rgba(255,255,255,.6); }
.tn-tier__price {
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tn-text-muted);
  padding-top: var(--tn-space-sm);
  border-top: 1px solid var(--tn-border);
}
.tn-tier--featured .tn-tier__price { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.4); }
.tn-tier__price strong { font-size: 18px; color: var(--tn-dark); }
.tn-tier--featured .tn-tier__price strong { color: var(--tn-white); }

/* LP Instructor card */
.tn-coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tn-space-sm);
}
.tn-coach-card {
  border: 1px solid var(--tn-border);
  border-radius: var(--tn-radius-lg);
  overflow: hidden;
  transition: var(--tn-transition);
}
.tn-coach-card:hover { transform: translateY(-3px); box-shadow: var(--tn-shadow-md); }
.tn-coach-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: top center;
  background-color: var(--tn-gray-light);
}
.tn-coach-card__body { padding: 16px; }
.tn-coach-card__name {
  font-family: var(--tn-font-display);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--tn-text-primary);
  margin-bottom: 4px;
}
.tn-coach-card__cert {
  font-family: var(--tn-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tn-red);
  margin-bottom: 8px;
}
.tn-coach-card__spec {
  font-size: var(--tn-text-xs);
  color: var(--tn-text-muted);
  line-height: 1.5;
}

/* LP Impact quote — "Be Relentless" style bold statement */
.tn-impact-block {
  background: var(--tn-dark);
  padding: var(--tn-space-xl) var(--tn-site-gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tn-impact-block::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--tn-font-display);
  font-size: 300px;
  font-weight: 900;
  color: rgba(221,51,51,.06);
  line-height: 1;
  pointer-events: none;
}
.tn-impact-block__quote {
  font-family: var(--tn-font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--tn-white);
  line-height: 1.1;
  max-width: 860px;
  margin: 0 auto var(--tn-space-sm);
  position: relative;
}
.tn-impact-block__quote em { font-style: normal; color: var(--tn-red); }
.tn-impact-block__author {
  font-family: var(--tn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  position: relative;
}

/* LP Sticky booking bar — mobile */
.tn-sticky-book {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--tn-dark);
  border-top: 2px solid var(--tn-red);
  padding: 12px var(--tn-site-gutter);
  z-index: var(--tn-z-header);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tn-sticky-book__info {
  font-family: var(--tn-font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}
.tn-sticky-book__info strong { color: var(--tn-white); font-size: 14px; }

/* LP Events grid */
.tn-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--tn-space-sm);
}
.tn-event-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: var(--tn-space-sm) var(--tn-space-md);
  background: var(--tn-white);
  border: 1px solid var(--tn-border);
  border-left: 3px solid var(--tn-red);
  border-radius: 0 var(--tn-radius-md) var(--tn-radius-md) 0;
  transition: var(--tn-transition);
}
.tn-event-card:hover { box-shadow: var(--tn-shadow-md); transform: translateX(2px); }
.tn-event-card__date {
  flex-shrink: 0;
  text-align: center;
  min-width: 44px;
}
.tn-event-card__month {
  font-family: var(--tn-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tn-red);
  line-height: 1;
}
.tn-event-card__day {
  font-family: var(--tn-font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--tn-dark);
  line-height: 1;
}
.tn-event-card__title {
  font-family: var(--tn-font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--tn-text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.tn-event-card__loc {
  font-size: 12px;
  color: var(--tn-text-muted);
}
.tn-event-card__cta {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--tn-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tn-red);
  white-space: nowrap;
  align-self: center;
}
.tn-no-events {
  font-size: var(--tn-text-sm);
  color: var(--tn-text-muted);
  text-align: center;
  padding: var(--tn-space-md);
}

/* LP Photo mosaic — facility showcase */
.tn-photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.tn-photo-mosaic__main {
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center;
}
.tn-photo-mosaic__cell {
  background-size: cover;
  background-position: center;
}
.tn-photo-mosaic__cell--overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tn-dark);
  cursor: pointer;
}
.tn-photo-mosaic__cell--overlay span {
  font-family: var(--tn-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tn-white);
  z-index: 1;
}

/* ============================================
   25. ANIMATIONS
   ============================================ */
.tn-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.tn-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tn-fade-in.d1 { transition-delay: .1s; }
.tn-fade-in.d2 { transition-delay: .2s; }
.tn-fade-in.d3 { transition-delay: .3s; }

/* ============================================
   26. RESPONSIVE
   ============================================ */

/* --- Tablet (≤1023px) --- */
@media (max-width: 1023px) {
  /* Nav */
  .tn-nav { display: none; }
  .tn-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--tn-dark);
    padding: var(--tn-header-height) var(--tn-site-gutter) var(--tn-space-lg);
    overflow-y: auto;
    z-index: calc(var(--tn-z-header) - 1);
    gap: 4px;
  }
  .tn-nav.is-open .tn-nav__link { font-size: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .tn-nav.is-open .tn-nav__dropdown { display: block; position: static; background: transparent; border: none; box-shadow: none; padding: 0 0 0 16px; }
  .tn-nav.is-open .tn-nav__cta { margin: var(--tn-space-sm) 0 0; text-align: center; justify-content: center; }
  .tn-nav__mobile-toggle { display: block; }

  /* Layout */
  .tn-article-wrap { grid-template-columns: 1fr; }
  .tn-sidebar { position: static; }
  .tn-services-grid { grid-template-columns: repeat(2, 1fr); }
  .tn-intent-split { grid-template-columns: 1fr; border: 1px solid var(--tn-border); }
  .tn-intent-panel { border-right: none; border-bottom: 1px solid var(--tn-border); }
  .tn-intent-panel:last-child { border-bottom: none; }
  .tn-stat-strip { grid-template-columns: repeat(2, 1fr); }
  .tn-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .tn-footer__grid { grid-template-columns: 1fr 1fr; }

  /* LP components */
  .tn-lp-hero { flex-direction: column; min-height: auto; padding: var(--tn-space-lg) var(--tn-site-gutter); }
  .tn-lp-hero__bg { display: none; }
  .tn-lp-feature { grid-template-columns: 1fr; }
  .tn-lp-feature--reverse { direction: ltr; }
  .tn-lp-feature__photo { min-height: 280px; }
  .tn-tiers { grid-template-columns: 1fr; }
  .tn-coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .tn-events-grid { grid-template-columns: 1fr; }
  .tn-photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .tn-photo-mosaic__main { grid-row: auto; grid-column: 1 / 3; }
  .tn-proof-strip { justify-content: center; gap: var(--tn-space-md); }
  .tn-proof-strip__divider { display: none; }

  /* Sticky book bar on tablet */
  .tn-sticky-book { display: flex; }
}

/* --- Mobile (≤680px) --- */
@media (max-width: 680px) {
  :root {
    --tn-site-gutter: 5%;
    --tn-header-height: 64px;
  }

  /* Hero */
  .tn-hero { min-height: 92vh; }
  .tn-hero__h1 { font-size: clamp(32px, 10vw, 52px); }
  .tn-hero__sub { font-size: var(--tn-text-base); }
  .tn-hero__actions { flex-direction: column; align-items: flex-start; }
  .tn-hero__actions .tn-btn { width: 100%; justify-content: center; }
  .tn-inner-hero { min-height: 240px; }
  .tn-inner-hero__h1 { font-size: clamp(22px, 7vw, 36px); }

  /* Layout */
  .tn-handoff { flex-direction: column; text-align: center; }
  .tn-handoff .tn-btn { width: 100%; justify-content: center; }
  .tn-services-grid { grid-template-columns: 1fr; }
  .tn-stat-strip { grid-template-columns: repeat(2, 1fr); }
  .tn-footer__grid { grid-template-columns: 1fr; }
  .tn-trust-bar { gap: 10px; flex-direction: column; padding: 12px var(--tn-site-gutter); }
  .tn-trust-divider { display: none; }

  /* LP */
  .tn-lp-hero__title { font-size: clamp(26px, 8vw, 38px); }
  .tn-lp-hero__actions { flex-direction: column; }
  .tn-lp-hero__actions .tn-btn { width: 100%; justify-content: center; }
  .tn-lp-feature__content { padding: var(--tn-space-lg) var(--tn-site-gutter); }
  .tn-coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .tn-impact-block__quote { font-size: clamp(22px, 7vw, 36px); }
  .tn-photo-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px 180px 180px 180px; }
  .tn-photo-mosaic__main { grid-column: auto; }
  .tn-proof-strip { flex-direction: column; align-items: flex-start; gap: var(--tn-space-sm); }

  /* Pathway */
  .tn-pathway { gap: 0; }
  .tn-pathway__label { font-size: 9px; }

  /* Footer */
  .tn-footer__bottom { flex-direction: column; text-align: center; }

  /* Sticky book bar */
  .tn-sticky-book { display: flex; }
  body { padding-bottom: 72px; }
}
