@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --gold: #B5A675;
  --gold-light: #cbbe97;
  --gold-muted: rgba(181,166,117,0.4);
  --dark: #0e0d0b;
  --light: #f9f7f2;
  --white: #ffffff;
  --text: #555;
  --text-light: #888;
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ============================================================
   PAGE LOADER
============================================================ */
#hd-loader {
  position: fixed;
  inset: 0;
  background: #0e0d0b;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#hd-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%,100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar-wrap {
  width: 120px;
  height: 1px;
  background: rgba(181,166,117,0.15);
  border-radius: 100px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: #B5A675;
  border-radius: 100px;
  animation: loader-fill 1.6s ease forwards;
}

@keyframes loader-fill { to { width: 100%; } }

/* ============================================================
   NAVIGATION
============================================================ */
#nav-hover-zone {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 40px;
  z-index: 9998;
  pointer-events: all;
}

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background 0.4s ease, opacity 0.4s ease, transform 0.4s ease, padding 0.4s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav.scrolled { padding: 12px 24px; }

.nav-inner {
  width: calc(100% - 48px);
  max-width: 1280px;
  padding: 0 40px;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  background: transparent;
  border-radius: 0;
  transition: background 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease, border 0.4s ease, height 0.4s ease;
  border: 1px solid transparent;
}

.nav.scrolled .nav-inner {
  background: rgba(14,13,11,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  border: 1px solid rgba(181,166,117,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  height: 66px;
}

.nav.hidden { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.nav.hover-visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* Logo — bigger */
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(181,166,117,0.3));
}

.nav-logo:hover .nav-logo-img { opacity: 0.85; transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-dropdown { position: relative; }

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 18px;
  background: transparent;
}

.nav-dropdown-trigger {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--gold); }

