:root {
  --obsidian: #070708;
  --obsidian-2: #101014;
  --charcoal: #1c1c22;
  --charcoal-2: #2a2a32;
  --ruby: #9b1d3a;
  --ruby-hot: #c42b4a;
  --petal: #6d3a86;
  --petal-light: #a56bc4;
  --gold: #c9a227;
  --gold-soft: #e4c56a;
  --ivory: #f4ead8;
  --mist: #c8c2b8;
  --glass: rgba(16, 16, 20, 0.82);
  --stroke: rgba(201, 162, 39, 0.28);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background-color: var(--obsidian);
  background-image:
    radial-gradient(ellipse at 12% 8%, rgba(155, 29, 58, 0.22), transparent 42%),
    radial-gradient(ellipse at 88% 0%, rgba(109, 58, 134, 0.2), transparent 46%),
    radial-gradient(circle at 70% 80%, rgba(201, 162, 39, 0.08), transparent 38%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='none' stroke='%23c9a227' stroke-opacity='0.07' d='M90 12c18 28 30 40 54 52-24 12-36 24-54 52-18-28-30-40-54-52 24-12 36-24 54-52z'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

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

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

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

h1,
h2,
h3,
.brand-name,
.footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  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.5rem);
  margin: 0 0 0.5em;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

.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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, var(--gold-soft), var(--ruby) 42%, #1a0a12 70%);
  box-shadow: 0 0 16px rgba(196, 43, 74, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
}

.brand-place {
  font-size: 0.78rem;
  color: var(--mist);
}

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

.site-nav a {
  color: var(--ivory);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.15rem;
}

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

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--charcoal);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ivory);
  position: relative;
  margin: 0 auto;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.glass {
  background: linear-gradient(160deg, rgba(42, 42, 50, 0.72), rgba(12, 12, 14, 0.88));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(244, 234, 216, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.edition-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.2rem;
  align-items: end;
  padding: 3.2rem 0 2.4rem;
}

.edition-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.22rem;
  color: var(--mist);
  max-width: 38rem;
}

.hero-frame {
  position: relative;
  overflow: hidden;
}

.hero-frame img {
  width: 100%;
  height: min(28rem, 70vh);
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.45rem 0.7rem;
  background: rgba(7, 7, 8, 0.72);
  font-size: 0.85rem;
  color: var(--mist);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--serif);
  font-size: 1.12rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--ivory);
  background: var(--charcoal);
  transition: color 0.25s ease, transform 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 40%, rgba(196, 43, 74, 0.85), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(165, 107, 196, 0.7), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.55), transparent 38%);
  transform: scale(0.35);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scale(1);
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(180deg, #d4b84a, #9a7918);
  color: var(--obsidian);
  border-color: #efd98a;
}

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

.section {
  padding: 2.6rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.6rem;
}

.eyebrow {
  color: var(--petal-light);
  font-family: var(--serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.primary-offer {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
}

.primary-offer img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.pad {
  padding: 1.5rem 1.6rem;
}

.offer-grid,
.card-grid,
.team-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

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

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.card-body,
.quote,
.legal {
  padding: 1.15rem 1.25rem 1.3rem;
}

.meta {
  color: var(--gold-soft);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.quote {
  font-style: italic;
  font-size: 1.2rem;
}

.quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.prose p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--stroke);
  background: rgba(7, 7, 8, 0.88);
}

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

.footer-brand {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

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

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

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

.footer-end {
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 0.9rem 0 1.3rem;
  color: var(--mist);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  width: min(34rem, calc(100% - 2rem));
  background: var(--charcoal);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.cookie-inner {
  width: auto;
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
}

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

form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--serif);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #0d0d10;
  color: var(--ivory);
  font: inherit;
  padding: 0.65rem 0.75rem;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-error,
.form-error {
  color: #f0a0b0;
  font-size: 0.92rem;
  margin: 0;
}

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

.legal h2 {
  margin-top: 1.4rem;
}

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

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

.page-hero img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.price-line {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.not-found {
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

@media (max-width: 900px) {
  .edition-hero,
  .primary-offer,
  .offer-grid,
  .card-grid,
  .team-grid,
  .split,
  .footer-grid,
  .page-hero.with-image {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--obsidian-2);
    border-bottom: 1px solid var(--stroke);
    padding: 0.6rem 1rem 1rem;
  }

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

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

  .site-header {
    position: sticky;
  }

  body {
    background-attachment: scroll;
  }
}
