:root {
  --bg: #070809;
  --panel: rgba(21, 23, 25, .72);
  --line: rgba(255, 255, 255, .13);
  --line-bright: rgba(255, 255, 255, .24);
  --text: #f7f4ee;
  --muted: #b8b2a8;
  --gold: #d6b15c;
  --red: #9e1717;
  --shadow: 0 24px 90px rgba(0, 0, 0, .48);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(158, 23, 23, .28), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(214, 177, 92, .16), transparent 26rem),
    linear-gradient(135deg, #050506, #121416 46%, #08090a);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 8, 9, .72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(214, 177, 92, .22), rgba(158, 23, 23, .18));
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 800;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}
.site-nav a {
  padding: 9px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  border-color: var(--gold);
}
.nav-toggle,
.nav-button { display: none; }
.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 70px 0 56px;
}
.hero.compact {
  min-height: auto;
  grid-template-columns: 1fr;
  max-width: 920px;
  padding-bottom: 28px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  font-weight: 700;
}
h1 { font-size: clamp(50px, 9vw, 124px); }
h2 { font-size: clamp(34px, 5vw, 66px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.lead {
  max-width: 760px;
  color: #ddd7cc;
  font-size: clamp(18px, 2.3vw, 24px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(214, 177, 92, .58);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(158, 23, 23, .92), rgba(88, 13, 13, .92));
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 48px rgba(158, 23, 23, .25);
}
.button.secondary {
  background: rgba(255, 255, 255, .055);
  color: var(--text);
  border-color: var(--line-bright);
  box-shadow: none;
}
.hero-card,
.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card {
  min-height: 540px;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(0, 0, 0, .72)),
    var(--hero-image, linear-gradient(135deg, rgba(214, 177, 92, .22), rgba(158, 23, 23, .18)));
  background-size: cover;
  background-position: center;
  opacity: .72;
}
.hero-card > * { position: relative; z-index: 1; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.stat {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
}
.stat span { color: var(--muted); font-size: 13px; }
.section {
  padding: clamp(48px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
}
.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}
.card h3 { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.feature {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  line-height: 1.6;
}
.list strong { color: var(--text); }
.beliefs {
  columns: 2;
  column-gap: 28px;
}
.belief {
  break-inside: avoid;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}
.belief h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 24px;
}
.resource-link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}
.resource-link span { color: var(--muted); }
.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
}
.contact-form { display: grid; gap: 12px; }
.field {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  font: inherit;
}
textarea.field { min-height: 150px; resize: vertical; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .28);
}
.footer p { margin: 8px 0 0; max-width: 480px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}
.footer-links a:hover { color: var(--gold); }

@media (max-width: 920px) {
  .nav-button {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-content: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .nav-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
  }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 8, 9, .94);
    backdrop-filter: blur(18px);
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .hero,
  .feature,
  .contact-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero-card { min-height: 380px; }
  .grid,
  .grid.two,
  .stats { grid-template-columns: 1fr; }
  .beliefs { columns: 1; }
  .footer { flex-direction: column; }
}
