/* ============================================================
   SILLAGE — Luminous Diffusion v3
   High-contrast light palette · Newsreader + Plus Jakarta Sans
   Parallax · pinned scroll · image prompt placeholders
   ============================================================ */

:root {
  --ivory: #fffcf9;
  --cream: #f7f2ed;
  --blush: #efe4dc;
  --wine: #8b2942;
  --wine-deep: #6b1f33;
  --wine-soft: rgba(139, 41, 66, 0.1);
  --rose: #9e2b4f;
  --amber: #9a6b1a;
  --amber-bright: #c4861f;
  --amber-soft: rgba(154, 107, 26, 0.12);
  --plum: #4e3d7a;
  --plum-bright: #6b52a8;
  --plum-soft: rgba(78, 61, 122, 0.12);
  --ink: #1b1215;
  --ink-body: #3a2d32;
  --ink-muted: #5c4b52;
  --ink-subtle: #7a676f;
  --border: rgba(27, 18, 21, 0.12);
  --border-strong: rgba(27, 18, 21, 0.22);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --container: 1180px;
  --nav-h: 72px;
  --ease-float: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-dissolve: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--wine-soft); color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: linear-gradient(90deg, var(--wine), var(--amber-bright), var(--plum-bright));
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}

/* typography */
.kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-body);
  max-width: 52ch;
  font-weight: 400;
}

.body.center { text-align: center; margin: 0 auto; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.45s var(--ease-dissolve), color 0.45s var(--ease-dissolve), transform 0.35s var(--ease-float), box-shadow 0.45s var(--ease-dissolve), border-color 0.45s var(--ease-dissolve);
}

.btn-primary {
  background: var(--wine);
  color: var(--ivory);
  border-color: var(--wine);
}

.btn-primary:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139, 41, 66, 0.28);
}

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

.btn-ghost:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: var(--wine-soft);
}

.btn-sm { padding: 10px 22px; font-size: 11px; }
.btn-lg { padding: 16px 40px; font-size: 12px; }
.btn-full { width: 100%; }

/* nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.5s var(--ease-dissolve), backdrop-filter 0.5s var(--ease-dissolve), border-color 0.5s var(--ease-dissolve);
}

.nav.scrolled {
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.35s var(--ease-dissolve);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 252, 249, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease-dissolve), opacity 0.45s var(--ease-dissolve);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-body);
}

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) 32px 80px;
}

.hero-gradients {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  animation: orb-drift 20s var(--ease-float) infinite alternate;
}

.orb-1 {
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, #e8a0a8 0%, transparent 70%);
  top: -8%;
  left: -8%;
}

.orb-2 {
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, #e8c878 0%, transparent 70%);
  top: 18%;
  right: -12%;
  animation-delay: -5s;
}

.orb-3 {
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, #b8a8d8 0%, transparent 70%);
  bottom: -4%;
  left: 18%;
  animation-delay: -10s;
}

.orb-4 {
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, #f0d080 0%, transparent 70%);
  bottom: 12%;
  right: 22%;
  animation-delay: -14s;
  opacity: 0.18;
}

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, -2%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}

.scent-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.65;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 45%, rgba(255, 252, 249, 0.92) 0%, rgba(255, 252, 249, 0.55) 45%, rgba(255, 252, 249, 0.25) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  will-change: opacity, transform;
  transition: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 18px 0 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.hero-lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-body);
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--wine);
  display: block;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
  display: block;
}

.hero-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* sections */
.section {
  padding: 120px 32px;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section-head .kicker { margin-bottom: 14px; }
.section-head .h2 { margin-bottom: 20px; }

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s var(--ease-dissolve), transform 1s var(--ease-dissolve);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-64px);
}

