/* =============================================================================
   AUREAN PARTNERS — Production Stylesheet
   Brand: Aurean Gold #D4A017 | Jewel Jade #006B6A | Charcoal #1A1A1A
   Typography: EB Garamond (headings) | Verdana (body)
   Design: French UX aesthetic — generous whitespace, typography-forward, restrained color

   TO UPDATE BRAND COLORS: Edit the :root variables below.
   TO UPDATE FONTS: Edit the @import and font-family references.
   ============================================================================= */

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

/* ===== CSS VARIABLES — EDIT THESE TO UPDATE BRAND COLORS ===== */
:root {
  /* Primary Brand Colors */
  --gold: #D4A017;
  --gold-hover: #b8880f;
  --jade: #006B6A;
  --jade-dark: #005554;
  --charcoal: #1A1A1A;
  --slate: #4A4A4A;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;

  /* Division Department Colors */
  --purple: #2E0854;       /* Aurean Energy */
  --royal-blue: #0504AA;   /* Aurean Global */
  --emerald: #004D40;      /* Aurean Capital */
  --bronze: #A0522D;       /* Aurean Real Estate */
  --navy: #001A4D;         /* Aurean Consulting */

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 60px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Typography */
  --font-heading: 'EB Garamond', Garamond, Georgia, 'Times New Roman', serif;
  --font-body: Verdana, Arial, Helvetica, sans-serif;
}


/* ===== RESET & BASE ===== */
*, *::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(--charcoal);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; font-size: 1rem; }

a {
  color: var(--jade);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--gold); }
a:focus { outline: 3px solid var(--gold); outline-offset: 2px; }


/* ===== SKIP NAVIGATION — ADA COMPLIANCE ===== */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  font-weight: bold;
  transition: top 0.3s;
}
.skip-nav:focus { top: 0; }


/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--jade);
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(0, 107, 106, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
}
.nav-links a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 28px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  color: var(--white);
}
.nav-cta:focus {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Mobile menu toggle */
.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: 6px 0;
  transition: all 0.3s ease;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 var(--space-2xl);
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(0,107,106,0.6) 100%);
  background-color: var(--charcoal);
  /* TO ADD HERO IMAGE: uncomment and update the URL below */
  /* background-image: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(0,107,106,0.6) 100%), url('../images/hero-bg.jpg'); */
  /* background-size: cover; background-position: center; */
}
.hero-content {
  max-width: 650px;
  color: var(--white);
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero .gold-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero .cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero .cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.3);
  color: var(--white);
}

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


/* ===== SECTION LAYOUTS ===== */
.section { padding: var(--space-2xl); }
.section-white { background: var(--white); }
.section-gray { background: var(--light-gray); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-jade { background: var(--jade); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}
.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.section-header p { color: var(--slate); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-jade .section-header p { color: rgba(255,255,255,0.8); }


/* ===== STATS BAR ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}


/* ===== DIVISION CARDS ===== */
.division-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}
.division-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 4px solid var(--gold);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.division-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  color: inherit;
}
.division-card:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.division-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.division-card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 16px; }
.division-card .card-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Department color accents on division cards */
.division-card.energy   { border-top-color: var(--purple); }
.division-card.global   { border-top-color: var(--royal-blue); }
.division-card.capital  { border-top-color: var(--emerald); }
.division-card.realestate { border-top-color: var(--bronze); }
.division-card.consulting { border-top-color: var(--navy); }


/* ===== TRUST SECTION ===== */
.trust-items {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: 40px;
}
.trust-item { text-align: center; padding: 20px; }
.trust-item .icon { font-size: 2rem; margin-bottom: 12px; color: var(--gold); }
.trust-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }


/* ===== ABOUT PAGE ===== */
.page-top-spacer { height: 70px; }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-intro blockquote {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.5;
  color: var(--charcoal);
  border-left: 4px solid var(--gold);
  padding-left: var(--space-md);
  font-style: italic;
}
.about-intro .about-text p { color: var(--slate); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--light-gray);
  margin: 0 auto 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--jade);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .placeholder { font-size: 3rem; color: var(--jade); font-family: var(--font-heading); }
.team-card h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 4px; }
.team-card .title { color: var(--slate); font-size: 0.9rem; margin-bottom: 12px; }
.team-card .bio { color: var(--slate); font-size: 0.95rem; max-width: 360px; margin: 0 auto 16px; }
.team-card .linkedin-link { color: var(--jade); font-size: 0.85rem; font-weight: bold; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-item { padding: var(--space-md); border-left: 3px solid var(--jade); }
.value-item h3 { color: var(--white); font-size: 1.3rem; margin-bottom: var(--space-xs); }
.value-item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }


