:root {
  --ink: #12110f;
  --ink-soft: #24211c;
  --gold: #c6973c;
  --gold-light: #e7c77f;
  --paper: #f7f3eb;
  --muted: #b9b1a2;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--ink); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 18%, rgba(198,151,60,.15), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(198,151,60,.08), transparent 30%),
    var(--ink);
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

.page-shell { min-height: 100vh; padding: 24px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 48px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(24px, 5vw, 68px);
  border: 1px solid rgba(231,199,127,.28);
  background: linear-gradient(145deg, rgba(36,33,28,.95), rgba(18,17,15,.98));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(231,199,127,.09);
  pointer-events: none;
}

.ornament {
  position: absolute;
  z-index: -1;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(198,151,60,.14);
  transform: rotate(45deg);
  pointer-events: none;
}

.ornament-one { top: -240px; left: -120px; }
.ornament-two { right: -230px; bottom: -190px; }

.brand img {
  display: block;
  width: clamp(170px, 25vw, 280px);
  height: auto;
  object-fit: contain;
  object-position: right center;
}

.content {
  align-self: center;
  max-width: 880px;
  padding: clamp(48px, 8vh, 96px) 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: .9rem;
  letter-spacing: .14em;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 span { color: var(--gold); }

.mission {
  max-width: 800px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: #ddd6c9;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 2;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 38px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  color: var(--ink);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.primary-action:hover { background: #f3d998; transform: translateY(-2px); }
.primary-action:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }

.status { color: var(--muted); font-size: .92rem; }
.status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198,151,60,.12);
}

footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(231,199,127,.18);
  color: var(--muted);
  font-size: .82rem;
}

footer p { margin: 0; }
.registration { color: #d1c8b8; }
.copyright { margin-inline-start: auto; }

@media (max-width: 700px) {
  .page-shell { padding: 0; }
  .hero { min-height: 100vh; padding: 30px 24px; border: 0; }
  .hero::before { inset: 8px; }
  .brand img { width: 190px; }
  .content { padding: 54px 0; }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .mission { line-height: 1.9; }
  .actions { align-items: stretch; flex-direction: column; }
  .primary-action { width: 100%; }
  footer { align-items: flex-start; flex-direction: column; line-height: 1.7; }
  .copyright { margin-inline-start: 0; }
}

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