:root {
  --obsidian: #070708;
  --obsidian-soft: #121214;
  --charcoal: #2c2c32;
  --ruby: #9b1b30;
  --ruby-glow: #c43a4f;
  --violet: #6b3a6e;
  --violet-soft: #8d5a90;
  --gold: #c9a96e;
  --gold-dim: #a88b52;
  --paper: #f3e9dc;
  --muted: #b8b0a6;
  --line: rgba(201, 169, 110, 0.28);
  --serif: "Source Serif 4", Georgia, serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(107, 58, 110, 0.22), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(155, 27, 48, 0.18), transparent 50%),
    var(--obsidian);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  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='%23c9a96e' stroke-width='0.6' d='M90 20c18 32 48 48 48 78s-22 52-48 52-48-22-48-52 30-46 48-78z'/%3E%3Cpath fill='none' stroke='%236b3a6e' stroke-width='0.5' d='M40 140c20-10 28-28 50-32 22 4 30 22 50 32'/%3E%3C/svg%3E");
  z-index: 0;
}

body > * {
  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.18em;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.5rem 1rem;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
}

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

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

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

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

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, var(--gold), transparent 28%),
    radial-gradient(circle at 50% 60%, var(--violet-soft), var(--ruby) 55%, #1a0a10 78%);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 8px 22px rgba(155, 27, 48, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text em {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.nav a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

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

.hero-copy {
  padding: 4.2rem 0 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.1rem;
}

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

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
}

.lede {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
}

.pull {
  border-left: 2px solid var(--ruby);
  margin: 0.4rem 0 0;
  padding-left: 1rem;
  font-style: italic;
  color: var(--paper);
  max-width: 46ch;
}

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

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--obsidian), transparent 35%),
    linear-gradient(180deg, transparent 40%, rgba(7, 7, 8, 0.55));
  mix-blend-mode: multiply;
}

.caption-float {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  background: rgba(7, 7, 8, 0.72);
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 4.2rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.section h2,
.page-hero h1,
.legal h1,
.article-head h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

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

.glass {
  background:
    linear-gradient(180deg, rgba(44, 44, 50, 0.55), rgba(18, 18, 20, 0.7));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(201, 169, 110, 0.12), 0 18px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(141, 90, 144, 0.25), transparent 65%);
  pointer-events: none;
}

.primary-offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

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

.primary-body {
  padding: 2rem;
}

.tag {
  display: inline-block;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--ruby-glow);
  margin-bottom: 0.6rem;
}

.price {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0.8rem 0 1.2rem;
}

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

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

.card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

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

.card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

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

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.quote {
  padding: 1.5rem 1.6rem;
}

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

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

.btn,
button.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-gold:hover {
  color: var(--obsidian);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(155, 27, 48, 0.12),
    0 0 28px rgba(201, 169, 110, 0.45),
    0 10px 24px rgba(107, 58, 110, 0.35);
  border-radius: 999px 40% 999px 45%;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(107, 58, 110, 0.35);
}

.page-hero {
  padding: 3.2rem 0 1.2rem;
}

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

.page-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.prose {
  max-width: 68ch;
}

.prose p,
.legal p,
.article-body p {
  margin: 0 0 1rem;
}

.prose h2,
.legal h2,
.article-body h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 2rem 0 0.8rem;
}

.list-plain {
  padding-left: 1.1rem;
}

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

.team-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

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

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

th {
  font-family: var(--display);
  color: var(--gold);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: 0;
}

.status {
  color: var(--ruby-glow);
  font-family: var(--display);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

label span {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--display);
}

input,
select,
textarea {
  width: 100%;
  background: var(--obsidian-soft);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
}

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

.field-error,
.form-error {
  color: #f0a3ad;
  font-size: 0.92rem;
  margin: 0.2rem 0 0;
}

.form-success {
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.8rem 0 1.4rem;
  margin-top: 2rem;
  background: rgba(7, 7, 8, 0.85);
}

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

.footer-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.footer-label {
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

address {
  font-style: normal;
}

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

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

.footer-bottom {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(7, 7, 8, 0.98));
  border-top: 1px solid var(--line);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.45);
}

.cookie-inner {
  padding: 1.1rem 0 1.2rem;
  display: grid;
  gap: 0.8rem;
}

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

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

.notfound h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin: 0 0 0.6rem;
}

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

@media (max-width: 900px) {
  .contact-layout,
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0.8rem;
  }

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

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-copy {
    padding: 2.2rem 0 1.6rem;
  }

  .hero-visual {
    min-height: 240px;
  }
}
