*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-pale); }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, select { font-family: var(--sans); }

.hidden, .hidden-initial { display: none !important; }
.is-empty-label { color: var(--wire-2) !important; opacity: .72; font-style: italic; font-weight: 500; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--wire-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.section { margin-bottom: 80px; }

.section-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}

.section-label__text {
  font-family: var(--sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
}

.section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--wire);
}

.section-title {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 300;
  color: var(--text-hi);
  margin-bottom: 8px;
  line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--gold); }

.panel {
  background: var(--ink-3);
  border: 1px solid var(--wire);
  border-radius: var(--r2);
  overflow: hidden;
}

.panel__head {
  padding: 20px 28px;
  border-bottom: 1px solid var(--wire);
  display: flex; align-items: center; justify-content: space-between;
}

.panel__title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}

.zone-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px; font-weight: 800;
  border-radius: 3px;
}

.site-footer {
  border-top: 1px solid var(--wire);
  padding: 40px;
  margin-top: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

.site-footer__copy { font-size: 12px; color: var(--muted); }
.site-footer__copy a { color: var(--muted); }
.site-footer__copy a:hover { color: var(--gold); }
.site-footer__copy .footer-brand {
  margin: 0 3px;
  font-size: 14px;
}

.footer-mark {
  font-family: var(--serif);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--wire-2);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .6px;
  color: var(--gold);
  text-transform: none;
  line-height: 1;
}

.footer-brand span { color: var(--text-hi); opacity: 1; }
.footer-brand em { font-style: italic; opacity: .9; color: var(--gold); }

.footer-mark small {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--wire-2);
}

@media (max-width: 768px) {
  .site-main   { padding: 40px 20px; }
  .site-footer { flex-direction: column; gap: 10px; padding: 32px 20px; }
}