.reveal-right {
  transform: translateX(64px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.parallax-inner {
  will-change: transform;
  transition: none;
}

.media-slot {
  overflow: hidden;
}

/* marquee */
.marquee-band {
  overflow: hidden;
  background: var(--wine);
  color: var(--ivory);
  padding: 14px 0;
  border-top: 1px solid var(--wine-deep);
  border-bottom: 1px solid var(--wine-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span { padding-right: 48px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* collection */
.collection {
  background: var(--cream);
  overflow: hidden;
}

.collection-scroll-stage {
  position: relative;
}

.collection-pin {
  overflow: hidden;
  margin: 0 -32px;
  padding: 0 32px;
  position: relative;
}

.collection-progress {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.collection-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--wine), var(--amber-bright));
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(var(--pin-progress, 0));
}

@media (min-width: 1025px) {
  .collection-scroll-stage {
    height: 420vh;
  }

  .collection-pin {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    height: calc(100vh - var(--nav-h) - 40px);
    display: flex;
    align-items: center;
    padding-bottom: 32px;
  }

  .collection-pin::before,
  .collection-pin::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 32px;
    width: 72px;
    z-index: 3;
    pointer-events: none;
  }

  .collection-pin::before {
    left: 32px;
    background: linear-gradient(90deg, var(--cream) 20%, transparent);
  }

  .collection-pin::after {
    right: 32px;
    background: linear-gradient(-90deg, var(--cream) 20%, transparent);
  }

  .fragrance-track {
    display: flex;
    gap: 48px;
    will-change: transform;
    align-items: stretch;
  }

  .fragrance-card {
    flex: 0 0 min(680px, calc(100vw - 160px));
    opacity: 0.4;
    transform: scale(0.97);
    transition: opacity 0.55s var(--ease-dissolve), transform 0.55s var(--ease-dissolve), box-shadow 0.55s var(--ease-dissolve);
  }

  .fragrance-card.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 52px rgba(27, 18, 21, 0.12);
  }

  .fragrance-card.is-adjacent {
    opacity: 0.62;
    transform: scale(0.985);
  }

  .fragrance-card.is-active:hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 24px 56px rgba(27, 18, 21, 0.14);
  }
}

.collection-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto 28px;
  flex-wrap: wrap;
}

.collection-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.collection-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border-strong);
  background: var(--ivory);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-body);
  cursor: pointer;
  transition: background 0.35s var(--ease-dissolve), border-color 0.35s var(--ease-dissolve), color 0.35s var(--ease-dissolve);
}

.collection-tab.active,
.collection-tab:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}

.collection-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--ivory);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease-dissolve), border-color 0.35s var(--ease-dissolve), color 0.35s var(--ease-dissolve);
}

.collection-arrow:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}

.collection-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.collection-step-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.collection-step-num {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-right: 8px;
}

.collection-step-name {
  color: var(--ink);
}

.collection-step-of {
  color: var(--ink-subtle);
  font-weight: 500;
  margin-left: 6px;
}

@media (max-width: 1024px) {
  .collection-nav,
  .collection-step-label { display: none; }
}

@media (max-width: 1024px) {
  .collection-scroll-stage { height: auto; }
  .collection-progress { display: none; }
  .fragrance-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
    margin: 0 auto;
  }
}

.collection-scroll-hint {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 32px;
  animation: hint-pulse 2.4s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

@media (max-width: 1024px) {
  .collection-scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .collection-scroll-hint { animation: none; }
}

.fragrance-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(27, 18, 21, 0.04);
}

@media (max-width: 1024px) {
  .fragrance-card {
    transition: transform 0.5s var(--ease-float), box-shadow 0.5s var(--ease-dissolve);
  }
  .fragrance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(27, 18, 21, 0.1);
  }
}

.fragrance-copy {
  padding: 28px 28px 32px;
}

.fragrance-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink-subtle);
}

.fragrance-copy h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 2px 0 8px;
  color: var(--ink);
}

.fragrance-card[data-scent="aube"] .fragrance-tag { color: var(--rose); }
.fragrance-card[data-scent="ambre"] .fragrance-tag { color: var(--amber); }
.fragrance-card[data-scent="nocturne"] .fragrance-tag { color: var(--plum); }

.fragrance-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fragrance-desc {
  font-size: 14px;
  color: var(--ink-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.fragrance-long {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.fragrance-price {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

/* pyramid */
.pyramid-section {
  background: var(--ivory);
}

.pyramid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.pyramid-svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.pyramid-layer {
  cursor: pointer;
  transition: fill 0.45s var(--ease-dissolve), stroke 0.45s var(--ease-dissolve);
  stroke: var(--border-strong);
  stroke-width: 1.5;
}

.pyramid-top { fill: rgba(158, 43, 79, 0.18); }
.pyramid-heart { fill: rgba(154, 107, 26, 0.16); }
.pyramid-base { fill: rgba(78, 61, 122, 0.16); }

.pyramid-layer.active {
  stroke: var(--wine);
  stroke-width: 2.5;
}

.pyramid-label {
  fill: var(--ink-muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.pyramid-scent-picker {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.scent-pill {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border-strong);
  background: var(--ivory);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-body);
  cursor: pointer;
  transition: background 0.35s var(--ease-dissolve), border-color 0.35s var(--ease-dissolve), color 0.35s var(--ease-dissolve);
}

.scent-pill.active,
.scent-pill:hover {
  background: var(--wine);
  color: var(--ivory);
  border-color: var(--wine);
}

.pyramid-notes-panel {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-height: 140px;
  transition: opacity 0.35s var(--ease-dissolve);
}

.pyramid-notes-panel.dissolving { opacity: 0.45; }

.notes-tier-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}

.notes-list {
  list-style: none;
}

.notes-list li {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  animation: note-in 0.45s var(--ease-dissolve) both;
}

.notes-list li:nth-child(2) { animation-delay: 0.05s; }
.notes-list li:nth-child(3) { animation-delay: 0.1s; }
.notes-list li:nth-child(4) { animation-delay: 0.15s; }

@keyframes note-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* house */
.house {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.house-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.house-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.house-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 252, 249, 0.96);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.float-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  color: var(--wine);
}

.float-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.house-list {
  list-style: none;
  margin-top: 28px;
}

.house-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  padding-left: 20px;
  position: relative;
}

.house-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  transform: translateY(-50%);
}

/* discover */
.discover {
  background: var(--ivory);
}

.discover-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.discover-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.discover-form label span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.discover-form input,
.discover-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--ivory);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 500;
  transition: border-color 0.35s var(--ease-dissolve), box-shadow 0.35s var(--ease-dissolve);
}

