:root {
  --char:    #14100c;
  --char-2:  #1f1812;
  --cream:   #f0e3c4;
  --amber:   #d49350;
  --amber-d: #a36930;
  --cu:      #b8704a;
  --mute:    #8a7660;

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans:  "Inter", system-ui, sans-serif;
  --mono:  "DM Mono", ui-monospace, monospace;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--char);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ScrollSmoother requires body overflow: hidden + fixed wrapper */
body {
  overflow-x: hidden;
}

#smooth-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#smooth-content {
  width: 100%;
  overflow: visible;
  will-change: transform;
}

/* Fallback when smoother not initialized (mobile / reduced motion) */
body.no-smoother #smooth-wrapper {
  position: static;
  overflow: visible;
  height: auto;
}
body.no-smoother #smooth-content {
  transform: none !important;
}

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

.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; color: var(--mute); }
.bodoni { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.amber { color: var(--amber); }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
}

/* ───── Image plate treatment — amber/oak duotone ───── */
.plate {
  position: relative;
  overflow: hidden;
  background: var(--char-2);
  border: 1px solid rgba(212, 147, 80, 0.08);
}
.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.7) sepia(0.35) brightness(0.85);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease;
}
.plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 147, 80, 0.35), rgba(20, 16, 12, 0.5));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(20, 16, 12, 0) 40%, rgba(20, 16, 12, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.plate-tall { aspect-ratio: 10 / 7; }
.plate-bottle { aspect-ratio: 2 / 3; }
.plate-portrait { aspect-ratio: 4 / 5; }

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px) clamp(24px, 4vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background: var(--char);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: contrast(1.1) brightness(0.7) sepia(0.4);
}
.hero-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 147, 80, 0.18), rgba(20, 16, 12, 0.0) 40%, rgba(20, 16, 12, 0.85));
  mix-blend-mode: overlay;
}
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(20, 16, 12, 0) 30%, rgba(20, 16, 12, 0.85) 90%);
}

.topbar {
  position: absolute;
  top: clamp(20px, 3vw, 36px);
  left: clamp(24px, 4vw, 72px);
  right: clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  z-index: 5;
  color: var(--cream);
  font-size: 10.5px;
}
.topbar-l { color: var(--cream); opacity: 0.85; }
.topbar-c { color: var(--amber); text-align: center; }
.topbar-r { color: var(--cream); opacity: 0.85; text-align: right; }
.topbar .arrow { display: inline-block; transition: transform 0.5s ease; }
.topbar-r:hover .arrow { transform: translateX(4px); }

.crest {
  position: absolute;
  top: clamp(72px, 9vw, 120px);
  right: clamp(24px, 4vw, 72px);
  color: var(--amber);
  opacity: 0.7;
  z-index: 4;
}
.crest svg { display: block; }

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  max-width: 1400px;
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(72px, 12vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.018em;
  color: var(--cream);
  text-shadow: 0 0 60px rgba(212, 147, 80, 0.15);
}
.hero-title .line {
  display: block;
  visibility: hidden;
}
.hero-title .line-3 {
  font-style: italic;
  color: var(--amber);
  text-shadow: 0 0 80px rgba(212, 147, 80, 0.35);
}

.hero-rule {
  width: 0;
  height: 1px;
  background: var(--amber);
  margin: clamp(36px, 5vw, 64px) auto clamp(20px, 2.5vw, 28px);
  opacity: 0.7;
}

.hero-meta {
  visibility: hidden;
  color: var(--cream);
  opacity: 0.7;
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

.steam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ─────────────────── PROCESS ─────────────────── */
.process {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0 clamp(60px, 8vw, 120px);
  background: var(--char);
}

.section-h {
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  margin: 0 0 clamp(48px, 6vw, 96px);
  color: var(--cream);
  letter-spacing: -0.015em;
  visibility: hidden;
}

.scene {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding: clamp(48px, 7vw, 120px) 0;
  border-top: 1px solid rgba(212, 147, 80, 0.08);
}
.scene-r {
  grid-template-columns: 1fr 1.05fr;
}
.scene-r .plate { order: 2; }
.scene-r .scene-body { order: 1; }

.scene-body {
  max-width: 52ch;
}

.scene-no {
  color: var(--amber);
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
}

.scene-title {
  font-size: clamp(40px, 5vw, 84px);
  line-height: 0.98;
  margin: 0 0 24px;
  color: var(--cream);
  letter-spacing: -0.01em;
  visibility: hidden;
}

.scene-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.78;
  margin: 0 0 28px;
  max-width: 46ch;
}

.scene-meta {
  color: var(--mute);
  font-size: 10.5px;
}

.scene .plate img { clip-path: inset(0 0 0 0); }

/* ─────────────────── EXPRESSIONS ─────────────────── */
.expressions {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0;
  background: linear-gradient(180deg, var(--char), var(--char-2));
}

.expr-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(56px, 7vw, 100px);
}
.expr-head .section-h { margin: 0; }
.expr-sub {
  max-width: 32ch;
  color: var(--mute);
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.16em;
}

.bottles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}

.bottle {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bottle .plate {
  position: relative;
  transition: box-shadow 0.7s ease;
}

.bottle-name {
  font-size: clamp(22px, 1.8vw, 30px);
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-top: 4px;
}
.bottle-spec {
  color: var(--amber);
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.bottle-note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.72;
  margin: 0;
}
.bottle-price {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cream);
  margin-top: 4px;
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
}

@media (hover: hover) {
  .bottle:hover {
    transform: translateY(-10px);
  }
  .bottle:hover .plate {
    box-shadow: 0 24px 60px -20px rgba(212, 147, 80, 0.35), 0 0 0 1px rgba(212, 147, 80, 0.2);
  }
  .bottle:hover .bottle-price {
    color: var(--amber);
  }
  .bottle:hover .plate img {
    transform: scale(1.04);
  }
}

/* ─────────────────── TASTING / FOOTER ─────────────────── */
.tasting {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0 clamp(40px, 5vw, 64px);
  background: var(--char-2);
}

.tasting-head { margin-bottom: clamp(64px, 8vw, 120px); }
.tasting-head .section-h { margin-bottom: 32px; }

.tasting-lede {
  max-width: 55ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.8;
  margin: 0;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(80px, 10vw, 140px);
}
.person {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.person-name {
  font-size: clamp(22px, 1.7vw, 28px);
  color: var(--cream);
  margin-top: 6px;
}
.person-role {
  color: var(--amber);
  font-size: 10px;
  letter-spacing: 0.2em;
}
.person-quote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.75;
  margin: 0;
  max-width: 36ch;
}

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(212, 147, 80, 0.12);
}
.col-h {
  color: var(--amber);
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
}
.col-p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-transform: none;
}

.footer-rule {
  border: none;
  border-top: 1px solid var(--amber);
  opacity: 0.5;
  margin: clamp(56px, 7vw, 96px) 0 24px;
}
.footer-fine {
  color: var(--mute);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
  padding-bottom: 8px;
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 960px) {
  .scene, .scene-r {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .scene-r .plate { order: 0; }
  .scene-r .scene-body { order: 0; }

  .bottles { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .people { grid-template-columns: 1fr; gap: 40px; }
  .cols { grid-template-columns: 1fr; gap: 32px; }

  .topbar { grid-template-columns: 1fr; gap: 6px; text-align: center; }
  .topbar-l, .topbar-r { text-align: center; }

  .crest { display: none; }

  .expr-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .bottles { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
