:root {
  --obsidian: #070709;
  --obsidian-soft: #121218;
  --charcoal: #2c2a32;
  --ruby: #9b1d32;
  --ruby-hot: #c42b45;
  --violet: #6e3d78;
  --violet-mist: #8a5a96;
  --gold: #c9a227;
  --gold-soft: #e4d5a3;
  --petal: #f3e8ef;
  --ink: #f6f0ea;
  --muted: #b7b0bc;
  --glass: rgba(255, 255, 255, 0.06);
  --hairline: rgba(201, 162, 39, 0.35);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(110, 61, 120, 0.22), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(155, 29, 50, 0.18), transparent 50%),
    var(--obsidian);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.09;
  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%3Cpath fill='%23c9a227' d='M110 18c6 18 18 32 38 42-20 10-32 24-38 42-6-18-18-32-38-42 20-10 32-24 38-42z'/%3E%3Cpath fill='%236e3d78' d='M36 128c3 10 10 18 22 24-12 6-19 14-22 24-3-10-10-18-22-24 12-6 19-14 22-24z'/%3E%3Cpath fill='%239b1d32' d='M184 96c3 9 9 16 20 21-11 5-17 12-20 21-3-9-9-16-20-21 11-5 17-12 20-21z'/%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.22em;
}

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

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

p {
  margin: 0 0 1rem;
}

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

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.94), rgba(7, 7, 9, 0.78));
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
}

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

.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;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  background: radial-gradient(circle at 40% 35%, var(--ruby-hot), var(--violet) 55%, #1a1014 70%);
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0 50%, 35% 35%);
  box-shadow: 0 0 16px rgba(196, 43, 69, 0.55);
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.nav-toggle {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

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

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

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

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0e0e14;
    border-bottom: 1px solid var(--hairline);
    padding: 0.6rem 1.2rem 1.2rem;
  }

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

  .site-nav[hidden] {
    display: none;
  }
}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }

  .site-nav[hidden] {
    display: block;
  }
}

main {
  padding-bottom: 4rem;
}

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

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

.hero-copy {
  padding: 4.5rem 8vw 3.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  margin: 0 0 1.2rem;
  font-style: italic;
}

.hero-copy .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-visual {
  position: relative;
  min-height: 22rem;
}

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

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

.hero-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  max-width: 16rem;
  padding: 0.9rem 1rem;
  background: rgba(7, 7, 9, 0.72);
  border: 1px solid var(--hairline);
  font-size: 0.88rem;
  color: var(--gold-soft);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.85rem 1.4rem;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.btn-ruby {
  background: linear-gradient(180deg, var(--ruby-hot), var(--ruby));
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--gold-soft);
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: radial-gradient(circle at 50% 50%, rgba(243, 232, 239, 0.55), transparent 42%);
  clip-path: polygon(50% 8%, 62% 38%, 94% 42%, 70% 62%, 78% 94%, 50% 76%, 22% 94%, 30% 62%, 6% 42%, 38% 38%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s ease, transform 0.45s ease;
  z-index: -1;
}

.btn::after {
  rotate: 22deg;
  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.45), transparent 46%);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(196, 43, 69, 0.35);
}

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

.hero-cta {
  margin-top: 1.8rem;
}

.section {
  padding: 4.5rem 0 1rem;
}

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

.intro-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 1.5rem 1.6rem;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.8);
  border: 1px solid var(--hairline);
}

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

.card {
  background: var(--obsidian-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.7);
}

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

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

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.evidence {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.35;
  border-left: 2px solid var(--ruby);
  padding-left: 1.2rem;
}

.cite {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 2.5rem 0 2rem;
  background: #050507;
}

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

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

.footer-place,
address {
  font-style: normal;
  color: var(--muted);
}

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

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

.footer-note {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 1.8rem auto 0;
  color: #7d7784;
  font-size: 0.82rem;
}

.page-head {
  padding: 3.2rem 0 1rem;
}

.page-head h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0.2rem 0 0.8rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}

.figure-wide {
  margin: 1.5rem 0 2rem;
}

.figure-wide img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  border: 1px solid var(--hairline);
}

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

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

input,
textarea,
select {
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 0.7rem 0.8rem;
}

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

.field-error,
.island-error {
  color: #ffb3c0;
  font-size: 0.85rem;
  margin: 0;
}

.form-status {
  padding: 0.8rem 1rem;
  border: 1px solid var(--hairline);
  background: rgba(110, 61, 120, 0.2);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  width: min(26rem, calc(100% - 2rem));
  background: linear-gradient(180deg, #16141c, #0c0b10);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cookie-inner {
  padding: 1.1rem 1.15rem 1.2rem;
}

.cookie-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

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

.legal-list {
  max-width: 44rem;
}

.note-list {
  display: grid;
  gap: 1.2rem;
}

.note {
  padding: 1.2rem 1.3rem;
  border-left: 2px solid var(--violet-mist);
  background: rgba(255, 255, 255, 0.03);
}

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

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold-soft);
  font-size: 0.92rem;
  margin-top: auto;
}

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

.lost h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0;
  font-style: italic;
}

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

@media (max-width: 900px) {
  .hero-editorial,
  .intro-split,
  .card-grid,
  .evidence,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 2.4rem 0 1.5rem;
  }
}
