/* ═══════════════════════════════════════════
   THE SCENT CLUB — MAIN STYLESHEET
   Brand: #FFFDF9 cream · #FF3DB4 pink · #222222 near-black
═══════════════════════════════════════════ */

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

:root {
  --cream:      #FFFDF9;
  --cream-mid:  #F5F0E8;
  --cream-dark: #EDE6D8;
  --stone:      #D4C8BC;
  --taupe:      #8C8078;
  --ink:        #222222;
  --pink:       #FF3DB4;
  --pink-dark:  #D4209A;
  --pink-pale:  #FFD6F0;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); font-weight: 300; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; }
em { font-style: italic; color: var(--pink); }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 60px;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
nav.scrolled { border-color: var(--cream-dark); padding-top: 16px; padding-bottom: 16px; }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: var(--ink); }
.nav-logo em { color: var(--pink); font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cta { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--cream); background: var(--ink); padding: 12px 26px; transition: background .2s; }
.nav-cta:hover { background: var(--pink); }
.nav-mobile-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--cream); background: var(--ink); padding: 18px 40px; transition: background .25s, transform .2s; }
.btn-primary:hover { background: var(--pink); transform: translateY(-1px); }
.btn-ghost { display: inline-block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--stone); padding-bottom: 3px; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

/* ── SECTION SHARED ── */
.section { padding: 120px 80px; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--pink); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--pink); }
.section-eyebrow.light { color: var(--pink-pale); }
.section-eyebrow.light::before, .section-eyebrow.light::after { background: var(--pink-pale); }
.section-title { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; }
.section-title.light { color: var(--cream); }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 100px; }
.hero-text { padding: 80px 60px 80px 80px; animation: fadeUp 1s ease both; }
.hero-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--pink); margin-bottom: 28px; display: flex; align-items: center; gap: 16px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--pink); }
.hero h1 { font-size: clamp(44px, 5.2vw, 76px); line-height: 1.07; margin-bottom: 32px; }
.hero h1 em { color: var(--pink); }
.hero-desc { font-size: 15px; line-height: 1.85; color: var(--taupe); max-width: 400px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 20px; align-items: center; }

/* Hero visual */
.hero-visual { height: 100vh; position: relative; overflow: hidden; animation: fadeIn 1.2s ease both .3s; }
.hero-visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 55%, rgba(255,61,180,.08) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 25%, rgba(255,61,180,.05) 0%, transparent 50%),
              var(--cream-mid);
}
.bottle-scene { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.bottle-scene svg { width: 280px; height: auto; }
.hero-stats { position: absolute; bottom: 60px; left: 40px; right: 40px; display: flex; }
.stat { flex: 1; padding: 22px; background: rgba(255,253,249,.88); backdrop-filter: blur(4px); border: 1px solid rgba(212,200,188,.5); text-align: center; }
.stat + .stat { border-left: none; }
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--pink); display: block; }
.stat-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); margin-top: 4px; display: block; }

/* ── HOW IT WORKS ── */
.how-section { padding: 120px 80px; background: #1a1a1a; color: var(--cream); }
.notes-intro { text-align: center; font-size: 15px; line-height: 1.8; color: rgba(255,253,249,.65); max-width: 540px; margin: 0 auto 72px; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); margin-bottom: 80px; }
.note-card { background: rgba(255,255,255,.06); padding: 50px 38px; border-right: 1px solid rgba(255,255,255,.1); transition: background .3s; }
.note-card:last-child { border-right: none; }
.note-card:hover { background: rgba(255,61,180,.1); }
.note-number { font-family: var(--font-display); font-size: 58px; font-weight: 300; color: rgba(255,61,180,.3); line-height: 1; margin-bottom: 20px; }
.note-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; opacity: 1; }
.note-title { font-family: var(--font-display); font-size: 25px; color: #FFFDF9; margin-bottom: 14px; }
.note-desc { font-size: 14px; line-height: 1.8; color: rgba(255,253,249,.75); margin-bottom: 20px; }
.note-examples { display: flex; flex-wrap: wrap; gap: 8px; }
.note-chip { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,253,249,.75); border: 1px solid rgba(255,255,255,.25); padding: 5px 12px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.15); }
.step { padding: 42px 34px; border-right: 1px solid rgba(255,255,255,.15); }
.step:last-child { border-right: none; }
.step-num { font-family: var(--font-display); font-size: 60px; font-weight: 300; color: rgba(255,61,180,.15); line-height: 1; margin-bottom: 20px; }
.step-title { font-family: var(--font-display); font-size: 20px; color: var(--cream); margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.8; color: rgba(255,253,249,.6); }

/* ── FEATURED WORKSHOP ── */
.featured-workshop-section { background: var(--cream-mid); }
.featured-workshop-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1100px; margin: 0 auto; }
.workshop-badge { display: inline-block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--stone); color: var(--taupe); margin-bottom: 24px; }
.workshop-title { font-family: var(--font-display); font-size: 34px; font-weight: 300; line-height: 1.15; margin-bottom: 20px; }
.workshop-meta { display: flex; gap: 28px; margin-bottom: 24px; flex-wrap: wrap; }
.meta-item { font-size: 13px; }
.meta-label { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); margin-bottom: 5px; }
.workshop-desc { font-size: 14px; line-height: 1.85; color: var(--taupe); }
.includes-list { list-style: none; }
.includes-list li { font-size: 13px; line-height: 1.7; padding: 8px 0; border-bottom: 1px solid rgba(212,200,188,.4); display: flex; gap: 10px; align-items: flex-start; }
.includes-list li::before { content: '—'; color: var(--pink); flex-shrink: 0; font-size: 11px; margin-top: 2px; }
.featured-workshop-buy { position: sticky; top: 120px; }

