:root {
  --obsidian: #070709;
  --obsidian-2: #101014;
  --charcoal: #2a2a32;
  --ruby: #9b1b3a;
  --ruby-glow: #c42a4d;
  --violet: #6a3a8a;
  --petal: #b56bc4;
  --gold: #c9a227;
  --gold-soft: #e4d19a;
  --cream: #f3ead9;
  --mute: #b7ad9c;
  --glass: rgba(255, 255, 255, 0.06);
  --line: rgba(201, 162, 39, 0.28);
  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--cream);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(155, 27, 58, 0.22), transparent 55%),
    radial-gradient(900px 420px at -10% 20%, rgba(106, 58, 138, 0.18), transparent 50%),
    var(--obsidian);
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.14;
  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='none' stroke='%23c9a227' stroke-width='0.6' d='M90 18c12 20 28 28 42 32-14 8-24 22-30 38 12-2 22-1 32 4-16 12-38 16-58 8-14-14-28-36-36-60 16 2 30-2 40-16 4-4 7-6 10-6z'/%3E%3Cpath fill='none' stroke='%23b56bc4' stroke-width='0.4' d='M40 110c8 12 18 16 28 18-10 6-16 16-20 26 8-1 14 0 22 3-12 8-26 10-40 4-8-10-18-24-24-40 10 2 20-1 26-10 3-3 5-4 8-1z'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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(--cream);
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

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

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

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

.mark__bloom {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--gold-soft), transparent 40%),
    radial-gradient(circle at 70% 65%, var(--petal), transparent 45%),
    radial-gradient(circle at 50% 50%, var(--ruby), var(--obsidian));
  box-shadow: 0 0 0 1px var(--line), 0 0 18px rgba(196, 42, 77, 0.35);
}

.mark__name {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.mark__place {
  display: block;
  font-size: 0.85rem;
  color: var(--mute);
  font-style: italic;
}

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

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--gold-soft);
  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;
}

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

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

.site-nav a[aria-current="page"] {
  color: var(--gold);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.btn {
  appearance: none;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--obsidian);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.4), 0 8px 24px rgba(155, 27, 58, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease, filter 0.35s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
  border-radius: 22px 40px 18px 36px;
  box-shadow:
    0 0 0 1px rgba(181, 107, 196, 0.5),
    0 0 28px rgba(196, 42, 77, 0.45),
    0 12px 30px rgba(106, 58, 138, 0.35);
  filter: saturate(1.15);
  color: var(--obsidian);
}

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

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

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 78vh;
  border-bottom: 1px solid var(--line);
}

.hero-split__copy {
  padding: 4.5rem 8vw 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(16, 16, 20, 0.4), transparent 55%),
    var(--obsidian-2);
}

.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero-split h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 1.2rem;
}

.hero-split__lede {
  font-size: 1.35rem;
  color: var(--mute);
  max-width: 36rem;
  font-style: italic;
}

.hero-split figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

.hero-split figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(7, 7, 9, 0.72);
  border: 1px solid var(--line);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  max-width: 16rem;
}

.section {
  padding: 4.2rem 0;
}

.section--glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-block: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.lede {
  color: var(--mute);
  max-width: 40rem;
  font-size: 1.28rem;
}

.card-grid,
.offer-grid,
.note-grid,
.team-grid,
.post-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

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

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

.card,
.panel,
.quote {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card img,
.hero-page img,
.post-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.75);
}

.card__body,
.panel {
  padding: 1.2rem 1.25rem 1.4rem;
}

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

.meta {
  color: var(--gold);
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
}

.quote {
  padding: 1.4rem 1.5rem;
}

.quote p {
  font-style: italic;
  font-size: 1.28rem;
  margin-top: 0;
}

.quote footer {
  color: var(--mute);
  font-style: normal;
}

.hero-page {
  position: relative;
}

.hero-page img {
  aspect-ratio: 21 / 8;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
}

.hero-page__caption {
  position: absolute;
  inset: auto 8vw 12% auto;
  max-width: 28rem;
}

.hero-page__caption h1 {
  margin: 0.3rem 0 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

th,
td {
  text-align: left;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--gold);
  font-weight: 500;
}

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

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

input,
textarea,
select {
  font: inherit;
  color: var(--cream);
  background: rgba(7, 7, 9, 0.55);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.65rem 0.8rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.field-error,
.form-status {
  color: #f3b4c2;
  font-size: 1rem;
  margin: 0.15rem 0 0;
}

.form-status.is-ok {
  color: var(--gold-soft);
}

.form-status[hidden],
.field-error:empty {
  display: none;
}

.cookie {
  position: fixed;
  z-index: 12;
  inset: auto 1rem 1rem 1rem;
}

.cookie__panel {
  width: min(720px, 100%);
  margin-inline: auto;
  background: linear-gradient(180deg, #16131c, #0c0b10);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(155, 27, 58, 0.12);
}

.cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}

.site-foot {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: #08080b;
}

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

.site-foot__brand {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.site-foot__label {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.site-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-foot li {
  margin: 0.35rem 0;
}

.site-foot a {
  color: var(--cream);
  text-decoration: none;
}

.site-foot a:hover {
  color: var(--gold-soft);
}

.site-foot__base {
  margin-top: 2rem;
  color: var(--mute);
  font-size: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold-soft);
}

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

@media (max-width: 880px) {
  .hero-split,
  .card-grid,
  .offer-grid,
  .team-grid,
  .post-grid,
  .site-foot__grid {
    grid-template-columns: 1fr;
  }

  .hero-split {
    min-height: 0;
  }

  .hero-split figure {
    min-height: 280px;
  }

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

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

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

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

  .hero-split__copy {
    padding: 2.4rem 1.2rem 2rem;
  }

  .hero-page img {
    aspect-ratio: 16 / 9;
  }
}
