:root {
  --obsidian: #0a0a0b;
  --obsidian-2: #121214;
  --charcoal: #2a2a2e;
  --ash: #8a8490;
  --petal: #c9b8d4;
  --ivory: #f4efe8;
  --ruby: #9b1d3a;
  --ruby-hot: #c41e3a;
  --violet: #6b3a7a;
  --violet-soft: #8b5a9a;
  --gold: #c9a86c;
  --gold-dim: #8a7344;
  --glass: rgba(18, 18, 20, 0.72);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Source Serif 4", "Georgia", serif;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(155, 29, 58, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(107, 58, 122, 0.22), transparent 38%),
    radial-gradient(circle at 70% 90%, rgba(201, 168, 108, 0.08), transparent 36%),
    var(--obsidian);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    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='%23c9a86c' stroke-opacity='0.12' stroke-width='0.8'%3E%3Cpath d='M110 18c4 28 22 48 50 56-28 6-46 28-50 56-4-28-22-50-50-56 28-8 46-28 50-56z'/%3E%3Cpath d='M40 150c2 14 11 24 25 28-14 3-23 14-25 28-2-14-11-25-25-28 14-4 23-14 25-28z'/%3E%3Cpath d='M180 40c2 12 9 20 21 24-12 2-19 12-21 24-2-12-9-22-21-24 12-4 19-12 21-24z'/%3E%3C/g%3E%3C/svg%3E");
}

main { position: relative; z-index: 1; }

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

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

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

.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: 20;
  background: linear-gradient(180deg, rgba(10,10,11,0.94), rgba(10,10,11,0.78));
  border-bottom: 1px solid rgba(201, 168, 108, 0.18);
  backdrop-filter: blur(10px);
}

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

.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory);
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, var(--ruby-hot), var(--violet) 55%, #000 80%);
  box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(155, 29, 58, 0.45);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em; }
.brand-text em { font-style: italic; font-size: 0.8rem; color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(201, 168, 108, 0.35);
  width: 2.6rem;
  height: 2.4rem;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--gold);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}
.site-nav a {
  color: var(--petal);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--gold); }

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 78vh;
  border-bottom: 1px solid rgba(201, 168, 108, 0.16);
}

.hero-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, rgba(10,10,11,0.55) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.15), rgba(10,10,11,0.55)),
    radial-gradient(circle at 30% 70%, rgba(155, 29, 58, 0.28), transparent 50%);
}

.hero-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  max-width: 22rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory);
  text-shadow: 0 2px 16px #000;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.2rem 2.4rem 3.2rem 2rem;
  background:
    linear-gradient(180deg, rgba(18,18,20,0.4), rgba(10,10,11,0.2));
  border-left: 1px solid rgba(201, 168, 108, 0.12);
}

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

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

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  margin: 0 0 1rem;
  font-style: italic;
  font-weight: 500;
}

.lede {
  color: var(--petal);
  font-size: 1.12rem;
  margin: 0 0 1.6rem;
}

.place-line {
  margin: 0 0 1.8rem;
  color: var(--ash);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.4s ease;
  pointer-events: none;
}
.btn::before { left: 0.55rem; top: 50%; background: rgba(201, 168, 108, 0.7); }
.btn::after { right: 0.55rem; top: 38%; background: rgba(196, 30, 58, 0.65); border-radius: 50% 50% 0 50%; }

.btn:hover::before,
.btn:hover::after { transform: rotate(-20deg) scale(1.4); }
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(180deg, #d4b67a, var(--gold) 40%, var(--gold-dim));
  color: #1a1208;
  box-shadow: 0 0 0 1px rgba(201,168,108,0.4), 0 10px 30px rgba(155, 29, 58, 0.25);
}
.btn-gold:hover { color: #1a1208; box-shadow: 0 0 24px rgba(201,168,108,0.45); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(201, 168, 108, 0.45);
}
.btn-ghost:hover { color: var(--gold); }

.section { padding: 4.2rem 0; }
.section-tight { padding: 2.4rem 0 4rem; }

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

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

.panel {
  background: linear-gradient(160deg, rgba(42,42,46,0.55), rgba(10,10,11,0.7));
  border: 1px solid rgba(201, 168, 108, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 20px 50px rgba(0,0,0,0.35);
  border-radius: 1.2rem;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(155,29,58,0.35), transparent 65%);
  pointer-events: none;
}

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

