/* ═══════════════════════════════════════
   PANDORA E. PARIS — Shared Styles
   All pages import this stylesheet
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

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

:root {
  --navy:       #1A1F3A;
  --navy-mid:   #232847;
  --navy-light: #2D3357;
  --rose-gold:  #C9956A;
  --rose-light: #DDB48A;
  --rose-dim:   #A87550;
  --white:      #FFFFFF;
  --off-white:  #FAF8F5;
  --cream:      #F0E8DF;
  --text-soft:  rgba(240,232,223,0.72);
}

html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: transparent;
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(26,31,58,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,149,106,0.2);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-logo-svg  { width: 42px; height: 42px; flex-shrink: 0; }
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
  line-height: 1.25;
}
.nav-logo-text span { color: var(--rose-gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--rose-light); }
.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--rose-gold);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--rose-light); transform: translateY(-1px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,149,106,0.12);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(201,149,106,0.02) 60px, rgba(201,149,106,0.02) 61px);
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(201,149,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 1px;
  background: var(--rose-gold);
}
.page-hero h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--rose-gold); }
.page-hero-sub {
  max-width: 52ch;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-top: 1.4rem;
}

/* ── MARQUEE ── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(201,149,106,0.15);
  border-bottom: 1px solid rgba(201,149,106,0.15);
  padding: 0.85rem 0;
  background: var(--navy-mid);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  padding: 0 1.8rem;
  flex-shrink: 0;
}
.marquee-sep { color: var(--rose-gold) !important; opacity: 0.7 !important; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED UTILITIES ── */
.inner { max-width: 1260px; margin: 0 auto; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 1.6rem; height: 1px;
  background: var(--rose-gold);
}
.section-heading {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.12;
}
.section-heading em { font-style: italic; color: var(--rose-gold); }
.on-light .section-label { color: var(--rose-gold); }
.on-light .section-label::before { background: var(--rose-gold); }
.on-light .section-heading { color: var(--navy); }
.on-light .section-heading em { color: var(--rose-gold); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--rose-gold);
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--rose-light); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(240,232,223,0.28);
  padding: 0.95rem 2.2rem;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--rose-gold); color: var(--rose-light); transform: translateY(-2px); }
.btn-ghost-navy {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(26,31,58,0.3);
  padding: 0.95rem 2.2rem;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost-navy:hover { border-color: var(--rose-gold); background: rgba(201,149,106,0.08); transform: translateY(-2px); }

/* ── ORNAMENT ── */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; margin-bottom: 1.6rem;
}
.orn-line { width: 50px; height: 1px; background: var(--rose-gold); opacity: 0.35; }
.orn-diamond { width: 6px; height: 6px; background: var(--rose-gold); transform: rotate(45deg); opacity: 0.65; }
.orn-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose-gold); opacity: 0.45; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,149,106,0.18);
  padding: 3rem;
}
.footer-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-logo-svg { width: 36px; height: 36px; }
.footer-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.footer-name span { color: var(--rose-gold); }
.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.32;
  margin-top: 0.3rem;
}
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover { opacity: 1; color: var(--rose-light); }
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.25;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,149,106,0.08);
  margin-top: 0.5rem;
  text-align: center;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 880px) {
  nav { padding: 1rem 1.4rem; }
  .nav-links { display: none; }
  .page-hero { padding: 8rem 1.4rem 4rem; }
  footer { padding: 2rem 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
