:root {
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --gold-dark: #a07830;
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --dark-4: #252525;
  --text: #e0e0e0;
  --text-muted: #888;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s;
}
.navbar.scrolled { height: 65px; background: rgba(10,10,10,0.98); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 48px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
}
.nav-logo-text .sub {
  font-size: 0.62rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.85; }
.nav-phone {
  color: var(--gold-light) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(14px);
  padding: 32px 5%;
  z-index: 999;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a i { color: var(--gold); font-size: 0.85rem; width: 18px; }
.mobile-menu .mob-cta {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark) !important;
  justify-content: center;
  padding: 16px;
  border-radius: 6px;
  font-weight: 700;
  border-bottom: none;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 5% 80px;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-inner { position: relative; max-width: 800px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.65rem; }
.page-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-title .gold { color: var(--gold-light); }
.page-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}
.page-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 24px 0;
  border-radius: 2px;
}

/* ── SECTION BASE ── */
.section { padding: 100px 5%; }
.section-alt { background: var(--dark-2); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .gold { color: var(--gold-light); }
.section-desc { font-size: 0.95rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.8; }
.gold-line {
  width: 55px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--dark);
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.45); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 70px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.footer-brand img { height: 65px; margin-bottom: 18px; display: block; }
.footer-brand .no-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: block;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn i { color: var(--gold); font-size: 0.9rem; }
.social-btn:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col .contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-col .contact-line i { color: var(--gold); font-size: 0.85rem; width: 16px; }
.footer-col .contact-line a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col .contact-line a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom span { color: var(--gold); }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { font-size: 1.55rem; color: white; }

/* ── ANIMATIONS ── */
@keyframes pulse-green {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
