:root {
  --bg: #080808;
  --panel: #121212;
  --panel-2: #1a1a1a;
  --line: rgba(214, 174, 88, 0.34);
  --gold: #d6ae58;
  --gold-2: #f0d58a;
  --text: #f7f3ea;
  --muted: #c9c3b6;
  --blue: #5fb2ff;
  --yellow: #ffd84d;
  --danger: #ff6b5f;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Montserrat, Poppins, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  background: #050505;
  border-bottom: 1px solid rgba(214, 174, 88, 0.25);
  font-size: 14px;
  color: var(--muted);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Cormorant Garamond, Georgia, serif;
  font-size: 26px;
  color: var(--gold-2);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #151515, #070707);
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  cursor: pointer;
  gap: 8px;
}

.btn:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn.secondary { background: transparent; color: var(--gold-2); }
.btn.secondary:hover { background: rgba(214, 174, 88, 0.12); }
.btn.full { width: 100%; }

.hero {
  min-height: 700px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 174, 88, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.58), rgba(0,0,0,0.22)),
    url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1800&q=70");
  background-position: center;
  background-size: cover;
  filter: saturate(0.75) contrast(1.08);
}

.hero .container { position: relative; padding: 80px 0 120px; }
.compact-hero { min-height: 560px; }
.compact-hero .container { padding: 64px 0 78px; }
.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

h1, h2, h3 {
  font-family: "Playfair Display", Cormorant Garamond, Cinzel, Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 860px;
  margin-top: 14px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--gold-2);
}

h3 { font-size: 25px; color: var(--text); }

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  margin: 22px 0 30px;
}

.hero-actions, .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 26px;
  color: var(--text);
  font-weight: 700;
}
.heart-blue { color: var(--blue); }
.heart-yellow { color: var(--yellow); }

section { padding: 84px 0; }
.home-shortcuts { padding: 48px 0 58px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head p { max-width: 640px; color: var(--muted); margin: 12px 0 0; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: linear-gradient(180deg, var(--panel), #0d0d0d);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  font-size: 22px;
}

.card p, .content p, .content li { color: var(--muted); }
.card .btn { margin-top: 12px; }

.media-box {
  min-height: 390px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.76)),
    url("https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=1200&q=70");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: end;
  padding: 22px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price strong { font-size: 30px; color: var(--gold-2); }
.fine { color: #a9a090; font-size: 14px; margin-top: 18px; }

.check-list {
  columns: 3;
  padding-left: 0;
  list-style: none;
}
.check-list li { break-inside: avoid; margin: 10px 0; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 10px; }

.area-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.area-links a {
  border: 1px solid rgba(214,174,88,0.38);
  color: var(--gold-2);
  padding: 10px 13px;
  background: #101010;
}

.page-hero {
  padding: 86px 0 60px;
  background: linear-gradient(135deg, #050505, #191511);
  border-bottom: 1px solid rgba(214, 174, 88, 0.2);
}
.page-hero h1 { font-size: clamp(38px, 5vw, 66px); }

.quote-wrap {
  background: #0d0d0d;
  border-top: 1px solid rgba(214,174,88,0.2);
  border-bottom: 1px solid rgba(214,174,88,0.2);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quote-form label { display: grid; gap: 7px; color: var(--muted); font-size: 14px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(214,174,88,0.28);
  background: #080808;
  color: var(--text);
  padding: 12px;
  font: inherit;
}
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form .wide { grid-column: 1 / -1; }
.form-success {
  display: none;
  margin-top: 16px;
  color: var(--gold-2);
  font-weight: 800;
}

.review-stars { color: var(--gold-2); font-size: 22px; }
.gallery-item {
  min-height: 250px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.78)), var(--photo);
  background-size: cover;
  background-position: center;
}
.gallery-item strong { color: var(--gold-2); text-shadow: 0 2px 18px #000; }

.gallery-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.gallery-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.gallery-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 18px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  color: var(--gold-2);
  font-weight: 900;
  font-size: 18px;
}

.about-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: min(560px, 58vw);
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.about-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 18px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  color: var(--gold-2);
  font-weight: 900;
}

.faq-item {
  border-bottom: 1px solid rgba(214,174,88,0.2);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(214, 174, 88, 0.24);
  padding: 54px 0 90px;
  color: var(--muted);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 26px; }
.footer-grid a { display: block; margin: 8px 0; color: var(--muted); }
.footer-grid a:hover { color: var(--gold-2); }

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  grid-template-columns: repeat(3, 1fr);
  background: #050505;
  border-top: 1px solid var(--line);
}
.mobile-sticky a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(214,174,88,0.24);
  color: var(--gold-2);
  font-weight: 900;
}

.chat-launch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 62px;
  height: 62px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #111;
  font-size: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.chat-panel {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 92px;
  width: min(360px, calc(100% - 36px));
  z-index: 90;
  border: 1px solid var(--line);
  background: #0b0b0b;
  box-shadow: var(--shadow);
}
.chat-head {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background: #151515;
  color: var(--gold-2);
  font-weight: 900;
}
.chat-body { padding: 14px; max-height: 360px; overflow: auto; }
.bubble { padding: 10px 12px; margin: 8px 0; background: #171717; color: var(--muted); }
.bubble.user { background: rgba(214,174,88,0.17); color: var(--text); margin-left: 30px; }
.chat-form { display: flex; border-top: 1px solid rgba(214,174,88,0.2); }
.chat-form input { flex: 1; background: #080808; border: 0; color: var(--text); padding: 13px; }
.chat-form button { width: 54px; border: 0; background: var(--gold); font-weight: 900; cursor: pointer; }

@media (max-width: 880px) {
  .topbar .container { flex-direction: column; gap: 3px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    padding: 18px;
    background: #090909;
    border: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 640px; }
  section { padding: 58px 0; }
  .section-head { display: block; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .check-list { columns: 1; }
  .mobile-sticky { display: grid; }
  .chat-launch { bottom: 76px; }
  .chat-panel { bottom: 150px; }
}
