:root {
  --bg: #f7f3ee;
  --card: rgba(255,255,255,0.72);
  --text: #2e241c;
  --muted: #756252;
  --gold: #b58d3d;
  --gold-dark: #8f6b24;
  --green: #5b6c4f;
  --line: rgba(46,36,28,0.12);
  --shadow: 0 20px 60px rgba(32, 23, 17, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f4 0%, #f3ede5 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: #2a241d;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .65rem 1rem;
  font-size: .92rem;
}
.topbar a { color: #f2d79a; }
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.4); box-shadow: var(--shadow);
}
.brand strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; }
.brand span { display: block; color: rgba(255,255,255,.88); font-size: .95rem; }
.nav-links { display: flex; gap: 1.2rem; align-items: center; color: #fff; }
.nav-links a { opacity: .95; }
.hero {
  position: relative;
  min-height: 100vh;
  background: url('assets/favicon.jpg') center center / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(27,20,13,.68) 0%, rgba(27,20,13,.35) 45%, rgba(27,20,13,.52) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 14vh 0 8rem;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  color: var(--gold); font-weight: 700; margin-bottom: .8rem;
}
.hero .eyebrow { color: #f3d89a; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.06; }
h1, h2 { font-family: 'Cormorant Garamond', serif; }
h1 { font-size: clamp(3rem, 8vw, 5.8rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.08rem; line-height: 1.8; max-width: 640px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.35rem; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold) 0%, #d1b170 100%);
  color: #2b2017; font-weight: 700; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.92); }
.btn-outline { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); color: #fff; box-shadow: none; }
section { padding: 5.5rem 0; }
.intro { margin-top: -4rem; position: relative; z-index: 5; display: grid; gap: 1.5rem; }
.glass {
  background: var(--card); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.52); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-card { padding: 2rem; }
.intro-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.intro-grid article, .feature-cards article { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.5rem; }
.section-heading { margin-bottom: 2rem; }
.gallery-section { background: linear-gradient(180deg, rgba(181,141,61,.08), transparent); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery-item {
  border: 0; background: #fff; padding: 0; border-radius: 22px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .45s ease; }
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide img { aspect-ratio: 1.36 / 1; }
.gallery-item:hover img { transform: scale(1.05); }
.features-grid, .video-grid, .contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.feature-cards { display: grid; gap: 1rem; }
.video-wrap {
  position: relative; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); background: #000;
  aspect-ratio: 16 / 9;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.social-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 1.5rem;
  box-shadow: var(--shadow); transition: transform .3s ease;
}
.social-card:hover { transform: translateY(-5px); }
.social-card span { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.social-card strong { display: block; margin: .6rem 0; font-size: 1.2rem; }
.contact-list, .contact-form { padding: 1.6rem; }
.contact-form { display: grid; gap: 1rem; }
label { display: grid; gap: .45rem; font-weight: 600; }
input, textarea {
  width: 100%; border: 1px solid rgba(46,36,28,.18); border-radius: 16px; padding: .95rem 1rem; background: rgba(255,255,255,.9);
}
input:focus, textarea:focus { outline: 2px solid rgba(181,141,61,.35); border-color: var(--gold); }
.whatsapp-float {
  position: fixed; right: 1rem; bottom: 1rem; width: 62px; height: 62px;
  border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white;
  box-shadow: 0 18px 35px rgba(0,0,0,.25); z-index: 50;
}
.whatsapp-float svg { width: 33px; fill: currentColor; }
.lightbox {
  position: fixed; inset: 0; background: rgba(12,10,8,.88); display: none; place-items: center; z-index: 100;
  padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(100%, 980px); max-height: 78vh; border-radius: 20px; box-shadow: var(--shadow); }
#lightboxCaption { color: #fff; margin-top: 1rem; text-align: center; font-size: 1rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; border: 0; background: rgba(255,255,255,.12); color: #fff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; cursor: pointer;
}
.footer { padding: 1.4rem 0 2rem; border-top: 1px solid var(--line); }
.footer-content { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); }
.footer a { color: var(--gold-dark); font-weight: 600; }

@media (max-width: 920px) {
  .nav, .nav-links { flex-wrap: wrap; }
  .hero { min-height: 88vh; }
  .intro-grid, .social-grid, .features-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .topbar { flex-direction: column; text-align: center; }
  .nav-links { width: 100%; justify-content: center; gap: .8rem; font-size: .95rem; }
  .hero-content { padding-top: 8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; grid-row: auto; }
  .gallery-item.wide img, .gallery-item img { aspect-ratio: 1 / 1; }
  .whatsapp-float { width: 58px; height: 58px; }
}
