@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   KENNA ELLISON — Design System
   Colors: Navy #1B2A4A | Rust #C05A2E | Brown #7C4A1E
           Cream #FAF5E9 | Tan #E8D5B0 | Gold #C9A84C
   ============================================================ */

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

:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111D33;
  --rust:       #C05A2E;
  --rust-dark:  #A04824;
  --brown:      #7C4A1E;
  --cream:      #FAF5E9;
  --tan:        #E8D5B0;
  --tan-mid:    #D4BC90;
  --gold:       #C9A84C;
  --text-dark:  #1A110A;
  --text-mid:   #4A3728;
  --text-light: #7A6355;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(27,42,74,0.10);
  --shadow-md:  0 4px 20px rgba(27,42,74,0.15);
  --shadow-lg:  0 8px 40px rgba(27,42,74,0.20);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
a { color: var(--rust); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rust-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   AFFILIATE BANNER
   ============================================================ */
.affiliate-banner {
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.affiliate-banner a { color: var(--navy-dark); font-weight: 700; text-decoration: underline; }

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

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

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--rust);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--rust-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2A3E6A 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 90px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(192,90,46,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  margin: 0 auto 36px;
  border-radius: 2px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-tag {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}
.btn-primary:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,90,46,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-brown {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-brown:hover {
  background: #64390F;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.84rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-cream { background: var(--cream); }
.section-tan { background: #F3EBD8; }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 560px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.divider-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  margin: 16px 0 0;
  border-radius: 2px;
}
.section-header.center .divider-line { margin: 16px auto 0; }

/* ============================================================
   CARDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228,212,185,0.6);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--tan) 0%, var(--tan-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(192,90,46,0.10);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: 0.92rem; margin-bottom: 16px; color: var(--text-light); }
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }

/* ============================================================
   FEATURED SECTION CARDS (homepage)
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228,212,185,0.6);
  border-top: 4px solid var(--rust);
  transition: all var(--transition);
}
.feature-card:nth-child(2) { border-top-color: var(--navy); }
.feature-card:nth-child(3) { border-top-color: var(--gold); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 18px; }

/* ============================================================
   GEAR / AFFILIATE PRODUCT CARDS
   ============================================================ */
.gear-section-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tan);
  display: flex;
  align-items: center;
  gap: 10px;
}
.gear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 52px; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tan);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-img {
  height: 160px;
  background: linear-gradient(135deg, #F0E4CC, var(--tan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.product-desc { font-size: 0.82rem; color: var(--text-light); flex: 1; margin-bottom: 14px; line-height: 1.5; }
.amazon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FF9900;
  color: #111;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.amazon-btn:hover { background: #E68900; color: #111; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tan);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-header {
  padding: 36px 28px 24px;
  background: linear-gradient(135deg, var(--cream), #EDE0C5);
  position: relative;
}
.blog-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px;
  width: 40px; height: 3px;
  background: var(--rust);
  border-radius: 2px;
}
.post-category {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 { font-size: 1.3rem; color: var(--navy); line-height: 1.3; }
.blog-card-body { padding: 24px 28px; }
.blog-card-body p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 18px; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

/* Blog post content */
.post-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 24px 70px;
  text-align: center;
}
.post-hero h1 { color: var(--white); max-width: 800px; margin: 0 auto 16px; }
.post-hero .post-meta { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.post-content { max-width: 740px; margin: 0 auto; padding: 60px 24px; }
.post-content h2 { font-size: 1.7rem; margin: 40px 0 14px; }
.post-content h3 { font-size: 1.35rem; margin: 32px 0 12px; }
.post-content p { font-size: 1.02rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 10px; font-size: 1.02rem; color: var(--text-mid); line-height: 1.7; }
.post-content strong { color: var(--text-dark); }
.post-content a { color: var(--rust); font-weight: 500; }

.post-highlight {
  background: var(--cream);
  border-left: 4px solid var(--rust);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-highlight p { margin: 0; font-style: italic; color: var(--text-mid); }

.post-affiliate-box {
  background: #FFF8EC;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 30px 0;
}
.post-affiliate-box h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 10px; }
.post-affiliate-box ul { padding-left: 20px; }
.post-affiliate-box li { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 6px; }
.post-affiliate-box li a { font-weight: 600; color: var(--rust); }

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-section h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-section p { color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 32px; }

.email-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
}
.email-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.email-form input::placeholder { color: rgba(255,255,255,0.50); }
.email-form input:focus { border-color: var(--gold); }
.email-form button {
  padding: 14px 24px;
  background: var(--rust);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.email-form button:hover { background: var(--rust-dark); transform: translateY(-2px); }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 12px; }
.form-success { color: var(--gold); font-weight: 600; margin-top: 14px; display: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--tan) 0%, #C8A870 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(27,42,74,0.3), transparent);
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; }

.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--tan);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rust);
  display: block;
}
.stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.05em; }

/* ============================================================
   COLLEGE AG PAGE
   ============================================================ */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--tan);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.resource-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.resource-card h4 { color: var(--navy); margin-bottom: 8px; }
.resource-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ============================================================
   DISCLAIMER PAGE
   ============================================================ */
.disclaimer-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.disclaimer-content h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--navy); }
.disclaimer-content p { font-size: 0.97rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.disclaimer-content ul { padding-left: 22px; margin-bottom: 18px; }
.disclaimer-content li { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.70);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.55); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.60);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.40); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.55); font-size: 0.80rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { background: var(--rust); color: var(--white); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-rust { color: var(--rust); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-light); }
.fw-600 { font-weight: 600; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }

.badge {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-rust { background: rgba(192,90,46,0.12); color: var(--rust); }
.badge-navy { background: rgba(27,42,74,0.10); color: var(--navy); }
.badge-gold { background: rgba(201,168,76,0.15); color: #9A7A1E; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-intro { grid-template-columns: 1fr; gap: 36px; }
  .about-image-placeholder { max-height: 300px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy-dark); padding: 16px 24px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 70px 20px 60px; }
  .email-form { flex-direction: column; }
  .email-form input, .email-form button { border-radius: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
