/* ═══════════════════════════════════════════════════
   LEIGH AMOR — SHARED STYLES
   Applies to every page on leighamor.com
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cinzel:wght@400;500;600&family=Montserrat:wght@200;300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=IM+Fell+English:ital@0;1&family=Crimson+Pro:wght@300;400;500;600&family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Barlow+Condensed:wght@300;400;600;700;800;900&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* ── LEIGH AMOR VARIABLES ── */
:root {
  --la-black:    #0a0a0a;
  --la-near:     #111111;
  --la-charcoal: #1c1c1c;
  --la-graphite: #2a2a2a;
  --la-smoke:    #3d3d3d;
  --la-silver:   #8a8a8a;
  --la-pearl:    #c8c4bc;
  --la-ivory:    #f0ece4;
  --la-white:    #fafafa;
  --la-gold:     #c9a84c;
  --la-gold-l:   #e2c47a;
  --la-rose:     #c4748a;
  --fd: 'Cinzel', serif;
  --fb: 'Cormorant Garamond', serif;
  --fs: 'Montserrat', sans-serif;

  /* RVP variables */
  --cream:      #f5efe0;
  --warm-white: #faf6ee;
  --forest:     #2d3d2e;
  --forest-mid: #4a6741;
  --gold:       #c4922a;
  --gold-l:     #e0b55a;
  --berry:      #b05070;
  --berry-deep: #7a2040;
  --text-dark:  #1e2a1f;
  --text-mid:   #4a5540;
  --rf: 'Playfair Display', serif;
  --rb: 'Crimson Pro', serif;
  --ri: 'IM Fell English', serif;

  /* NP variables */
  --np-black: #0a0500;
  --np-dark:  #0d0600;
  --np-gold:  #f5c518;
  --np-teal:  #2dccda;
  --np-red:   #ff4444;
  --nf: 'Bebas Neue', sans-serif;
  --nb: 'Barlow', sans-serif;
  --nc: 'Barlow Condensed', sans-serif;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' 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.4;
}

/* ── SHARED NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 20px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}
#site-nav.scrolled {
  backdrop-filter: blur(12px);
  padding: 14px 52px;
}
#site-nav.la-mode { background: rgba(10,10,10,0); }
#site-nav.la-mode.scrolled {
  background: rgba(10,10,10,0.93);
  border-bottom-color: rgba(201,168,76,0.15);
}
#site-nav.rvp-mode {
  background: rgba(245,239,224,0.96);
  border-bottom-color: rgba(196,146,42,0.25);
}
#site-nav.np-mode {
  background: rgba(10,5,0,0.93);
  border-bottom-color: rgba(245,197,24,0.2);
}

.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo { height: 42px; width: auto; transition: opacity 0.3s; }
.la-mode  .nav-logo { filter: drop-shadow(0 2px 10px rgba(201,168,76,0.3)); }
.rvp-mode .nav-logo { filter: brightness(0); opacity: 0.7; }
.np-mode  .nav-logo { filter: drop-shadow(0 0 8px rgba(245,197,24,0.4)); }

.nav-divider {
  width: 1px; height: 28px;
  background: rgba(201,168,76,0.3);
}
.nav-brand-label {
  font-family: var(--fs); font-size: 0.62rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  transition: color 0.3s;
}
.la-mode  .nav-brand-label { color: rgba(200,196,188,0.6); }
.rvp-mode .nav-brand-label { color: var(--text-mid); }
.np-mode  .nav-brand-label { color: rgba(245,197,24,0.6); }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--fs); font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; transform: scaleX(0); transition: transform 0.3s;
}
.la-mode  .nav-links a { color: rgba(200,196,188,0.65); }
.la-mode  .nav-links a::after { background: var(--la-gold); }
.la-mode  .nav-links a:hover { color: var(--la-gold); }
.rvp-mode .nav-links a { color: var(--text-mid); }
.rvp-mode .nav-links a::after { background: var(--berry); }
.rvp-mode .nav-links a:hover { color: var(--berry); }
.np-mode  .nav-links a { color: rgba(245,240,232,0.65); }
.np-mode  .nav-links a::after { background: var(--np-gold); }
.np-mode  .nav-links a:hover { color: var(--np-gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 0;
  min-width: 200px; padding: 8px 0;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-family: var(--fs); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,196,188,0.6); text-decoration: none;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--la-gold);
  background: rgba(201,168,76,0.05);
}
.nav-dropdown-menu a::after { display: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px; background: var(--la-gold); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%); transition: transform 0.1s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%); transition: all 0.15s ease;
}

/* ── SHARED FOOTER ── */
#site-footer {
  background: var(--la-near);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 64px 80px 40px;
}
.sf-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.sf-logo { height: 50px; width: auto; margin-bottom: 16px; }
.sf-tagline {
  font-family: var(--fb); font-style: italic;
  font-size: 1rem; color: var(--la-silver); line-height: 1.6; margin-bottom: 14px;
}
.sf-contact {
  font-family: var(--fs); font-size: 0.72rem;
  letter-spacing: 0.08em; color: var(--la-smoke); line-height: 2;
}
.sf-contact a { color: var(--la-gold); text-decoration: none; }
.sf-col h4 {
  font-family: var(--fs); font-size: 0.6rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--la-gold); margin-bottom: 16px;
}
.sf-col ul { list-style: none; }
.sf-col ul li { margin-bottom: 10px; }
.sf-col ul li a {
  font-family: var(--fs); font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--la-silver); text-decoration: none; transition: color 0.2s;
}
.sf-col ul li a:hover { color: var(--la-gold); }
.sf-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
  font-family: var(--fs); font-size: 0.62rem;
  letter-spacing: 0.1em; color: var(--la-smoke);
}
.sf-bottom a { color: var(--la-gold); text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; } .rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; } .rd4 { transition-delay: 0.4s; }

