:root {
  --bg: #070707;
  --bg-soft: #111111;
  --card: rgba(19, 19, 19, 0.86);
  --text: #f5f0e3;
  --muted: #c8b892;
  --gold: #d8b15c;
  --gold-soft: #f0d58f;
  --line: rgba(216, 177, 92, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(216, 177, 92, 0.15), transparent 30%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  z-index: -2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 5vw;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(216, 177, 92, 0.35);
}
.brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.nav a {
  color: #f8f0dd;
  font-size: 0.96rem;
}
.nav a:hover { color: var(--gold-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-weight: 600;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #111;
}
.btn-outline {
  border-color: rgba(255,255,255,0.24);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.7));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 80px 24px;
}
.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 0.76rem;
  margin-bottom: 14px;
}
.hero h1,
.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 0 0 18px;
}
.hero-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #f1ead9;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

main section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.intro, .gallery-section, .video-section, .social-section, .contact-section, .split {
  padding: 90px 0 20px;
}
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 0;
}
.section-heading.centered { text-align: center; max-width: 820px; margin: 0 auto 30px; }

.intro-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card {
  padding: 28px;
}
.feature-card h3, .social-card h3, .form-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.feature-card p, .split-content p, .social-card p, .contact-list a, .form-card label {
  color: #efe7d6;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.media-large { overflow: hidden; }
.media-large img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-content { padding: 10px; }
.detail-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.detail-list li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}
.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
  border-radius: 22px;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

.video-wrap {
  overflow: hidden;
  padding: 14px;
}
.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.social-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
}
.social-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
}

.contact-grid {
  grid-template-columns: .9fr 1.1fr;
}
.contact-card, .form-card {
  padding: 28px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-list a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
form {
  display: grid;
  gap: 16px;
}
input, textarea {
  width: 100%;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 14px 16px;
}
textarea { resize: vertical; }
.map-wrap {
  margin-top: 28px;
  overflow: hidden;
  padding: 10px;
}
.map-wrap iframe { border-radius: 20px; }

.site-footer {
  padding: 36px 20px 50px;
  text-align: center;
  color: var(--muted);
}
.site-footer a { color: var(--gold-soft); }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: linear-gradient(135deg, #25d366, #1aa34a);
  color: #fff;
  border-radius: 999px;
  padding: 15px 18px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.lightbox.active { display: flex; }
.lightbox-image {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 20px;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 44px;
  color: white;
  background: transparent;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hide-mobile { display: none; }
  .split,
  .contact-grid,
  .intro-grid,
  .gallery-grid,
  .social-card {
    grid-template-columns: 1fr;
  }
  .media-large img { min-height: 360px; }
  .gallery-item img { height: 260px; }
}

@media (max-width: 640px) {
  .topbar { padding: 12px 16px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.2rem; }
  .hero { min-height: 78vh; }
  .hero-content { padding-top: 110px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-text { font-size: 1rem; }
  main section { width: min(100% - 18px, 1180px); }
  .intro, .gallery-section, .video-section, .social-section, .contact-section, .split { padding-top: 70px; }
  .feature-card, .contact-card, .form-card, .social-card { padding: 22px; }
  .floating-whatsapp { right: 12px; bottom: 12px; padding: 14px 16px; }
}
