/* ============================================================
   THE SOFTBALL LAB — main.css
   Palette (Olivia's official brand):
     Charcoal #2C2F31 · White #FFFFFF · Softball Orange #F05A28
     Light Blue #D4EDF4 · Dark Gray #5F6163
   All text/background pairs meet WCAG 2.1 AA (4.5:1 normal, 3:1 large).
   Layout mirrors REBUILT HQ structure.
   ============================================================ */

:root {
  /* Brand accent — Softball Orange (Olivia's official palette) */
  --color-brand: #F05A28;          /* softball orange — buttons, highlights, CTAs */
  --color-brand-dark: #C4471F;     /* AA-compliant text/buttons on white (~5.5:1) */
  --color-brand-darker: #9C3819;   /* hover / high emphasis */
  --color-brand-light: #F58E68;    /* lighter — accents on charcoal (AA on dark) */
  --color-brand-bg: #FDEEE7;       /* very light orange tint for surfaces */

  /* Neutrals — Charcoal + Dark Gray from Olivia's palette */
  --color-text: #2C2F31;           /* charcoal — primary text on white (~13.5:1) */
  --color-text-mid: #4A4D50;       /* between charcoal + dark gray */
  --color-text-light: #5F6163;     /* dark gray — secondary text, outlines */
  --color-text-muted: #7A7D80;     /* lighter gray — muted labels */
  --color-border: #DDE0E2;
  --color-border-light: #EFF1F2;

  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F8F9;         /* very subtle off-white */
  --color-bg-dark: #2C2F31;        /* charcoal — primary background for dark sections */
  --color-bg-dark-2: #3A3E42;      /* slightly lighter charcoal */
  --color-bg-dark-3: #4A4D50;      /* mid dark */

  /* Secondary accent — Light Blue */
  --color-accent-blue: #D4EDF4;    /* light blue — analytics + secondary accents */

  /* Type */
  --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-width: 1240px;
  --container-padding: 24px;

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(44, 47, 49, 0.05);
  --shadow-md: 0 4px 16px rgba(44, 47, 49, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 47, 49, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 150ms;
  --t-base: 220ms;
  --t-slow: 360ms;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }

::selection { background: var(--color-brand); color: white; }

/* ------------------ A11y helpers ------------------ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-brand-dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  margin-bottom: 16px;
}
.eyebrow--light {
  color: var(--color-brand-light);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }

/* Emphasize the brand name inline within a section title */
.brand-emphasis {
  color: var(--color-brand-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.section-title--light .brand-emphasis { color: var(--color-brand-light); }

.section-sub {
  font-size: 18px;
  color: var(--color-text-mid);
  max-width: 620px;
  line-height: 1.55;
  margin: 0 auto;
}
.section-sub--light { color: rgba(255, 255, 255, 0.82); }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

/* ============================================================
   NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--color-border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 14px var(--container-padding);
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.primary-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}

.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-mid);
  transition: color var(--t-fast) var(--ease);
  padding: 6px 0;
}
.primary-nav a:hover { color: var(--color-brand-dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.book-now-btn {
  background: var(--color-brand-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.book-now-btn:hover {
  background: var(--color-brand-darker);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 130px 0 140px;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--color-bg-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2C2F31;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark + brand-orange overlay on top of the hero photo for text legibility (WCAG AA) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Strong dark gradient LEFT (where the text sits) fading right */
    linear-gradient(90deg, rgba(44, 47, 49, 0.85) 0%, rgba(44, 47, 49, 0.65) 40%, rgba(44, 47, 49, 0.35) 75%, rgba(44, 47, 49, 0.2) 100%),
    /* Top + bottom safe fades */
    linear-gradient(180deg, rgba(44, 47, 49, 0.15) 0%, transparent 25%, transparent 70%, rgba(44, 47, 49, 0.55) 100%),
    /* Warm orange tint hint on the right */
    radial-gradient(ellipse 900px 700px at 90% 100%, rgba(240, 90, 40, 0.20), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .eyebrow {
  color: var(--color-brand-light);
  letter-spacing: 0.18em;
}

.hero-content {
  max-width: 780px;
}

.hero-title {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title .accent { color: var(--color-brand-light); }

.hero-sub {
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  /* Brighter orange (#F05A28) on dark hero passes 3:1 large-text AA;
     white text is 18px+/600 on this button so it's compliant. */
}
.btn-primary:hover {
  background: var(--color-brand-darker);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats {
  background: var(--color-bg-alt);
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.stat {
  text-align: center;
  padding: 0 12px;
}

.stat + .stat { border-left: 1px solid var(--color-border); }

.stat-num {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span {
  color: var(--color-brand-dark);
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--color-border); padding-top: 32px; }
}

/* ============================================================
   ROUTER / SERVICES
   ============================================================ */

.router {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 900px 500px at 20% 0%, rgba(240, 90, 40, 0.16), transparent 60%),
    linear-gradient(180deg, #2C2F31 0%, #3A3E42 100%);
  color: #fff;
  position: relative;
}

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

.router-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.router-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 142, 104, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Placeholder image blocks — colored gradient panels with softball-ish stitch pattern.
   Swap the CSS below for real photos: replace the background image with url('...'). */
.router-card-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.10), transparent 55%),
    linear-gradient(135deg, #3A3E42, #2C2F31);
}

.router-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 70%, rgba(240, 90, 40, 0.35), transparent 55%);
}

/* Simple SVG-like "softball" mark centered on each image block */
.router-card-img::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #FDEEE7 0%, #F9CBAE 55%, #F58E68 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), inset 0 -6px 12px rgba(156, 56, 25, 0.35);
}

/* Different accent tint per service card (only used when no real photo) */
.router-card-img[data-service="group"]::before {
  background: radial-gradient(circle at 30% 70%, rgba(245, 142, 104, 0.32), transparent 55%);
}
.router-card-img[data-service="camps"]::before {
  background: radial-gradient(circle at 60% 30%, rgba(156, 56, 25, 0.45), transparent 55%);
}

/* When the card image is a real photo — strip the placeholder softball graphic
   and show the photo full-bleed with a subtle bottom-fade for text legibility */
.router-card-img--photo {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}
.router-card-img--photo::before {
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35)) !important;
}
.router-card-img--photo::after {
  display: none;
}

