/* ── CUSTOM CURSOR ────────────────────────────────── */
* { cursor: none; }
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: white; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid white; border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
  mix-blend-mode: difference;
}
@media (hover: none), (max-width: 900px) {
  * { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor, .cursor-ring { transition: none; }
}

/* ── FLOATING GET A QUOTE ─────────────────────────── */
.float-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  background: var(--ink); color: var(--cream);
  padding: 14px 26px; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
  font-weight: 500; border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.6s 2s forwards;
}
.float-cta:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(184,151,90,0.35);
}
.float-cta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 2s infinite;
}
.float-cta:hover .float-cta-dot { background: var(--ink); }

/* ── FLOATING WHATSAPP ────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 32px; left: 32px; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  text-decoration: none;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.6s 2.2s forwards;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 26px; height: 26px; }

/* ── HAMBURGER BUTTON (mobile) ───────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 102;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink); transition: transform 0.3s, opacity 0.3s, background 0.4s;
}
nav.scrolled .nav-hamburger span { background: var(--cream); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV PANEL ────────────────────────────── */
.nav-mobile-panel {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.nav-mobile-panel.open { transform: translateX(0); }
.nmp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--light-stroke);
  flex-shrink: 0;
}
.nmp-close {
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 8px; line-height: 0; width: 40px;
}
.nmp-logo {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.nmp-spacer { width: 40px; }
.nmp-nav { flex: 1; display: flex; flex-direction: column; }
.nmp-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 700; color: var(--ink); text-decoration: none;
  border: none; border-bottom: 1px solid var(--light-stroke);
  background: none; cursor: pointer; width: 100%; text-align: left;
  transition: color 0.2s; letter-spacing: -0.01em;
}
.nmp-link:hover, .nmp-link:focus-visible { color: var(--gold); outline: none; }
.nmp-chevron { flex-shrink: 0; transition: transform 0.3s ease; }
.nmp-accordion-trigger[aria-expanded="true"] .nmp-chevron { transform: rotate(180deg); }
.nmp-accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(14,12,10,0.025);
}
.nmp-accordion-body.open { max-height: 400px; }
.nmp-sub-link {
  display: block; padding: 15px 28px 15px 48px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm-mid); text-decoration: none;
  border-bottom: 1px solid var(--light-stroke);
  transition: color 0.2s;
}
.nmp-sub-link:hover { color: var(--ink); }
.nmp-footer {
  padding: 28px 28px 48px; border-top: 1px solid var(--light-stroke);
  flex-shrink: 0;
}
.nmp-cta {
  display: block; text-align: center;
  background: var(--ink); color: var(--cream);
  padding: 18px 24px; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: background 0.3s;
}
.nmp-cta:hover { background: var(--gold); color: var(--ink); }

/* ── NAV BAR ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 60px;
  background: rgba(242, 237, 228, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
nav.scrolled {
  background: rgba(14, 12, 10, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  text-decoration: none; z-index: 102;
  transition: color 0.4s ease; font-weight: 700;
}
nav.scrolled .nav-logo { color: var(--cream); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a,
.nav-item > a {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  text-decoration: none; opacity: 0.65;
  transition: opacity 0.2s, color 0.4s ease;
  padding: 10px 12px;
  display: inline-flex; align-items: center; position: relative;
}
.nav-links a::after,
.nav-item > a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-item:hover > a::after,
.nav-links a.active::after,
.nav-item > a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-item:hover > a { opacity: 1; }
.nav-links a.active,
.nav-item > a.active { opacity: 1; color: var(--gold); }
nav.scrolled .nav-links a,
nav.scrolled .nav-item > a { color: var(--cream); }
.nav-item { position: relative; padding-bottom: 8px; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: -12px;
  background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px; flex-direction: column; list-style: none;
  padding: 12px 0; margin-top: 0; z-index: 101; pointer-events: auto;
}
nav.scrolled .nav-dropdown { background: var(--ink); }
.nav-dropdown a {
  padding: 10px 20px; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}
nav.scrolled .nav-dropdown a { color: var(--cream); }
.nav-dropdown a:hover { opacity: 1; background: rgba(184,151,90,0.08); }
nav.scrolled .nav-dropdown a:hover { background: rgba(184,151,90,0.15); }
.nav-item:hover .nav-dropdown { display: flex; }

/* -- NAV GET A QUOTE CTA -------------------------------- */
.nav-links a.nav-cta-link {
  background: var(--ink);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 9px 20px;
  letter-spacing: 0.18em;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.nav-links a.nav-cta-link::after { display: none; }
.nav-links a.nav-cta-link:hover {
  background: var(--gold);
  color: var(--ink) !important;
  transform: translateY(-1px);
}
nav.scrolled .nav-links a.nav-cta-link {
  background: var(--gold);
  color: var(--ink) !important;
}
nav.scrolled .nav-links a.nav-cta-link:hover {
  background: var(--cream);
  color: var(--ink) !important;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink); color: var(--cream);
  padding: 70px 60px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-breadcrumb {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(242,237,228,0.45);
  margin-bottom: 20px;
}
.footer-breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.footer-breadcrumb a:hover { color: var(--gold); }
.footer-breadcrumb span { margin: 0 8px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 10px;
}
.footer-tagline { font-size: 11px; color: rgba(242,237,228,0.35); letter-spacing: 0.1em; margin-bottom: 28px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,237,228,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.5; }
.footer-contact-item:hover svg { opacity: 1; }
.footer-nav-col h4 {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; font-weight: 500;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,237,228,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--cream); }
.footer-social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,237,228,0.5); text-decoration: none; transition: all 0.25s ease;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(242,237,228,0.22); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(242,237,228,0.22); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(242,237,228,0.5); }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links, .nav-right { display: none; }
  nav { padding: 16px 24px; }
  footer { padding: 52px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
  .float-cta { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 9px; }
  .whatsapp-float { bottom: 20px; left: 16px; width: 46px; height: 46px; }
