/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080808;
  --bg2:      #0f0f0f;
  --bg3:      #151515;
  --gold:     #c9a84c;
  --gold-dim: rgba(201,168,76,.18);
  --gold-glow:rgba(201,168,76,.08);
  --text:     #ede9e0;
  --muted:    #7a756a;
  --border:   rgba(201,168,76,.15);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 16px;
  line-height: 1.6; overflow-x: hidden; cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── CURSOR ─── */
#cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
#cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.5);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s;
}
.cursor-expand #cursor { width: 18px; height: 18px; }
.cursor-expand #cursor-ring { width: 56px; height: 56px; border-color: rgba(201,168,76,.8); }

/* ─── NAV ─── */
nav#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
nav#navbar.scrolled {
  background: rgba(8,8,8,.93);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 46px; transition: opacity .3s; }
.nav-logo img:hover { opacity: .75; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: .73rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  position: relative; padding-bottom: 2px;
  transition: color .3s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--sans); font-size: .73rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: .5rem 1.3rem; border: none; cursor: none;
  text-decoration: none; white-space: nowrap;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: #e0bc5a; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--text); transition: transform .3s, opacity .3s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,8,8,.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--text); text-decoration: none; letter-spacing: .08em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 1.8rem; color: var(--muted); cursor: none;
  background: none; border: none; transition: color .2s;
}
.mobile-menu-close:hover { color: var(--gold); }

/* ─── SECTION COMMONS ─── */
section { padding: 8rem 4rem; }
.section-label {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--text); margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead { font-size: .92rem; color: var(--muted); max-width: 520px; line-height: 1.8; }
.section-header { margin-bottom: 4rem; }
.section-divider { width: 48px; height: 1px; background: var(--gold); margin: 1.4rem 0; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: .85rem 2.2rem; text-decoration: none; border: none; cursor: none;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s; display: inline-block;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15); transform: translateX(-100%);
  transition: transform .3s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.3); }

.btn-outline {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--text); background: transparent;
  padding: .85rem 2.2rem; text-decoration: none;
  border: 1px solid rgba(237,233,224,.3); cursor: none; display: inline-block;
  transition: border-color .3s, color .3s, transform .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-back {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .3s; cursor: none;
}
.btn-back:hover { color: var(--gold); }
.btn-back svg { transition: transform .3s; }
.btn-back:hover svg { transform: translateX(-4px); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  cursor: none; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
footer img { height: 24px; opacity: .55; transition: opacity .3s; }
footer img:hover { opacity: 1; }
.footer-copy { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  nav#navbar { padding: 1.2rem 1.8rem; }
  nav#navbar.scrolled { padding: .9rem 1.8rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 5rem 1.8rem; }
  footer { padding: 2rem 1.8rem; }
}
@media (max-width: 560px) {
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1.2rem; }
}
