:root {
  --black: #020202;
  --black-soft: #070707;
  --panel: #101010;
  --panel-soft: #181818;
  --gold: #c79a35;
  --gold-light: #f1d27a;
  --gold-muted: #8d6b2a;
  --text: #fff3d2;
  --muted: #c8bb9d;
  --line: rgba(199, 154, 53, 0.34);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 154, 53, 0.16), transparent 430px),
    linear-gradient(180deg, #000 0%, #050505 52%, #000 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 72px 0 86px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero-logo {
  width: min(460px, 82vw);
  margin: 0 auto 56px;
  filter: drop-shadow(0 0 24px rgba(241, 210, 122, 0.28));
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 34px;
  color: var(--gold-light);
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.96;
  text-shadow: 0 0 18px rgba(241, 210, 122, 0.36);
}

h2 {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  text-shadow: 0 0 14px rgba(241, 210, 122, 0.25);
}

.hero-text,
.content-copy p,
.future-section p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: clamp(19px, 2.4vw, 25px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 210, 122, 0.56);
  border-radius: 6px;
  padding: 13px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080808;
  box-shadow: 0 0 24px rgba(199, 154, 53, 0.24);
}

.button-secondary {
  background: transparent;
  color: var(--gold-light);
}

.button:hover {
  filter: brightness(1.12);
}

.content-row,
.edition-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.edition-highlight {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.content-copy {
  max-width: 560px;
}

.image-frame {
  margin: 0;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.image-frame figcaption {
  margin-top: 12px;
  color: #9d8e6e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.future-section {
  padding: 82px 0 72px;
  text-align: center;
}

.future-section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.future-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), var(--black-soft));
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer span,
.site-footer a {
  color: var(--gold-light);
  font-weight: 800;
}

@media (max-width: 860px) {
  .content-row,
  .edition-highlight,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .edition-highlight .image-frame {
    order: 2;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    min-height: auto;
    padding: 54px 0 66px;
  }

  .hero-logo {
    width: min(340px, 86vw);
    margin-bottom: 42px;
  }

  .content-row,
  .edition-highlight,
  .future-section {
    padding: 58px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}