/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── VARIABLES ── */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1b2d5c;
  --navy-light: #243672;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #eef0f5;
  --gray-mid: #8892a4;
  --gray-dark: #3d4560;
  --text: #1a1a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(13,27,62,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.14);
  --transition: 0.25s ease;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
em { font-style: italic; color: var(--gold-light); }
p { color: var(--gray-dark); font-size: 1.05rem; line-height: 1.75; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--navy);
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  transition: all var(--transition);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-large { padding: 18px 48px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mfg {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.logo-full {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-light); }
.nav-links .nav-cta {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover, .nav-links .nav-cta.active { background: var(--navy-mid); color: #fff; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a7a 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,134,11,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(184,134,11,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title { color: #fff; margin-bottom: 24px; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 40px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-actions .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }
.hero-actions .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hero-creds {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.cred { display: flex; flex-direction: column; gap: 2px; }
.cred-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.cred-val { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); font-family: monospace; }
.cred-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 48px 0;
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1; min-width: 180px;
  text-align: center;
  padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 1.2rem; color: var(--gold-light); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.03em; }

/* ── AGENCY GRID ── */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.agency-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}
.agency-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.agency-icon { font-size: 1.8rem; margin-bottom: 12px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-link { font-size: 0.9rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.service-link:hover { color: var(--navy); }

/* ── VETERAN SECTION ── */
.veteran-section {
  background: var(--navy);
  padding: 96px 0;
}
.veteran-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.veteran-text h2 { color: #fff; margin-bottom: 24px; }
.veteran-text p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.veteran-text .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; margin-top: 8px; }
.veteran-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.badge-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.badge-icon { font-size: 2rem; margin-bottom: 10px; }
.badge-title { font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.badge-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--gray-light);
}
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--navy); margin-bottom: 16px; }
.cta-inner p { color: var(--gray-mid); max-width: 480px; margin: 0 auto 36px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; }

/* ── SERVICE DETAILS ── */
.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  text-align: right;
}
.service-detail-content h2 { color: var(--navy); margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 24px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── PROPERTY GRID ── */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.property-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.property-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.property-icon { font-size: 2rem; margin-bottom: 14px; }
.property-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.property-card p { font-size: 0.9rem; }

/* ── PROCESS TIMELINE ── */
.process-timeline { padding: 16px 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  margin-bottom: 8px;
}
.process-step-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-connector {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--navy), var(--gray-light));
  margin: 8px 0;
  min-height: 60px;
}
.process-step-right { padding: 8px 0 64px; }
.step-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.process-step-right h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.35rem; }
.process-step-right p { margin-bottom: 20px; }
.step-details { display: flex; flex-wrap: wrap; gap: 8px; }
.step-details span {
  background: var(--gray-light);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── STANDARDS GRID ── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.standard-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.standard-time {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.standard-label { font-size: 0.9rem; color: var(--gray-mid); }

/* ── ABOUT PAGE ── */
.about-leader {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
.about-photo-wrap { position: sticky; top: 100px; }
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-photo-caption {
  background: var(--navy);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 20px 24px;
  margin-top: -4px;
}
.caption-name { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.caption-title { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.caption-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.caption-badges span {
  background: rgba(184,134,11,0.25);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.about-bio h2 { color: var(--navy); margin-bottom: 8px; }
.bio-title { font-size: 0.9rem; color: var(--gold); font-weight: 600; margin-bottom: 24px; letter-spacing: 0.03em; }
.about-bio p { margin-bottom: 20px; }
.bio-creds { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.bio-cred {
  display: flex; gap: 16px; align-items: center;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.cred-icon { font-size: 1.5rem; flex-shrink: 0; }
.bio-cred strong { color: var(--navy); font-size: 0.95rem; display: block; margin-bottom: 2px; }
.bio-cred div { font-size: 0.85rem; color: var(--gray-mid); }

/* ── COMPANY INFO ── */
.company-info-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.company-info-text p { margin-bottom: 20px; }
.company-info-table {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--gray-mid); font-weight: 500; }
.info-val { color: var(--navy); font-weight: 600; text-align: right; }

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 12px; }
.value-card p { font-size: 0.95rem; }

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.contact-detail-val { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-ids {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid var(--gray-light);
}
.contact-id-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}
.contact-id-row:last-child { border-bottom: none; }
.contact-id-row span { color: var(--gray-mid); }
.contact-id-row strong { color: var(--navy); }

/* ── FORM ── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.35rem; }
.form-note { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,62,0.08);
  background: #fff;
}
.form-group textarea { resize: vertical; }
.form-privacy { font-size: 0.78rem; color: var(--gray-mid); text-align: center; margin-top: 12px; }
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.form-success h3 { color: var(--navy); margin-bottom: 12px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo-mfg { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.footer-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.footer-cert { font-size: 0.8rem; color: var(--gold-light); font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.footer-contact div { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-ids { font-size: 0.78rem; color: var(--gold-light); margin-top: 8px; }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .veteran-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-leader { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 360px; }
  .company-info-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 60px 1fr; gap: 24px; }
  .service-detail-num { font-size: 3rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--gray-light); padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .logo-full { display: none; }
  .hero { padding: 100px 0 60px; }
  .hero-creds { flex-direction: column; gap: 12px; }
  .cred-divider { display: none; }
  .stats-strip { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 20px; }
}

/* ── SVG ICON STYLING ── */
.agency-icon svg,
.badge-icon svg,
.property-icon svg,
.cred-icon svg,
.value-icon svg,
.contact-detail-icon svg {
  display: block;
  margin: 0 auto;
}

.agency-icon svg { color: var(--navy); }
.agency-card:hover .agency-icon svg { color: var(--gold); transition: color 0.25s ease; }

.badge-icon svg { color: rgba(255,255,255,0.9); }

.property-icon svg { color: var(--navy); }
.property-card:hover .property-icon svg { color: var(--gold); transition: color 0.25s ease; }

.cred-icon svg { color: var(--navy); }

.value-icon svg { color: var(--gold); }

.contact-detail-icon svg { color: var(--navy); }

/* ── ICON CONTAINER SIZING ── */
.agency-icon,
.badge-icon,
.property-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cred-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,134,11,0.08);
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: 10px;
  flex-shrink: 0;
}

/* ── OFFICE SPLIT SECTION ── */
.office-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.office-split-text {
  background: var(--off-white);
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.office-split-text h2 {
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.office-split-text p {
  margin-bottom: 36px;
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.office-split-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.os-stat { text-align: left; }

.os-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.os-stat-num span {
  font-size: 1.1rem;
  color: var(--gold);
}

.os-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.os-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
  flex-shrink: 0;
}

.office-split-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.office-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.office-split:hover .office-split-image img {
  transform: scale(1.03);
}

.office-split-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(13, 27, 62, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: var(--radius);
  padding: 14px 20px;
}

.osb-line {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.osb-line:first-child {
  color: var(--gold-light);
}

/* ── RESPONSIVE — OFFICE SPLIT ── */
@media (max-width: 900px) {
  .office-split {
    grid-template-columns: 1fr;
  }
  .office-split-text {
    padding: 56px 32px;
  }
  .office-split-image {
    min-height: 320px;
    order: -1;
  }
}

@media (max-width: 640px) {
  .office-split-text {
    padding: 40px 24px;
  }
  .office-split-stats {
    gap: 16px;
  }
}
