:root {
  --wine: #7a1f3d;
  --wine-2: #5a152c;
  --gold: #c9a36a;
  --ink: #1a1416;
  --muted: #6d5e63;
  --line: #eadfe3;
  --paper: #f7f2f3;
  --white: #fff;
  --shadow: 0 20px 50px rgba(90, 21, 44, 0.12);
  --radius: 18px;
  --max: 1120px;
  --header: 80px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .02em; }
.logo img, .logo svg { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: #3c2d32; }
.nav-links a:hover, .nav-links a.is-active { color: var(--wine); }
.burger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
.burger span { display: block; height: 2px; margin: 6px 8px; background: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: .2s ease;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-2); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }

.hero {
  background: radial-gradient(circle at 20% 20%, #9a2a4e, var(--wine-2) 55%, #2a1018);
  color: #fff; padding: 88px 0 80px;
}
.hero .eyebrow { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { font-size: clamp(34px, 6vw, 62px); line-height: 1.05; max-width: 14ch; margin: 14px 0 18px; }
.hero p { max-width: 52ch; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }

.section { padding: 72px 0; }
.section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.lead { color: var(--muted); max-width: 62ch; margin-bottom: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); }

.form { display: grid; gap: 12px; max-width: 560px; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--paper);
}
.status { font-weight: 700; }
.status.error { color: var(--wine); }

.site-footer { background: #1a1416; color: #f4e9ed; padding: 48px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.site-footer h3, .site-footer h4 { margin-bottom: 10px; }
.site-footer ul { list-style: none; }
.site-footer a { color: #e8d4da; }
.legal-line { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #b9a4aa; }

.gate {
  position: fixed; inset: 0; background: rgba(20, 10, 14, .92); color: #fff;
  display: none; place-items: center; z-index: 80; padding: 24px;
}
.gate.open { display: grid; }
.gate .box { width: min(440px, 100%); background: #2a151c; border-radius: 20px; padding: 28px; text-align: center; }
.gate h2 { margin: 10px 0 12px; }
.gate p { color: #e4d0d6; margin-bottom: 20px; }

@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; inset: var(--header) 0 auto; background: #fff; padding: 16px 20px 22px; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .grid-3, .foot-grid { grid-template-columns: 1fr; }
}
