/* ScentSnap – Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --rose: #B5174E;
  --rose-deep: #7A0031;
  --rose-mid: #D4215F;
  --rose-light: #F7D6E4;
  --rose-glow: rgba(181,23,78,0.12);
  --cream: #FEF9F4;
  --warm: #FFF3F7;
  --white: #FFFFFF;
  --text: #18080F;
  --text-mid: #5C2A3A;
  --text-dim: #9E6575;
  --border: #EED0DC;
  --border-light: #F8EBF1;
  --shadow: 0 4px 24px rgba(181,23,78,0.08);
  --shadow-lg: 0 20px 60px rgba(181,23,78,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(254,249,244,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 5%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(181,23,78,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.1px;
}

.nav-links a:hover, .nav-links a.active { color: var(--rose); }

.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 14px rgba(181,23,78,0.28) !important;
}

.nav-cta:hover {
  background: var(--rose-deep) !important;
  box-shadow: 0 6px 20px rgba(181,23,78,0.38) !important;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── FOOTER ────────────────────────────── */
footer {
  background: linear-gradient(160deg, #1A0810 0%, #0E0408 100%);
  padding: 60px 5% 30px;
}

.footer-inner { max-width: 1080px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--rose-light); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

.affiliate-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ──────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rose);
  color: #fff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(181,23,78,0.3);
  letter-spacing: -0.1px;
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(181,23,78,0.38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 4px;
  transition: opacity 0.2s;
  letter-spacing: -0.1px;
}

.btn-secondary:hover { opacity: 0.7; }

/* ── SECTIONS ─────────────────────────── */
.section {
  padding: 96px 5%;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ── PAGE HEADER ─────────────────────── */
.page-header {
  padding: 120px 5% 60px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-header-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.page-header .updated {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
}

/* ── UTILITIES ───────────────────────── */
.max-container { max-width: 1080px; margin: 0 auto; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 64px 5%; }
}
