:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #141414;
  --panel-2: #1d1d1d;
  --text: #f7f5ef;
  --muted: #c7c1b4;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #c9a24d;
  --gold-2: #f1d58a;
  --dark-gold: #7d6228;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(5vw, 56px);
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 92px min(5vw, 56px) 56px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.92)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
}

.hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.cta-row,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(241, 213, 138, 0.42);
  border-radius: 8px;
  background: var(--gold);
  color: #090909;
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

main {
  padding: 54px min(5vw, 56px);
}

.section-head,
.page-title {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head h2,
.page-title h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 52px);
}

.section-head p,
.page-title p,
.muted {
  color: var(--muted);
  line-height: 1.65;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card,
.price-row,
.policy-block,
.info-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)), var(--panel);
  padding: 22px;
}

.card h3,
.price-row h3,
.policy-block h2 {
  margin: 0 0 8px;
  color: var(--gold-2);
}

.card p,
.price-row p,
.policy-block p,
.policy-block li {
  color: var(--muted);
  line-height: 1.55;
}

.rating {
  color: var(--gold-2);
  font-weight: 900;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.media-card div {
  padding: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.price {
  color: var(--gold-2);
  font-size: 18px;
  font-weight: 900;
  text-align: right;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 18px;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}

.map-note {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  padding: 30px min(5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #060606;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.footer strong {
  display: block;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.footer p {
  margin: 4px 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #061007;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 68vh;
  }

  .contact-layout,
  .price-row,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .whatsapp-float {
    left: 18px;
    right: 18px;
  }
}
