:root {
  --bg: #1a1a1a;
  --surface: #242424;
  --surface-soft: #a68e6d;
  --text: #f0f0f0;
  --muted: #d8c3aa;
  --primary: #a68e6d;
  --secondary: #d8c3aa;
  --accent: #f0f0f0;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #1a1a1a, #242424 35%, #1a1a1a);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(216, 195, 170, 0.22);
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(8px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: #f0f0f0;
  background: rgba(216, 195, 170, 0.22);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(216, 195, 170, 0.3);
  color: var(--text);
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.hero {
  padding: 0;
}

.hero-box {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
}

.hero .container {
  width: 100%;
}

.hero-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 26, 26, 0.85), rgba(166, 142, 109, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 28px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 22px;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  border: 0;
}

.btn-primary {
  background: var(--primary);
  color: #1a1a1a;
}

.btn-secondary {
  background: var(--accent);
  color: #1a1a1a;
}

section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 24px;
}

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

.card {
  background: rgba(36, 36, 36, 0.95);
  border: 1px solid rgba(216, 195, 170, 0.2);
  border-radius: var(--radius);
  padding: 18px;
}

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

.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(216, 195, 170, 0.2);
  background: rgba(36, 36, 36, 0.95);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.6);
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 240, 240, 0.5);
}

.carousel-dots span.active {
  background: #d8c3aa;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 14px;
}

.footer {
  border-top: 1px solid rgba(216, 195, 170, 0.22);
  padding: 28px 0;
  color: var(--muted);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  z-index: 1200;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.mini-list {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .cards,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(216, 195, 170, 0.22);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .map-wrap iframe {
    min-height: 300px;
  }
}
