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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --black: #080808;
  --black-2: #0F0F0F;
  --black-3: #161616;
  --off-white: #F5F0E8;
  --muted: rgba(245,240,232,0.45);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Noise overlay ── */
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: 1; opacity: 0.6;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  opacity: 0.55;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-ring.hovered { width: 56px; height: 56px; opacity: 0.25; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.12em;
  color: var(--gold); text-decoration: none; text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo span { color: var(--off-white); font-weight: 300; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.65rem 1.6rem; border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  text-decoration: none; white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; }
.hamburger span { width: 24px; height: 1px; background: var(--gold); display: block; transition: all 0.3s; }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--off-white); text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.5rem; background: none; border: none; color: var(--muted); cursor: none;
}

/* ── Page Banner (sub-pages) ── */
.page-banner {
  position: relative; height: 42vh; min-height: 340px;
  display: flex; align-items: flex-end; padding-bottom: 4rem;
  overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.92) 100%);
  z-index: 1;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
              var(--black-2);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner .section-label { margin-bottom: 0.6rem; }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.01em;
}
.page-banner h1 em { font-style: italic; color: var(--gold); }

/* ── Containers & Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
section { position: relative; padding: 7rem 0; }

/* ── Typography utilities ── */
.section-label {
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.08; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.9; max-width: 560px; }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 2rem 0; opacity: 0.6; }
.divider.center { margin: 2rem auto; }

/* ── Buttons ── */
.btn-gold {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.8rem; background: var(--gold); color: var(--black);
  border: none; font-family: 'Jost', sans-serif; font-weight: 500;
  text-decoration: none; display: inline-block;
  transition: background 0.3s, transform 0.3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.8rem; background: transparent; color: var(--off-white);
  border: 1px solid rgba(245,240,232,0.3);
  font-family: 'Jost', sans-serif; text-decoration: none; display: inline-block;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── FOOTER ── */
footer {
  background: var(--black); border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; display: block;
}
.footer-logo span { color: var(--off-white); font-weight: 300; }
.footer-tagline { font-size: 0.78rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.availability-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #4CAF50; border: 1px solid rgba(76,175,80,0.3); padding: 0.5rem 1rem;
}
.availability-badge .dot { width: 6px; height: 6px; background: #4CAF50; border-radius: 50%; animation: pulse-dot 2s infinite; }
.footer-col-title {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; font-weight: 400;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none; color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 2rem; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(245,240,232,0.22); }

/* ── Keyframes ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); } 80%,100% { box-shadow: 0 0 0 18px rgba(201,168,76,0); } }
@keyframes scroll-line { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-banner { height: 35vh; min-height: 280px; padding-bottom: 2.5rem; }
}
