/* =====================
   RESET & TOKENS
======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rose:       #C8596A;
  --rose-light: #F2B8C0;
  --rose-pale:  #FDF0F2;
  --gold:       #B89A6A;
  --gold-light: #E8D5B0;
  --deep:       #2C1A1F;
  --cream:      #FEF9F5;
  --muted:      #8A7070;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   NAVIGATION
======================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(254,249,245,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 1px 24px rgba(44,26,31,0.08);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: white;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--rose); }
.heart-small { color: var(--rose-light); }
.nav.scrolled .heart-small { color: var(--rose); }

.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--rose); }
.nav.scrolled .nav-links a::after { background: var(--rose); }

.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.4rem;
  color: white;
  cursor: pointer;
}
.nav.scrolled .nav-toggle { color: var(--deep); }

/* =====================
   BUTTONS
======================== */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-primary:hover {
  background: white;
  color: var(--rose);
  border-color: white;
}

.btn-rose {
  display: inline-block;
  padding: 14px 40px;
  background: var(--rose);
  color: white;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border: 1px solid var(--rose);
  transition: all var(--transition);
}
.btn-rose:hover { background: var(--deep); border-color: var(--deep); }

/* =====================
   PAGE HEADER (inner pages)
======================== */
.page-hero {
  position: relative;
  height: 50vh; min-height: 320px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 56px;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,31,0.3) 0%, rgba(44,26,31,0.65) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white;
  padding: 0 24px;
}
.page-hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--rose-light); }

/* =====================
   SECTION UTILITIES
======================== */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

/* =====================
   QUOTE STRIP
======================== */
.quote-strip {
  background: var(--deep);
  padding: 72px 48px;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =====================
   FOOTER
======================== */
.footer {
  background: var(--deep);
  color: var(--muted);
  text-align: center;
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-heart {
  font-size: 2rem;
  color: var(--rose);
  margin-bottom: 16px;
}
.footer p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-tiny { color: rgba(138,112,112,0.6); font-size: 0.72rem; }

/* =====================
   PETAL ANIMATION
======================== */
.petal {
  position: absolute;
  pointer-events: none;
  font-size: 1.2rem;
  animation: petalFall linear infinite;
  opacity: 0.7;
}
@keyframes petalFall {
  0%   { transform: translateY(-40px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* =====================
   MOBILE GENERAL
======================== */
@media (max-width: 768px) {
  .quote-strip { padding: 48px 24px; }
  .quote-strip blockquote { font-size: 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .section-sub { margin-bottom: 36px; font-size: 0.75rem; }
  .page-hero { height: 40vh; min-height: 280px; padding-bottom: 40px; }
  .page-hero h1 { font-size: 2.2rem; }
  .footer { padding: 40px 20px; }
}

/* =====================
   MOBILE NAV
======================== */
@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: block; z-index: 10001; position: relative; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--deep);
    align-items: center; justify-content: center;
    gap: 32px;
    z-index: 10000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--rose-light); }
  .nav-links a::after { background: var(--rose-light); }
  /* Prevent nav link text bleeding through page content */
  .nav-links:not(.open) { pointer-events: none; visibility: hidden; }
}
