:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #2f2b2a;
  --muted: #6c6560;
  --gold: #c99855;
  --gold-dark: #a87737;
  --line: rgba(47, 43, 42, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px 14px; z-index: 100; }
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247,244,239,0.82);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.nav { display: flex; gap: 22px; }
.nav a { color: var(--muted); font-weight: 500; }
.nav a:hover { color: var(--text); }
.actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  border: 1px solid var(--line); background: #fff; color: var(--text);
  border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .3s ease;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 12px 30px rgba(201,152,85,0.3); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline:hover { background: rgba(255,255,255,0.18); }
.hero { position: relative; min-height: 88vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(20,15,11,.78), rgba(20,15,11,.32) 55%, rgba(20,15,11,.55)); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 120px 0 80px; max-width: 720px; }
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; color: var(--gold); font-weight: 700;
}
.hero h1, h2, h3 { font-family: 'Cormorant Garamond', serif; margin: 0 0 14px; line-height: .98; }
.hero h1 { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 780px; }
.hero-text { font-size: 1.1rem; line-height: 1.7; max-width: 620px; color: rgba(255,255,255,.88); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.section { padding: 88px 0; }
.intro-grid, .highlight-grid, .contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
p { line-height: 1.75; color: var(--muted); }
.feature-card, .form-card, .card, .social-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-card { overflow: hidden; }
.feature-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.feature-card-content { padding: 24px; }
.feature-card-content span { display: block; margin-bottom: 12px; font-weight: 700; color: var(--text); }
.feature-card-content ul { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 10px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.card { padding: 28px; border: 1px solid var(--line); }
.card h3 { font-size: 2rem; }
.highlight { background: linear-gradient(180deg, rgba(201,152,85,0.08), rgba(201,152,85,0)); }
.highlight-media img { border-radius: 30px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag-list span { padding: 10px 14px; background: rgba(201,152,85,0.12); color: var(--text); border-radius: 999px; font-size: .95rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px;
}
.gallery-item {
  border: 0; padding: 0; background: none; border-radius: 20px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; }
.video-frame, .map-frame {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: #000; margin-top: 24px;
}
.video-frame iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.social-card { padding: 26px; border: 1px solid var(--line); display: grid; gap: 10px; }
.social-card strong { font-size: 1.2rem; }
.contact-list { display: grid; gap: 14px; margin: 22px 0 28px; }
.contact-list a { background: rgba(255,255,255,.7); padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 320px; border: 0; }
.form-card { padding: 26px; }
form { display: grid; gap: 16px; }
label span { display: block; margin-bottom: 8px; font-weight: 600; }
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); background: #fff; outline: none;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,152,85,.12); }
.form-note { margin: 0; font-size: .95rem; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 18px 40px rgba(37,211,102,.35);
}
.whatsapp-float svg { width: 30px; fill: currentColor; }
.footer { padding: 40px 0 54px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; justify-items: center; text-align: center; gap: 12px; }
.footer img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }
.footer p { margin: 0; }
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,.86); display: none; place-items: center; padding: 20px; z-index: 100;
}
.lightbox.active { display: grid; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 85vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; border: 0; background: rgba(255,255,255,.12); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 1.8rem;
}
.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 { display: none; }
  .intro-grid, .highlight-grid, .contact-grid, .cards, .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topbar-inner { min-height: 74px; }
  .brand span { display: none; }
  .actions .btn { display: none; }
  .hero { min-height: 82vh; }
  .hero-content { padding: 110px 0 64px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .section { padding: 72px 0; }
}
