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

:root {
  --bg: #FAF6F0;
  --bg-dark: #1A0F07;
  --fg: #2D1B0E;
  --fg-muted: #7A6050;
  --accent: #C9963B;
  --accent-warm: #D4A853;
  --cream: #F5EDE0;
  --border: rgba(45, 27, 14, 0.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: var(--fg); }

/* === HERO === */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201, 150, 59, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 150, 59, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-card {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(26, 15, 7, 0.25);
  border: 1px solid rgba(201, 150, 59, 0.15);
}

.hero-card-2 {
  margin-left: 48px;
  background: linear-gradient(135deg, #2D1B0E 0%, #3A2410 100%);
}

.hero-card-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 168, 83, 0.7);
}

.card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FAF6F0;
  margin-top: 4px;
}

.card-desc {
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.6);
  letter-spacing: 0.04em;
}

.card-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  border-radius: 2px;
}

.card-longevity {
  font-size: 0.7rem;
  color: rgba(201, 150, 59, 0.8);
  font-weight: 500;
}

/* TICKER */
.hero-ticker {
  background: var(--fg);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
}

.hero-ticker span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 20px;
}

.hero-ticker .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  padding: 0;
  display: inline-block;
}

/* === SECTION SHARED === */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* === CRAFT === */
.craft {
  background: var(--bg-dark);
  padding: 120px 32px;
}

.craft-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.craft .section-title { color: var(--cream); }
.craft .section-subtitle { color: rgba(245, 237, 224, 0.6); }

.craft-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
}

.craft-step {
  flex: 1;
  padding-right: 48px;
}

.step-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.step-body {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.55);
  line-height: 1.7;
}

.craft-divider {
  width: 1px;
  background: rgba(201, 150, 59, 0.15);
  align-self: stretch;
  margin: 0 48px;
  flex-shrink: 0;
}

/* === COLLECTION === */
.collection {
  background: var(--cream);
  padding: 120px 32px;
}

.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.scents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.scent-card {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(45, 27, 14, 0.12);
}

.scent-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.scent-shape {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
}

.scent-shape::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  opacity: 0.3;
}

.scent-shape-1 {
  background: linear-gradient(135deg, #8B5E3C, #4A2C17);
  box-shadow: 0 20px 60px rgba(74, 44, 23, 0.4);
}

.scent-shape-1::after {
  background: radial-gradient(circle, rgba(201, 150, 59, 0.3), transparent 70%);
}

.scent-shape-2 {
  background: linear-gradient(135deg, #C9963B, #7A5020);
  box-shadow: 0 20px 60px rgba(201, 150, 59, 0.35);
}

.scent-shape-2::after {
  background: radial-gradient(circle, rgba(255, 220, 150, 0.4), transparent 70%);
}

.scent-shape-3 {
  background: linear-gradient(135deg, #D4A853, #A07830);
  box-shadow: 0 20px 60px rgba(212, 168, 83, 0.3);
}

.scent-shape-3::after {
  background: radial-gradient(circle, rgba(245, 237, 224, 0.4), transparent 70%);
}

.scent-body {
  padding: 28px 28px 32px;
}

.scent-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.scent-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 150, 59, 0.1);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.scent-notes {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.scent-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.scent-stat {
  flex: 1;
  text-align: center;
}

.scent-stat:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* === CREATOR === */
.creator {
  background: var(--bg);
  padding: 120px 32px;
}

.creator-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.creator-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.creator-body:last-of-type { margin-bottom: 0; }

.creator-pill {
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(201, 150, 59, 0.12);
}

.creator-pill-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pill-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 150, 59, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.pill-sub {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.5);
}

/* === CLOSING === */
.closing {
  background: linear-gradient(160deg, #2D1B0E 0%, #3A2410 50%, #4A2C17 100%);
  padding: 120px 32px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 1.1rem;
  color: rgba(245, 237, 224, 0.6);
  line-height: 1.75;
  margin-bottom: 40px;
}

.closing-cta {
  display: inline-block;
  border: 1px solid rgba(201, 150, 59, 0.3);
  border-radius: 100px;
  padding: 14px 32px;
}

.cta-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(212, 168, 83, 0.9);
}

/* === FOOTER === */
.site-footer {
  background: #120A04;
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.wordmark-footer {
  color: var(--cream);
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.35);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.35);
}

.footer-links .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 150, 59, 0.4);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 237, 224, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  nav { display: none; }

  .craft-steps {
    flex-direction: column;
    gap: 40px;
  }

  .craft-divider { display: none; }

  .scents-grid {
    grid-template-columns: 1fr;
  }

  .creator-inner {
    grid-template-columns: 1fr;
  }

  .craft { padding: 80px 24px; }
  .collection { padding: 80px 24px; }
  .creator { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 20px; }
  .hero { padding: 60px 20px 0; }
  .closing-headline { font-size: 1.75rem; }
}