/* ═══════════════════════════════════════════════════════
   WinWinari V3 — Style
   Award-level wine landing page
   ═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --black: #080604;
  --deep: #0e0a08;
  --burgundy: #7B1C1C;
  --gold: #C9A84C;
  --cream: #F0E8D8;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --burgundy-dim: rgba(123, 28, 28, 0.08);
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── GRAIN OVERLAY ─────────────────────────────────── */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: grain-shift 0.5s steps(4) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-5%, -5%); }
  50%  { transform: translate(5%, 5%); }
  75%  { transform: translate(-2%, 3%); }
  100% { transform: translate(3%, -2%); }
}

/* ── SCROLL PROGRESS BAR ──────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 10000;
  pointer-events: none;
  will-change: transform;
}

/* ── CUSTOM CURSOR ─────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  will-change: transform;
  transform: translate(-50%, -50%);
}

#cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

#cursor.big {
  width: 64px;
  height: 64px;
  border-color: var(--gold);
}

#cursor.big #cursor-dot {
  opacity: 0;
}

/* ── LOADER ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: 1.6rem;
  letter-spacing: 0.8em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

#loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

#loader-fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* ── NAV ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

#nav.scrolled {
  background: rgba(8, 6, 4, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: color 0.3s ease;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav-logo span {
  font-style: italic;
  color: var(--gold);
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.6);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.nav-order {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.4s ease, color 0.4s ease;
}

.nav-order:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── HERO ──────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201, 168, 76, 0.12) 0%, rgba(123, 28, 28, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 6, 4, 0.55) 0%,
    rgba(8, 6, 4, 0.35) 30%,
    rgba(8, 6, 4, 0.25) 50%,
    rgba(8, 6, 4, 0.65) 80%,
    rgba(8, 6, 4, 0.92) 100%
  );
  z-index: 2;
}

.hero-bg-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: clamp(8rem, 25vw, 22rem);
  letter-spacing: 0.3em;
  color: var(--cream);
  opacity: 0.018;
  position: absolute;
  bottom: 5%;
  right: -2%;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 2rem;
}

.hero-origin {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(5.5rem, 15vw, 14rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hl-line {
  display: block;
  overflow: hidden;
}

.hl-line--italic {
  font-style: italic;
  color: var(--gold);
  padding-left: 0.1em;
  font-weight: 200;
  font-size: 0.78em;
  letter-spacing: 0.06em;
  margin-top: 0.05em;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(240, 232, 216, 0.85);
  margin-bottom: 3.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}

.hero-scroll-cta:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.cta-arrow {
  font-size: 1.2rem;
  animation: float-down 2s ease-in-out infinite;
}

@keyframes float-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  z-index: 4;
}

/* ── DATA-REVEAL ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ── STATS BAND ────────────────────────────────────── */
#stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  background: var(--deep);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
}

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-l {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.45);
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.12);
  flex-shrink: 0;
}

/* ── STORY ─────────────────────────────────────────── */
#story {
  position: relative;
  background: var(--black);
}

#story-pin {
  position: relative;
  overflow: hidden;
}

#story-track {
  display: flex;
  width: max-content;
}

.story-slide {
  display: grid;
  grid-template-columns: 58% 42%;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
}

.slide-img {
  overflow: hidden;
  position: relative;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.05);
}

.slide-text {
  background: var(--black);
  padding: 6rem 5rem 6rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(201, 168, 76, 0.06);
  position: relative;
  overflow: hidden;
}

.slide-text::before {
  content: attr(data-chapter-bg);
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: 12rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
}

.slide-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.slide-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.slide-p {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(240, 232, 216, 0.6);
  max-width: 380px;
  margin-bottom: 2rem;
}

.slide-date {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.4);
}

/* Bottle slide */
.story-slide--bottle {
  grid-template-columns: 50% 50%;
}

.slide-bottle-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.slide-bottle-visual img {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
  will-change: transform;
}

.bottle-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.08) 0%, rgba(123, 28, 28, 0.04) 50%, transparent 80%);
  pointer-events: none;
}

.bottle-order {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bottle-price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold);
}

.btn-order {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.4s ease, color 0.4s ease;
}

.btn-order:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── POUR SECTION ──────────────────────────────────── */
#pour {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pour-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.pour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.7);
  z-index: 1;
}

.pour-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}

