:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --cream: #f5f1e9;
  --gray: #b8b8b8;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
}

h2 { font-size: 2.2rem; margin-bottom: 24px; }
h3 { font-size: 1.3rem; }

p { color: var(--gray); }

.text-link {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1204;
  font-weight: 600;
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--gold);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(201,162,75,0.12); }
.btn-whatsapp {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 10px 20px;
}
.btn-whatsapp:hover { background: rgba(201,162,75,0.12); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,162,75,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo { width: 44px; height: 44px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.brand-name em { color: var(--gold); font-style: normal; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,162,75,0.03) 0px, rgba(201,162,75,0.03) 1px, transparent 1px, transparent 60px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(201,162,75,0.08), transparent 60%);
}
.hero-content { position: relative; z-index: 2; }
.hero .eyebrow { justify-content: center; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin: 10px 0 18px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: var(--gray);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  text-decoration: none;
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Sections */
.section { padding: 110px 0; }
.section-dark { background: var(--black-soft); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media { display: flex; justify-content: center; }
.esencia-logo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(201,162,75,0.15);
}
.split-copy p { margin-bottom: 18px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.service-card {
  border: 1px solid rgba(201,162,75,0.2);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 16px; }
.service-card ul { list-style: none; }
.service-card li {
  color: var(--gray);
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
}
.service-card li:first-child { border-top: none; }
.services-cta { margin-top: 50px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 50px;
}
.gallery-item {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-soft);
  border: 1px solid rgba(201,162,75,0.15);
}
.gallery-flyer { grid-row: span 2; grid-column: span 1; }
.gallery-flyer img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery-word {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.gallery-note { margin-top: 24px; color: var(--gray); font-size: 0.85rem; }

/* Contact */
.contact-block { margin-bottom: 26px; }
.contact-block h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.map-frame {
  width: 100%;
  height: 380px;
  border: 1px solid rgba(201,162,75,0.25);
  filter: grayscale(0.4) contrast(1.1);
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(201,162,75,0.2);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo { width: 50px; height: 50px; border-radius: 50%; }
.footer-inner p { font-size: 0.8rem; }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-social a:hover { color: var(--gold-light); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 200;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* Responsive */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-flyer { grid-row: span 2; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,162,75,0.2);
  }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .section { padding: 70px 0; }
}
