:root {
  --gold: #B8972A;
  --gold-light: #D4AF37;
  --gold-pale: #F0D98A;
  --gold-dark: #A07830;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --red-bg: #7A1A1A;
  --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
.display, .section-title, .hero-title { font-family: 'Cormorant Garamond', serif; }
.label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ── GOLD LINE ── */
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.gold-line.left { margin: 0; }
.gold-sep {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px clamp(16px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s, background 0.3s;
  border-bottom: 1px solid rgba(184,151,42,0.15);
}
nav.scrolled { padding: 12px clamp(16px, 5vw, 64px); background: rgba(10,10,10,0.97); }
.nav-logo { height: 44px; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--black);
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184,151,42,0.4); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: var(--off-white);
  padding: 16px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color 0.3s, color 0.3s;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-secondary:active { transform: scale(0.97); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn-whatsapp:active { transform: scale(0.97); }

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(37,211,102,0.5);
  color: var(--whatsapp);
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-whatsapp-outline:hover {
  background: var(--whatsapp);
  color: #fff;
}

/* ── SECTIONS ── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.site-footer {
  padding: 60px;
  text-align: center;
  border-top: 1px solid rgba(184,151,42,0.15);
  background: var(--black);
}
.footer-logo { height: 38px; display: inline-block; margin-bottom: 20px; opacity: 0.8; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.8;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: wpp-pulse 2.5s infinite;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-tooltip {
  position: fixed;
  bottom: 96px;
  right: 28px;
  background: var(--dark-2);
  color: var(--off-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
  white-space: nowrap;
}
.whatsapp-float:hover ~ .whatsapp-tooltip { opacity: 1; }

@keyframes wpp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.faq-question {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--off-white);
  gap: 20px;
  transition: color 0.3s;
}
.faq-question:hover, .faq-question.active { color: var(--gold-light); }
.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid rgba(184,151,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-question.active .faq-toggle {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-light);
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .nav-logo { height: 36px; }
  .section-header { margin-bottom: 48px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .site-footer { padding: 40px 16px; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .btn-primary, .btn-secondary, .btn-whatsapp, .btn-whatsapp-outline {
    width: 100%;
    padding: 16px 20px;
    font-size: 11px;
  }
  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .whatsapp-tooltip { display: none; }
}
@media (max-width: 480px) {
  .nav-cta { padding: 8px 16px; font-size: 10px; letter-spacing: 1.5px; }
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
