:root {
  --bg: #090909;
  --bg-2: #111111;
  --bg-3: #171717;
  --line: rgba(196, 165, 116, 0.18);
  --gold: #c4a574;
  --gold-2: #e0c898;
  --gold-dim: #8d7350;
  --text: #f3efe6;
  --muted: #9a9388;
  --white: #faf8f4;
  --danger: #c4a574;
  --radius: 18px;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
h1, h2, .display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 7vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.muted { color: var(--muted); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(9,9,9,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}
.logo img {
  height: 44px; width: auto; display: block;
}
.logo-hero {
  width: min(280px, 70vw);
  margin: 0 auto 8px;
}
.logo-mark {
  width: 28px; height: 28px; border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold); font-size: 11px; letter-spacing: 0;
}
.portrait {
  padding: 0;
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.cert img {
  width: 100%;
  border-radius: 12px;
  margin: 14px 0;
}
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 13px; color: var(--muted); }
.nav-links a:hover { color: var(--white); }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); padding: 8px 12px; border-radius: 999px;
}
.lang {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 12px; letter-spacing: .08em; color: var(--muted);
}
.lang a { padding: 4px 7px; border-radius: 999px; }
.lang a.active { color: #111; background: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 13px 22px; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; border: 1px solid transparent; transition: .25s ease;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.disclaimer {
  margin-top: 22px; font-size: 12px; color: var(--muted); letter-spacing: .02em;
}

/* HERO */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(196,165,116,.12), transparent 60%),
    linear-gradient(#090909, #0c0c0c);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hero .eyebrow { margin-bottom: 18px; }
.hero p.lead { margin-top: 22px; }

/* SECTIONS */
section { padding: 88px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2 { margin: 10px 0 16px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

.card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; margin: 8px 0 10px; }
.num { color: var(--gold); font-size: 12px; letter-spacing: .18em; }

.method {
  display: grid; gap: 0;
}
.method-step {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 24px; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.method-step strong { color: var(--gold-2); font-weight: 600; letter-spacing: .12em; font-size: 12px; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.yesno { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.yesno ul { list-style: none; display: grid; gap: 10px; color: var(--muted); }
.yesno li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 10px; background: var(--gold); }
.yesno .no li::before { background: #5a534a; }

.price {
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}
.price small { display: block; color: var(--muted); font-family: Manrope, sans-serif; font-size: 12px; margin-top: 4px; }

.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  text-align: left; padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.compare th { color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

.portrait {
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #121212;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.cert {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #101010;
}
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
}

.faq details {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin-top: 8px; }

.cta-final {
  text-align: center;
  background: radial-gradient(600px 240px at 50% 0%, rgba(196,165,116,.12), transparent);
}
.cta-final .lead { margin-inline: auto; }

footer {
  padding: 48px 0 28px;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 30px; margin-bottom: 28px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 18px; }
.legal { border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px; font-size: 12px; }

.page-hero { padding: 72px 0 40px; }

form { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%; background: #101010; border: 1px solid rgba(255,255,255,.08);
  color: var(--text); border-radius: 12px; padding: 13px 14px; font: inherit;
}
label { font-size: 13px; color: var(--muted); }

.gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(196,165,116,.14), transparent 55%),
    #090909;
}
.gate-box { width: min(720px, 100%); text-align: center; }
.gate-box h1 { margin: 18px 0 12px; }
.gate-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.gate-card {
  display: block;
  padding: 28px 18px;
  border: 1px solid rgba(196,165,116,.22);
  border-radius: 18px;
  background: #111;
  transition: .25s ease;
}
.gate-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.gate-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.gate-card span { color: var(--muted); font-size: 14px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #0d0d0d; padding: 18px 20px 24px; border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .menu-btn { display: inline-flex; }
  .grid-2, .grid-3, .grid-5, .split, .yesno, .footer-grid, .method-step {
    grid-template-columns: 1fr;
  }
  section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .gate-choices { grid-template-columns: 1fr; }
}
