:root {
  --bg: #0c0b0a;
  --bg-soft: #151311;
  --surface: rgba(27, 22, 19, 0.82);
  --surface-strong: #181310;
  --text: #f4eadc;
  --muted: #cbb9a0;
  --gold: #d7b27a;
  --gold-strong: #b98645;
  --accent: #8c2e19;
  --accent-soft: #b74f35;
  --line: rgba(215, 178, 122, 0.18);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #0b0908 0%, #120f0d 55%, #0c0b0a 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  margin-bottom: 14px;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0 0 18px;
}
h1 { font-size: clamp(3.2rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: 1.7rem; }
p { color: rgba(244, 234, 220, 0.88); line-height: 1.75; margin: 0 0 16px; }

.top-promo {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold-strong) 100%);
  color: #fff8f1;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.promo-wrap { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; text-align: center; }
.promo-wrap a { background: rgba(255,255,255,.14); padding: 8px 14px; border-radius: 999px; font-weight: 700; }

.hero { position: relative; min-height: 100svh; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,4,3,0.75) 0%, rgba(5,4,3,0.5) 34%, rgba(5,4,3,0.86) 100%),
    radial-gradient(circle at center, rgba(183,79,53,0.14), transparent 40%);
}
.nav {
  position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 62px; height: 62px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(215,178,122,.4);
}
.brand span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: .9; }
.brand small { display: block; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: #fff5ea; font-weight: 600; }
.menu-btn {
  display: none; background: rgba(255,255,255,.08); color: white; border: 1px solid var(--line);
  width: 48px; height: 48px; border-radius: 14px; font-size: 1.25rem;
}
.mobile-menu {
  display: none; position: relative; z-index: 5; width: min(1180px, calc(100% - 32px)); margin: 0 auto;
  background: rgba(11,9,8,.95); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.mobile-menu a { display: block; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: block; }
.hero-content {
  position: relative; z-index: 3; min-height: calc(100svh - 92px); display: flex; align-items: center;
}
.glass-card {
  width: min(700px, 100%);
  background: linear-gradient(180deg, rgba(20, 15, 13, 0.62), rgba(20, 15, 13, 0.84));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(215,178,122,.16);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}
.eyebrow {
  font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 800;
}
.lead { font-size: 1.1rem; max-width: 58ch; }
.hero-actions, .contact-list { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(90deg, var(--gold-strong), var(--gold)); color: #1f140b; }
.btn-secondary, .btn-outline { border: 1px solid rgba(244,234,220,.24); background: rgba(255,255,255,.03); }
.full { width: 100%; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-tags span {
  padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--muted);
}

.two-col, .contact-grid, .location-grid, .promo-card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center;
}
.info-grid, .cards-grid, .social-grid {
  display: grid; gap: 18px;
}
.info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
.info-grid article, .social-card, .card, .video-card, .promo-card, .contact-form, .map-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(30,24,21,.94), rgba(17,14,12,.98));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-grid article { padding: 22px; }
.feature-image-wrap { position: relative; }
.feature-image {
  width: 100%; border-radius: 32px; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 580px; object-fit: cover;
}

.promo-section { padding-top: 0; }
.promo-card { padding: clamp(24px, 3vw, 36px); }
.promo-poster { width: 100%; border-radius: 20px; min-height: 420px; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 20px 0 24px; }
.check-list li { margin-bottom: 12px; color: var(--text); }
.check-list li::before { content: '•'; color: var(--gold); font-weight: 700; margin-right: 10px; }

.dark-section { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.08)); }
.cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { overflow: hidden; }
.card img { width: 100%; height: 280px; object-fit: cover; }
.card-body { padding: 22px; }
.card-body p { margin-bottom: 0; }
.section-intro { margin-bottom: 26px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.gallery-item {
  border: 0; padding: 0; border-radius: 20px; overflow: hidden; cursor: pointer; background: transparent; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.video-card { padding: 14px; }
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 18px; }

.social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.social-card {
  padding: 28px; display: flex; flex-direction: column; gap: 8px; min-height: 180px; justify-content: center;
}
.social-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; }
.social-card strong { font-size: 1.25rem; }
.social-card small { color: var(--muted); }

.map-wrap { overflow: hidden; min-height: 440px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }
.contact-form { padding: 24px; }
.contact-form label { display: block; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 8px; border-radius: 16px; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); color: var(--text);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(244,234,220,.46); }
.contact-list { margin-top: 20px; }
.contact-list a {
  padding: 12px 16px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.footer { border-top: 1px solid var(--line); padding: 30px 0 42px; }
.footer-wrap {
  display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap;
}
.footer p { margin: 0; }

.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 64px; height: 64px;
  border-radius: 50%; display: grid; place-items: center; background: linear-gradient(180deg, #25d366, #128c7e); color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,.26);
}
.floating-whatsapp svg { width: 34px; height: 34px; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; place-items: center; z-index: 100; padding: 20px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.12); color: white; font-size: 2rem; cursor: pointer;
}
.fade-in { animation: fadeUp .9s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .two-col, .contact-grid, .location-grid, .promo-card, .cards-grid, .social-grid, .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .glass-card { border-radius: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item img { height: 210px; }
  .info-grid { grid-template-columns: 1fr; }
  .brand span { font-size: 1.65rem; }
  .feature-image { min-height: 420px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 20px, 1180px); }
  .top-promo { padding: 12px 0; }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.35rem; }
  .hero-tags span { font-size: .9rem; }
  .gallery-item img { height: 170px; }
  .floating-whatsapp { width: 58px; height: 58px; }
}