.discover-form input::placeholder {
  color: var(--ink-subtle);
}

.discover-form input:focus,
.discover-form select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px var(--wine-soft);
}

.form-note {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  text-align: center;
}

/* footer */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-copy {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.35s var(--ease-dissolve);
}

.footer-links a:hover { color: var(--wine); }

/* toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 200;
  padding: 16px 32px;
  background: var(--wine);
  color: var(--ivory);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s var(--ease-dissolve), transform 0.5s var(--ease-dissolve);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* responsive */
/* image prompt placeholders */
.media-slot {
  margin: 0;
  width: 100%;
}

.media-slot__frame {
  background: #d8d4d0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
  position: relative;
}

.media-slot--tall .media-slot__frame { min-height: 340px; }
.media-slot__frame--wide { min-height: 320px; aspect-ratio: 4/3; }
.media-slot__frame--tall { min-height: 480px; aspect-ratio: 4/5; }
.media-slot__frame--cinema { min-height: 360px; aspect-ratio: 16/9; }

.media-slot__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(255, 252, 249, 0.85);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.media-slot__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.media-slot__use {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.media-slot__copy {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--wine);
  background: var(--wine);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease-dissolve), transform 0.25s var(--ease-float);
}

.media-slot__copy:hover {
  background: var(--wine-deep);
  transform: translateY(-1px);
}

.media-slot__copy.copied {
  background: var(--ink);
  border-color: var(--ink);
}

.media-slot__prompt {
  width: 100%;
  flex: 1;
  min-height: 88px;
  padding: 12px 14px;
  background: rgba(255, 252, 249, 0.92);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: "Consolas", "Monaco", monospace;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-body);
  resize: vertical;
  cursor: text;
}

.media-slot__prompt:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px var(--wine-soft);
}

/* editorial split */
.philosophy { background: var(--ivory); }

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
  line-height: 1.45;
  margin: 28px 0 12px;
  padding-left: 20px;
  border-left: 3px solid var(--wine);
}

/* craft */
.craft { background: var(--cream); }

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.ingredient-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-body);
  line-height: 1.6;
}

.ingredient-caption strong { color: var(--ink); }

/* merchandising */
.merchandising { background: var(--ivory); }

.merch-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.merch-visuals {
  display: grid;
  gap: 20px;
}

.merch-features {
  list-style: none;
  margin: 24px 0 32px;
}

.merch-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  padding-left: 18px;
  position: relative;
}

.merch-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  transform: translateY(-50%);
}

/* lifestyle */
.lifestyle { background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%); }

.lifestyle-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

/* testimonials */
.testimonials { background: var(--ivory); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.45s var(--ease-float), box-shadow 0.45s var(--ease-dissolve);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 18, 21, 0.08);
}

.testimonial-card .stars {
  color: var(--amber-bright);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-body);
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  font-style: normal;
}

/* faq accordion */
.faq { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.accordion { display: flex; flex-direction: column; gap: 0; }

.accordion-item {
  border-bottom: 1px solid var(--border-strong);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.35s var(--ease-dissolve);
}

.accordion-trigger::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--wine);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-dissolve);
}

.accordion-item.open .accordion-trigger::after {
  transform: rotate(45deg);
}

.accordion-trigger:hover { color: var(--wine); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-dissolve), padding 0.45s var(--ease-dissolve);
}

.accordion-item.open .accordion-panel {
  max-height: 280px;
  padding-bottom: 22px;
}

.accordion-panel p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-body);
  max-width: 56ch;
}

@media (max-width: 1024px) {
  .pyramid-layout,
  .house-layout,
  .discover-layout,
  .editorial-split,
  .merch-layout,
  .lifestyle-layout,
  .faq-layout,
  .ingredient-grid,
  .testimonial-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 80px 24px; }
  .hero { padding: var(--nav-h) 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