.pour-q {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.pour-cite {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  display: block;
  margin-bottom: 3rem;
}

.tasting-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.tasting-tags span {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(240, 232, 216, 0.6);
  transition: border-color 0.4s ease, color 0.4s ease;
}

.tasting-tags span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SHOP ──────────────────────────────────────────── */
#shop {
  display: flex;
  min-height: 100vh;
  background: var(--deep);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.shop-left {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-bottle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-bottle-img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.shop-bottle-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, rgba(123, 28, 28, 0.03) 50%, transparent 80%);
  pointer-events: none;
}

.shop-right {
  width: 50%;
  padding: 8rem 5rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-label {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.shop-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 3rem;
}

.shop-specs {
  margin-bottom: 3rem;
}

.shop-specs div {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.shop-specs dt {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.82rem;
  color: rgba(240, 232, 216, 0.45);
}

.shop-specs dd {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--cream);
}

.shop-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.shop-opt {
  cursor: pointer;
  position: relative;
}

.shop-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.opt-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.shop-opt input:checked + .opt-inner {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.opt-inner span {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.88rem;
  color: var(--cream);
}

.opt-inner em {
  font-style: normal;
  color: var(--gold);
  font-size: 0.78rem;
}

.opt-inner b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--gold);
}

.shop-opt:hover .opt-inner {
  border-color: var(--gold);
}

.shop-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.4s ease, color 0.4s ease;
  margin-bottom: 1rem;
}

.shop-cta-btn:hover {
  background: transparent;
  color: var(--gold);
}

.shop-cta-btn svg {
  flex-shrink: 0;
}

.shop-email-link {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.78rem;
  color: rgba(240, 232, 216, 0.4);
  text-align: center;
  display: block;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.shop-email-link:hover {
  color: var(--gold);
}

/* ── FOOTER ────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  padding: 2.5rem 3rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.4);
  transition: color 0.3s ease;
}

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

.footer-year {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  color: rgba(240, 232, 216, 0.3);
}

/* ── FOCUS STATES ──────────────────────────────────── */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }

  #cursor {
    display: none;
  }

  /* Loader: smaller text */
  #loader-text {
    font-size: 1.2rem;
    letter-spacing: 0.5em;
  }

  /* Hero: bottom-aligned text, full-bleed image */
  #hero {
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 1.5rem 4rem;
    text-align: left;
  }

  .hero-headline {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
  }

  .hero-desc {
    font-size: 0.88rem;
    margin-left: 0;
  }

  .hero-bg-text {
    font-size: clamp(5rem, 20vw, 9rem);
    opacity: 0.025;
  }

  .hero-scroll-cta {
    align-items: flex-start;
  }

  /* Stats: 2x2 Grid */
  #stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .stat-sep {
    display: none;
  }

  .stat-item {
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 1.5rem;
  }

  /* Story: vertical stack */
  #story-pin {
    position: static !important;
    height: auto !important;
  }

  #story-track {
    display: flex;
    flex-direction: column;
    transform: none !important;
    width: 100% !important;
  }

  .story-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh auto;
    width: 100%;
    height: auto;
    flex-shrink: unset;
  }

  .slide-text {
    padding: 2rem 1.5rem 3rem;
    border-left: none;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
  }

  .slide-text::before {
    font-size: 6rem;
  }

  .slide-h {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .slide-p {
    font-size: 0.85rem;
  }

  /* Story bottle slide */
  .story-slide--bottle {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
  }

  .slide-bottle-visual {
    height: 55vh;
  }

  .slide-bottle-visual img {
    max-height: 50vh;
  }

  .bottle-order {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Pour */
  .pour-q {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .pour-content {
    padding: 2rem 1.5rem;
  }

  .tasting-tags {
    gap: 0.5rem;
  }

  .tasting-tags span {
    font-size: 0.68rem;
    padding: 0.45rem 1rem;
  }

  /* Shop: single column */
  #shop {
    flex-direction: column;
  }

  .shop-left {
    display: none;
  }

  .shop-right {
    padding: 5rem 1.5rem 3rem;
    width: 100%;
  }

  .shop-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .shop-specs div {
    padding: 0.7rem 0;
  }

  .shop-specs dt,
  .shop-specs dd {
    font-size: 0.78rem;
  }

  /* Nav */
  #nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-tagline {
    display: none;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .nav-order {
    font-size: 0.7rem;
    padding: 0.55rem 1.2rem;
  }

  /* Footer */
  .footer-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  #footer {
    padding: 2rem 1.5rem;
  }

  /* Touch targets min 48px */
  .btn-order,
  .shop-cta-btn,
  .nav-order {
    min-height: 48px;
  }
}
