:root {
  --obsidian: #070709;
  --glass: #121217;
  --charcoal: #2a2a32;
  --ruby: #9b1b3a;
  --ruby-glow: #c41e4a;
  --violet: #6b3fa0;
  --petal: #b48ad4;
  --gold: #c9a227;
  --gold-soft: #e2c56a;
  --cream: #f4efe8;
  --muted: #b9b0a4;
  --line: rgba(201, 162, 39, 0.28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --body: "EB Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(155, 27, 58, 0.18), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(107, 63, 160, 0.16), transparent 50%),
    var(--obsidian);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(7, 7, 9, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark {
  width: 1.15rem;
  height: 1.55rem;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 40% 30%, var(--gold-soft), var(--ruby) 55%, #3a0b18);
  box-shadow: 0 0 12px rgba(155, 27, 58, 0.55);
}

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

.nav {
  display: flex;
  gap: 1.25rem;
}

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

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

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

.hero-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 3.5rem 0 2.5rem;
}

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

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  border-radius: 2px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(155, 27, 58, 0.28), transparent 45%),
    linear-gradient(180deg, transparent 40%, rgba(7, 7, 9, 0.55));
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
}

.gold-rule {
  width: 4.5rem;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.4rem;
}

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

.text-cta {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
}

.section {
  padding: 3.2rem 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 1.5rem;
}

.card-grid,
.offer-grid,
.news-grid,
.team-grid,
.quote-grid {
  display: grid;
  gap: 1.25rem;
}

.offer-grid {
  grid-template-columns: 1fr 1fr;
}

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

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

.glass-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(155, 27, 58, 0.05) 40%, rgba(7, 7, 9, 0.9)),
    var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 12rem;
  height: 12rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.18), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(180, 138, 212, 0.16), transparent 50%);
  opacity: 0.35;
  transform: rotate(18deg);
  pointer-events: none;
}

.glass-card h2,
.glass-card h3 {
  font-family: var(--serif);
  margin: 0.4rem 0 0.7rem;
}

.glass-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  margin: -1.4rem -1.4rem 1rem;
  width: calc(100% + 2.8rem);
  max-width: none;
}

.portrait {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  margin: -1.4rem -1.4rem 1rem;
  width: calc(100% + 2.8rem);
  max-width: none;
  filter: contrast(1.05) saturate(0.9);
}

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

.btn {
  font-family: var(--serif);
  font-size: 1.05rem;
  border: 0;
  cursor: pointer;
  padding: 0.7rem 1.3rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.btn-petal {
  background: linear-gradient(135deg, var(--ruby), var(--violet));
}

.btn-petal::after {
  content: "";
  position: absolute;
  inset: 40% 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 239, 232, 0.55), transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.45s ease, opacity 0.45s ease, inset 0.45s ease;
  pointer-events: none;
}

.btn-petal:hover::after,
.btn-petal:focus-visible::after {
  opacity: 1;
  transform: scale(6);
}

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

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

label {
  display: grid;
  gap: 0.35rem;
}

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

.field-error,
.island-error,
.form-status {
  color: #e8a0b0;
  min-height: 1.2em;
  margin: 0;
}

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

.legal {
  max-width: 46rem;
}

.legal h1,
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

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

.prose p {
  max-width: 46rem;
}

.article-cover {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  margin: 1rem 0 1.5rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 12;
  background: linear-gradient(180deg, rgba(18, 18, 23, 0.97), #0c0c10);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-inner {
  padding: 1rem 0;
}

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

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.footer-brand,
.footer-label {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

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

.footer-links li {
  margin: 0.25rem 0;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.not-found {
  min-height: 50vh;
  padding: 4rem 0;
}

@media (max-width: 860px) {
  .hero-split,
  .offer-grid,
  .news-grid,
  .team-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 18rem;
  }

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

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0c0c12;
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .header-row {
    position: relative;
  }
}
