*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --crimson: #8B1A2F; --rose: #C4556A; --blush: #E8A0AF;
  --petal: #F5D9DF; --cream: #FDF6F0; --gold: #C9A96E;
  --gold-light: #E8D5B0; --dark: #2A0A12; --text: #4A1525;
  --border: #EDCBD4;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; }
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .35;
  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");
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}
.site-nav.scrolled { background: rgba(42,10,18,.92); backdrop-filter: blur(14px); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--cream); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { font-size: .63rem; letter-spacing: .28em; text-transform: uppercase; color: var(--cream); text-decoration: none; opacity: .6; transition: opacity .2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { color: var(--gold); }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-menu-btn svg { width: 22px; height: 22px; color: var(--cream); }
@media (max-width: 700px) {
  .site-nav { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(42,10,18,.97); padding: 12px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; width: 100%; }
  .nav-menu-btn { display: block; }
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  min-height: 42vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--dark) 0%, #5C1228 45%, var(--crimson) 100%);
  padding: 100px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(196,85,106,.2) 0%, transparent 70%); pointer-events: none; }
.page-hero-bg.c1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.page-hero-bg.c2 { width: 400px; height: 400px; bottom: -100px; left: -80px; }
.page-hero-ornament { font-size: .75rem; letter-spacing: .5em; color: var(--gold); opacity: .7; text-transform: uppercase; margin-bottom: 20px; animation: fadeUp .8s ease both; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 8vw, 5rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.1; animation: fadeUp .9s .1s ease both; }
.page-hero-sub { font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-light); opacity: .55; margin-top: 16px; animation: fadeUp .9s .25s ease both; }
.page-hero-line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto 0; animation: scaleIn .8s .3s ease both; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; padding: 80px 24px 56px; }
.section-header .label { font-size: .68rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; font-style: italic; color: var(--crimson); }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(26,6,14,.92); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .4s ease; backdrop-filter: blur(8px); }
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-inner { position: relative; max-width: 900px; width: 100%; transform: scale(.92); transition: transform .4s ease; }
.lightbox.active .lb-inner { transform: scale(1); }
.lb-img { width: 100%; border-radius: 4px; display: block; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.lb-caption { text-align: center; padding: 20px 0 0; }
.lb-caption-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--cream); margin-bottom: 4px; }
.lb-caption-date { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); opacity: .7; }
.lb-close { position: absolute; top: -40px; right: 0; background: none; border: none; cursor: pointer; color: var(--cream); opacity: .7; transition: opacity .2s; padding: 4px; }
.lb-close:hover { opacity: 1; }
.lb-close svg { width: 24px; height: 24px; }

/* ── FOOTER ── */
footer { background: var(--dark); text-align: center; padding: 56px 24px; }
footer .f-nav { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 32px; list-style: none; }
footer .f-nav a { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); text-decoration: none; opacity: .4; transition: opacity .2s; }
footer .f-nav a:hover { opacity: .8; }
footer .f-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--cream); margin-bottom: 10px; }
footer .f-sub { font-size: .65rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); opacity: .45; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.9} }

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
