:root {
  --obsidian: #070708;
  --obsidian-2: #101014;
  --charcoal: #2a2a32;
  --ruby: #9b1b3a;
  --ruby-hot: #c42b52;
  --violet: #6e3a78;
  --petal: #b56aad;
  --gold: #c9a227;
  --gold-soft: #e8d5a3;
  --cream: #f4efe6;
  --muted: #b9b3c4;
  --glass: rgba(255, 255, 255, 0.04);
  --stroke: rgba(201, 162, 39, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Libre Baskerville", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(181, 106, 173, 0.06) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.05) 0 1px, transparent 2px);
  background-size: 140px 140px, 180px 180px;
  opacity: 0.7;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

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: #fff;
}

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

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.4rem 0.8rem;
  z-index: 20;
}

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

.site-header {
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.92), rgba(7, 7, 8, 0.65));
  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.85rem 0;
}

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

.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--gold-soft), var(--ruby) 45%, #1a0a12 70%);
  box-shadow: 0 0 12px rgba(196, 43, 82, 0.55);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

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

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

.nav-cta {
  border: 1px solid var(--stroke);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--stroke);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
}

.hero-spread {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 72vh;
  border-bottom: 1px solid var(--stroke);
}

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

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

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--obsidian), transparent 35%),
    linear-gradient(180deg, transparent 50%, rgba(7, 7, 8, 0.55)),
    radial-gradient(circle at 70% 40%, rgba(155, 27, 58, 0.25), transparent 50%);
}

.edition-chip {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  background: rgba(7, 7, 8, 0.78);
  border: 1px solid var(--stroke);
  padding: 0.9rem 1.1rem;
  max-width: 18rem;
}

.edition-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.section {
  padding: 4.2rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

h3 {
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
}

.panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    var(--obsidian-2);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 50px rgba(0,0,0,0.35);
}

.service-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.service-stage img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.8);
}

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

.offer-grid,
.card-grid,
.team-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  overflow: hidden;
}

.card img,
.portrait img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.75);
}

.card-body,
.pad {
  padding: 1.2rem 1.25rem 1.4rem;
}

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

.quote {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
}

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

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

.btn::before {
  content: "";
  position: absolute;
  inset: 40% 40%;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 65%);
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.45s ease, opacity 0.45s ease, inset 0.45s ease;
}

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

.btn:hover {
  transform: translateY(-1px) scale(1.03);
}

.btn-ruby {
  background: linear-gradient(180deg, var(--ruby-hot), var(--ruby));
  box-shadow: 0 0 0 0 rgba(196, 43, 82, 0.4);
}

.btn-ruby:hover {
  box-shadow: 0 0 0 8px rgba(155, 27, 58, 0.18), 0 8px 28px rgba(196, 43, 82, 0.35);
}

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

.btn-gold:hover {
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.16), 0 8px 24px rgba(201, 162, 39, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--cream);
}

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

.article-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.article-list img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

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

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1.1rem;
}

.legal .prose,
.narrow {
  max-width: 46rem;
}

.page-hero {
  padding: 3.2rem 0 1.2rem;
  border-bottom: 1px solid var(--stroke);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0.3rem 0 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

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

input,
textarea,
select {
  font: inherit;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  padding: 0.65rem 0.75rem;
  border-radius: 2px;
}

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

.field-error,
.form-banner {
  color: #f0b7c4;
  font-size: 0.88rem;
  min-height: 1.1em;
}

.form-banner[data-ok="true"] {
  color: #d7e7c7;
}

.success-box {
  border: 1px solid var(--stroke);
  padding: 1rem 1.1rem;
  background: rgba(110, 58, 120, 0.15);
}

.portrait img {
  height: 280px;
}

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

th, td {
  text-align: left;
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid var(--stroke);
}

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

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--stroke);
  background: #050506;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0;
}

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

.footer-tag,
.footer-grid p {
  color: var(--muted);
  margin: 0.2rem 0;
}

.footer-label {
  color: var(--gold) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem !important;
}

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

.footer-links a {
  color: var(--cream);
  text-decoration: none;
}

.footer-base {
  border-top: 1px solid var(--stroke);
  padding: 0.9rem 0 1.3rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  background: linear-gradient(180deg, rgba(16,16,20,0.96), #070708);
  border-top: 1px solid var(--stroke);
  padding: 1rem 0 1.2rem;
}

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

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

.cover-lg {
  width: 100%;
  height: min(52vh, 460px);
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.stack li {
  margin-bottom: 0.4rem;
}

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

@media (max-width: 900px) {
  .hero-spread,
  .service-stage,
  .split,
  .offer-grid,
  .card-grid,
  .team-grid,
  .footer-grid,
  .article-list article,
  .cookie-inner {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d0d12;
    border-bottom: 1px solid var(--stroke);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.2rem;
  }

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

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }
}
