:root {
  --bg: #070707;
  --bg-soft: #111111;
  --card: rgba(18, 18, 18, 0.84);
  --text: #f4efe4;
  --muted: #dbc48e;
  --gold: #d4b062;
  --gold-strong: #b18a3c;
  --line: rgba(212, 176, 98, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(212,176,98,.18), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.05), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(212,176,98,.4);
}
.brand strong {
  display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; line-height: 1;
}
.brand span { color: var(--muted); font-size: .92rem; }
.nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.nav a { color: #f5ebd1; font-weight: 500; }
.nav a:hover { color: var(--gold); }
.actions-top { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.03);
}
.lang-btn {
  border: 0; background: transparent; color: var(--text); padding: 8px 12px; border-radius: 999px; min-width: 48px;
}
.lang-btn.active { background: linear-gradient(135deg, #ead38d, var(--gold)); color: #111; font-weight: 800; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; transition: .25s ease;
  font-weight: 700;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.25); }
.btn-primary { background: linear-gradient(135deg, #ecd790, var(--gold)); color: #111; }
.btn-secondary { background: rgba(255,255,255,.05); color: var(--text); border-color: rgba(255,255,255,.18); }
.btn-block { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--text); font-size: 1.7rem; }
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.74));
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; padding: 110px 0 70px; }
.eyebrow {
  display: inline-block; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .24em; color: #f0d691; font-size: .75rem; font-weight: 700;
}
.hero h1, .section-heading h2, .social-card h2 {
  font-family: 'Cormorant Garamond', serif; line-height: .96; margin: 0;
}
.hero h1 { font-size: clamp(3rem, 7vw, 6.2rem); }
.hero-text { margin: 18px auto 0; max-width: 760px; font-size: 1.08rem; line-height: 1.75; color: #fbf5e8; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.section { padding: 92px 0 10px; }
.section-heading { margin-bottom: 32px; }
.section-heading.centered { max-width: 820px; margin: 0 auto 32px; text-align: center; }
.section-heading h2 { font-size: clamp(2.3rem, 4vw, 4.3rem); }
.section-heading p { margin: 14px 0 0; line-height: 1.8; color: #f2e9d8; }
.feature-grid,
.contact-grid,
.showcase-grid { display: grid; gap: 24px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.feature-card { padding: 28px; }
.feature-card h3, .form-card h3 { margin: 0 0 12px; font-size: 1.14rem; }
.feature-card p, .showcase-copy p, .social-card p, .info-card a, .form-card label, .check-list li {
  line-height: 1.8; color: #f3ead9;
}
.showcase-grid { grid-template-columns: 1fr 1.02fr; align-items: center; }
.showcase-copy { padding-right: 12px; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li { position: relative; padding-left: 18px; margin-bottom: 10px; }
.check-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.showcase-image-wrap { overflow: hidden; }
.showcase-image { width: 100%; height: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item {
  border: 0; background: transparent; padding: 0; border-radius: 20px; overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 290px; object-fit: cover; border-radius: 20px; transition: transform .35s ease, filter .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1.05); }
.video-card,
.map-card { overflow: hidden; }
.video-card iframe,
.map-card iframe {
  display: block; width: 100%; border: 0; border-radius: var(--radius);
}
.video-card iframe { aspect-ratio: 16 / 9; }
.map-card { margin-top: 24px; }
.map-card iframe { min-height: 390px; }
.social-grid { display: grid; }
.social-card {
  padding: 28px; display: grid; grid-template-columns: 92px 1fr auto; gap: 20px; align-items: center;
}
.social-card img {
  width: 92px; height: 92px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(212,176,98,.4);
}
.contact-grid { grid-template-columns: .92fr 1.08fr; }
.info-card,
.form-card { padding: 28px; }
.info-card { display: flex; flex-direction: column; gap: 14px; }
.info-card a:hover { color: var(--gold); }
.form-card form { display: grid; gap: 14px; }
.form-card label { display: grid; gap: 8px; }
.form-card input,
.form-card textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: var(--text);
  border-radius: 16px; padding: 14px 16px; outline: none;
}
.form-card input:focus,
.form-card textarea:focus { border-color: rgba(236,215,144,.6); box-shadow: 0 0 0 4px rgba(236,215,144,.08); }
.footer { border-top: 1px solid var(--line); margin-top: 88px; padding: 28px 0 36px; }
.footer-content { text-align: center; color: #eadfca; }
.footer a { color: var(--gold); }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 120; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 999px; background: #25d366; color: white; font-weight: 800; box-shadow: 0 18px 36px rgba(0,0,0,.32);
}
.floating-whatsapp svg { width: 22px; height: 22px; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.86); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 200;
}
.lightbox.active { display: flex; }
.lightbox-image { max-width: min(1100px, 96vw); max-height: 86vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 18px; right: 20px; border: 0; background: rgba(255,255,255,.12); color: white; width: 48px; height: 48px; border-radius: 50%; font-size: 1.7rem;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: auto auto auto; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 84px; left: 0; right: 0; background: rgba(8, 8, 8, 0.96); border-bottom: 1px solid var(--line);
    display: none; flex-direction: column; padding: 16px; gap: 14px;
  }
  .nav.open { display: flex; }
  .desktop-call { display: none; }
  .feature-grid,
  .showcase-grid,
  .contact-grid,
  .social-card { grid-template-columns: 1fr; }
  .showcase-image { min-height: 380px; }
}
@media (max-width: 760px) {
  .brand strong { font-size: 1.35rem; }
  .brand span { font-size: .8rem; }
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 88px; }
  .hero-text { font-size: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 220px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: 14px; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .actions-top { gap: 8px; }
  .lang-btn { padding: 7px 10px; min-width: 42px; }
  .hero h1 { font-size: 2.55rem; }
  .section { padding-top: 72px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 250px; }
  .social-card { padding: 22px; }
  .map-card iframe { min-height: 320px; }
}
