:root {
  --bg: #0d0b0d;
  --bg-soft: #151116;
  --panel: #191419;
  --panel-hover: #211920;

  --text: #f1ebe6;
  --muted: #aa9fa5;
  --line: #332831;

  --accent: #9f294d;
  --accent-bright: #c5446c;

  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 5%, rgba(159, 41, 77, 0.13), transparent 31rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  background: rgba(13, 11, 13, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.91rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  min-height: 690px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding-top: 75px;
  padding-bottom: 100px;
}

.eyebrow {
  margin: 0 0 18px;

  color: var(--accent-bright);

  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 850px;

  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7.3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 570px;

  margin: 34px 0 0;

  color: var(--muted);

  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.primary-button {
  display: inline-flex;

  margin-top: 34px;
  padding: 13px 19px;

  border: 1px solid var(--accent);
  border-radius: 999px;

  background: var(--accent);
  color: white;

  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-button:hover {
  background: var(--accent-bright);
}

.stories-section {
  padding: 115px 0;

  background: var(--bg-soft);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading h2,
.about-section h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 28px;

  border: 1px solid var(--line);
  border-radius: 4px;

  background: var(--panel);

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: #5a3949;
  background: var(--panel-hover);
}

.story-number {
  margin-bottom: 72px;

  color: #655761;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.story-genre {
  margin: 0 0 9px;

  color: var(--accent-bright);

  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.story-card h3 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.story-card > p:not(.story-genre) {
  margin: 18px 0 30px;

  color: var(--muted);
}

.coming-soon {
  margin-top: auto;

  color: var(--text);

  font-size: 0.86rem;
  font-weight: 700;
}

.about-section {
  padding: 130px 0;
}

.about-section .narrow > p:last-child {
  margin-top: 30px;

  color: var(--muted);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.3vw, 1.52rem);
  line-height: 1.7;
}

.site-footer {
  padding: 27px 0;

  border-top: 1px solid var(--line);

  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  font-size: 0.8rem;
}

@media (max-width: 850px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 320px;
  }

  .story-number {
    margin-bottom: 42px;
  }
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

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