:root {
  --bg: #070605;
  --bg-soft: #11100d;
  --card: rgba(21, 18, 13, 0.82);
  --card-strong: #17130d;
  --gold: #d4ad63;
  --gold-soft: #efd8a6;
  --text: #f6f1e7;
  --muted: #d2c4a3;
  --line: rgba(212, 173, 99, 0.22);
  --shadow: 0 18px 60px rgba(0,0,0,.32);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #050505 0%, #0e0b07 60%, #090806 100%);
  font-family: 'Inter', sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(212,173,99,.13), transparent 25%),
    radial-gradient(circle at bottom left, rgba(212,173,99,.08), transparent 28%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 6, 5, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212,173,99,.5);
  box-shadow: 0 0 0 4px rgba(212,173,99,.08);
}
.brand strong, h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .02em;
}
.brand strong { display: block; font-size: 1.5rem; color: var(--gold-soft); }
.brand span { display: block; font-size: .9rem; color: var(--muted); }
.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a {
  color: var(--muted);
  font-size: .98rem;
}
.site-nav a:hover { color: var(--gold-soft); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  width: 46px;
  height: 46px;
  border-radius: 14px;
}
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.82) 8%, rgba(0,0,0,.52) 48%, rgba(0,0,0,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 90px 0;
}
.eyebrow, .section-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-soft);
  border: 1px solid rgba(239,216,166,.24);
  background: rgba(13, 10, 8, 0.55);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .9rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .92;
  margin: 0 0 18px;
  text-wrap: balance;
}
.hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 640px;
  color: #f2eadc;
}
.hero-actions, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #c79b50, #e3c17e);
  color: #130e07;
}
.btn-secondary {
  border-color: rgba(239,216,166,.34);
  background: rgba(9,8,7,.5);
  color: var(--gold-soft);
}
.section { padding: 88px 0; position: relative; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.intro-grid p, .section-heading p, .info-card p, .feature-card p, .contact-card span, .form-note { color: var(--muted); }
.intro-grid h2, .section-heading h2, .video-grid h2, .contact-grid h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 0 0 16px; line-height: .95; }
.feature-list, .cards-grid, .contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.feature-list { grid-template-columns: repeat(3, 1fr); }
.feature-card, .info-card, .contact-card, .contact-panel, .intro-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card, .info-card, .contact-card, .contact-panel { padding: 24px; }
.feature-card h3, .info-card h3, .contact-form h3 {
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: var(--gold-soft);
}
.intro-card { padding: 14px; }
.framed-image img {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  min-height: 440px;
  object-fit: cover;
}
.dark-section {
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(212,173,99,.05));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.center { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.cards-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border: 1px solid var(--line);
  background: #0e0c09;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-large img { min-height: 438px; }
.accent-section {
  background: radial-gradient(circle at center, rgba(212,173,99,.12), transparent 60%);
}
.social-links a {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(239,216,166,.24);
  background: rgba(17,14,10,.6);
  color: var(--gold-soft);
}
.video-frame, .map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
}
.video-frame iframe, .map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.contact-cards { grid-template-columns: repeat(2, 1fr); }
.contact-card { display: flex; flex-direction: column; gap: 8px; }
.contact-card strong { color: var(--gold-soft); font-size: 1.05rem; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: var(--gold-soft); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(239,216,166,.18);
  background: rgba(8,7,5,.8);
  color: var(--text);
  padding: 14px 16px;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 24;
  min-width: 62px;
  height: 62px;
  border-radius: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1db954, #5ce27f);
  color: #07140b;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.32);
}
.footer-content { text-align: center; color: var(--muted); }
.footer-content p { margin: 8px 0; }
.footer-content a { color: var(--gold-soft); }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 40;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 20px;
  border: 1px solid rgba(239,216,166,.2);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(239,216,166,.25);
  background: rgba(16,14,11,.8);
  color: var(--gold-soft);
  font-size: 2rem;
}
@media (max-width: 980px) {
  .two-col, .contact-grid, .cards-grid, .feature-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 2; }
  .site-nav {
    position: absolute;
    right: 16px;
    top: calc(100% + 10px);
    width: min(280px, calc(100% - 32px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(9, 8, 7, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 720px) {
  .hero { min-height: 86vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.58)); }
  .hero-content { padding: 78px 0 56px; }
  .gallery-grid, .contact-cards { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; grid-row: span 1; }
  .gallery-large img, .gallery-item img { min-height: 240px; }
  .video-frame, .map-frame, .video-frame iframe, .map-frame iframe { min-height: 300px; }
  .whatsapp-float { right: 14px; bottom: 14px; height: 56px; min-width: 56px; padding: 0 16px; }
}
