/* ============================================================
   JCMC Job Consultancy — Main Stylesheet
   Color Palette: Navy #1a2a5e | Gold #c9a227
   ============================================================ */

:root {
  --navy:      #1a2a5e;
  --navy-d:    #0f1c42;
  --navy-m:    #243270;
  --gold:      #c9a227;
  --gold-l:    #e0bc4a;
  --gold-pale: #f7edcc;
  --off:       #f4f5f9;
  --muted:     #6b7a99;
  --white:     #ffffff;
  --border:    rgba(26,42,94,0.10);
  --shadow:    0 20px 60px rgba(26,42,94,0.12);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--navy-d);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: color .2s; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.12;
}

/* ── NAVBAR ── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,28,66,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px 10px;
  transition: opacity .2s;
}
.brand:hover .brand-logo { opacity: .88; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.72); font-size: .84rem;
  font-weight: 500; padding: 7px 15px; border-radius: 6px;
  transition: .2s; letter-spacing: .3px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-l); background: rgba(201,162,39,.09); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-d) !important;
  font-weight: 700 !important;
  border-radius: 7px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--gold-l) !important; }
.burger {
  display: none; background: none; border: none;
  color: #fff; font-size: 1.4rem; cursor: pointer;
  padding: 4px; line-height: 1;
}

/* ── SECTION TAGS & TITLES ── */
.sec-tag {
  display: inline-block;
  background: rgba(201,162,39,.13);
  border: 1px solid rgba(201,162,39,.28);
  color: var(--gold-l);
  font-size: .7rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 700;
  padding: 5px 16px; border-radius: 30px;
  margin-bottom: 14px;
}
.sec-tag-d {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(201,162,39,.25);
  color: var(--gold);
  font-size: .7rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 700;
  padding: 5px 16px; border-radius: 30px;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white); margin-bottom: 14px;
}
.sec-title em { color: var(--gold); font-style: normal; }
.sec-title-d {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy-d); margin-bottom: 14px;
}
.sec-title-d em { color: var(--gold); font-style: normal; }
.sec-lead {
  font-size: 1rem; color: rgba(255,255,255,.62);
  max-width: 540px; line-height: 1.75;
}
.sec-lead-d {
  font-size: 1rem; color: var(--muted);
  max-width: 560px; line-height: 1.75;
}
.gold-bar {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 2px; margin: 16px 0 24px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--navy-d);
  font-weight: 700; font-size: .92rem;
  padding: 13px 30px; border-radius: 8px;
  border: none; cursor: pointer; transition: .2s;
  letter-spacing: .4px;
}
.btn-gold:hover {
  background: var(--gold-l); color: var(--navy-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,.3);
}
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  font-weight: 600; font-size: .9rem;
  padding: 11px 26px; border-radius: 8px;
  cursor: pointer; transition: .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-l); }
.btn-navy {
  display: inline-block;
  background: var(--navy-d); color: var(--white);
  font-weight: 700; font-size: .92rem;
  padding: 13px 30px; border-radius: 8px;
  border: none; cursor: pointer; transition: .2s;
}
.btn-navy:hover { background: var(--navy-m); transform: translateY(-2px); }

/* ── COMING SOON PILL ── */
.coming-pill {
  display: inline-block;
  background: var(--gold-pale); color: var(--gold);
  font-size: .58rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 9px; border-radius: 20px;
  border: 1px solid rgba(201,162,39,.3);
  margin-left: 8px; vertical-align: middle;
}

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 68px; min-height: 100vh; }