/* Private lesson pricing line */
.router-price {
  font-size: 15px;
  color: #fff;
  margin: 0 0 20px;
  padding: 10px 14px;
  background: rgba(245, 142, 104, 0.12);
  border-left: 3px solid var(--color-brand-light);
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.router-price strong {
  color: var(--color-brand-light);
  font-weight: 800;
  font-size: 17px;
}

.router-verb {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-light);
  margin-bottom: 8px;
}

.router-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.2;
}

.router-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  line-height: 1.6;
  flex: 1;
}

.router-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand-light);
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.router-cta:hover { gap: 8px; color: #fff; }

/* ============================================================
   PRIVATE LESSONS FEATURE (single service showcase)
   ============================================================ */

.feature {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 900px 500px at 20% 0%, rgba(240, 90, 40, 0.16), transparent 60%),
    linear-gradient(180deg, #2C2F31 0%, #3A3E42 100%);
  color: #fff;
  position: relative;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-verb {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-light);
  margin: 0;
}

.feature-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.feature-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
}

/* Skills chip row (areas of focus for private lessons) */
.skills-block {
  margin: 4px 0;
}

.skills-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-light);
  margin: 0 0 10px;
}

.skills-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skills-chips li {
  padding: 8px 14px;
  background: rgba(245, 142, 104, 0.10);
  border: 1px solid rgba(245, 142, 104, 0.35);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.skills-chips li:hover {
  background: rgba(245, 142, 104, 0.20);
  border-color: var(--color-brand-light);
  transform: translateY(-1px);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.feature-list li span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.feature-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 4px;
}

.price-tile {
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 142, 104, 0.28);
  border-radius: var(--radius-md);
  text-align: center;
}

