/* =============================================================
   L'ÉTALON D'OR — Master Stylesheet v2 (Production)
   ============================================================= */

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

:root {
  --gold:        #d4af37;
  --gold-light:  #f3d28b;
  --gold-warm:   #c9a45c;
  --gold-dim:    rgba(212,175,55,.13);
  --gold-border: rgba(212,175,55,.22);
  --navy:        #0b1320;
  --navy-deep:   #060d18;
  --navy-card:   #101c2e;
  --text:        #f0ede6;
  --text-muted:  #9ca3af;
  --text-soft:   #d1c9b8;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --shadow: 0 8px 40px rgba(0,0,0,.5);
  --ease:   0.2s ease;
  --font:   Georgia, 'Times New Roman', serif;
  --sans:   system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --maxw:   1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-warm); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4 { font-family: var(--font); font-weight: normal; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .4rem; }

/* ── Layout ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section.alt  { background: var(--navy); }
.section.dark { background: var(--navy-deep); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
}

/* ── Ticker bar ── */
.ticker-bar { background: var(--navy-deep); border-bottom: 1px solid var(--gold-border); overflow: hidden; }
.ticker-inner { display: flex; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.ticker-inner::-webkit-scrollbar { display: none; }
.ticker-item { display: flex; align-items: center; flex-shrink: 0; border-right: 1px solid var(--gold-border); }

/* ── Top bar ── */
.topbar { background: var(--navy-deep); border-bottom: 1px solid var(--gold-border); padding: 8px 0; font-size: 13px; color: var(--text-muted); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold); font-weight: 600; }
.topbar a:hover { color: var(--gold-light); }

/* ── Navigation ── */
.nav {
  background: rgba(11,19,32,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { font-family: var(--font); font-size: 1.45rem; color: var(--text) !important; letter-spacing: .5px; white-space: nowrap; flex-shrink: 0; }
.brand span { color: var(--gold); }

.menu { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.menu > a, .menu > .has-dropdown > a {
  color: var(--text-soft);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
  white-space: nowrap;
  display: block;
}
.menu > a:hover,
.menu > .has-dropdown > a:hover,
.menu > a.active { color: var(--gold); background: var(--gold-dim); }

/* ── Dropdown — JS-controlled via .dd-visible ── */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: .55; }

.dropdown {
  /* hidden by default; shown via .dd-visible added by JS */
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  min-width: 210px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  z-index: 300;
  transition: opacity .18s ease, visibility .18s ease;
}
.dropdown.dd-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text-soft);
  border-radius: 0;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--gold-dim); color: var(--gold); }

.dropdown-cols { display: grid; grid-template-columns: 1fr 1fr; min-width: 400px; }
.dropdown-cols > div:first-child { border-right: 1px solid var(--gold-border); }

/* Call button in nav */
.btn-nav {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  padding: 9px 16px !important;
  border-radius: var(--r-sm) !important;
  font-size: 13px !important;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-light) !important; }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all var(--ease); }

@media (max-width: 1060px) {
  .nav-toggle { display: flex; }
  .menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-card);
    border-bottom: 1px solid var(--gold-border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 28px;
    gap: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    z-index: 99;
  }
  .menu.open { display: flex; }
  .menu > a,
  .menu > .has-dropdown > a {
    width: 100%;
    padding: 13px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 15px;
  }
  .has-dropdown > a::after { display: none; }
  .dropdown {
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 14px;
    min-width: 0;
    transition: none;
  }
  .dropdown-cols { grid-template-columns: 1fr; min-width: 0; }
  .dropdown-cols > div:first-child { border-right: none; }
  .dropdown a { border-bottom: 1px solid rgba(255,255,255,.04); padding: 10px 0; font-size: 14px; white-space: normal; }
  .has-dropdown.dd-open .dropdown { display: block; }
  .btn-nav { width: 100%; text-align: center; padding: 14px 0 !important; margin-top: 10px; border-radius: var(--r-sm) !important; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #060d18 0%, #0d1a2e 55%, #0a1628 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(212,175,55,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.page-hero {
  background: linear-gradient(160deg, #060d18 0%, #0d1a2e 100%);
  padding: 60px 0 56px;
  border-bottom: 1px solid var(--gold-border);
}
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-warm); }
.breadcrumb a::after { content: ' /'; margin: 0 5px; color: var(--text-muted); }
.breadcrumb span { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  background: var(--gold-dim);
}
.lead { font-size: 1.1rem; color: var(--text-soft); max-width: 640px; line-height: 1.85; margin-bottom: 28px; }
.hero-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }

@media (max-width: 900px) { .hero-2col { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .hero { padding: 56px 0 48px; } }

/* ── Trust bar ── */
.trust-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.trust-bar span {
  background: rgba(212,175,55,.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}

/* ── Buttons ── */
.btn, .btn-outline, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  font-family: var(--sans);
}
.btn { background: var(--gold); color: var(--navy-deep); }
.btn:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold-border); }
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: var(--navy-deep); padding: 14px 30px; font-size: 15px; border-radius: var(--r-md); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-2px); }

