/* =========================================
1. BRAND CONFIGURATION (KEEP EXISTING LOOK)
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  /* Colors (same palette as before) */
  --primary-orange: #d97706;
  --bg-dark: #111111;
  --bg-white: #ffffff;
  --bg-beige: #f9f7f2;
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --border-color: #e5e7eb;
}

/* =========================================
2. GLOBAL RESET & BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  /* Space for fixed nav */
  padding-top: 80px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 18px;
}

/* Ensure contrast: dark text on light, light on dark */
.bg-dark,
.bg-dark p,
.bg-dark li {
  color: var(--text-light);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--text-light);
}

/* =========================================
3. LAYOUT & SPACING
========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

section {
  padding: 80px 0;
  width: 100%;
}

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

.bg-beige {
  background-color: var(--bg-beige);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.bg-dark {
  background-color: var(--bg-dark);
}

/* Utility alignment */
.text-center {
  text-align: center;
}

/* =========================================
4. NAVIGATION (MATCHES menu.js)
========================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  z-index: 1000;
}

/* Wrapper created by menu.js */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img {
  max-height: 50px;
  width: auto;
}

/* Desktop menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu li a {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.nav-menu li a:hover {
  color: var(--primary-orange);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile nav behavior */
@media (max-width: 768px) {
  .nav-container {
    padding: 10px 16px;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    flex-direction: column;
    background-color: #ffffff;
    padding: 10px 20px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }

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

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

/* =========================================
5. BUTTONS
========================================= */
.btn-primary {
  display: inline-block;
  background: linear-gradient(to bottom, #f59e0b, #d97706);
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.12);
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* =========================================
6. HERO + MISSION CARDS (TOP SECTION)
========================================= */

.hero-section {
  text-align: center;
}

.hero-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* 4-card grid below hero */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mission-card {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}

.bg-white .mission-card {
  background: #ffffff;
  border-color: #e5e7eb;
}

.mission-card i {
  font-size: 28px;
  color: #f59e0b;
  margin-bottom: 10px;
}

.mission-card h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================
7. FULL-WIDTH BANNERS
========================================= */

.full-width-banner {
  width: 100%;
}

.full-width-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
8. CONTENT SECTIONS
========================================= */

/* Two-column bio section (image + text) */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

/* Lists inside content sections */
section ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

section ul li {
  margin-bottom: 8px;
}

/* =========================================
9. VIDEO GRID
========================================= */

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

.video-wrapper {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}

/* =========================================
10. REVIEWS SECTION (STRUCTURAL STYLES)
========================================= */

/* This is for the rebuilt reviews.js which will no longer inject its own <style> */
#reviews {
  background-color: var(--bg-beige);
  padding: 80px 0;
}

#reviews .section-title {
  text-align: center;
  margin-bottom: 10px;
}

#reviews p {
  color: var(--text-dark);
}

/* grid of testimonial cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.review-card-static {
  background-color: #ffffff;
  color: var(--text-dark);
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 10px;
}

.review-body {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-name {
  color: var(--primary-orange);
  font-weight: 700;
}

/* =========================================
11. FOOTER
========================================= */

.site-footer {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.footer-col h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col p {
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #4b5563;
}

.footer-links a:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #6b7280;
}

/* =========================================
12. MODAL / POPUP (FOR LEAD FORM)
========================================= */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 40px 30px;
  width: 90%;
  max-width: 520px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  color: var(--text-dark);
  box-shadow: 0 20px 50px rgba(0,0