.primary-block img {
  border-radius: 1.1rem;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(201,168,108,0.2);
}

.offer-grid,
.card-grid,
.note-grid,
.team-grid {
  display: grid;
  gap: 1.2rem;
}
.offer-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.6rem; }
.card-grid { grid-template-columns: repeat(2, 1fr); margin-top: 1.6rem; }
.note-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.6rem; }
.team-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.6rem; }

.card {
  background: rgba(18, 18, 20, 0.65);
  border: 1px solid rgba(139, 90, 154, 0.22);
  border-radius: 1.05rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card img { aspect-ratio: 16/10; object-fit: cover; filter: saturate(0.75); }
.card-body { padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.card h3 { margin: 0; font-size: 1.45rem; }
.card p { margin: 0; color: var(--petal); }
.price { color: var(--gold); font-family: var(--serif); margin-top: auto; padding-top: 0.7rem; }

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}
blockquote {
  margin: 0;
  padding: 1.3rem 1.2rem;
  background: rgba(10,10,11,0.5);
  border-left: 2px solid var(--ruby);
  border-radius: 0 0.8rem 0.8rem 0;
}
blockquote p { margin: 0 0 0.8rem; font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
blockquote footer { color: var(--ash); font-size: 0.9rem; }

.page-hero {
  padding: 3.4rem 0 1.2rem;
}
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 0.3rem 0 0.8rem; }

.prose { max-width: 44rem; }
.prose p { color: var(--petal); }
.prose ul { color: var(--petal); }

.legal .prose { max-width: 48rem; }

.table-wrap { overflow-x: auto; margin-top: 1.4rem; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
th, td {
  text-align: left;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid rgba(201,168,108,0.16);
  vertical-align: top;
}
th { font-family: var(--serif); color: var(--gold); font-weight: 600; }

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}
label { display: grid; gap: 0.3rem; font-family: var(--serif); }
input, select, textarea {
  font: inherit;
  background: rgba(10,10,11,0.8);
  color: var(--ivory);
  border: 1px solid rgba(201,168,108,0.28);
  border-radius: 0.55rem;
  padding: 0.65rem 0.75rem;
}
textarea { min-height: 8rem; resize: vertical; }
.field-error { color: #e8a0b0; font-size: 0.9rem; min-height: 1.1em; }
.form-banner {
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
}
.form-banner.ok {
  background: rgba(107, 58, 122, 0.35);
  border: 1px solid var(--gold);
}
.form-banner.err {
  background: rgba(155, 29, 58, 0.3);
  border: 1px solid var(--ruby-hot);
}

.includes { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--petal); }

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  border-top: 1px solid rgba(201,168,108,0.18);
  background: linear-gradient(180deg, rgba(18,18,20,0.5), #000);
  padding: 2.6rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-brand { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 0.4rem; }
.footer-label { font-family: var(--serif); color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0.25rem 0; }
.footer-links a { color: var(--petal); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-note { margin-top: 1.6rem; color: var(--ash); font-size: 0.88rem; }

.cookie-banner {
  position: fixed;
  z-index: 40;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(18,18,20,0.92), rgba(10,10,11,0.96));
  border-top: 1px solid rgba(201,168,108,0.28);
  box-shadow: 0 -20px 50px rgba(0,0,0,0.45);
}
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 1.15rem;
}
.cookie-actions { display: flex; gap: 0.5rem; }

.portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.8);
  border: 1px solid rgba(201,168,108,0.35);
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}
.error-page h1 { font-size: 3rem; font-style: italic; }

@media (max-width: 900px) {
  .hero-split,
  .primary-block,
  .offer-grid,
  .card-grid,
  .note-grid,
  .team-grid,
  .quote-row,
  .footer-grid,
  .cookie-inner,
  .contact-split {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: rgba(10,10,11,0.97);
    padding: 1rem 1.2rem 1.3rem;
    flex-direction: column;
    border-bottom: 1px solid rgba(201,168,108,0.2);
  }
  .site-nav.is-open { display: flex; }
  .hero-copy { padding: 2rem 0 2.6rem; }
  .hero-split { min-height: 0; }
}