/* ── SHOPIFY EMBED ── */
.shopify-embed { width: 100%; min-height: 160px; border: 1px solid var(--stone); background: var(--cream); overflow: hidden; }
.embed-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 160px; padding: 40px; text-align: center; border: 2px dashed var(--stone); background: var(--cream-mid); }
.embed-placeholder-icon { font-size: 28px; color: var(--stone); margin-bottom: 12px; }
.embed-placeholder-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.embed-placeholder-hint { font-size: 12px; color: var(--stone); line-height: 1.6; max-width: 220px; }

/* ── PRIVATE SECTION ── */
.private-section { padding: 120px 80px; }
.private-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.private-visual { height: 480px; position: relative; overflow: hidden; }
.private-visual-inner {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 55%, rgba(255,61,180,.08) 0%, transparent 60%), var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
}
.private-visual-inner::after { content: '30ml'; font-family: var(--font-display); font-size: 110px; font-weight: 300; color: rgba(255,61,180,.1); letter-spacing: -.02em; }

/* ── TESTIMONIAL ── */
.testimonial-section { padding: 100px 80px; background: var(--cream-dark); text-align: center; }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(24px, 3vw, 42px); font-weight: 300; font-style: italic; line-height: 1.45; max-width: 740px; margin: 0 auto 32px; }
.testimonial-author { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--pink); }

/* ── CONTACT ── */
.contact-section { padding: 140px 80px; background: var(--ink); color: var(--cream); text-align: center; }
.contact-subtitle { font-size: 15px; line-height: 1.85; color: rgba(255,253,249,.45); max-width: 500px; margin: 24px auto 60px; }
.contact-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.contact-row { display: flex; gap: 2px; }
.contact-input, .contact-select, .contact-textarea { width: 100%; padding: 18px 24px; font-family: var(--font-body); font-size: 14px; font-weight: 300; border: 1px solid rgba(255,255,255,.12); background: rgba(255,253,249,.05); color: var(--cream); outline: none; transition: border-color .2s, background .2s; appearance: none; }
.contact-input::placeholder, .contact-textarea::placeholder { color: rgba(255,253,249,.25); }
.contact-input:focus, .contact-select:focus, .contact-textarea:focus { border-color: var(--pink); background: rgba(255,253,249,.08); }
.contact-select option { background: var(--ink); color: var(--cream); }
.contact-textarea { resize: vertical; min-height: 110px; }
.contact-btn { width: 100%; padding: 20px; font-family: var(--font-body); font-size: 12px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; background: var(--pink); color: var(--cream); border: none; cursor: pointer; transition: background .2s; margin-top: 6px; }
.contact-btn:hover { background: var(--pink-dark); }
.contact-note { margin-top: 20px; font-size: 12px; color: rgba(255,253,249,.25); letter-spacing: .08em; }

/* ── PAGE HEADER ── */
.page-header { padding: 160px 80px 80px; background: var(--ink); }
.page-header-inner { max-width: 680px; }
.page-title { font-size: clamp(46px, 6vw, 80px); font-weight: 300; line-height: 1.05; margin: 16px 0 24px; color: var(--cream); }
.page-subtitle { font-size: 15px; line-height: 1.85; color: rgba(255,253,249,.45); max-width: 460px; }

/* ── WORKSHOPS LISTING ── */
.workshops-listing-section { padding: 80px; }
.workshop-listing-card { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; padding: 64px 0; }
.wl-info { display: flex; gap: 48px; }
.wl-date-block { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; min-width: 80px; padding-top: 6px; }
.wl-month { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.wl-day { font-family: var(--font-display); font-size: 62px; font-weight: 300; color: var(--ink); line-height: 1; }
.wl-year { font-size: 11px; color: var(--stone); margin-top: 4px; }
.wl-details { flex: 1; }
.wl-title { font-family: var(--font-display); font-size: 30px; font-weight: 300; margin: 10px 0 18px; line-height: 1.2; }
.wl-desc { font-size: 14px; line-height: 1.85; color: var(--taupe); }
.wl-buy { position: sticky; top: 120px; }
.wl-seats-note { font-size: 12px; color: var(--taupe); text-align: center; margin-top: 14px; }
.workshops-divider { height: 1px; background: var(--cream-dark); }
.notify-box { padding: 32px; border: 1px solid var(--stone); background: var(--cream-mid); display: flex; flex-direction: column; gap: 14px; }
.notify-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--taupe); }

/* ── FOOTER ── */
footer { padding: 44px 80px; background: var(--ink); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.07); }
.footer-logo { font-family: var(--font-display); font-size: 17px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,253,249,.4); }
.footer-copy { font-size: 12px; color: rgba(255,253,249,.2); letter-spacing: .1em; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,253,249,.3); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--pink); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 130px 40px 60px; }
  .hero-visual { height: 50vw; min-height: 300px; }
  .featured-workshop-card { grid-template-columns: 1fr; gap: 40px; }
  .featured-workshop-buy { position: static; }
  .private-inner { grid-template-columns: 1fr; }
  .workshop-listing-card { grid-template-columns: 1fr; gap: 40px; }
  .wl-buy { position: static; }
  .notes-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .section, .how-section, .private-section, .testimonial-section, .contact-section { padding: 80px 24px; }
  .workshops-listing-section { padding: 60px 24px; }
  .page-header { padding: 130px 24px 60px; }
  .contact-row { flex-direction: column; }
  .wl-info { flex-direction: column; gap: 20px; }
  .steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 18px; text-align: center; padding: 32px 24px; }
  .hero-stats { left: 16px; right: 16px; bottom: 30px; }
  .stat { padding: 14px 8px; }
}
