:root {
  --obsidian: #070708;
  --obsidian-2: #101014;
  --charcoal: #2a2a32;
  --ash: #8a8794;
  --paper: #f4efe8;
  --ruby: #9b1b30;
  --ruby-hot: #c4233e;
  --violet: #6b3a8c;
  --violet-soft: #8d5aad;
  --gold: #c9a227;
  --gold-dim: #8a7018;
  --glass: rgba(255, 255, 255, 0.04);
  --line: rgba(201, 162, 39, 0.28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--paper);
  background-color: var(--obsidian);
  background-image:
    radial-gradient(ellipse at 12% 0%, rgba(107, 58, 140, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 18%, rgba(155, 27, 48, 0.16), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23c9a227' stroke-opacity='0.06' stroke-width='0.8'%3E%3Cpath d='M140 20c-8 28-40 48-40 88 0 28 18 48 40 48s40-20 40-48c0-40-32-60-40-88z'/%3E%3Cpath d='M60 180c20-8 36-28 52-28 22 0 28 22 28 38 0 28-22 42-40 42-28 0-52-22-40-52z'/%3E%3Cpath d='M210 210c-18 4-40-10-46-28-6-20 8-36 26-40 22-4 40 12 44 30 4 22-8 34-24 38z'/%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(--paper);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.skip:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  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(--line);
}

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

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.35rem;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--sans);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

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

.nav-list a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  background: rgba(16, 16, 20, 0.75);
}

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

.site-footer h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: var(--gold);
}

.site-footer p,
.site-footer li {
  color: var(--ash);
  font-size: 0.95rem;
}

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

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

.legal-row {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  color: var(--ash);
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 0.6rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.lede {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #d9d2c7;
  max-width: 40rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 120%, var(--ruby) 0 28%, transparent 30%),
    radial-gradient(circle at 70% 120%, var(--violet) 0 32%, transparent 34%),
    linear-gradient(180deg, rgba(201, 162, 39, 0.2), transparent);
  transform: translateY(110%) scale(0.7);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: inherit;
}

.btn:hover {
  color: var(--paper);
  border-color: var(--ruby-hot);
}

.btn:hover::before {
  transform: translateY(0) scale(1);
}

.btn-solid {
  background: linear-gradient(180deg, #3a121c, #1a0b10);
}

.panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(155, 27, 48, 0.05)),
    var(--obsidian-2);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: calc(100vh - 4.5rem);
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}

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

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.15), rgba(7, 7, 8, 0.55)),
    radial-gradient(circle at 70% 80%, rgba(155, 27, 48, 0.25), transparent 45%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 8vw 3.5rem 3rem;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.4), transparent);
}

.hero-meta {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ash);
  font-size: 0.95rem;
}

.section {
  padding: 4.2rem 0;
}

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

.primary-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.primary-block img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  border-radius: 1.25rem;
  filter: saturate(0.8);
}

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

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

.card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  filter: saturate(0.78);
}

.card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.card-body p {
  color: var(--ash);
  flex: 1;
}

.tag {
  color: var(--violet-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.quote {
  padding: 1.4rem 1.6rem;
}

.quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  margin: 0 0 0.8rem;
}

.quote cite {
  color: var(--ash);
  font-style: normal;
  font-size: 0.9rem;
}

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

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

.page-hero img {
  border-radius: 1.25rem;
  max-height: 18rem;
  width: 100%;
  object-fit: cover;
}

.prose {
  max-width: 44rem;
}

.prose p {
  color: #ddd6cc;
}

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

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

.portrait {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
  filter: saturate(0.7) contrast(1.05);
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

input,
textarea,
select {
  font: inherit;
  color: var(--paper);
  background: rgba(7, 7, 8, 0.7);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.7rem 0.85rem;
}

.field-error,
.form-status {
  min-height: 1.2rem;
  font-size: 0.88rem;
}

.field-error {
  color: #f0a3ae;
}

.form-status.ok {
  color: #b7e0c2;
}

.form-status.bad {
  color: #f0a3ae;
}

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

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

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

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

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

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  padding: 1.1rem 1.2rem;
  max-width: 42rem;
  margin-inline: auto;
}

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

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

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

.island-error {
  color: #f0a3ae;
  padding: 0.6rem 0;
}

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

  .hero-copy {
    padding: 2rem 1.2rem 3rem;
  }

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

  .nav-list {
    display: none;
    position: absolute;
    right: 1rem;
    top: 3.6rem;
    background: var(--obsidian-2);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    flex-direction: column;
    min-width: 12rem;
  }

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