/* ===== SERVICES PAGE ===== */
.service-block {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid #eee;
}
.service-block:last-child { border-bottom: none; }
.service-accent { border-radius: 2px; }
.service-content h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-content p { color: var(--slate); margin-bottom: 12px; }
.service-tags { display: flex; gap: var(--space-xs); flex-wrap: wrap; margin-top: var(--space-sm); }
.tag {
  background: var(--light-gray);
  color: var(--slate);
  padding: 6px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
a.tag {
  text-decoration: none;
  color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
}
a.tag:hover {
  background: var(--slate);
  color: #fff;
}


/* ===== INDUSTRIES PAGE ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.industry-card {
  padding: 48px 36px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  transition: all 0.4s ease;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.industry-card h3 { margin-bottom: 12px; }
.industry-card p { color: var(--slate); font-size: 0.95rem; }

/* CTA Button (used in various sections) */
.cta-btn-inline {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn-inline:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  color: var(--white);
}
.cta-btn-inline:focus {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}


/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  background: var(--white);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(0,107,106,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  background: var(--gold);
  color: var(--white);
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  align-self: flex-start;
}
.submit-btn:hover { background: var(--gold-hover); }
.submit-btn:focus { outline: 3px solid var(--jade); outline-offset: 2px; }

/* Form success/error messages */
.form-message {
  padding: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}
.form-message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-message.error { background: #fbe9e7; color: #c62828; display: block; }

.contact-info h3 { margin-bottom: 24px; }
.info-item { display: flex; gap: var(--space-sm); margin-bottom: 24px; align-items: flex-start; }
.info-icon { color: var(--gold); font-size: 1.2rem; min-width: 24px; }
.info-text { color: var(--slate); font-size: 0.95rem; line-height: 1.6; }
.info-text strong { color: var(--charcoal); }


/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: var(--space-lg) var(--space-2xl) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
}
.footer-brand span { color: var(--gold); }
footer p { font-size: 0.85rem; line-height: 1.7; }
footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: var(--space-xs); }
footer li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
footer li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}


/* =============================================================================
   CLASS NAME BRIDGE — Maps HTML class names to proper styles
   ============================================================================= */

/* Container utility — used throughout all pages */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Skip nav link (HTML uses .skip-nav-link, not .skip-nav) */
.skip-nav-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  font-weight: bold;
  transition: top 0.3s;
  text-decoration: none;
}
.skip-nav-link:focus { top: 0; }

/* Navbar inner container */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-aurean {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.logo-partners {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* CTA button in nav (HTML uses .cta-button, CSS had .nav-cta) */
.cta-button {
  background: var(--gold);
  color: var(--white);
  padding: 10px 28px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}
.cta-button:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  color: var(--white);
}
.cta-button:focus {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Generic button classes used in HTML */
.button {
  display: inline-block;
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}
.button-primary {
  background: var(--gold);
  color: var(--white);
}
.button-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.3);
  color: var(--white);
}
.button-white {
  background: var(--white);
  color: var(--jade);
}
.button-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  color: var(--jade);
}

/* Hero button animation (inherits from .hero styles) */
.hero .button {
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

/* Stats section (HTML uses .stats-section/.stats-grid/.stat-item) */
.stats-section {
  padding: var(--space-xl) var(--space-2xl);
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.stat-item { text-align: center; }
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

/* Sections padding — used in HTML section wrappers */
.divisions-section,
.trust-section,
.services-section,
.industries-section {
  padding: var(--space-2xl) var(--space-lg);
}

/* Section headings centering */
.divisions-section .container > h2,
.services-section .container > h2,
.trust-section .container > h2,
.industries-section .container > h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Divisions grid (HTML uses .divisions-grid) */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}
.learn-more {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Trust section (HTML uses .trust-grid/.trust-icon) */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: 40px;
}
.trust-item {
  text-align: center;
  padding: 20px;
  flex: 1 1 200px;
  max-width: 280px;
}
.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.trust-section .trust-item h3 { color: var(--white); margin-bottom: 8px; }
.trust-section .trust-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* Services page — fix layout from broken 2-column grid to clean border-left */
.services-grid .service-block {
  display: block;
  grid-template-columns: none;
  border-left: 4px solid var(--gold);
  padding-left: 32px;
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid #eee;
}
.services-grid .service-block:last-child { border-bottom: none; }
.services-grid .service-block .service-accent { display: none; }
.services-grid .service-block.energy { border-left-color: var(--purple); }
.services-grid .service-block.global { border-left-color: var(--royal-blue); }
.services-grid .service-block.capital { border-left-color: var(--emerald); }
.services-grid .service-block.realestate { border-left-color: var(--bronze); }
.services-grid .service-block.consulting { border-left-color: var(--navy); }

/* CTA section (used on Industries page) */
.cta-section {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: var(--space-md); font-size: 1.1rem; }
.section-jade .button-white { color: var(--jade-dark); }

/* Footer link in footer-bottom */
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }


/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .section { padding: var(--space-xl) var(--space-lg); }
  .divisions-section, .trust-section, .services-section, .industries-section {
    padding: var(--space-xl) var(--space-lg);
  }
  nav { padding: 0 var(--space-md); }
  .hero { padding: 0 var(--space-lg); }
  .stats { gap: 60px; }
  .stats-grid { gap: 60px; }
  .stats-section { padding: var(--space-xl) var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .section { padding: var(--space-lg) var(--space-md); }
  .hero { padding: 0 var(--space-md); min-height: 500px; }
  .hero h1 { font-size: 2.4rem; }

  /* Mobile Navigation */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--jade);
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    gap: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-cta { display: none; }

  .stats { gap: 32px; flex-wrap: wrap; padding: var(--space-lg) var(--space-md); }
  .stat { flex: 1 1 40%; }
  .stats-grid { gap: 32px; flex-wrap: wrap; }
  .stats-section { padding: var(--space-lg) var(--space-md); }
  .stat-item { flex: 1 1 40%; }
  .divisions-section, .trust-section, .services-section, .industries-section {
    padding: var(--space-lg) var(--space-md);
  }
  .trust-grid { gap: var(--space-md); }
  .cta-button { display: none; }

  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-intro blockquote { font-size: 1.5rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 40px var(--space-md) var(--space-md); }
}
