:root {
  color-scheme: dark;
  --bg: #070707;
  --surface: #101010;
  --surface-2: #17140e;
  --text: #f7f3ea;
  --muted: #b9b2a5;
  --gold: #e3b65a;
  --gold-soft: #8d6a2e;
  --border: rgba(227, 182, 90, 0.24);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(184, 126, 31, 0.16), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-underline-offset: 0.2em; }
a:hover { color: #f4cf83; }
img { display: block; max-width: 100%; height: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 20; padding: .7rem 1rem; background: var(--gold); color: #050505; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,7,7,.9);
  backdrop-filter: blur(16px);
}
.nav { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--text); text-decoration: none; font-weight: 820; letter-spacing: .12em; }
.brand img { width: 2.1rem; height: 2.1rem; border-radius: .55rem; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .3rem .95rem; }
.nav-links a { color: var(--muted); font-size: .92rem; text-decoration: none; }
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--gold); }
main { min-height: 70vh; }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 2rem; padding: clamp(4rem, 9vw, 7rem) 0; }
.eyebrow { margin: 0 0 .8rem; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 { margin: 0; font-size: clamp(3rem, 9vw, 6.6rem); letter-spacing: -.055em; }
.tagline { margin: .4rem 0 1.4rem; color: var(--gold); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 750; letter-spacing: .13em; }
.lead { max-width: 42rem; margin: 0; color: #d8d2c6; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.status { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.7rem; padding: .65rem .85rem; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); background: rgba(227,182,90,.06); font-size: .9rem; }
.status::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 1rem var(--gold); }
.hero-art { position: relative; display: grid; place-items: center; min-width: 0; min-height: 24rem; }
.hero-art::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border: 1px solid var(--border); border-radius: 50%; box-shadow: 0 0 5rem rgba(206,144,36,.14); }
.hero-art img { position: relative; width: min(100%, 31rem); height: auto; max-height: 31rem; object-fit: contain; filter: drop-shadow(0 1.8rem 2.8rem rgba(0,0,0,.55)); }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; border-top: 1px solid rgba(255,255,255,.07); }
.section-head { max-width: 43rem; margin-bottom: 2.2rem; }
.section h2 { margin: 0 0 .8rem; font-size: clamp(2rem, 5vw, 3.4rem); }
.section-head p, .muted { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { min-height: 12rem; padding: 1.35rem; border: 1px solid rgba(255,255,255,.09); border-radius: 1rem; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(227,182,90,.035)); }
.card .number { color: var(--gold-soft); font-size: .78rem; font-weight: 800; letter-spacing: .15em; }
.card h3 { margin: 1.7rem 0 .55rem; font-size: 1.3rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.notice { margin: 1.5rem 0; padding: 1rem 1.15rem; border-left: 3px solid var(--gold); background: rgba(227,182,90,.07); color: #d8d2c6; }
.page-hero { max-width: 48rem; padding: clamp(3.5rem, 8vw, 6rem) 0 2rem; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); }
.prose { max-width: 48rem; padding: 0 0 5rem; }
.prose h2 { margin: 2.5rem 0 .7rem; font-size: 1.55rem; }
.prose h3 { margin: 1.8rem 0 .5rem; font-size: 1.12rem; }
.prose p, .prose li { color: #d1cabe; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .4rem; }
.faq { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; }
.faq h2 { margin-top: 1.8rem; }
.contact-list { display: grid; gap: .75rem; margin-top: 1.5rem; }
.contact-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: .8rem; background: var(--surface); }
.contact-row span { color: var(--muted); }
.site-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 2.3rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: start; gap: 1.5rem; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem 1rem; }
.footer-links a { color: var(--muted); font-size: .88rem; text-decoration: none; }
.not-found { min-height: 68vh; display: grid; place-content: center; text-align: center; }
.not-found h1 { color: var(--gold); }

@media (max-width: 780px) {
  .nav { align-items: center; padding: .9rem 0; }
  .nav-links { max-width: 15rem; gap: .25rem .7rem; }
  .hero { grid-template-columns: 1fr; gap: 1.5rem; padding: clamp(2.75rem, 8vw, 3.5rem) 0; }
  .hero-art { min-height: 0; height: clamp(11rem, 52vw, 15rem); overflow: hidden; }
  .hero-art::before { width: min(52vw, 15rem); }
  .hero-art img { width: auto; height: min(52vw, 15rem); max-width: 72vw; max-height: 100%; }
  .grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .nav { min-height: 0; gap: .75rem; padding: .65rem 0; }
  .nav-links { display: grid; flex: 1; grid-template-columns: repeat(3, max-content); justify-content: end; max-width: none; gap: .15rem .65rem; }
  .nav-links a { font-size: .78rem; line-height: 1.35; white-space: nowrap; }
  .grid { grid-template-columns: 1fr; }
  .contact-row, .footer-inner { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
