/* ═══════════════════════════════════════════════════════════
   FRONTGATE GLOBAL HOLDINGS — Exact HTML/CSS Match
   Design: Deep Navy #0D1B3E | Gold #C9A84C | Steel Blue #4A72B8
   Fonts: Cormorant Garamond (serif) + DM Sans (body)
   ═══════════════════════════════════════════════════════════ */

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

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

:root {
  --navy: #0D1B3E;
  --navy-mid: #132347;
  --navy-light: #1a2d5a;
  --gold: #C9A84C;
  --gold-light: #d4b96a;
  --blue: #4A72B8;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --white: #ffffff;
  --text-body: rgba(13,27,62,0.65);
  --text-light: rgba(255,255,255,0.65);
  --text-dim: rgba(255,255,255,0.4);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: #060e1f;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar svg { width: 12px; height: 12px; flex-shrink: 0; }
.top-bar-sep { color: rgba(255,255,255,0.15); font-size: 0.7rem; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, border-bottom 0.3s ease;
}
.main-nav.scrolled {
  background: rgba(6,14,31,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 2rem;
}
.nav-logo a {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active,
.nav-links > li > button.active { color: var(--white); }
.nav-links > li > a svg,
.nav-links > li > button svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-links > li:hover > a svg,
.nav-links > li:hover > button svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  min-width: 280px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.04); }
.dd-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.dd-icon svg { width: 14px; height: 14px; color: var(--gold); }
.dd-text { display: flex; flex-direction: column; gap: 0.15rem; }
.dd-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.dd-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* GET IN TOUCH button */
.btn-nav-gold {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.btn-nav-gold:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-radius: 2px;
  margin-left: auto;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
}
.mobile-menu-contact svg { width: 14px; height: 14px; color: var(--gold); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  display: none;
}
.mobile-overlay.show { display: block; }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,14,31,0.88) 0%, rgba(13,27,62,0.7) 50%, rgba(13,27,62,0.4) 100%);
}
.hero-container {
  width: 100%;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
  padding: 8rem 0 6rem;
  max-width: 850px;
  text-align: left;
}
.hero-eyebrow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(13,27,62,0.3);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-navy:hover { border-color: var(--navy); color: var(--navy); }

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats-inner {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  gap: 4rem;
  align-items: flex-end;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll svg { color: rgba(255,255,255,0.4); width: 16px; height: 16px; }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.section-about {
  background: #142243;
  padding: 8rem 0;
  color: #fff;
}
.section-about .section-title { color: #fff; }
.section-about .body-text { color: rgba(255,255,255,0.7); }
.section-about .about-badge {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}
.section-about .about-card {
  background: rgba(255,155,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.section-about .about-card h4 { color: #fff; }
.section-about .about-card p { color: rgba(255,255,255,0.5); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.section-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.gold-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
h2.section-title em {
  font-style: italic;
  color: var(--gold);
}
h2.section-title-white {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
h2.section-title-white em { font-style: italic; color: var(--gold); }
.body-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13,27,62,0.06);
  border: 1px solid rgba(13,27,62,0.1);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-right: 0.5rem;
}
.about-badge svg { width: 14px; height: 14px; color: var(--gold); }
.about-founder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.founder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.founder-name { font-size: 1rem; font-weight: 500; color: #fff; }
.founder-title { font-size: 0.85rem; color: #fff; }

/* About cards grid */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  background: var(--white);
  border: 1px solid rgba(13,27,62,0.08);
  padding: 1.5rem;
  border-radius: 4px;
}
.about-card.hq {
  background: var(--navy);
  border-color: transparent;
}
.about-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  margin-bottom: 1rem;
}
.about-card-icon svg { width: 18px; height: 18px; color: var(--gold); }
.about-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.about-card.hq h4 { color: var(--white); }
.about-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.6; }
.about-card.hq p { color: rgba(255,255,255,0.55); }
.hq-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ── DIVISIONS SECTION ───────────────────────────────────── */
.section-divisions {
  background: var(--white);
  padding: 6rem 0;
}
.section-header {
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin: 0.75rem 0 1rem;
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p { font-size: 1.05rem; color: var(--text-body); max-width: 600px; line-height: 1.75; }

/* Division cards */
.division-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(13,27,62,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--white);
}
.division-card.reverse { direction: rtl; }
.division-card.reverse > * { direction: ltr; }
.division-card-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.division-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.division-card:hover .division-card-img img { transform: scale(1.03); }
.division-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,27,62,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}
.division-badge svg { width: 12px; height: 12px; color: var(--gold); }
.division-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}
.division-card-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.division-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.division-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.division-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}
.division-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.division-card-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.division-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  margin-bottom: 1.5rem;
}
.division-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.division-feature svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: gap 0.2s;
}
.btn-explore:hover { gap: 0.75rem; }
.btn-explore svg { width: 14px; height: 14px; }

/* ── WHY FRONTGATE SECTION ───────────────────────────────── */
.section-why {
  background: var(--navy);
  padding: 6rem 0;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
}
.why-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.why-card-icon svg { width: 18px; height: 18px; color: var(--gold); }
.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.section-contact {
  background: var(--cream);
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(13,27,62,0.08);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: rgba(201,168,76,0.3); }
.contact-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-item-value { font-size: 1rem; color: var(--navy); font-weight: 400; }
.also-operating {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13,27,62,0.1);
}
.also-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.also-operating p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }

/* Contact form */
.contact-form-wrap {
  background: var(--navy);
  padding: 2.5rem;
  border-radius: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-light); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #060e1f;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}
.footer-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.footer-also {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-also span { color: rgba(255,255,255,0.45); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

/* Footer contact column */
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-contact-item a { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.5; transition: color 0.2s; }
.footer-contact-item a:hover { color: rgba(255,255,255,0.75); }

/* Footer bottom */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.25); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,14,31,0.9) 0%, rgba(13,27,62,0.6) 60%, rgba(13,27,62,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.breadcrumb a { font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.breadcrumb .current { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.page-hero-eyebrow-line { width: 30px; height: 1px; }
.page-hero-eyebrow span { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 500px; line-height: 1.7; }

/* ── INNER PAGE SECTIONS ─────────────────────────────────── */
.section-cream { background: var(--cream); padding: 5rem 0; }
.section-white { background: var(--white); padding: 5rem 0; }
.section-navy { background: var(--navy); padding: 5rem 0; }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(13,27,62,0.08);
  padding: 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.section-navy .service-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.sc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.sc-icon svg { width: 18px; height: 18px; color: var(--gold); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-navy .service-card h3 { color: var(--white); }
.service-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }
.section-navy .service-card p { color: rgba(255,255,255,0.45); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.process-step { position: relative; padding-left: 0; }
.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.8rem; color: var(--text-body); line-height: 1.7; }

/* CTA strip */
.cta-strip { background: var(--navy); padding: 3.5rem 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.cta-strip p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.cta-strip-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* Quote banner */
.quote-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,14,31,0.82);
}
.quote-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.quote-banner-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote-banner-content cite {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── FADE-UP ANIMATION ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .division-card { grid-template-columns: 1fr; }
  .division-card.reverse { direction: ltr; }
  .division-card-img { min-height: 280px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .top-bar-inner { gap: 0.75rem; }
  .hero-stats-inner { gap: 1.5rem; flex-wrap: wrap; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .division-features { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-stats-inner { gap: 1rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
