:root {
  --obsidian: #070708;
  --obsidian-soft: #121216;
  --charcoal: #2a2a30;
  --ruby: #c41e3a;
  --ruby-deep: #8a1228;
  --violet: #6b3a7a;
  --petal: #b56bc2;
  --gold: #c9a227;
  --gold-soft: #e4c56a;
  --cream: #f4ead6;
  --mist: #cfc6b8;
  --glass: rgba(18, 18, 22, 0.72);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background-color: var(--obsidian);
  background-image:
    radial-gradient(ellipse at 12% 8%, rgba(196, 30, 58, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 0%, rgba(107, 58, 122, 0.2), transparent 46%),
    radial-gradient(ellipse at 50% 120%, rgba(201, 162, 39, 0.08), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath d='M90 18c6 18 14 28 32 34-18 6-26 16-32 34-6-18-14-28-32-34 18-6 26-16 32-34z' fill='%23c41e3a' fill-opacity='0.07'/%3E%3Cpath d='M40 110c4 12 8 18 20 22-12 4-16 10-20 22-4-12-8-18-20-22 12-4 16-10 20-22z' fill='%236b3a7a' fill-opacity='0.08'/%3E%3C/svg%3E");
  font-family: var(--serif);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--gold-soft);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.78));
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50% 50% 50% 0;
  background:
    radial-gradient(circle at 35% 35%, var(--gold-soft), var(--ruby) 55%, var(--violet));
  box-shadow: 0 0 16px rgba(196, 30, 58, 0.55);
}

.brand-text {
  font-size: 1.05rem;
}

.nav-toggle {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-family: inherit;
  cursor: pointer;
}

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

.site-nav a {
  color: var(--mist);
  text-decoration: none;
}

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

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex-basis: 100%;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.4rem 0 0.8rem;
    gap: 0.55rem;
  }

  .site-nav[hidden] {
    display: none;
  }
}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }

  .site-nav[hidden] {
    display: block;
  }
}

.editorial-hero {
  padding: 2.5rem 0 1rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
}

.issue-line {
  color: var(--petal);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  margin: 0.4rem 0 1rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--mist);
}

.hero-frame {
  position: relative;
  margin: 0;
}

.hero-frame img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: cover;
  border-radius: 1.5rem 0.3rem 1.8rem 0.4rem;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.25),
    0 30px 60px rgba(0, 0, 0, 0.45);
}

.hero-frame--short img {
  height: 320px;
}

.hero-frame figcaption {
  margin-top: 0.6rem;
  color: var(--mist);
  font-size: 0.92rem;
}

.btn {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.75rem 1.3rem;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, color 0.35s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn::before {
  background: currentColor;
  opacity: 0.15;
  border-radius: 999px;
}

.btn::after {
  background:
    radial-gradient(circle at 20% 80%, var(--petal), transparent 42%),
    radial-gradient(circle at 80% 20%, var(--gold), transparent 40%),
    linear-gradient(120deg, var(--ruby), var(--violet));
  clip-path: polygon(50% 0%, 82% 18%, 100% 50%, 82% 82%, 50% 100%, 18% 82%, 0% 50%, 18% 18%);
  transform: scale(0.4);
  opacity: 0;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--cream);
}

.btn:hover::after {
  transform: scale(1.15);
  opacity: 1;
}

.btn:hover::before {
  opacity: 0;
}

.btn-ruby {
  background: linear-gradient(180deg, var(--ruby), var(--ruby-deep));
  color: var(--cream);
  border-radius: 999px;
}

.btn-gold {
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 999px;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 234, 214, 0.35);
  border-radius: 999px;
}

.band {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.eyebrow,
.card-kicker,
.footer-label {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(181, 107, 194, 0.25);
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(244, 234, 214, 0.08);
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.offer-list a {
  display: grid;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--ruby);
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.12), transparent);
}

.offer-title {
  font-size: 1.25rem;
}

.offer-sum {
  color: var(--mist);
}

.offer-meta {
  color: var(--gold-soft);
}

.quote-band {
  background: linear-gradient(90deg, rgba(107, 58, 122, 0.28), rgba(196, 30, 58, 0.12));
  border-block: 1px solid rgba(201, 162, 39, 0.2);
  padding: 3rem 0;
}

blockquote {
  margin: 0;
  font-size: 1.45rem;
}

blockquote footer {
  margin-top: 1rem;
  color: var(--mist);
  font-size: 1rem;
}

.news-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.news-preview time,
.journal-row time {
  color: var(--petal);
  font-size: 0.85rem;
}

.news-preview h3,
.journal-row h2 {
  margin: 0.3rem 0;
}

.news-preview a,
.journal-row a,
.media-card a {
  color: var(--cream);
  text-decoration: none;
}

.text-link {
  color: var(--gold-soft);
}

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

.page-hero--wide h1 {
  max-width: 18ch;
}

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

.media-card {
  background: var(--obsidian-soft);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.16);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-body {
  padding: 1rem 1.1rem 1.2rem;
}

.bleed-figure {
  margin: 0 auto 2rem;
  width: min(1200px, calc(100% - 2rem));
}

.bleed-figure img {
  width: 100%;
  height: min(52vh, 460px);
  object-fit: cover;
  border-radius: 0.4rem 1.6rem;
}

.prose {
  max-width: 68ch;
}

.prose p,
.prose li {
  font-size: 1.08rem;
}

.legal {
  padding: 2.5rem 0 4rem;
}

.journal-list {
  display: grid;
  gap: 1.6rem;
}

.journal-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.journal-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.8rem;
}

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

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 1.2rem 0.2rem 1.4rem 0.3rem;
  box-shadow: 0 0 0 1px rgba(181, 107, 194, 0.3);
}

.role {
  color: var(--gold-soft);
}

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

.contact-form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--obsidian-soft);
  color: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 1rem;
}

.field-check input {
  width: auto;
  margin-right: 0.4rem;
}

.field-error,
.form-status {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.form-status.is-ok {
  color: #cde8c3;
}

.form-status.is-err {
  color: #ffb3b8;
}

.not-found {
  padding: 12vh 0 18vh;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  background: #050506;
}

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

.footer-brand {
  font-size: 1.2rem;
}

address {
  font-style: normal;
}

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

.footer-copy {
  margin-top: 2rem;
  color: var(--mist);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 30;
  max-width: 520px;
  margin-left: auto;
  background: rgba(12, 12, 14, 0.94);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

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

@media (max-width: 860px) {
  .editorial-grid,
  .split,
  .news-preview,
  .card-grid,
  .team-grid,
  .zone-grid,
  .journal-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame img {
    height: 52vh;
  }
}