/* ── SECTION BACKGROUNDS ── */
.section-dark  { background: var(--navy-d); padding: 90px 0; }
.section-light { background: var(--white);  padding: 90px 0; }
.section-off   { background: var(--off);    padding: 90px 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2547a8 45%, #3b63c8 100%);
  min-height: calc(100vh - 68px);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 70px 0 60px;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,.12) 1px, transparent 1px);
  background-size: 38px 38px; pointer-events: none;
}
.hero-glow {
  position: absolute; width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(201,162,39,.1) 0%, transparent 65%);
  top: -180px; right: -120px; border-radius: 50%; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.11);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold-l); font-size: .75rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; padding: 6px 18px;
  border-radius: 30px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.68);
  max-width: 500px; line-height: 1.75; margin-bottom: 36px;
}
/* hero stat card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 18px; padding: 28px 24px;
}
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.stat-box {
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.22);
  border-radius: 12px; padding: 16px; text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-lbl { font-size: .66rem; color: rgba(255,255,255,.6); margin-top: 3px; }
.token-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: 12px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}
.tok-ic {
  width: 42px; height: 42px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  color: var(--navy-d); font-size: 1.1rem;
}
.tok-t { font-weight: 700; color: var(--white); font-size: .88rem; }
.tok-s { font-size: .74rem; color: rgba(255,255,255,.58); margin-top: 2px; }

/* ── HOW STEPS (dark bg) ── */
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 32px 24px;
  height: 100%; text-align: center; transition: .25s;
}
.step-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.step-num {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: var(--navy-d); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 900; margin: 0 auto 22px;
  box-shadow: 0 0 0 5px rgba(201,162,39,.15), 0 8px 22px rgba(201,162,39,.25);
}
.step-card h5 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  color: var(--white); font-size: 1rem; margin-bottom: 10px;
}
.step-card p { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.65; margin: 0; }

/* ── HOW STEPS (light bg) ── */
.step-card-light {
  background: var(--white);
  border: 1px solid rgba(26,42,94,.09);
  border-radius: 16px; padding: 36px 28px 32px;
  height: 100%; text-align: center; transition: .25s;
  box-shadow: 0 4px 20px rgba(26,42,94,.06);
  position: relative; overflow: hidden;
}
.step-card-light::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 16px 16px 0 0;
}
.step-card-light:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,42,94,.11);
  border-color: rgba(201,162,39,.3);
}
.step-card-light h5 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  color: var(--navy-d); font-size: 1rem; margin-bottom: 10px;
}
.step-card-light p { color: var(--muted); font-size: .87rem; line-height: 1.65; margin: 0; }

/* token highlights (dark bg) */
.tok-highlight {
  background: rgba(201,162,39,.1);
  border: 2px solid rgba(201,162,39,.28);
  border-radius: 16px; padding: 28px; text-align: center;
}
.tok-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.tok-desc { color: rgba(255,255,255,.65); font-size: .88rem; margin-top: 8px; }

/* token highlights (light bg) — same card style as step-card-light */
.tok-highlight-light {
  background: var(--white);
  border: 1px solid rgba(26,42,94,.09);
  border-radius: 16px; padding: 34px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,42,94,.06);
  transition: .25s;
  position: relative; overflow: hidden;
}
.tok-highlight-light::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 16px 16px 0 0;
}
.tok-highlight-light:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,42,94,.11);
  border-color: rgba(201,162,39,.3);
}
.tok-big-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 900;
  color: var(--navy-d); line-height: 1;
  margin-bottom: 10px;
}
.tok-desc-light { color: var(--muted); font-size: .88rem; margin-top: 6px; font-weight: 500; }

/* ── ABOUT ── */
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 420px;
  object-fit: cover; border-radius: 18px;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--navy-d); border: 2px solid var(--gold);
  border-radius: 12px; padding: 14px 20px; color: var(--white);
}
.about-badge .bnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.about-badge .blbl { font-size: .72rem; color: rgba(255,255,255,.65); }
.mission-card {
  background: linear-gradient(135deg, var(--navy-d), var(--navy-m));
  border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 22px 24px;
  margin-top: 24px; color: var(--white);
}
.mission-card p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.7; margin: 0; }
.info-row { display: flex; gap: 18px; margin-bottom: 20px; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; background: var(--navy-d);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold);
}
.info-h { font-weight: 700; color: var(--navy-d); font-size: .95rem; margin-bottom: 4px; }
.info-p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── FEATURE CARDS ── */
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
  height: 100%; transition: .25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  opacity: 0; transition: .25s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201,162,39,.25); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 54px; height: 54px; background: var(--navy-d);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: var(--gold);
}
.feat-card h5 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy-d); font-size: .97rem; margin-bottom: 10px; }
.feat-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── PRECISION CARDS ── */
.prec-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 34px 24px;
  text-align: center; height: 100%; transition: .25s;
}
.prec-card:hover { background: rgba(201,162,39,.09); border-color: rgba(201,162,39,.28); transform: translateY(-5px); }
.prec-icon {
  width: 68px; height: 68px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 22px; color: var(--navy-d);
}
.prec-card h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--white); font-size: 1.02rem; margin-bottom: 12px; }
.prec-card p { color: rgba(255,255,255,.62); font-size: .87rem; line-height: 1.65; margin: 0; }