.btn-call {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 12px 24px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 700; transition: all var(--ease); text-decoration: none;
}
.btn-call:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25d366; color: #fff !important;
  padding: 12px 24px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 700; transition: all var(--ease); text-decoration: none;
  border: none; cursor: pointer; font-family: var(--sans);
}
.btn-whatsapp:hover { background: #1eb358; transform: translateY(-1px); }

/* ── Badges / Kicker ── */
.kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  display: block;
}
.badge {
  display: inline-block; background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold-light); padding: 5px 13px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }

/* ── Gold line divider ── */
.gold-line { width: 52px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 14px 0 22px; }
.gold-line.center { margin: 14px auto 22px; }

/* ── Cards ── */
.card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 28px 24px; transition: all var(--ease);
}
.card:hover { border-color: rgba(212,175,55,.45); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.card .icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-bottom: 16px; color: var(--gold); font-weight: 700;
}
.card h3 { color: var(--gold-warm); margin-bottom: 9px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.card-service {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all var(--ease); text-decoration: none;
}
.card-service:hover { border-color: rgba(212,175,55,.5); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.card-service .icon { width: 54px; height: 54px; border-radius: 14px; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold); }
.card-service h3 { color: var(--gold-warm); margin: 0; }
.card-service p { color: var(--text-muted); font-size: 13.5px; line-height: 1.7; margin: 0; }
.card-service .arrow { color: var(--gold); font-size: 17px; margin-top: auto; }

/* ── Info box ── */
.info-box {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 30px;
}
.info-box table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.info-box th, .info-box td { padding: 11px 13px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 14px; }
.info-box th { color: var(--gold-warm); font-weight: 600; white-space: nowrap; font-family: var(--sans); }
.info-box td { color: var(--text-muted); }

/* ── Metal cards ── */
.metal-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 24px 20px; text-align: center; transition: all var(--ease);
}
.metal-card:hover { border-color: rgba(212,175,55,.5); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.metal-card .emblem {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold-dim); border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px; color: var(--gold);
}
.metal-card h3 { color: var(--gold-warm); font-size: 1.05rem; margin-bottom: 8px; }
.metal-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.metal-card .specs { margin-top: 12px; font-size: 11px; color: var(--gold); background: var(--gold-dim); border-radius: var(--r-sm); padding: 6px 10px; }

/* ── Stat grid ── */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.stat { background: var(--navy-card); border: 1px solid var(--gold-border); border-radius: var(--r-md); padding: 18px; font-size: 14px; color: var(--text-muted); }
.stat strong { display: block; color: var(--gold); font-size: .95rem; margin-bottom: 5px; }
@media (max-width: 640px) { .stat-grid { grid-template-columns: 1fr; } }

/* ── List ── */
.list { list-style: none; padding: 0; margin: 14px 0; }
.list li { padding: 9px 0 9px 26px; position: relative; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--text-soft); font-size: 15px; }
.list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 14px; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #0f1e35 0%, #0d1a2e 100%);
  border: 1px solid var(--gold-border); border-radius: var(--r-xl);
  padding: 48px 44px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-band h3 { color: #fff; font-size: 1.45rem; margin-bottom: 7px; }
.cta-band p  { color: var(--text-muted); margin: 0; font-size: 14px; }
@media (max-width: 700px) { .cta-band { padding: 32px 22px; flex-direction: column; } }

/* ── Testimonials ── */
.testimonial-card { background: var(--navy-card); border: 1px solid var(--gold-border); border-radius: var(--r-lg); padding: 26px; }
.testimonial-card .stars { color: #f5c542; font-size: 17px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-soft); font-size: 14.5px; line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.testimonial-card strong { color: var(--gold-warm); font-size: 13px; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 22px; counter-reset: steps; }
.step { background: var(--navy-card); border: 1px solid var(--gold-border); border-radius: var(--r-lg); padding: 26px 22px; position: relative; counter-increment: steps; }
.step::before { content: counter(steps); position: absolute; top: -13px; left: 22px; background: var(--gold); color: var(--navy-deep); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; font-family: var(--sans); }
.step h3 { color: var(--gold-warm); margin-bottom: 7px; font-size: 1.05rem; }
.step p  { color: var(--text-muted); font-size: 13.5px; }

/* ── FAQ ── */
.faq-list { margin-top: 18px; }
.faq-item { border-bottom: 1px solid var(--gold-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text); font-size: 15.5px; font-weight: 600;
  padding: 18px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--sans); transition: color var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 22px; flex-shrink: 0; transition: transform var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; color: var(--text-muted); font-size: 14.5px; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── Section heading ── */
.section-heading { text-align: center; margin-bottom: 44px; }
.section-heading h2 { color: var(--gold-warm); margin-bottom: 10px; }
.section-heading p { color: var(--text-muted); font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* ── Highlight box ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(212,175,55,.07), rgba(201,164,92,.03));
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 22px; margin: 22px 0;
}
.highlight-box h3 { color: var(--gold-warm); margin-bottom: 7px; }
.highlight-box p  { color: var(--text-soft); margin: 0; font-size: 14.5px; }

/* ── Zone grid ── */
.zone-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(165px,1fr)); gap: 9px; margin-top: 18px; }
.zone-link {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-sm); padding: 11px 15px;
  font-size: 13px; color: var(--text-soft); transition: all var(--ease); display: block;
}
.zone-link:hover { background: var(--gold-dim); color: var(--gold); border-color: rgba(212,175,55,.4); }

