:root {
  --bg: #09080d;
  --bg-2: #121019;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7efe8;
  --muted: #c8b8b0;
  --soft: #9f8d87;
  --peach: #ff9d7c;
  --gold: #efc16f;
  --rose: #f06d96;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
  --title-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Helvetica Neue", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 15%, rgba(240, 109, 150, 0.18), transparent 25%),
    radial-gradient(circle at 86% 10%, rgba(239, 193, 111, 0.15), transparent 23%),
    radial-gradient(circle at 68% 48%, rgba(255, 157, 124, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, #0a0910 100%);
  color: var(--text);
  font-family: var(--body-font);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.site-header,
.site-footer,
.hero,
.section {
  animation: rise 700ms ease both;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 16, 25, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.button,
.promo-card a,
.media-card,
.footer-links a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
  align-items: stretch;
  padding: 1.6rem 0 1rem;
}

.hero-copy,
.hero-panel,
.story-card,
.promo-card,
.media-card,
.site-footer {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-panel {
  border-radius: 2rem;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  min-height: 41rem;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto auto -6rem -3rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 109, 150, 0.14), transparent 70%);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.hero h1,
.section-heading h2,
.site-footer h2,
.hero-card h2 {
  margin: 0;
  font-family: var(--title-font);
  line-height: 0.94;
}

.hero h1 {
  max-width: 8.4ch;
  font-size: clamp(3.4rem, 7vw, 5.9rem);
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--peach), var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.story-card p,
.promo-card p,
.media-card p,
.footer-note,
.hero-card p,
.portrait-label,
.hero-tags span,
.stat-card span {
  color: var(--muted);
  line-height: 1.74;
}

.hero-text {
  max-width: 56ch;
  margin: 1.15rem 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.promo-card a:hover,
.media-card:hover {
  transform: translateY(-2px);
}

.button-solid {
  color: #140f14;
  background: linear-gradient(135deg, var(--gold), var(--peach));
}

.button-outline {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  display: grid;
  grid-template-rows: 1.2fr auto auto;
  gap: 1rem;
  min-height: 41rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.hero-orb {
  position: absolute;
  right: -4rem;
  top: -3rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), transparent 10%),
    radial-gradient(circle at center, rgba(239, 193, 111, 0.95), rgba(255, 157, 124, 0.72) 48%, rgba(240, 109, 150, 0.26) 68%, transparent 72%);
  filter: blur(8px);
  opacity: 0.86;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 100%),
    rgba(255, 255, 255, 0.03);
  min-height: 22rem;
  padding: 1rem;
}

.portrait-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 5, 10, 0.22));
}

.portrait-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(9, 8, 13, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-featured h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(239, 193, 111, 0.12);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  padding: 1rem 0.95rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 0.16rem;
}

.stat-card span {
  display: block;
  font-size: 0.8rem;
}

.section {
  margin-top: 1rem;
  padding: 1.55rem;
  border-radius: 2rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

.card-grid,
.media-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-card,
.story-card,
.media-card {
  border-radius: 1.55rem;
}

.promo-card,
.story-card,
.media-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
    rgba(255, 255, 255, 0.04);
}

.promo-card {
  padding: 1.35rem;
}

.promo-date,
.media-card span {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.promo-card h3,
.story-points h3,
.media-card strong {
  margin: 0.7rem 0 0.45rem;
  font-size: 1.55rem;
  font-family: var(--title-font);
}

.promo-card a {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.accent-peach {
  background:
    radial-gradient(circle at top right, rgba(255, 157, 124, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
    rgba(255, 255, 255, 0.04);
}

.accent-gold {
  background:
    radial-gradient(circle at top right, rgba(239, 193, 111, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
    rgba(255, 255, 255, 0.04);
}

.accent-rose {
  background:
    radial-gradient(circle at top right, rgba(240, 109, 150, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
    rgba(255, 255, 255, 0.04);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.story-card {
  padding: 1.45rem;
}

.story-main p {
  font-size: 1.02rem;
}

.story-points ul {
  margin: 1rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  display: block;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
}

.media-card strong {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .story-layout,
  .card-grid,
  .media-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 0.55rem;
  }

  .site-header {
    position: static;
    border-radius: 1.35rem;
    padding: 1rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: none;
  }
}