/* ── TRUST ITEMS ── */
.trust-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: 14px;
  border: 1px solid var(--border); margin-bottom: 16px; transition: .2s;
}
.trust-item:hover { box-shadow: 0 8px 28px rgba(26,42,94,.09); border-color: rgba(201,162,39,.22); }
.t-icon {
  width: 48px; height: 48px; background: var(--navy-d);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold);
}
.trust-item h6 { font-weight: 700; color: var(--navy-d); font-size: .94rem; margin-bottom: 4px; }
.trust-item p { font-size: .86rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── AUTO CARDS ── */
.auto-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  height: 100%; transition: .2s;
}
.auto-card:hover { box-shadow: 0 10px 32px rgba(26,42,94,.09); border-color: rgba(201,162,39,.22); }
.auto-ic {
  width: 44px; height: 44px; background: var(--navy-d);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold);
}
.auto-card h6 { font-weight: 700; color: var(--navy-d); font-size: .94rem; margin-bottom: 5px; }
.auto-card p { font-size: .86rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── SERVICE PILLS ── */
.svc-pill {
  display: flex; align-items: center; gap: 16px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px;
  margin-bottom: 14px; transition: .2s; cursor: default;
}
.svc-pill:hover { background: var(--navy-d); border-color: var(--navy-d); }
.svc-pill:hover .svc-lbl { color: var(--white); }
.svc-pill:hover .svc-ic { background: var(--gold); color: var(--navy-d); }
.svc-ic {
  width: 40px; height: 40px; background: var(--navy-d);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  color: var(--gold); transition: .2s;
}
.svc-lbl { font-weight: 600; font-size: .95rem; color: var(--navy-d); transition: .2s; }

/* ── CONTACT ── */
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; height: 100%;
}
.c-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.c-item:last-child { margin-bottom: 0; }
.c-ic {
  width: 46px; height: 46px; background: var(--navy-d);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold);
}
.c-lbl { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.c-val { font-weight: 600; color: var(--navy-d); font-size: .93rem; }
.c-val a { color: var(--navy-d); }
.c-val a:hover { color: var(--gold); }
.social-ic {
  width: 42px; height: 42px; background: var(--navy-d);
  border-radius: 10px; display: inline-flex; align-items: center;
  justify-content: center; color: var(--gold);
  text-decoration: none; transition: .2s;
}
.social-ic:hover { background: var(--gold); color: var(--navy-d); transform: translateY(-3px); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .82rem; color: var(--navy-d); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; border-radius: 9px;
  border: 1px solid rgba(26,42,94,.18);
  padding: 11px 16px; font-family: 'Outfit', sans-serif;
  font-size: .9rem; outline: none; transition: .2s;
  color: var(--navy-d); background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.12); }
.form-group textarea { resize: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy-m) 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,.1) 1px, transparent 1px);
  background-size: 38px 38px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 520px; line-height: 1.7; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb-nav a { color: rgba(255,255,255,.5); font-size: .82rem; }
.breadcrumb-nav a:hover { color: var(--gold-l); }
.breadcrumb-nav span { color: rgba(255,255,255,.3); font-size: .82rem; }
.breadcrumb-nav .current { color: var(--gold-l); font-size: .82rem; font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-d);
  border-top: 1px solid rgba(201,162,39,.15);
}
.footer-top { padding: 60px 0 40px; }
.footer-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px 14px;
  margin-bottom: 18px;
  display: block;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }
.footer-col h6 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--white); font-size: .88rem; letter-spacing: .5px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h6::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: .87rem; transition: .2s; }
.footer-col ul li a:hover { color: var(--gold-l); padding-left: 4px; }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-col .contact-line svg { flex-shrink: 0; margin-top: 2px; }
.footer-col .contact-line span { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-col .contact-line a { color: rgba(255,255,255,.5); font-size: .87rem; }
.footer-col .contact-line a:hover { color: var(--gold-l); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: .2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--navy-d); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { color: var(--gold-l); }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: .55s ease; }
.fade-in.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .section-dark, .section-light, .section-off { padding: 70px 0; }
  .hero { padding: 50px 0; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-d);
    padding: 14px 24px 20px; gap: 4px;
    border-top: 1px solid rgba(201,162,39,.12);
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .section-dark, .section-light, .section-off { padding: 55px 0; }
  .hero { min-height: auto; padding: 50px 0 40px; }
  .stat-grid { grid-template-columns: repeat(3,1fr); }
  .about-img { height: 280px; }
}