.price-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-brand-light);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.price-unit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.feature-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.feature .btn-primary {
  background: var(--color-brand);
  color: #fff;
}
.feature .btn-primary:hover {
  background: var(--color-brand-darker);
}
.feature .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.feature .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.feature-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin: 4px 0 0;
  font-style: italic;
  line-height: 1.5;
}

/* Also-offered strip (subtle mention of group + camps) */
.also-offered {
  max-width: 1120px;
  margin: 80px auto 0;
  padding: 32px 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  text-align: center;
}

.also-offered-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-light);
  margin: 0 0 20px;
}

.also-offered-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.also-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}

.also-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.5;
}

.link-arrow--light {
  color: var(--color-brand-light);
  border-bottom-color: var(--color-brand-light);
  font-size: 14px;
}
.link-arrow--light:hover {
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 900px) {
  .feature { padding: 80px 0; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-img { max-width: 460px; margin: 0 auto; width: 100%; }
  .also-offered { margin-top: 56px; padding: 24px; }
  .also-offered-items { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 500px) {
  .feature-pricing { grid-template-columns: 1fr; }
  .feature-ctas .btn { width: 100%; }
}

/* ============================================================
   WAITLIST (embedded Google Form)
   ============================================================ */

.waitlist {
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(240, 90, 40, 0.06), transparent 70%),
    var(--color-bg-alt);
  scroll-margin-top: 80px;
}

.waitlist-container {
  max-width: 820px;
}

.waitlist-header {
  text-align: center;
  margin-bottom: 40px;
}

.waitlist-header .section-sub {
  margin: 8px auto 0;
  max-width: 600px;
}

.waitlist-form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.waitlist-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
  background: #fff;
}

@media (max-width: 700px) {
  .waitlist { padding: 72px 0 80px; }
  .waitlist-form-wrap { padding: 12px; }
}

/* ============================================================
   ABOUT (SHORT)
   ============================================================ */

.about-short {
  padding: 120px 0;
  background: var(--color-bg);
}

.about-short-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.about-short-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 247, 237, 0.9), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(240, 90, 40, 0.15), transparent 55%),
    linear-gradient(135deg, #FDEEE7 0%, #F9CBAE 100%);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* Placeholder softball motif (only shown when no real photo is set) */
.about-short-img::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #FFFFFF 0%, #F9CBAE 60%, #F58E68 100%);
  box-shadow: 0 24px 48px rgba(156, 56, 25, 0.25), inset 0 -10px 20px rgba(156, 56, 25, 0.28);
}

/* When the about image is a real photo — full-bleed, hide the softball motif */
.about-short-img--photo {
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat;
}
.about-short-img--photo::after {
  display: none;
}

.about-short-text p {
  font-size: 17px;
  color: var(--color-text-mid);
  margin: 16px 0 24px;
  line-height: 1.65;
}

.link-arrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--t-fast) var(--ease);
}
.link-arrow:hover { gap: 10px; }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  padding: 100px 0 120px;
  background: var(--color-bg-alt);
}

.reviews-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand);
}

.review-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-brand-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 15px;
  margin: 0;
  line-height: 1.3;
}

.review-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.3;
}

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

/* ============================================================
   FAQ (accordion)
   ============================================================ */

.faq {
  padding: 100px 0 120px;
  background: var(--color-bg);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.faq-item[open] {
  border-color: var(--color-brand);
  background: var(--color-brand-bg);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-brand-dark);
  border-bottom: 2px solid var(--color-brand-dark);
  transform: rotate(45deg);
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
  margin-right: 4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--color-text-mid);
  font-size: 15px;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--color-brand-dark);
  border-bottom: 1px solid currentColor;
}
.faq-answer a:hover { color: var(--color-brand-darker); }

/* ============================================================
   INSTAGRAM PLUG
   ============================================================ */

.instagram-plug {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 900px 500px at 80% 0%, rgba(245, 142, 104, 0.14), transparent 60%),
    linear-gradient(180deg, #3A3E42 0%, #2C2F31 100%);
  color: #fff;
  position: relative;
}

