:root {
  --bg: #090a09;
  --bg-soft: #10110f;
  --panel: #141511;
  --panel-2: #191a15;
  --text: #f0ede5;
  --muted: #b9b3a6;
  --gold: #c69d61;
  --gold-bright: #dfb978;
  --line: rgba(198, 157, 97, 0.28);
  --line-soft: rgba(240, 237, 229, 0.10);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(198,157,97,.10), transparent 34rem),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 44px 44px, 44px 44px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 -100vw;
  z-index: -1;
  background: rgba(9,10,9,.82);
}

.brand {
  display: flex;
  align-items: center;
  width: 170px;
  height: 46px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.5);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-bright);
}

.nav-muted {
  color: #69665f;
  cursor: default;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(198,157,97,.11);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero::before {
  left: -26rem;
  top: 5rem;
}

.hero::after {
  right: -28rem;
  bottom: -8rem;
}

.hero-inner {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  padding: 7rem 0 8rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(100%, 740px);
  margin: 0 auto -1rem;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,.5));
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  max-width: 850px;
  margin: 0 auto 1.5rem;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  letter-spacing: -.025em;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-copy strong {
  color: var(--text);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button-primary {
  color: #15120d;
  background: var(--gold);
  border-color: var(--gold);
  transition: background .2s ease, transform .2s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.button-ghost {
  color: #77736b;
  background: rgba(255,255,255,.02);
}

.disabled {
  cursor: default;
}

.hero-ornament {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  width: 130px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 6.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.02em;
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.two-column p {
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.two-column .lead {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.section-panel {
  position: relative;
  width: min(calc(100% - 2rem), calc(var(--max) + 4rem));
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  min-height: 290px;
  padding: 2rem;
  background: var(--panel);
}

.card-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  letter-spacing: .12em;
}

.card h3 {
  margin: 3.2rem 0 1rem;
  font-size: 1.65rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.status-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.status-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line-soft);
  color: #827d73;
  font-size: .78rem;
  letter-spacing: .04em;
}

.site-footer img {
  width: 110px;
  height: 32px;
  object-fit: cover;
  object-position: center;
  opacity: .6;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    gap: .8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 58%;
    font-size: .67rem;
  }

  .brand {
    width: 128px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 5rem 0 6rem;
  }

  .two-column,
  .status-section,
  .cards {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 1px;
  }

  .card {
    min-height: 0;
  }

  .card h3 {
    margin-top: 2rem;
  }

  .section,
  .section-panel {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
