:root {
  --rose: #A0788C;
  --rose-deep: #7A4F66;
  --rose-darker: #5C3050;
  --rose-light: #C8A0B4;
  --rose-pale: #F0DCDC;
  --rose-blush: #FAF0F5;
  --noir: #1A0D14;
  --noir2: #2D1624;
  --cream: #FDFBFC;
  --ivory: #F8F3F6;
  --warm: #FFFFFF;
  --muted: #8A6070;
  --border: rgba(160,120,140,0.15);
  --border-med: rgba(160,120,140,0.28);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: #FFFFFF; color: var(--noir); font-size: 17px; line-height: 1.8; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; height: 66px; border-bottom: 0.5px solid var(--border); transition: box-shadow 0.3s; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--noir); letter-spacing: 1px; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; }
.logo-marque { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.85em; letter-spacing: 3px; }
.logo-script { color: var(--rose); font-style: italic; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-cta { background: var(--rose) !important; color: white !important; padding: 8px 18px !important; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--rose-deep) !important; color: white !important; }

/* ── HAMBURGER MOBILE ── */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--noir); border-radius: 2px; transition: all 0.25s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MENU MOBILE DROPDOWN ── */
.nav-mobile { display: none; position: fixed; top: 66px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); border-bottom: 0.5px solid var(--border); z-index: 99; padding: 1.25rem 1.5rem 1.5rem; flex-direction: column; gap: 0; box-shadow: 0 8px 24px rgba(160,120,140,0.12); }
.nav-mobile.open { display: flex; }
.nav-mobile a { display: block; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; padding: 0.9rem 0; border-bottom: 0.5px solid var(--border); transition: color 0.2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--rose); }
.nav-mobile .nav-cta { display: block; text-align: center; margin-top: 1rem; padding: 12px 24px !important; background: var(--rose) !important; color: white !important; border-radius: 2px; border-bottom: none !important; }
.nav-mobile .nav-cta:hover { background: var(--rose-deep) !important; }

.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.25rem; color: var(--noir); }
.section-intro { font-size: 17px; color: var(--muted); line-height: 1.9; max-width: 640px; text-align: justify; }
.section { padding: 5.5rem 0; }
.section-blush { background: var(--rose-blush); }
.section-ivory { background: var(--ivory); }
.section-dark { background: var(--noir); color: white; }
.section-dark .section-title { color: #FEFCFD; }
.section-dark .section-intro { color: rgba(255,255,255,0.58); }

.btn { display: inline-block; padding: 14px 28px; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; font-family: 'Jost', sans-serif; }
.btn-rose { background: var(--rose); color: white; }
.btn-rose:hover { background: var(--rose-deep); }
.btn-outline { background: transparent; color: var(--noir); border: 1px solid var(--border-med); }
.btn-outline:hover { background: var(--ivory); }
.btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }

footer { background: var(--noir); padding: 3rem 2rem; text-align: center; border-top: 0.5px solid var(--border); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--rose-pale); margin-bottom: 0.5rem; }
.footer-logo em { font-style: italic; color: var(--rose-light); }
.footer-tagline { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.28); margin-bottom: 1.5rem; text-transform: uppercase; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: var(--rose-light); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }

.fade-up { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container, .container-sm { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
}
