:root {
  --bg: #060606;
  --panel: rgba(255,255,255,.035);
  --line: rgba(211,167,84,.30);
  --gold: #d4aa61;
  --gold-soft: #f1d79b;
  --text: #f4f0e7;
  --muted: #aaa49a;
  --red: #8f1919;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 10%, rgba(181,128,45,.12), transparent 28rem),
    linear-gradient(180deg, #090909 0%, #030303 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: .17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: .16;
}

.ambient-one {
  width: 18rem;
  height: 18rem;
  top: 12%;
  left: -7rem;
  background: var(--red);
}

.ambient-two {
  width: 22rem;
  height: 22rem;
  right: -9rem;
  bottom: 5%;
  background: #a4762f;
}

.page-shell {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 52px 20px 30px;
}

.hero {
  width: min(100%, 680px);
  text-align: center;
  animation: enter .9s ease both;
}

.seal {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217,89,69,.75);
  background: rgba(128,16,16,.34);
  color: #f0a09a;
  font-family: Georgia, serif;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(151,24,24,.2);
}

.brand-logo {
  display: block;
  width: min(78vw, 390px);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.65));
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  letter-spacing: .35em;
  transform: translateX(.175em);
}

h1 {
  margin: 0;
  font-size: clamp(1.55rem, 6vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: .18em;
  transform: translateX(.09em);
}

.motto {
  margin: 20px 0 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
}

.divider {
  width: 88px;
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro {
  margin: 0 auto;
  max-width: 540px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.8;
}

.actions {
  display: grid;
  gap: 12px;
  margin: 34px auto 0;
  max-width: 530px;
}

.action {
  min-height: 58px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(212,170,97,.28);
  border-radius: 2px;
  color: var(--text);
  background: var(--panel);
  text-decoration: none;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
  backdrop-filter: blur(12px);
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212,170,97,.75);
  background: rgba(212,170,97,.08);
  outline: none;
}

.action.primary {
  border-color: rgba(212,170,97,.7);
  background: linear-gradient(135deg, rgba(212,170,97,.19), rgba(212,170,97,.05));
  color: var(--gold-soft);
}

.arrow {
  color: var(--gold);
  font-size: 1.1rem;
}

.microcopy {
  margin: 34px 0 0;
  color: #79746d;
  font-family: Georgia, serif;
  font-style: italic;
  letter-spacing: .04em;
}

footer {
  min-height: 72px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #69645d;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dot {
  color: var(--gold);
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding-top: 28px;
  }

  .brand-logo {
    width: min(88vw, 360px);
  }

  h1 {
    letter-spacing: .11em;
  }

  .action {
    min-height: 56px;
    font-size: .72rem;
    letter-spacing: .09em;
  }

  footer {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
