/* ============================================
   JOHN BAKER LAW — Site Styles
   ============================================ */

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

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1B30;
  --navy-light: #2C4066;
  --gold: #B8963E;
  --gold-light: #D4B05C;
  --gold-pale: #F5EDD6;
  --cream: #FAF8F3;
  --cream-dark: #F0ECE2;
  --white: #FFFFFF;
  --text-primary: #1C2833;
  --text-secondary: #4A5568;
  --text-light: #8896A6;
  --border-light: #E2DDD3;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.08);
  --shadow-md: 0 4px 16px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 32px rgba(27,42,74,0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

/* ---- UTILITY ---- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-deep);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 52px; width: auto; border-radius: 2px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.logo-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(184,150,62,0.15); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 0.65em; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 8px 0;
  opacity: 1; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  color: var(--text-primary); font-size: 0.82rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 14px 16px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { margin-left: 0 !important; margin-top: 12px; text-align: center; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: rgba(255,255,255,0.05);
    padding: 0 0 0 16px; min-width: auto;
  }
  .dropdown-menu a { color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--gold); }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(184,150,62,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(184,150,62,0.05) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }

.hero-content .subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrap {
  display: flex; justify-content: center; align-items: flex-end;
}
.hero-image-wrap img {
  width: 340px; height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 3px solid rgba(184,150,62,0.3);
}

@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content .subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrap img { width: 260px; }
}

/* Page hero (smaller, for interior pages) */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,150,62,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy-deep); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================
   PRACTICE AREA CARDS
   ============================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .practice-grid { grid-template-columns: 1fr; } }

.practice-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.practice-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.practice-card:hover::before { transform: scaleX(1); }

.practice-card .icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.practice-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.practice-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.practice-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.practice-card .card-link:hover { color: var(--navy); }
.practice-card .card-link::after { content: ' \2192'; }

/* ============================================
   ABOUT / BIO PREVIEW
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.about-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-pale);
}
.about-preview h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-preview p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-preview .stats {
  display: flex; gap: 40px; margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.about-preview .stat-item { text-align: center; }
.about-preview .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-preview .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

@media (max-width: 800px) {
  .about-preview { grid-template-columns: 1fr; text-align: center; }
  .about-preview img { width: 260px; margin: 0 auto; }
  .about-preview .stats { justify-content: center; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-pale);
  position: absolute; top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card .attribution {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-card .attribution span {
  font-weight: 400;
  color: var(--text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.cta-banner .cta-phone {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.cta-banner .cta-phone:hover { color: var(--white); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-info p { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.92rem; }
.contact-detail {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail .icon-wrap {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail .detail-text { font-size: 0.9rem; color: var(--text-primary); }
.contact-detail .detail-text strong { display: block; margin-bottom: 2px; }
.contact-detail .detail-text a { color: var(--navy); font-weight: 500; }
.contact-detail .detail-text a:hover { color: var(--gold); }

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--white);
  margin-bottom: 18px;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; width: 100%; background: none; border: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  padding: 0;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; padding-top: 14px; }
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================
   CASE RESULTS
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .results-grid { grid-template-columns: 1fr; } }

.result-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.result-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.result-card .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.result-card .type {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.result-card .detail {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card .card-body { padding: 24px; }
.blog-card .card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-card .read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.blog-card .read-more:hover { color: var(--navy); }
.blog-card .read-more::after { content: ' \2192'; }

/* ============================================
   CONTENT PAGES (about, practice area detail, etc.)
   ============================================ */
.content-section { padding: 64px 0; }
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
}
.content-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 12px;
}
.content-wrap p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.content-wrap ul {
  margin: 0 0 20px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}
.content-wrap ul li { margin-bottom: 8px; }
.content-wrap ul li::marker { color: var(--gold); }

/* Sidebar layout for practice area pages */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) { .content-with-sidebar { grid-template-columns: 1fr; } }

.sidebar .sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar .sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}
.sidebar .sidebar-card a {
  display: block;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--cream-dark);
}
.sidebar .sidebar-card a:hover { color: var(--gold); }
.sidebar .sidebar-card a:last-child { border-bottom: none; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }

.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.site-footer ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }


/* ============================================
   BLOG STYLES
   ============================================ */
.content-narrow { max-width: 780px; margin: 0 auto; }
.content-narrow h2 { font-family: var(--font-heading); font-size: 1.75rem; color: var(--navy); margin: 2.5rem 0 1rem; font-weight: 600; }
.content-narrow h3 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--navy); margin: 2rem 0 0.75rem; font-weight: 600; }
.content-narrow p { margin-bottom: 1.1rem; line-height: 1.8; color: var(--text-secondary); }
.content-narrow ul, .content-narrow ol { margin: 1rem 0 1.5rem 1.5rem; }
.content-narrow li { margin-bottom: 0.6rem; line-height: 1.7; color: var(--text-secondary); }
.content-narrow strong { color: var(--text-primary); }
.content-narrow a { color: var(--gold); font-weight: 500; border-bottom: 1px solid transparent; transition: all var(--transition); }
.content-narrow a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.post-meta { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

.blog-cta-box {
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: var(--navy-deep);
  border-radius: 8px;
  color: var(--white);
  text-align: center;
}
.blog-cta-box h3 { color: var(--gold-light); font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.75rem; }
.blog-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.blog-cta-box .hero-buttons { justify-content: center; }

.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-content { padding: 1.5rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-category { color: var(--gold); font-weight: 600; }
.blog-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.75rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.page-hero-sm { padding: 120px 0 40px; }
.page-hero-sm h1 { font-size: 2rem; }

/* ---- PERFORMANCE: Reduced motion for a11y ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- LAZY LOAD PLACEHOLDER ---- */
img[loading="lazy"] { opacity: 1; transition: opacity 0.3s; }
img[loading="lazy"].loaded, img[loading="lazy"][src] { opacity: 1; }
