:root {
  --cream: #f4efe6;
  --paper: #faf7f2;
  --ink: #1c1916;
  --ink-soft: #5c534a;
  --muted: #8a7f74;
  --gold: #b08d57;
  --gold-soft: #d4c0a1;
  --blush: #ead9c8;
  --wine: #7a3d45;
  --white: #fffcf8;
  --line: rgba(28, 25, 22, 0.12);
  --shadow: 0 24px 60px rgba(28, 25, 22, 0.1);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Avenir Next", system-ui, sans-serif;
  --script: "Great Vibes", cursive;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h1,
h2,
h3,
.logo-num {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: #2c2621;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(250, 247, 242, 0.84);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-stack {
  display: grid;
  line-height: 0.82;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.logo-script {
  font-family: var(--script);
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  left: 11px;
}

.menu-toggle span {
  top: 20px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  padding: 28px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  margin: 18px 0 18px;
}

.hero h1 em {
  font-style: italic;
  color: var(--wine);
}

.hero p.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-meta span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-chip {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(250, 247, 242, 0.92);
  padding: 14px 18px;
  border-radius: 18px;
  max-width: 240px;
  backdrop-filter: blur(8px);
}

.hero-chip small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 12px 0 14px;
}

.section-head p {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
}

.split.alt {
  grid-template-columns: 1.05fr 0.95fr;
}

.story-copy h3 {
  font-size: 2rem;
  margin: 10px 0 16px;
}

.story-copy p + p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.date-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.86rem;
}

.products {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 22, 0.05);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.price {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

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

.scent {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  min-height: 210px;
}

.scent .tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}

.scent h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.scent p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.scent .notes {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}

.quiz {
  margin-top: 56px;
  padding: 36px;
  background: var(--cream);
  border-radius: 28px;
}

.quiz h3 {
  font-size: 2rem;
  margin: 8px 0 8px;
}

.quiz-q {
  margin-top: 24px;
}

.quiz-q p {
  margin-bottom: 12px;
  font-weight: 500;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.choice.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.quiz-result {
  display: none;
  margin-top: 24px;
  padding: 22px;
  background: var(--white);
  border-radius: 18px;
}

.quiz-result.show {
  display: block;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.biz {
  padding: 26px 22px;
  background: var(--cream);
  border-radius: 20px;
}

.biz h3 {
  font-size: 1.4rem;
  margin: 12px 0 8px;
}

.biz p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.gallery img:first-child {
  grid-row: 1 / span 2;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.journal-card {
  display: flex;
  flex-direction: column;
}

.journal-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
}

.journal-card time {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-card h3 {
  font-size: 1.45rem;
  margin: 8px 0;
}

.journal-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.order {
  background: var(--ink);
  color: var(--cream);
}

.order .eyebrow,
.order .section-head p,
.order .step p {
  color: rgba(244, 239, 230, 0.72);
}

.order .btn {
  background: var(--cream);
  color: var(--ink);
}

.order .btn:hover {
  background: var(--white);
}

.order .btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 239, 230, 0.28);
}

.order .btn-ghost:hover {
  background: rgba(244, 239, 230, 0.08);
  border-color: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 24px;
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 20px;
}

.step b {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-soft);
}

.step h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.contact-bar {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.alt,
  .product-grid,
  .scents-grid,
  .biz-grid,
  .journal-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .split.alt {
    direction: ltr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery img:first-child {
    grid-row: auto;
    grid-column: 1 / span 2;
    height: 280px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 680px) {
  .hero-grid,
  .split,
  .product-grid,
  .scents-grid,
  .biz-grid,
  .journal-grid,
  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .split img {
    height: 420px;
  }

  .gallery img:first-child,
  .gallery img {
    height: 240px;
    grid-column: auto;
  }

  section {
    padding: 64px 0;
  }

  .quiz {
    padding: 22px;
  }
}
