/* ============================================
   Battle Ready Leadership - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --navy: #0a2540;
  --navy-light: #103559;
  --navy-dark: #061a2e;
  --gold: #c9a84c;
  --gold-light: #d4b86a;
  --gold-dark: #a88a3a;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6a6a6a;
  --border-light: #e0d9cc;
  --font-serif: 'Crimson Text', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--navy);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-navy,
.btn-outline,
.btn-outline-gold,
.btn-gold,
.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-amazon {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
}

.btn-amazon:hover {
  background: var(--navy-light);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-battle {
  color: var(--navy);
}

.logo-ready {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-medium);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION (Home)
   ============================================ */

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-quote-card {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.hero-quote-card .quote-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-quote-card .quote-author {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hero-quote-card .quote-title {
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0;
}

/* ============================================
   BOOK SECTION
   ============================================ */

.book-section {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.book-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.book-content h2 {
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.book-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.book-author {
  font-style: italic;
  color: var(--gold) !important;
  margin-bottom: 2rem !important;
}

.book-image {
  display: flex;
  justify-content: center;
}

.book-image img {
  max-height: 450px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs-section {
  padding: 80px 0;
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.program-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.program-image {
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.program-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--navy);
}

.program-card h3 a:hover {
  color: var(--gold-dark);
}

.program-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial-section {
  padding: 80px 0;
  background: var(--cream);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author .author-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.testimonial-author .author-title {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   LATEST POSTS
   ============================================ */

.latest-posts {
  padding: 80px 0;
  background: var(--white);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

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

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card h3 {
  padding: 1.25rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.post-card h3 a:hover {
  color: var(--gold-dark);
}

.posts-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   SCHEDULE CTA
   ============================================ */

.schedule-cta {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.schedule-cta h2 {
  color: var(--navy);
  margin-bottom: 3rem;
}

.schedule-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.schedule-option {
  text-align: center;
}

.schedule-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.schedule-icon i {
  font-size: 1.75rem;
  color: var(--gold);
}

.schedule-option h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about-hero-content h1 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-hero-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-hero-images img {
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.founder-section {
  padding: 80px 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 4rem;
  align-items: start;
}

.founder-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.founder-content h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.founder-title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.founder-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.founder-contact a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.founder-contact a:hover {
  color: var(--gold-dark);
}

/* ============================================
   GETTYSBURG PAGE
   ============================================ */

.gettysburg-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.gettysburg-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1461360370896-922624d12aa1?w=800&h=600&fit=crop') center/cover;
  opacity: 0.15;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.gettysburg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.gettysburg-hero-content h1 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.war-council {
  padding: 60px 0;
  background: var(--white);
}

.war-council-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.war-council-content h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.war-council-image img {
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.services-section {
  padding: 60px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.service-card.full-width {
  grid-column: 1 / -1;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.service-note {
  font-style: italic;
  color: var(--navy) !important;
  font-weight: 500;
  margin-top: 1rem;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.gettysburg-quote {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.gettysburg-quote .quote-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gettysburg-quote .quote-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.gettysburg-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.gettysburg-quote .quote-author {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================
   LESSONS PAGE
   ============================================ */

.lessons-hero {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.lessons-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.lessons-intro {
  color: var(--text-medium);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.lessons-list {
  padding: 60px 0;
  background: var(--white);
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.lesson-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 4px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.lesson-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.lesson-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.lesson-card p {
  color: var(--text-medium);
  margin: 0;
  font-size: 0.95rem;
}

.lessons-programs {
  padding: 60px 0;
  background: var(--cream);
}

/* ============================================
   MEDIA PAGE
   ============================================ */

.media-hero {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.media-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.media-intro {
  color: var(--text-medium);
  font-size: 1.1rem;
}

.media-grid-section {
  padding: 60px 0;
  background: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.media-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.media-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.media-image {
  position: relative;
  overflow: hidden;
}

.media-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.media-card:hover .media-image img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 37, 64, 0.4);
  opacity: 0;
  transition: var(--transition);
}

.media-card:hover .media-overlay {
  opacity: 1;
}

.media-overlay i {
  font-size: 3rem;
  color: var(--white);
}

.media-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--navy);
}

.media-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-hero {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.blog-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.blog-intro {
  color: var(--text-medium);
  font-size: 1.1rem;
}

.blog-grid-section {
  padding: 60px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-date {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.blog-card-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.read-more:hover {
  color: var(--gold-dark);
}

.read-more i {
  margin-left: 0.25rem;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(4px);
}

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

.contact-hero {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.contact-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-medium);
  font-size: 1.1rem;
}

.contact-section {
  padding: 60px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--text-medium);
}

.contact-item a:hover {
  color: var(--gold-dark);
}

.contact-social h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

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

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: inline-flex;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-cta:hover {
  color: var(--gold-light);
}

.footer-cta i {
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-nav h4,
.footer-subscribe h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.subscribe-form input {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.subscribe-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .about-hero-grid,
  .war-council-grid,
  .founder-grid,
  .book-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .programs-grid,
  .posts-grid,
  .blog-grid,
  .lessons-grid,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
  }

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

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .programs-grid,
  .posts-grid,
  .blog-grid,
  .lessons-grid,
  .media-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.full-width {
    grid-column: 1;
  }

  .schedule-options {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-images {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-hero-images img {
    flex: 1;
    min-width: 200px;
    height: 140px;
  }

  .founder-image {
    text-align: center;
  }

  .founder-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .book-image {
    order: -1;
  }

  .book-image img {
    max-height: 350px;
  }

  .war-council-grid {
    grid-template-columns: 1fr;
  }

  .war-council-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .container,
  .header-container,
  .footer-container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn-navy,
  .btn-outline,
  .btn-outline-gold,
  .btn-gold {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .lesson-card {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.hero-quote-card,
.about-hero-content,
.founder-content,
.program-card,
.service-card,
.lesson-card,
.blog-card,
.media-card {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger delays for cards */
.program-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.lesson-card:nth-child(2) { animation-delay: 0.1s; }
.lesson-card:nth-child(3) { animation-delay: 0.2s; }
.lesson-card:nth-child(4) { animation-delay: 0.3s; }
.blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-card:nth-child(3) { animation-delay: 0.2s; }

/* Smooth scroll padding for fixed header */
html {
  scroll-padding-top: 80px;
}
