:root {
  --bg: #11100f;
  --bg-soft: #1b1917;
  --text: #f7f1e8;
  --muted: #c9bca9;
  --line: rgba(247, 241, 232, .14);
  --gold: #d4af6a;
  --gold-dark: #a67a32;
  --ink: #12100e;
  --glass: rgba(20, 18, 16, .68);
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(212, 175, 106, .17), transparent 34%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, .07), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 28px));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(17, 16, 15, .58);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, #f1dca8, var(--gold));
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.nav { display: flex; align-items: center; gap: 18px; color: rgba(247,241,232,.74); font-size: 14px; }
.nav a:hover, .phone:hover, .footer a:hover { color: var(--gold); }
.phone {
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17,16,15,.92), rgba(17,16,15,.44), rgba(17,16,15,.78)),
    url("assets/img/hero-premium-event.jpg") center/cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(52px, 8.5vw, 112px);
}
.hero p {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(247,241,232,.82);
  font-size: clamp(18px, 2vw, 23px);
}
.hero-actions, .mini-grid, .price-grid, .steps, .pain-grid, .case-grid {
  display: grid;
  gap: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f1dca8, var(--gold));
  box-shadow: 0 18px 50px rgba(212, 175, 106, .24);
}
.btn.primary:hover { box-shadow: 0 24px 70px rgba(212, 175, 106, .36); }
.btn.ghost {
  color: var(--text);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.btn.dark {
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  background: rgba(17,16,15,.9);
}
.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 92px;
  z-index: 2;
  width: min(310px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(17,16,15,.64);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-card strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
}
.hero-card span { color: rgba(247,241,232,.78); }

.trust-strip {
  width: min(1160px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-item {
  padding: 26px;
  background: rgba(27, 25, 23, .96);
}
.trust-item strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
}
.trust-item span { color: var(--muted); }

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}
.section h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 70px);
}
.section p { color: var(--muted); }
.about {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 54px;
}
.section-copy > p { font-size: 18px; }
.mini-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}
.mini-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}
.mini-grid b { display: block; margin-bottom: 8px; color: #fff; }
.mini-grid span { color: var(--muted); font-size: 14px; }
.about-media {
  min-height: 620px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media img { width: 100%; height: 620px; object-fit: cover; }

.pain-map {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1160px) / 2));
  background: linear-gradient(135deg, rgba(212,175,106,.08), rgba(255,255,255,.02));
  border-block: 1px solid var(--line);
}
.pain-grid {
  grid-template-columns: repeat(4, 1fr);
}
.pain-card, .step, .price-card, .accordion, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.pain-card {
  min-height: 280px;
  padding: 26px;
  transition: transform .28s ease, border-color .28s ease;
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,106,.45);
}
.pain-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 34px;
}
.pain-card h3 { font-size: 22px; line-height: 1.18; }
.pain-card p { font-size: 15px; }

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}
.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: transform .28s ease, border-color .28s ease;
}
.case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212,175,106,.42);
}
.case-photo {
  height: 250px;
  overflow: hidden;
}
.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.case-card:hover img { transform: scale(1.08); }
.case-card h3, .case-card p { padding-inline: 24px; }
.case-card h3 { margin: 24px 0 8px; }
.case-card p { padding-bottom: 26px; font-size: 15px; }

.steps {
  grid-template-columns: repeat(4, 1fr);
}
.step { padding: 28px; }
.step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}
.step h3 { font-size: 22px; line-height: 1.2; }

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  position: relative;
  padding: 34px;
}
.price-card.accent {
  background:
    linear-gradient(140deg, rgba(212,175,106,.22), rgba(255,255,255,.055)),
    rgba(255,255,255,.04);
  transform: translateY(-18px);
}
.badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.price-card strong {
  display: block;
  margin: 22px 0;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 42px;
}
.price-card ul {
  min-height: 118px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.price-card li {
  padding: 10px 0 10px 24px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.price-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.accordion {
  overflow: hidden;
  background: rgba(255,255,255,.035);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  padding: 26px 30px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 32px;
  transition: transform .25s ease;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-answer p { padding: 0 30px 26px; max-width: 820px; }

.contact {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(rgba(17,16,15,.82), rgba(17,16,15,.92)),
    url("assets/img/contact-luxury-dinner.jpg") center/cover;
}
.contact-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(17,16,15,.7);
  backdrop-filter: blur(18px);
}
.lead-form {
  display: grid;
  gap: 16px;
}
.lead-form label { display: grid; gap: 8px; color: rgba(247,241,232,.78); font-weight: 700; }
input, textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.075);
  transition: border-color .2s ease, background .2s ease;
}
textarea { min-height: 126px; resize: vertical; }
input:focus, textarea:focus {
  border-color: rgba(212,175,106,.72);
  background: rgba(255,255,255,.11);
}
.form-status { min-height: 24px; margin: 0; font-weight: 700; }

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer p { margin: 0; font-size: 14px; }
.footer a { text-decoration: underline; text-underline-offset: 4px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header { border-radius: 28px; align-items: flex-start; }
  .nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(17,16,15,.94);
    backdrop-filter: blur(18px);
  }
  body.menu-open .nav { display: flex; }
  .burger { display: inline-grid; place-items: center; }
  .phone { font-size: 0; }
  .phone::after { content: "Позвонить"; font-size: 14px; }
  .hero-card { position: relative; right: auto; bottom: auto; margin-top: 36px; }
  .hero { align-items: center; padding-top: 130px; }
  .trust-strip, .pain-grid, .case-grid, .steps, .price-grid, .about, .contact-card, .footer {
    grid-template-columns: 1fr;
  }
  .mini-grid { grid-template-columns: 1fr; }
  .price-card.accent { transform: none; }
  .about-media, .about-media img { height: 430px; min-height: auto; }
}
@media (max-width: 620px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .logo span:last-child { display: none; }
  .hero { min-height: 100svh; padding-bottom: 54px; }
  .section { padding: 74px 0; }
  .trust-item, .pain-card, .step, .price-card { padding: 22px; }
  .case-photo { height: 218px; }
}
