:root {
  --obsidian: #070709;
  --obsidian-2: #121016;
  --charcoal: #2a242c;
  --ruby: #c41e3a;
  --ruby-deep: #8b1430;
  --violet: #6b3a78;
  --petal: #b56bb0;
  --gold: #d4af37;
  --gold-soft: #c9a227;
  --cream: #f4ead8;
  --mist: #cfc6c0;
  --glass: rgba(18, 16, 22, 0.82);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.65;
  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, 120, 0.22), transparent 46%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08), transparent 28%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23d4af37' stroke-opacity='0.06' stroke-width='1'%3E%3Cpath d='M110 12c8 28 28 48 56 56-28 8-48 28-56 56-8-28-28-48-56-56 28-8 48-28 56-56z'/%3E%3Cpath d='M40 70c4 14 14 24 28 28-14 4-24 14-28 28-4-14-14-24-28-28 14-4 24-14 28-28z'/%3E%3Cpath d='M170 140c4 14 14 24 28 28-14 4-24 14-28 28-4-14-14-24-28-28 14-4 24-14 28-28z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
}

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

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

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

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

.skip:focus {
  top: 0.6rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.96), rgba(7, 7, 9, 0.78));
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(10px);
}

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

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

.nav {
  display: flex;
  gap: 1.15rem;
}

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

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

.nav-toggle {
  display: none;
  font-family: inherit;
  font-size: 1rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.35rem 0.8rem;
  cursor: pointer;
}

.hero-spread {
  display: grid;
  grid-template-columns: 4.2rem 1fr 1fr;
  min-height: 78vh;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.hero-kicker {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
  border-right: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(18, 16, 22, 0.55);
}

.hero-copy {
  padding: 4.5rem 2.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(139, 20, 48, 0.22), transparent 55%),
    var(--obsidian-2);
}

.hero-copy p.dateline {
  margin: 0 0 1rem;
  color: var(--petal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy .lede {
  margin: 1.3rem 0 0;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--mist);
  max-width: 36ch;
}

.hero-copy .text-link {
  margin-top: 1.8rem;
  align-self: flex-start;
}

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

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(0.85) contrast(1.08);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(196, 30, 58, 0.28), transparent 45%),
    linear-gradient(to top, rgba(7, 7, 9, 0.45), transparent 40%);
  pointer-events: none;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
  font-weight: 600;
}

.muted {
  color: var(--mist);
}

.primary-offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.primary-offer img {
  border-radius: 1.5rem 0.3rem 1.5rem 0.3rem;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 24px 50px rgba(0, 0, 0, 0.45);
}

.price-line {
  color: var(--gold);
  font-size: 1.35rem;
  margin: 0.4rem 0 1rem;
}

.btn {
  font-family: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  border: 0;
  padding: 0.7rem 1.35rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  background: linear-gradient(180deg, var(--ruby), var(--ruby-deep));
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, letter-spacing 0.35s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 18px;
  height: 18px;
  border-radius: 80% 0 70% 20%;
  background: radial-gradient(circle, rgba(181, 107, 176, 0.95), transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.btn::before {
  left: 8px;
  top: -6px;
  transform: rotate(-20deg) scale(0.4);
}

.btn::after {
  right: 10px;
  bottom: -8px;
  transform: rotate(40deg) scale(0.4);
}

.btn:hover {
  transform: translateY(-2px);
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.7),
    0 0 28px rgba(196, 30, 58, 0.45),
    0 12px 24px rgba(0, 0, 0, 0.35);
}

.btn:hover::before,
.btn:hover::after {
  opacity: 1;
  transform: rotate(12deg) scale(1.4);
}

.btn-gold {
  background: linear-gradient(180deg, #e1c15a, var(--gold-soft));
  color: var(--obsidian);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: none;
  color: var(--cream);
}

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

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

.card {
  background: var(--glass);
  border: 1px solid rgba(212, 175, 55, 0.14);
  padding: 0 0 1.2rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.card h3,
.card h2 {
  margin: 1rem 1.1rem 0.4rem;
  font-size: 1.45rem;
}

.card p,
.card .meta {
  margin: 0 1.1rem 0.7rem;
}

.pullquote {
  margin: 3rem auto;
  width: min(720px, 100%);
  font-size: 1.8rem;
  font-style: italic;
  text-align: center;
  color: var(--cream);
  position: relative;
  padding: 1.5rem 1rem;
}

.pullquote::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 70px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

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

.voice {
  border-left: 2px solid var(--ruby);
  padding: 0.2rem 0 0.2rem 1.2rem;
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.12), transparent 70%);
}

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

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

.prose {
  max-width: 68ch;
}

.prose p + p,
.prose ul {
  margin-top: 1rem;
}

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

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 40% 12% 30% 12%;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

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

.agenda-item {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.2rem;
  padding: 1.1rem 1.2rem;
  background: rgba(18, 16, 22, 0.7);
  border: 1px solid rgba(181, 107, 176, 0.18);
}

.agenda-item time {
  color: var(--gold);
  font-size: 1.15rem;
}

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

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

input,
select,
textarea {
  font-family: inherit;
  font-size: 1.1rem;
  padding: 0.6rem 0.7rem;
  color: var(--cream);
  background: rgba(7, 7, 9, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

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

.field-error,
.form-error,
.island-error {
  color: #ffb3b8;
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
}

.form-ok {
  color: #d6e8b0;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(7, 7, 9, 0.88);
}

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

.footer-brand {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.footer-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
}

address {
  font-style: normal;
}

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

.footer-links li {
  margin: 0.3rem 0;
}

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

.cookie-banner {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(28rem, calc(100% - 2rem));
  background: linear-gradient(180deg, #161218, #0c0b0e);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 1.1rem 1.2rem;
  z-index: 40;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(107, 58, 120, 0.18);
}

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

.legal-list li {
  margin: 0.6rem 0;
}

.meta {
  color: var(--petal);
  font-size: 1rem;
}

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

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

  .hero-kicker {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    padding: 0.6rem 0;
    letter-spacing: 0.18em;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 1.2rem;
    left: 1.2rem;
    flex-direction: column;
    background: #120f14;
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1rem;
  }

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

  .hero-copy {
    padding: 2.4rem 1.2rem;
  }
}
