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

:root {
  --gold:       #c8940a;
  --gold-light: #f0c040;
  --gold-dark:  #8a6000;
  --dark:       #0c0c0a;
  --dark2:      #141410;
  --dark3:      #1e1e18;
  --off-white:  #f5f2eb;
  --cream:      #faf7f0;
  --text:       #1a1a14;
  --text-mid:   #4a4a3a;
  --serif:      'IBM Plex Serif', 'Georgia', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── UTILITY BAR ── */
.util-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(200,148,10,0.15);
  padding: 7px 32px;
}
.util-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.74rem;
  color: #c4c0ad;
  letter-spacing: 0.05em;
}
.util-inner a { color: #c4c0ad; text-decoration: none; transition: color 0.2s; }
.util-inner a:hover { color: var(--gold-light); }
.util-left, .util-right { display: flex; gap: 20px; align-items: center; }
.util-divider { color: rgba(200,148,10,0.3); }

/* ── VOSB POPUP ── */
.vosb-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.vosb-popup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(200,148,10,0.3);
  width: 208px;
}
.vosb-popup img { width: 100%; height: auto; display: block; border-radius: 4px; }
.vosb-tooltip-wrap:hover .vosb-popup { display: block; }

/* ── HEADER ── */
header {
  background: var(--dark2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(200,148,10,0.18);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap img { height: 42px; width: auto; display: block; }

nav { display: flex; gap: 4px; align-items: center; }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(200,148,10,0.4);
  border-radius: 4px;
  padding: 7px 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.25s, opacity 0.25s;
}
nav a {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8b4a0;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--gold-light); background: rgba(200,148,10,0.07); }
nav a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: #0c0c0a !important;
  font-size: 0.74rem !important;
  padding: 6px 15px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--dark2);
  color: white;
  padding: 64px 32px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 30%, rgba(200,148,10,0.12) 50%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.breadcrumb a { color: #a8a290; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #f5f2e8;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: #c4c0ad;
  max-width: 600px;
  line-height: 1.75;
}

/* ── SECTIONS ── */
section { padding: 80px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title.light { color: #f0ece0; }
.gold-rule { width: 48px; height: 3px; background: var(--gold); margin-bottom: 28px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
    transparent, rgba(200,148,10,0.35) 30%, rgba(200,148,10,0.35) 70%, transparent);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: #0c0c0a;
  padding: 13px 32px;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(200,148,10,0.45);
  color: #c8c0a0;
  padding: 13px 32px;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── STATS BAR ── */
.stats-bar { background: var(--dark3); border-top: 1px solid rgba(200,148,10,0.15); border-bottom: 1px solid rgba(200,148,10,0.15); }
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item { padding: 8px 16px; border-right: 1px solid rgba(200,148,10,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a8a290; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  border-top: 1px solid rgba(200,148,10,0.2);
  border-bottom: 1px solid rgba(200,148,10,0.2);
  padding: 56px 32px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: #f0ece0; margin-bottom: 12px; }
.cta-band p { color: #c4c0ad; margin-bottom: 28px; font-size: 0.98rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,148,10,0.12);
  padding: 48px 32px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(200,148,10,0.1);
  margin-bottom: 28px;
}
.footer-logo { height: 38px; margin-bottom: 16px; }
.footer-about { font-size: 0.82rem; color: #9a9684; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: #9a9684;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.82rem; color: #9a9684; line-height: 1.75; }
.footer-col address a { color: #9a9684; text-decoration: none; }
.footer-col address a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.74rem; color: #807c6e; }
.footer-vosb {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  border: 1px solid rgba(200,148,10,0.18);
  padding: 5px 14px;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
/* Global guard: prevent sideways scroll without breaking position:sticky.
   overflow-x:clip (unlike hidden) does NOT create a scroll container,
   so the sticky header keeps working on mobile. Applied to body only —
   never html — so html remains the sticky scroll context. */
body { overflow-x: clip; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  /* Mobile util-bar: keep only the VOSB badge; drop location + phone/email */
  .util-right { display: none; }
  .util-left > .util-divider,
  .util-left > span:not(.vosb-tooltip-wrap) { display: none; }
  .util-inner { justify-content: center; }

  /* Show hamburger; nav becomes a slide-down panel */
  .nav-toggle { display: flex; }
  .header-inner { position: relative; flex-wrap: wrap; }
  nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 3;
    margin-top: 12px;
    border-top: 1px solid rgba(200,148,10,0.18);
    padding-top: 8px;
  }
  .header-inner.nav-open nav { display: flex; }
  nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(200,148,10,0.08);
  }
  nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
    border-radius: 4px;
  }
  /* Trim oversized desktop side-padding so nothing exceeds the viewport */
  .util-bar { padding: 7px 18px; }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .logo-wrap img { height: 34px; }
  .page-hero { padding: 44px 18px 40px; }
  .page-hero p { font-size: 0.98rem; }
  section { padding: 56px 18px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(200,148,10,0.1); padding: 14px 8px; }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  /* Util-bar shows only the centered VOSB badge */
  .util-bar { padding: 7px 14px; }
  .logo-wrap img { height: 30px; }
  .header-inner { padding: 12px 14px; }
  section { padding: 48px 16px; }
  .page-hero { padding: 36px 16px 32px; }
}
