:root {
  --obsidian: #070709;
  --glass: #121216;
  --charcoal: #2c2c32;
  --ruby: #9b1b30;
  --ruby-glow: #c43a4e;
  --violet: #6e3d78;
  --petal: #b57bc0;
  --gold: #c4a35a;
  --gold-soft: #e0c98a;
  --cream: #f4efe6;
  --muted: #b8b0a4;
  --line: rgba(196, 163, 90, 0.28);
  --font-serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-ui: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(155, 27, 48, 0.18), transparent 50%),
    radial-gradient(900px 400px at 100% 0%, rgba(110, 61, 120, 0.2), transparent 45%),
    var(--obsidian);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.09;
  background-image: 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='%23c4a35a' d='M90 12c6 22 22 38 44 44-22 6-38 22-44 44-6-22-22-38-44-44 22-6 38-22 44-44z'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: screen;
  z-index: 0;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--glass);
  color: var(--cream);
  padding: 0.5rem 1rem;
}

.wrap {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 9, 0.72);
  backdrop-filter: blur(12px);
}

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

.brand {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

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

.nav-list a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.05rem;
}

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

.issue-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
}

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

.masthead-kicker {
  color: var(--petal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 0.8rem;
}

.masthead h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1rem;
  font-style: italic;
}

.pullquote {
  font-size: 1.35rem;
  color: var(--muted);
  border-left: 2px solid var(--ruby);
  padding-left: 1rem;
  margin: 0 0 1.4rem;
  font-style: italic;
}

.masthead-figure {
  position: relative;
}

.masthead-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(196, 163, 90, 0.25);
}

.caption {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--obsidian);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 0;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px 40px 999px 40px;
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  border-radius: 40px 999px 40px 999px;
  box-shadow:
    0 0 24px rgba(196, 58, 78, 0.45),
    0 0 40px rgba(181, 123, 192, 0.25);
  color: var(--obsidian);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1px var(--line);
}

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

.section {
  padding: 3rem 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 0.6rem;
}

.lede {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1.8rem;
}

.primary-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: linear-gradient(160deg, rgba(18, 18, 22, 0.95), rgba(155, 27, 48, 0.12));
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.primary-offer img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.price {
  color: var(--gold);
  letter-spacing: 0.04em;
}

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

.card {
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid var(--line);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

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

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.quotes {
  display: grid;
  gap: 1rem;
}

.quote {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 1.25rem;
  font-style: italic;
}

.quote footer {
  margin-top: 0.5rem;
  font-style: normal;
  color: var(--gold);
  font-size: 1rem;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  margin: 0 0 0.7rem;
  font-style: italic;
}

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

.prose p {
  max-width: 44rem;
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}

.meta {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

label {
  display: grid;
  gap: 0.3rem;
}

input,
textarea,
select {
  font: inherit;
  color: var(--cream);
  background: #0e0e12;
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  border-radius: 2px;
}

.field-error {
  color: #f0a0aa;
  font-size: 0.95rem;
  min-height: 1.1em;
}

.form-status {
  min-height: 1.4em;
  color: var(--gold-soft);
}

.form-status.is-error {
  color: #f0a0aa;
}

.legal p,
.legal li {
  color: var(--muted);
}

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

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

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

.calendar li {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  background: rgba(18, 18, 22, 0.8);
}

.calendar time,
.calendar .type {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  margin-top: 2rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

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

.footer-grid h2 {
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.cookie-banner {
  position: fixed;
  z-index: 50;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  background: linear-gradient(180deg, #16161c, #0c0c10);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(155, 27, 48, 0.15);
}

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

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

.cookie-error {
  color: #f0a0aa;
  margin: 0.4rem 0 0;
}

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

.not-found h1 {
  font-size: 3rem;
  font-style: italic;
  margin: 0 0 0.6rem;
}

@media (max-width: 860px) {
  .masthead,
  .primary-offer,
  .card-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .masthead-figure img,
  .primary-offer img,
  .article-cover {
    height: 240px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #101014;
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.2rem 1.2rem;
  }

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

  .nav-list {
    flex-direction: column;
  }
}
