:root {
  --bg: #0b0c0e;
  --bg-raised: #14161c;
  --bg-card: #1a1d25;
  --line: rgba(196, 165, 116, 0.22);
  --gold: #c4a574;
  --gold-soft: #d8c4a0;
  --ink: #efeae1;
  --muted: #9d978c;
  --danger: #e8a39a;
  --ok: #b7c9a8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

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

h1,
h2,
h3,
.logo,
.footer-brand {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 0.8rem;
}

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 12, 14, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1280px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.logo {
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.4rem;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 86vh;
}

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

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  animation: rise 1.4s ease both;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 14, 0.15), rgba(11, 12, 14, 0.55));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5.5rem);
  border-left: 1px solid var(--line);
  animation: fade 1s ease 0.2s both;
}

.hero-copy p.lead {
  color: var(--ink);
  font-size: 1.12rem;
  max-width: 38ch;
}

.text-link {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 500;
}

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

.section {
  padding: 5.2rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.section-gold {
  background: linear-gradient(180deg, #101218 0%, #0b0c0e 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 165, 116, 0.45);
}

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

.card-body {
  padding: 1.3rem 1.35rem 1.5rem;
}

.card-body p {
  font-size: 0.95rem;
}

.quote-stack {
  display: grid;
  gap: 1.2rem;
}

blockquote {
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: var(--bg-raised);
  border-left: 2px solid var(--gold);
}

blockquote p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
}

blockquote footer {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 0.7rem;
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 0.72rem 1.2rem;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: #14110c;
}

.btn-gold:hover {
  color: #14110c;
  background: var(--gold-soft);
}

.btn-ghost:hover {
  background: rgba(196, 165, 116, 0.12);
}

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

.price-card {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.price-card.featured {
  border-color: var(--gold);
  background: #1c1a16;
}

.price {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--ink);
  margin: 0.6rem 0 1rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: #090a0c;
}

.footer-grid {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr 0.8fr;
  gap: 2rem;
}

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

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

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

.footer-copy {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.prose {
  max-width: 68ch;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 2rem;
  font-size: 0.92rem;
}

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

th {
  color: var(--gold);
  font-weight: 500;
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 540px;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.92rem;
}

input,
textarea,
select {
  background: #0f1116;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.field-error {
  color: var(--danger);
  font-size: 0.82rem;
  min-height: 1.1em;
}

.form-status {
  min-height: 1.4em;
}

.form-status.is-success {
  color: var(--ok);
}

.form-status.is-error,
.inline-error {
  color: var(--danger);
}

.inline-error {
  padding: 0.8rem 1rem;
  border: 1px solid var(--danger);
  margin: 0.5rem 1rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
}

.module {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.module span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: #16141a;
  border: 1px solid var(--gold);
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: var(--ink);
  max-width: 70ch;
}

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

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.case {
  background: var(--bg-raised);
  padding: 2rem;
  border: 1px solid var(--line);
  margin-bottom: 1.4rem;
}

.media-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

@keyframes rise {
  from {
    transform: scale(1.08);
    opacity: 0.4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-split,
  .grid-2,
  .grid-3,
  .price-grid,
  .footer-grid,
  .stats-bar,
  .media-row {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 42vh;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 0 auto 0;
    background: #0f1014;
    padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}