.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(14,13,11,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(181,166,117,0.2);
  border-radius: 14px;
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover { background: rgba(181,166,117,0.14); color: var(--gold); padding-left: 20px; }
.nav-dropdown-menu a + a { margin-top: 2px; }

.nav-dropdown-menu a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.nav-dropdown-menu a:hover::before { opacity: 1; }

.nav-cta-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
  background: var(--gold);
  border: none;
  padding: 11px 24px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-cta-arrow {
  width: 18px; height: 18px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-cta-arrow svg { width: 9px; height: 9px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(181,166,117,0.15);
  padding: 28px 32px 36px;
  gap: 20px;
  align-items: center;
  border-radius: 0 0 24px 24px;
  width: 100%;
}

.nav-mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-menu .nav-mobile-sub { font-size: 12px; color: rgba(181,166,117,0.7); }
.nav-mobile-menu .nav-cta { margin-top: 8px; color: #111; border-radius: 100px; }

@media (max-width: 900px) {
  .nav { background: rgba(14,13,11,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 0 24px; width: 100%; border-bottom: 1px solid rgba(181,166,117,0.08); }
  .nav.scrolled .nav-inner { border-radius: 0; width: 100%; }
  .nav.scrolled { padding: 0; }
  .nav-mobile-menu.open { display: flex; }
  .nav-logo-img { width: 36px; height: 36px; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: linear-gradient(to bottom,
    #ffffff 0%,
    rgba(255,255,255,0.95) 3%,
    rgba(240,236,228,0.85) 6%,
    rgba(180,165,140,0.6) 12%,
    rgba(60,50,35,0.85) 20%,
    #0e0d0b 30%
  );
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-backdrop {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(181,166,117,0.04);
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.footer-cta-band {
  padding: 160px 0 72px;
  border-bottom: 1px solid rgba(181,166,117,0.12);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.footer-cta-band.visible { opacity: 1; transform: translateY(0); }

.footer-cta-left { display: flex; flex-direction: column; gap: 16px; }

.footer-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(181,166,117,0.3);
  padding: 6px 14px;
  border-radius: 2px;
  width: fit-content;
}

.footer-cta-heading {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.08;
}

.footer-cta-heading em { font-style: normal; color: var(--gold); }

.footer-cta-email {
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-cta-email:hover { color: var(--gold); }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

.footer-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

.footer-cta-btn .link-arrow {
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-grid {
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(181,166,117,0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.footer-grid.visible { opacity: 1; transform: translateY(0); }

.footer-brand { display: flex; flex-direction: column; gap: 24px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* BIGGER footer logo */
.footer-logo-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(181,166,117,0.4));
}

.footer-logo:hover .footer-logo-img { opacity: 0.85; transform: scale(1.05); }

.footer-logo-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.footer-logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(181,166,117,0.6);
  margin-top: 2px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 12px; margin-top: 4px; }

.footer-social {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(181,166,117,0.2);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.footer-social:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.footer-social svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.6); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.25s ease;
}

.footer-social:hover svg { stroke: #111; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.footer-col a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}

.footer-bottom.visible { opacity: 1; transform: translateY(0); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer-copy a { color: rgba(181,166,117,0.5); text-decoration: none; transition: color 0.2s; }
.footer-copy a:hover { color: var(--gold); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--gold); }

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s ease;
}

.footer-top-btn:hover { color: var(--gold); }

.footer-top-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round;
  transition: transform 0.2s ease;
}

.footer-top-btn:hover svg { transform: translateY(-3px); }

@media (max-width: 1000px) {
  .footer-inner { padding: 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .footer-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   SHARED UTILITIES
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(181,166,117,0.4);
  padding: 7px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(181,166,117,0.3);
  padding: 7px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(181,166,117,0.25); }

.btn-primary .arr {
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade.d1 { transition-delay: 0.08s; }
.fade.d2 { transition-delay: 0.18s; }
.fade.d3 { transition-delay: 0.28s; }
.fade.d4 { transition-delay: 0.38s; }
.fade.d5 { transition-delay: 0.48s; }
.fade-r { opacity: 0; transform: translateX(32px); transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s; }
.fade-r.in { opacity: 1; transform: translateX(0); }
#hd-loader{position:fixed;inset:0;background:#0e0d0b;z-index:99999;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:0;transition:opacity 0.7s ease,visibility 0.7s ease;}
#hd-loader.hidden{opacity:0;visibility:hidden;pointer-events:none;}
.loader-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(181,166,117,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(181,166,117,0.05) 1px,transparent 1px);background-size:48px 48px;pointer-events:none;mask-image:radial-gradient(ellipse 70% 70% at 50% 50%,black 20%,transparent 100%);}
.loader-brand{display:flex;align-items:center;gap:14px;margin-bottom:48px;opacity:0;animation:lbrand 0.5s ease 0.15s forwards;}
@keyframes lbrand{to{opacity:1}}
.loader-brand-icon{width:40px;height:40px;border-radius:6px;background:rgba(181,166,117,0.08);border:1px solid rgba(181,166,117,0.25);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.loader-brand-icon img{width:28px;height:28px;object-fit:contain;}
.loader-brand-name{font-family:'Outfit',sans-serif;font-size:13px;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,0.3);}
.loader-counter-wrap{margin-bottom:36px;text-align:center;position:relative;z-index:1;}
.loader-counter{font-family:'Outfit',sans-serif;font-size:96px;font-weight:900;letter-spacing:-0.04em;color:#fff;line-height:1;display:inline-block;min-width:200px;text-align:center;}
.loader-pct{font-family:'Outfit',sans-serif;font-size:32px;font-weight:300;color:#B5A675;vertical-align:super;margin-left:2px;}
.loader-sublabel{font-family:'Outfit',sans-serif;font-size:10px;font-weight:600;letter-spacing:0.28em;text-transform:uppercase;color:rgba(181,166,117,0.4);margin-top:10px;}
.loader-bar-wrap{width:300px;position:relative;z-index:1;}
.loader-bar-glow{position:absolute;top:-14px;left:0;width:0%;height:28px;background:linear-gradient(90deg,transparent,rgba(181,166,117,0.07));pointer-events:none;}
.loader-bar-track{width:100%;height:1px;background:rgba(181,166,117,0.12);position:relative;overflow:visible;}
.loader-bar-fill{height:100%;background:#B5A675;width:0%;position:relative;}
.loader-bar-fill::after{content:'';position:absolute;right:-1px;top:-3px;width:2px;height:7px;background:#B5A675;box-shadow:0 0 10px rgba(181,166,117,0.9);}
.loader-ticks{display:flex;justify-content:space-between;margin-top:10px;}
.loader-tick{font-family:'Outfit',sans-serif;font-size:9px;font-weight:500;letter-spacing:0.1em;color:rgba(255,255,255,0.08);}
.loader-ready{font-family:'Outfit',sans-serif;font-size:11px;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:rgba(181,166,117,0);margin-top:28px;transition:color 0.5s ease;text-align:center;}
.loader-ready.show{color:rgba(181,166,117,0.55);}