/* ── SHARED UTILITIES ── */
.eyebrow {
  font-family: var(--fs); font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.42em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px;
}
.eyebrow.left::after { display: none; }
.eyebrow.la { color: var(--la-gold); }
.eyebrow.la::before, .eyebrow.la::after { background: var(--la-gold); }
.eyebrow.rvp { color: var(--gold); }
.eyebrow.rvp::before, .eyebrow.rvp::after { background: var(--gold); }
.eyebrow.np { color: var(--np-teal); text-shadow: 0 0 15px rgba(45,204,218,0.4); }
.eyebrow.np::before, .eyebrow.np::after { background: var(--np-teal); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #site-nav { padding: 14px 20px; }
  #site-nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  #site-footer { padding: 48px 24px 32px; }
  .sf-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── FLOATING SOCIAL BAR ── */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sf-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: width 0.25s ease;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}
.sf-btn svg {
  width: 18px !important;
  height: 18px !important;
  fill: white !important;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}
.sf-btn .sf-label {
  position: absolute;
  right: 40px;
  top: 0;
  height: 40px;
  background: inherit;
  color: white;
  font-family: var(--fs);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 12px;
  display: flex;
  align-items: center;
  transform: translateX(8px);
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
  border-radius: 4px 0 0 4px;
}
.sf-btn:hover .sf-label { transform: translateX(0); opacity: 1; }
.sf-instagram { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.sf-facebook  { background: #1877f2; }
.sf-tiktok    { background: #010101; }
.sf-linkedin  { background: #0077b5; }

/* ── SOCIAL SECTION (footer area) ── */
.social-section {
  background: var(--la-gold);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.ss-text {
  font-family: var(--fs);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--la-black);
  white-space: nowrap;
}
.ss-handles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.ss-handle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--la-black);
  color: var(--la-gold);
  font-family: var(--fs);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 2px;
  line-height: 1;
}
.ss-handle svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
  flex-shrink: 0;
}
.ss-handle:hover { background: var(--la-charcoal); color: white; }

@media(max-width:768px) {
  .social-float { display: none; }
  .social-section { padding: 20px 20px; flex-direction: column; text-align: center; }
  .ss-handles { justify-content: center; }
}