/* ── Estimation box ── */
.estimation-box { background: var(--navy-card); border: 1px solid var(--gold-border); border-radius: var(--r-xl); padding: 44px 40px; text-align: center; }
.estimation-box h2 { color: var(--gold-warm); margin-bottom: 8px; }
.estimation-box > p { color: var(--text-muted); margin-bottom: 26px; }
.estimation-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 18px; }
.estimation-form input,
.estimation-form select {
  padding: 12px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--gold-border); background: var(--navy);
  color: var(--text); font-size: 15px; min-width: 200px; flex: 1; max-width: 260px; font-family: var(--sans);
}
.estimation-form input:focus,
.estimation-form select:focus { outline: none; border-color: var(--gold); }
.estimation-form option { background: var(--navy-card); }
@media (max-width: 640px) { .estimation-box { padding: 28px 18px; } .estimation-form input, .estimation-form select { max-width: 100%; } }

/* ── Notice ── */
.notice { font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--gold-border); padding-top: 12px; margin-top: 12px; line-height: 1.7; }
.notice a { color: var(--gold); }

/* ── Slider ── */
.etalon-slider { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--gold-border); background: var(--navy-card); }
.etalon-slider img { width: 100%; height: 500px; object-fit: cover; display: block; }
.etalon-slide { display: none; }
.etalon-slide.active { display: block; }
.etalon-prev, .etalon-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; font-size: 22px; cursor: pointer;
  transition: background var(--ease); display: flex; align-items: center; justify-content: center;
}
.etalon-prev:hover, .etalon-next:hover { background: rgba(212,175,55,.7); }
.etalon-prev { left: 12px; }
.etalon-next { right: 12px; }
@media (max-width: 768px) { .etalon-slider img { height: 280px; } .etalon-prev, .etalon-next { width: 36px; height: 36px; font-size: 18px; } }

/* ── Map ── */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-border); }
.map-wrap iframe { display: block; }

/* ── Footer ── */
.footer { background: var(--navy-deep); border-top: 1px solid var(--gold-border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.footer .brand { font-size: 1.35rem; margin-bottom: 14px; display: inline-block; color: var(--text); }
.footer .brand span { color: var(--gold); }
.footer p, .footer li { color: var(--text-muted); font-size: 13.5px; line-height: 1.85; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--gold); }
.footer-title { color: var(--gold-warm); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid var(--gold-border); padding: 20px 0; font-size: 12.5px; color: var(--text-muted); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ── Sticky mobile CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy-card); border-top: 1px solid var(--gold-border); padding: 10px 14px; gap: 9px;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .sticky-cta a { flex: 1; text-align: center; padding: 12px 8px; font-size: 13.5px; justify-content: center; }
  body { padding-bottom: 68px; }
}

/* ── Local page helpers ── */
.main-content { max-width: 1100px; margin: 0 auto; padding: 48px 24px 64px; }
.box { background: var(--navy-card); border: 1px solid var(--gold-border); padding: 24px; border-radius: var(--r-lg); margin: 22px 0; }
a.button, .button {
  display: inline-block; background: var(--gold); color: var(--navy-deep) !important;
  padding: 12px 24px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 700; margin-top: 14px; transition: all var(--ease); font-family: var(--sans); font-size: 14.5px;
}
a.button:hover, .button:hover { background: var(--gold-light); transform: translateY(-1px); }
.small-links a { color: var(--gold); }
.cta-local { background: linear-gradient(135deg,#0f1e35,#0d1a2e); border: 1px solid var(--gold-border); border-radius: var(--r-xl); padding: 40px; text-align: center; margin: 40px 0; }
.cta-local h2 { margin: 0 0 10px; color: #fff; font-size: 1.5rem; }
.cta-local p  { color: var(--text-muted); margin-bottom: 22px; }
.cta-buttons  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.zone-links   { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.zone-links a { background: var(--navy); border: 1px solid var(--gold-border); color: var(--text-soft); padding: 8px 14px; border-radius: var(--r-sm); font-size: 13px; transition: all var(--ease); }
.zone-links a:hover { background: var(--gold-dim); color: var(--gold); }
@media (max-width: 640px) { .main-content { padding: 32px 16px 56px; } .cta-local { padding: 28px 18px; } }

/* ── Utilities ── */
.text-gold { color: var(--gold); }
.text-gold-warm { color: var(--gold-warm); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.small { font-size: 13px; color: var(--text-muted); }
