:root {
  --obsidian: #070709;
  --obsidian-2: #121218;
  --charcoal: #2a2a32;
  --ruby: #9b1b3a;
  --ruby-glow: #c41e4a;
  --violet: #6b3d8a;
  --violet-soft: #8a5aa8;
  --gold: #c9a227;
  --gold-dim: #8a7020;
  --paper: #f3e8de;
  --muted: #b8b0bc;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(155, 27, 58, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(107, 61, 138, 0.18), transparent 45%),
    var(--obsidian);
  color: var(--paper);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.65;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.15) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(155, 27, 58, 0.35) 0 40px, transparent 70px),
    radial-gradient(circle at 40% 80%, rgba(107, 61, 138, 0.3) 0 50px, transparent 90px);
  background-size: 180px 180px, 100% 100%, 100% 100%;
}

main,
.site-header,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

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

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

h1, h2, h3, .masthead__mark, .footer-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 1.6em 0 0.5em; }
h3 { font-size: 1.35rem; margin: 0 0 0.4em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  left: 0;
  z-index: 10;
}

.site-header {
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(180deg, rgba(18, 18, 24, 0.92), rgba(7, 7, 9, 0.75));
  backdrop-filter: blur(8px);
}

.masthead {
  text-align: center;
  padding: 1.4rem 1.2rem 0.6rem;
}

.masthead__place,
.masthead__line {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.masthead__mark {
  display: inline-block;
  margin: 0.35rem 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--paper);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  margin: 0 auto 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--gold-dim);
  padding: 0.45rem 1.1rem;
  cursor: pointer;
}

.nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0.4rem 1rem 1rem;
}

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

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

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav { display: none; }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: center; }
}

.edition,
.band,
.page-prose {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.edition__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.55rem 0;
  margin-bottom: 2rem;
}

.edition__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: start;
}

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

.kicker {
  margin: 0 0 0.4rem;
  color: var(--ruby-glow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.pull {
  margin: 1.2rem 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--violet);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--paper);
}

.byline {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-cta {
  display: inline-block;
  margin-top: 0.6rem;
}

.edition__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.edition__figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead {
  font-size: 1.2rem;
  color: #ddd4d8;
}

.lead-offer {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.6rem;
  background: var(--glass);
  border: 1px solid rgba(201, 162, 39, 0.22);
  padding: 1rem;
  box-shadow: 0 0 40px rgba(155, 27, 58, 0.08);
}

.lead-offer img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .lead-offer { grid-template-columns: 1fr; }
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card-list--two { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .card-list,
  .card-list--two { grid-template-columns: 1fr; }
}

.card {
  background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(0,0,0,0.25));
  border: 1px solid rgba(138, 90, 168, 0.25);
  overflow: hidden;
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(155, 27, 58, 0.35), transparent 65%);
  pointer-events: none;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__body { padding: 1rem 1.1rem 1.2rem; position: relative; z-index: 1; }

.card h2, .card h3 { font-size: 1.3rem; }
.card h2 a, .card h3 a { color: var(--paper); text-decoration: none; }
.card h2 a:hover, .card h3 a:hover { color: var(--gold); }

.price {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.quotes .quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .quotes .quote-grid { grid-template-columns: 1fr; }
}

.quotes blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
}

.quotes figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-head { margin-bottom: 1.8rem; }

.page-head--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.page-head--split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 800px) {
  .page-head--split { grid-template-columns: 1fr; }
}

.hero-figure { margin: 0 0 1.5rem; }
.hero-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.team {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.team img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.7rem;
  filter: contrast(1.05) saturate(0.85);
}

.team .role { color: var(--gold); margin: 0 0 0.4rem; font-size: 0.95rem; }

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

.table-wrap { overflow-x: auto; }

.edition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.edition-table th,
.edition-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.edition-table th {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.muted { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 0.25rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
}

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

.form {
  background: var(--glass);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 1.2rem;
}

.field { margin-bottom: 1rem; }

label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  background: #0e0e12;
  color: var(--paper);
  border: 1px solid var(--charcoal);
  padding: 0.55rem 0.65rem;
  font-family: inherit;
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold-dim);
}

.field-error, .form-status {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.field-error { color: #f0a0b4; }
.form-status { color: var(--gold); }
.form-status.is-error { color: #f0a0b4; }

.btn {
  display: inline-block;
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--obsidian);
  background: linear-gradient(180deg, #e8c96a, var(--gold));
  border: 0;
  padding: 0.55rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px 18px 2px 18px;
  transition: border-radius 0.45s ease, box-shadow 0.45s ease, transform 0.3s ease;
}

.btn:hover {
  color: var(--obsidian);
  border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.4),
    0 0 22px rgba(196, 30, 74, 0.45),
    0 0 40px rgba(138, 90, 168, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--gold-dim);
}

.btn--ghost:hover { color: var(--paper); }

.btn--gold { background: linear-gradient(180deg, #e8c96a, var(--gold)); }

.legal h2 { font-size: 1.35rem; }

.error-page { min-height: 50vh; padding-top: 4rem; }

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  background: #0b0b10;
  padding: 2.2rem 1rem 1.2rem;
}

.footer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-mark { font-size: 1.6rem; margin: 0 0 0.4rem; }
.footer-label { color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.75rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: 0.25rem 0; }
address { font-style: normal; }

.footer-copy {
  width: min(1120px, 100%);
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  width: min(420px, calc(100% - 2rem));
  background: linear-gradient(160deg, #16161e, #0c0c10);
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(155, 27, 58, 0.15);
  padding: 1rem 1.1rem;
}

.cookie-banner[hidden] { display: none; }

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

.cookie-banner p { margin: 0; font-size: 0.95rem; }
