/* ============================================================
   CEDAR ENTERPRISES — Custom Stylesheet
   Palette: Deep Navy (#0D1B2A), Gold (#C9A84C), Slate (#1E3048),
            Off-White (#F5F0E8), Mid-Grey (#8A96A3)
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --navy: #0D1B2A;
  --navy-mid: #1E3048;
  --navy-lt: #2A4060;
  --gold: #C9A84C;
  --gold-lt: #E2C97E;
  --off-white: #F5F0E8;
  --mid-grey: #8A96A3;
  --white: #FFFFFF;
  --text-dark: #1A232E;
  --radius: 4px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.18);
  --shadow-lg: 0 12px 48px rgba(13, 27, 42, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

/* em inside headings = gold accent instead of italic */
h1 em,
h2 em,
h3 em {
  font-style: normal;
  color: var(--gold);
}

p {
  margin-bottom: 1.2rem;
  color: #3D5068;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3D5068;
}

.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy);
}

.text-white {
  color: var(--white);
}

.text-mid {
  color: var(--mid-grey);
}

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

/* ── Layout Helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 120px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.row-lg {
  gap: 48px;
}

.row-sm {
  gap: 20px;
}

.col-half {
  flex: 0 0 calc(50% - 16px);
}

.col-third {
  flex: 0 0 calc(33.333% - 22px);
}

.col-quarter {
  flex: 0 0 calc(25% - 24px);
}

.col-two-thirds {
  flex: 0 0 calc(66.666% - 16px);
}

.col-full {
  flex: 0 0 100%;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ── Gold Divider ── */
.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}

.divider-gold.centered {
  margin: 20px auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.3);
}

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

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

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

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

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border-radius: 0 0 4px 4px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  letter-spacing: 0.01em;
}

.nav-dropdown a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.nav-dropdown a::after {
  display: none;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 27, 42, 0.82) 0%,
      rgba(13, 27, 42, 0.55) 60%,
      rgba(13, 27, 42, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 720px;
}

.hero-text .section-eyebrow {
  font-size: 0.82rem;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-text h1 em {
  color: var(--gold);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}

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

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.85) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px 0;
}

.page-banner-content .section-eyebrow {
  color: var(--gold-lt);
}

.page-banner-content h1 {
  color: var(--white);
}

/* ── ABOUT INTRO (homepage) ── */
.about-intro {
  background: var(--off-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-intro-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-intro-img::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 3px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 2px;
}

.value-item h5 {
  color: var(--navy);
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ── DIVISIONS SECTION ── */
.divisions {
  background: var(--navy);
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.division-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.division-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.division-card:hover .division-card-bg {
  transform: scale(1);
}

.division-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 27, 42, 0.92) 0%,
      rgba(13, 27, 42, 0.5) 50%,
      rgba(13, 27, 42, 0.15) 100%);
  transition: background var(--transition);
}

.division-card:hover .division-overlay {
  background: linear-gradient(to top,
      rgba(13, 27, 42, 0.95) 0%,
      rgba(13, 27, 42, 0.65) 55%,
      rgba(13, 27, 42, 0.25) 100%);
}

.division-content {
  position: relative;
  z-index: 2;
  padding: 48px;
}

.division-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.division-content h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.division-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy-mid);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 8px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

/* ── PARALLAX SECTION ── */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

/* ── SERVICE CARDS ── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.08);
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: all var(--transition);
}

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

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 28px;
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  color: var(--gold);
}

.service-card h4 {
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 32px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.star-rating {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, #A8843C 100%);
  padding: 72px 0;
}

.cta-strip h2 {
  color: var(--navy);
}

.cta-strip p {
  color: rgba(13, 27, 42, 0.75);
  margin: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
}

.contact-info-text strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-info-text span {
  font-size: 0.9rem;
  color: #3D5068;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid #D0D8E4;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

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

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

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-brand span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item .icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

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

.company-number {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
}

/* ── ABOUT PAGE ── */
.about-mission {
  background: var(--off-white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.about-value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(13, 27, 42, 0.07);
}

.about-value-card h5 {
  color: var(--navy);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ── PRIVACY / TERMS PAGES ── */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E0DDD5;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li {
  font-size: 0.94rem;
  color: #3D5068;
  line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-last-updated {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 36px;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.preloader-brand span {
  color: var(--gold);
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-inner {
  height: 100%;
  background: var(--gold);
  animation: preload 1.2s ease forwards;
}

@keyframes preload {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ── MOBILE NAV ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

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

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-close:hover {
  color: var(--gold);
}

/* ── UTILITIES / ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

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

.bg-navy {
  background: var(--navy);
}

.bg-navy-mid {
  background: var(--navy-mid);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-intro-grid,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-img::before {
    display: none;
  }

  .about-intro-img img,
  .about-img-wrap img {
    height: 320px;
  }

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

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .section,
  .section-lg {
    padding: 60px 0;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .division-content {
    padding: 32px 24px;
  }

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

  .scroll-cue {
    display: none;
  }

  .page-banner {
    height: 280px;
  }
}