:root {
  color-scheme: dark;
  --legal-bg: #11100d;
  --legal-panel: rgba(28, 25, 20, 0.94);
  --legal-text: #f4efe4;
  --legal-muted: #bdb4a3;
  --legal-line: rgba(244, 239, 228, 0.18);
  --legal-accent: #d4aa64;
}
* { box-sizing: border-box; }
html { background: var(--legal-bg); }
body.legal-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(142, 78, 47, .22), transparent 38rem),
    var(--legal-bg);
  color: var(--legal-text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}
.legal-shell { width: min(900px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 72px; }
.legal-brand { color: var(--legal-accent); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; }
.legal-page h1 { margin: 12px 0 8px; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.08; font-weight: 500; }
.legal-updated { color: var(--legal-muted); margin-bottom: 32px; }
.legal-card { background: var(--legal-panel); border: 1px solid var(--legal-line); border-radius: 18px; padding: clamp(22px, 4vw, 38px); box-shadow: 0 22px 60px rgba(0,0,0,.3); }
.legal-card h2 { margin: 32px 0 8px; color: var(--legal-accent); font-size: 1.15rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { margin: 0 0 14px; }
.legal-card a { color: #f2cf91; }
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table th, .legal-table td { padding: 15px 0; border-bottom: 1px solid var(--legal-line); text-align: left; vertical-align: top; }
.legal-table th { width: 34%; padding-right: 24px; color: var(--legal-accent); font-weight: 600; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.legal-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--legal-line); border-radius: 999px; color: var(--legal-text); text-decoration: none; background: rgba(255,255,255,.04); }
.legal-button:hover { border-color: var(--legal-accent); }
.site-legal-footer {
  position: relative;
  z-index: 1;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: none;
  padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: #090b0a;
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}
.site-legal-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-legal-footer a:hover { color: #fff; text-decoration: underline; }
.site-legal-footer .site-legal-name { color: #d4aa64; }
@media (max-width: 620px) {
  .legal-shell { width: min(100% - 22px, 900px); padding-top: 28px; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border-bottom: 0; padding-bottom: 2px; }
  .legal-table td { padding-top: 0; }
  .site-legal-footer { gap: 8px; padding: 8px 10px; font-size: 10px; }
  .site-legal-footer .site-legal-name { display: none; }
}


/* Overview map shown directly after the opening hero. */
.overview-map-section {
  color: #111312;
  background: #f3eee3;
  border-top: 1px solid rgba(17,19,18,.18);
  border-bottom: 1px solid rgba(17,19,18,.18);
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  min-height: 620px;
}
.overview-map-copy {
  padding: clamp(54px, 7vw, 100px) clamp(24px, 6vw, 86px);
  align-self: center;
}
.overview-map-copy h2 {
  margin: 16px 0 22px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.05em;
}
.overview-map-copy h2 em { color: #164b82; font-weight: 400; }
.overview-map-copy > p:not(.eyebrow) { color: #575850; max-width: 440px; font-size: 16px; line-height: 1.65; }
.overview-map-copy > a {
  display: inline-flex; align-items: center; min-height: 48px; margin-top: 30px;
  border-bottom: 1px solid #111312; letter-spacing: .11em; font-size: 10px; font-weight: 900;
}
.overview-map-wrap { min-height: 620px; background: #d8d2c6; }
#overview-map { width: 100%; height: 100%; min-height: 620px; }
.overview-map-marker-shell { background: transparent; border: 0; }
.overview-map-marker {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  color: #fff; background: #e94727; border: 2px solid #fffaf0;
  font-family: Arial, sans-serif; font-size: 11px; font-weight: 900;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
}
.leaflet-popup-content { min-width: 180px; font-family: Arial, sans-serif; }
.leaflet-popup-content strong, .leaflet-popup-content small, .leaflet-popup-content a { display: block; }
.leaflet-popup-content strong { margin-bottom: 4px; font-size: 13px; }
.leaflet-popup-content small { color: #666; margin-bottom: 9px; }
.leaflet-popup-content a { color: #164b82; font-weight: 700; }
@media (max-width: 760px) {
  .overview-map-section { grid-template-columns: 1fr; min-height: 0; }
  .overview-map-copy { padding: 50px 20px 36px; }
  .overview-map-copy h2 { font-size: clamp(40px, 13vw, 58px); }
  .overview-map-wrap, #overview-map { min-height: 430px; }
  .site-legal-footer { flex-wrap: wrap; white-space: normal; }
}


/* Requested home hero layout */
.site-header{display:none!important;}
.overview-map-section{display:none!important;}
.hero{min-height:100svh;position:relative;}
.hero-copy{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding-top:max(42px,env(safe-area-inset-top));}
.hero-copy::before{content:"";display:block;width:52px;height:52px;border-radius:50%;background:#ef4d2c;box-shadow:inset 0 0 0 13px #ef4d2c, inset 0 0 0 17px #11100d;margin:0 0 24px;}
.hero .hero-main-title{margin:0;max-width:8ch;text-transform:uppercase;}
.hero .hero-main-title strong{display:block;margin-top:.22em;}
@media(max-width:760px){
  .hero{min-height:100dvh;}
  .hero-copy{justify-content:flex-start;padding-top:max(28px,env(safe-area-inset-top));padding-bottom:36px;}
  .hero-copy::before{width:40px;height:40px;box-shadow:inset 0 0 0 10px #ef4d2c,inset 0 0 0 13px #11100d;margin-bottom:18px;}
  .hero .hero-main-title{font-size:clamp(50px,15vw,78px);line-height:.88;max-width:7ch;}
  .hero .hero-main-title strong{font-size:.56em;letter-spacing:.1em;}
}
