/* ============================================
   Trevor's Baseball Academy — Site Styles
   Design: Clean, instructional, baseball-native
   Colors: Navy, Red, White, Kelly Green accent
   ============================================ */

:root {
  /* Brand Colors */
  --navy: #0d2545;
  --navy-light: #1a3a6b;
  --red: #c8102e;
  --red-dark: #a00d24;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --green: #2e7d32;
  --green-light: #43a047;
  --gray-light: #e8ecf0;
  --gray-mid: #b0bec5;
  --gray-text: #546e7a;
  --dark-text: #1a2332;

  /* Typography */
  --font-head: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Layout */
  --max-width: 1100px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13,37,69,0.1);
  --shadow-md: 0 4px 20px rgba(13,37,69,0.15);
  --shadow-lg: 0 8px 40px rgba(13,37,69,0.2);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: var(--space-xs);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header p {
  max-width: 600px;
  margin: var(--space-xs) auto 0;
  color: var(--gray-text);
  font-size: 1.05rem;
}

/* ---- Navigation ---- */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-mid);
  display: block;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--gray-mid);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  text-decoration: none;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem var(--space-md);
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-cta { margin: 0.5rem var(--space-md); width: calc(100% - 3rem); text-align: center; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); text-decoration: none; color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--white); text-decoration: none; color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); text-decoration: none; color: var(--white); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-light); text-decoration: none; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); text-decoration: none; }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,37,69,0.95) 0%, rgba(13,37,69,0.6) 60%, rgba(200,16,46,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero-stat-strip {
  background: var(--red);
  padding: 0.9rem 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  color: var(--white);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-stats { gap: var(--space-md); }
}

/* ---- Technique Cards ---- */
.technique-step {
  counter-increment: technique;
}

.techniques-grid {
  display: grid;
  gap: var(--space-lg);
}

.technique-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--red);
  transition: box-shadow 0.2s, transform 0.2s;
}

.technique-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.technique-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  width: 60px;
  text-align: center;
  flex-shrink: 0;
}

.technique-body h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.technique-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--white);
  padding: 0.2em 0.6em;
  border-radius: 4px;
}

.technique-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.cue-chip {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 480px) {
  .technique-card {
    grid-template-columns: 1fr;
  }
  .technique-number { font-size: 2rem; width: auto; text-align: left; }
}

/* ---- Lesson Plan Cards ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.plan-card-header {
  background: var(--navy);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.plan-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.plan-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
}

.plan-card-header .plan-meta {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin: 0.25rem 0 0;
}

.plan-card-body {
  padding: var(--space-md);
  flex: 1;
}

.plan-card-body ul {
  list-style: none;
  margin-bottom: var(--space-sm);
}

.plan-card-body ul li {
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.plan-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plan-card-footer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.plan-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 var(--space-md) 0;
  color: var(--gray-text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ---- About Page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.headshot-wrap {
  position: relative;
}

.headshot-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.headshot-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.2;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--dark-text);
  margin-bottom: var(--space-md);
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-sm);
  background: var(--off-white);
  border-radius: var(--radius);
}

.value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.value-item p {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .headshot-wrap { max-width: 300px; margin: 0 auto; }
  .values-list { grid-template-columns: 1fr; }
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h3 { margin-bottom: var(--space-sm); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-item-text p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,37,69,0.1);
  background: var(--white);
}

.form-submit { width: 100%; justify-content: center; }

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-top: var(--space-sm);
  font-weight: 500;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #e8f5e9;
  color: var(--green);
  border: 1px solid #a5d6a7;
  display: block;
}

.form-message.error {
  background: #fce4ec;
  color: var(--red);
  border: 1px solid #f48fb1;
  display: block;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Credential Badges ---- */
.creds-strip {
  background: var(--navy);
  padding: var(--space-md) 0;
  border-top: 3px solid var(--red);
}

.creds-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cred-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.cred-badge-icon {
  font-size: 1.5rem;
}

.cred-badge-text {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: rgba(255,255,255,0.85);
}

/* ---- Call to Action Blocks ---- */
.cta-block {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--navy);
  color: var(--white);
}

.cta-block h2 { color: var(--white); margin-bottom: var(--space-sm); }
.cta-block p { color: rgba(255,255,255,0.75); margin-bottom: var(--space-lg); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-block .btn-row { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* ---- Page Hero (interior pages) ---- */
.page-hero {
  background: var(--navy);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: var(--space-xs); }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* ---- Testimonial Placeholder ---- */
.testimonials-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  color: var(--gray-text);
}

.testimonials-placeholder h3 {
  color: var(--gray-mid);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark-text);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-brand .nav-logo { margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Scroll Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Fallback: if JS doesn't fire (element in viewport on load) */
.no-js .reveal { opacity: 1; transform: none; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Video Placeholder */
.video-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.video-play-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,16,46,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid rgba(200,16,46,0.5);
}

/* Print styles for lesson plans */
@media print {
  .site-nav, .site-footer, .cta-block, .no-print { display: none !important; }
  body { font-size: 12pt; }
  h1, h2, h3 { page-break-after: avoid; }
  .plan-card { page-break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
