:root {
  --obsidian: #070709;
  --obsidian-2: #101014;
  --charcoal: #2a2a30;
  --ruby: #9b1b30;
  --ruby-hot: #c4233d;
  --violet: #6b3fa0;
  --petal: #b57ad4;
  --gold: #c9a227;
  --gold-soft: #e3c56a;
  --paper: #f4efe8;
  --paper-dim: #cfc6b8;
  --glass: rgba(244, 239, 232, 0.06);
  --line: rgba(201, 162, 39, 0.28);
  --serif-display: "Cormorant Garamond", "Times New Roman", serif;
  --serif-body: "Source Serif 4", Georgia, serif;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.65;
  background-color: var(--obsidian);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(155, 27, 48, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(107, 63, 160, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(201, 162, 39, 0.08), transparent 45%);
  background-attachment: fixed;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M110 18c8 28 28 46 58 54-30 8-50 26-58 54-8-28-28-46-58-54 30-8 50-26 58-54z' fill='none' stroke='%23c9a227' stroke-width='0.7'/%3E%3Cpath d='M40 140c5 18 16 28 34 34-18 6-29 16-34 34-5-18-16-28-34-34 18-6 29-16 34-34z' fill='none' stroke='%236b3fa0' stroke-width='0.6'/%3E%3Cpath d='M170 130c4 14 12 22 26 26-14 4-22 12-26 26-4-14-12-22-26-26 14-4 22-12 26-26z' fill='none' stroke='%239b1b30' stroke-width='0.6'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--paper);
}

h1,
h2,
h3,
.wordmark-text {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 0 0 0.4em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

p {
  margin: 0 0 1em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.4rem 0.8rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.92), rgba(7, 7, 9, 0.72));
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
  text-decoration: none;
}

.wordmark-mark {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50% 50% 45% 55%;
  background:
    radial-gradient(circle at 35% 30%, var(--gold-soft), transparent 40%),
    radial-gradient(circle at 70% 70%, var(--petal), transparent 45%),
    var(--ruby);
  box-shadow: 0 0 16px rgba(155, 27, 48, 0.55);
}

.wordmark-text {
  font-size: 1.35rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-family: var(--serif-display);
  font-size: 1rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--paper-dim);
  text-decoration: none;
  font-size: 1.02rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--gold-soft);
}

.masthead {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  padding: 2.8rem 0 3.4rem;
  align-items: stretch;
}

.issue-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--gold);
  font-family: var(--serif-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.28rem;
  color: var(--paper-dim);
  max-width: 38ch;
}

.hero-feature {
  position: relative;
  min-height: 28rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(155, 27, 48, 0.12);
}

.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.5rem 1.2rem;
  background: linear-gradient(transparent, rgba(7, 7, 9, 0.92));
}

.kicker {
  display: inline-block;
  color: var(--petal);
  font-family: var(--serif-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.hero-caption h2 {
  font-size: 1.65rem;
  margin: 0 0 0.3rem;
}

.hero-caption p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.98rem;
}

.section {
  padding: 1.2rem 0 3.2rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  margin-bottom: 1.6rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card a.card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.card-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.45rem;
}

.card p {
  color: var(--paper-dim);
  margin-bottom: 0;
}

.story-list {
  display: grid;
  gap: 1.4rem;
}

.story-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.2rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
}

.story-row img {
  width: 100%;
  height: 7.4rem;
  object-fit: cover;
  border-radius: 12px;
}

.story-row h3 {
  margin: 0.15rem 0 0.4rem;
  font-size: 1.35rem;
}

.story-row h3 a {
  color: var(--paper);
  text-decoration: none;
}

.story-row h3 a:hover {
  color: var(--gold-soft);
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
}

.btn-bloom {
  background: linear-gradient(160deg, var(--ruby-hot), var(--ruby) 45%, #5c1020);
  color: var(--paper);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25), 0 8px 24px rgba(155, 27, 48, 0.35);
}

.btn-bloom:hover {
  transform: translateY(-2px) scale(1.03);
  border-radius: 22px 40px 22px 40px;
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 24px rgba(181, 122, 212, 0.4),
    0 12px 28px rgba(155, 27, 48, 0.45);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.page-hero {
  padding: 2.4rem 0 1.2rem;
}

.page-hero.with-image {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  height: 22rem;
  width: 100%;
  object-fit: cover;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 1.8rem;
}

.muted {
  color: var(--paper-dim);
}

.meta {
  color: var(--gold);
  font-size: 0.95rem;
}

.team-grid,
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.portrait {
  text-align: left;
}

.portrait img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  filter: contrast(1.05);
}

.signal {
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(107, 63, 160, 0.12), rgba(7, 7, 9, 0.4));
}

.signal .status {
  font-family: var(--serif-display);
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.98rem;
}

input,
textarea,
select {
  font: inherit;
  color: var(--paper);
  background: rgba(16, 16, 20, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.field-error,
.form-status {
  color: var(--gold-soft);
  font-size: 0.95rem;
  min-height: 1.2em;
}

.form-status[data-kind="error"] {
  color: #ffb4c0;
}

.form-status[data-kind="ok"] {
  color: #d6f0c9;
}

.legal-list {
  padding-left: 1.1rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 1.4rem;
  background: rgba(7, 7, 9, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 1.6rem;
}

.footer-brand {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.footer-label {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: var(--serif-display);
}

address {
  font-style: normal;
  color: var(--paper-dim);
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  margin-top: 1.6rem;
  color: var(--paper-dim);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  z-index: 12;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 42rem;
  margin-inline: auto;
}

.cookie-inner {
  background: linear-gradient(165deg, rgba(22, 12, 18, 0.96), rgba(7, 7, 9, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.15rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(107, 63, 160, 0.18);
}

.cookie-title {
  font-family: var(--serif-display);
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.include-list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--paper-dim);
}

.cover-wide {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 0.4rem 0 1.4rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 860px) {
  .masthead,
  .page-hero.with-image,
  .cards,
  .team-grid,
  .signal-grid,
  .footer-grid,
  .story-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    background: rgba(7, 7, 9, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.2rem 1.1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-feature {
    min-height: 18rem;
  }

  .story-row img {
    height: 12rem;
  }
}