.ig-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1120px;
}

.ig-content {
  max-width: 460px;
}

.ig-icon {
  width: 44px;
  height: 44px;
  color: var(--color-brand-light);
  margin-bottom: 16px;
}

.ig-handle {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--color-brand-light);
  letter-spacing: -0.015em;
  margin: 4px 0 16px;
  font-family: var(--font-body);
}

.ig-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 28px;
}

.ig-btn {
  background: var(--color-brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  transition: all var(--t-base) var(--ease);
}
.ig-btn:hover {
  background: var(--color-brand-darker);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(240, 90, 40, 0.35);
}

/* Feed preview grid (decorative) */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.ig-tile {
  aspect-ratio: 1;
  border-radius: 6px;
  background-color: #3A3E42;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  opacity: 0.85;
}

.ig-tile:hover {
  transform: scale(1.03);
  opacity: 1;
}

.ig-tile--logo {
  background:
    url('../images/softball-lab-logo.png') center / 70% no-repeat,
    linear-gradient(135deg, #2C2F31, #3A3E42);
}

@media (max-width: 900px) {
  .instagram-plug { padding: 72px 0; }
  .ig-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .ig-content { max-width: 100%; margin: 0 auto; }
  .ig-icon { margin-left: auto; margin-right: auto; display: block; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  position: relative;
  padding: 100px 0 110px;
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.final-cta-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(245, 142, 104, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 78% 72%, rgba(240, 90, 40, 0.20) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(156, 56, 25, 0.12) 0%, transparent 60%);
  animation: cta-breathe 18s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
}

@keyframes cta-breathe {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-3%, -4%, 0) scale(1.08); }
}

.final-cta > .container {
  position: relative;
  z-index: 1;
}

.final-cta .section-title {
  font-size: clamp(36px, 4.8vw, 58px);
  margin-bottom: 40px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-pill {
  padding: 16px 36px;
  background: var(--color-brand);
  color: #fff;
  border: 1.5px solid var(--color-brand);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--t-base) var(--ease);
}
.cta-pill:hover {
  background: var(--color-brand-darker);
  border-color: var(--color-brand-darker);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(240, 90, 40, 0.3);
}

.cta-pill--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-pill--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-bg { animation: none; }
  .cta-pill:hover { transform: none; }
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding: 120px 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info .section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 17px;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 460px;
}

.contact-details h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  margin-bottom: 20px;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}

a.contact-value:hover {
  color: var(--color-brand-dark);
  text-decoration: underline;
}

.contact-form {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-brand-dark);
  box-shadow: 0 0 0 3px rgba(240, 90, 40, 0.18);
}

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

.form-submit {
  width: 100%;
  padding: 15px 24px;
  margin-top: 4px;
  font-size: 15px;
  background: var(--color-brand-dark);
  color: #fff;
}
.form-submit:hover {
  background: var(--color-brand-darker);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .contact { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 160px;
  height: auto;
  display: block;
  border-radius: 12px;
}

.footer-brand .tagline {
  font-size: 14px;
  color: var(--color-brand-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-brand address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand address a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t-fast) var(--ease);
}
.footer-brand address a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: #fff; }

.footer-hours {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-socials { display: flex; gap: 12px; align-items: center; }

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--t-fast) var(--ease);
  color: #fff;
}
.footer-socials a:hover {
  border-color: var(--color-brand);
  background: var(--color-brand);
  transform: translateY(-1px);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero { padding: 72px 0 96px; min-height: 520px; }
  .about-short-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-short-img { max-width: 400px; margin: 0 auto; }
  .router-grid { grid-template-columns: 1fr; gap: 16px; }
  .router { padding: 80px 0; }
  .about-short { padding: 80px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 24px;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    margin: 0;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  .primary-nav a:last-child { border-bottom: none; }

  .mobile-menu-btn { display: flex; }

  .nav-logo-img { height: 44px; }
}

@media (max-width: 560px) {
  :root { --container-padding: 20px; }
  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .contact-form { padding: 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
