/* ============================================
   LUMIÈRE EVENTS — shared.css
   Luxury editorial aesthetic
   Deep midnight + gold + cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&family=Libre+Baskerville:ital@1&display=swap');

:root {
  --black:   #080808;
  --deep:    #0e0e0e;
  --surface: #141414;
  --card:    #1a1a1a;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(212,175,55,0.2);
  --gold:    #d4af37;
  --gold2:   #e8c84a;
  --gold3:   #f5e070;
  --cream:   #f0e8d5;
  --white:   #ffffff;
  --muted:   rgba(240,232,213,0.5);
  --faint:   rgba(240,232,213,0.22);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --r: 12px;
  --r2: 20px;
  --shadow: 0 24px 80px rgba(0,0,0,0.7);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }

/* ---- CURSOR ---- */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: all 0.18s ease;
}
.cursor-label {
  position: fixed; z-index: 9997;
  pointer-events: none;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity 0.2s;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: none;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}
.btn-gold.large { padding: 18px 44px; font-size: 0.88rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: none;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- EYEBROW ---- */
.eyebrow, .services-label span:last-child {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.eyebrow-line, .services-label .eyebrow-line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center;
  padding: 28px 60px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cream);
}
.logo-mark { color: var(--gold); font-size: 0.8rem; }
.nav-links {
  display: flex; gap: 44px;
  margin-right: 44px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: none;
}
.btn-nav:hover { background: var(--gold2); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 7px;
  padding: 6px;
}
.hamburger span {
  display: block; height: 1px; background: var(--cream);
  transition: all 0.3s;
}
.hamburger span:first-child { width: 28px; }
.hamburger span:last-child { width: 18px; }
.hamburger:hover span { width: 28px; background: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 80px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.f-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 260px;
}
.footer-nav h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 0; }
.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover { color: var(--cream); }
.footer-social h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.s-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: all 0.3s;
}
.s-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--faint);
}

/* ---- PAGE TITLE HERO ---- */
.page-hero {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding: 140px 60px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}
.page-hero-bg .orb1 { width: 500px; height: 500px; background: var(--gold); top: -200px; right: -100px; }
.page-hero-bg .orb2 { width: 300px; height: 300px; background: #c8a000; bottom: -50px; left: 200px; }
.page-hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-content .breadcrumb span { color: var(--faint); }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  max-width: 700px;
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-content p {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-text h2 em { font-style: italic; color: var(--gold); }
.cta-text p { font-size: 0.92rem; color: var(--muted); }

/* ---- RESPONSIVE SHARED ---- */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; inset: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(30px);
    gap: 32px; z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: 0.25em;
  }
  .footer { padding: 60px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip { padding: 60px 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 120px 24px 50px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}