:root {
  --wine: #6b244c;
  --wine-deep: #4a1420;
  --wine-800: #5a1a2b;
  --gold: #c89a4b;
  --gold-2: #e7cb86;
  --gold-soft: #d8ba77;
  --olive: #2d431f;
  --olive-mid: #3c5238;
  --olive-deep: #1f2e16;
  --parch: #f2ebdc;
  --parch-2: #efe6d4;
  --ink: #2a2019;
  --ink-soft: #6a5b4e;
  --cream: #f2e9da;
  --cream-dim: #d8cbb6;
  --line-gold: rgba(200, 154, 75, 0.3);
  --white: #fffdf8;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --wrap: 1180px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parch);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.band {
  padding-block: clamp(56px, 8vw, 110px);
  position: relative;
}
.band--wine {
  background: var(--wine-deep);
  color: var(--cream);
}
.band--olive {
  background: var(--olive-deep);
  color: var(--cream);
}
.band--parch {
  background: var(--parch);
}
.band--parch2 {
  background: var(--parch-2);
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1.display {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
}
h2.display {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
}
.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 52ch;
}
.band--wine .lede,
.band--olive .lede {
  color: var(--cream-dim);
}
.gold-i {
  font-style: italic;
  color: var(--gold);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.band--parch .eyebrow,
.band--parch2 .eyebrow {
  color: #9a6b2e;
}
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.82em 1.4em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn--gold {
  background: var(--gold);
  color: #3a2405;
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}
.btn--wine {
  background: var(--wine);
  color: var(--cream);
}
.btn--wine:hover {
  background: var(--wine-800);
  transform: translateY(-2px);
}
.btn--block {
  width: 100%;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
}

/* Nav — fixed over hero, solid when scrolled */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1.05rem 0;
  background: transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(74, 20, 32, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  padding: 0.55rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
}
.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1;
}
.brand__sub {
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.18rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.88;
}
.nav__links a:hover {
  opacity: 1;
}
.nav__cart {
  position: relative;
  background: transparent;
  border: 1.5px solid rgba(231, 203, 134, 0.45);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.nav__cart svg {
  width: 18px;
  height: 18px;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #3a2405;
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  width: 30px;
  height: 24px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* Landing hero (from Nastroblu.html) */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(200, 154, 75, 0.16), transparent 55%),
    linear-gradient(160deg, #5a1a2b 0%, #4a1420 60%, #3d1019 100%);
  color: var(--cream);
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__grain {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: min(46vw, 540px);
  opacity: 0.5;
  color: var(--gold);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.hero h1 {
  margin: 0.4rem 0 1.4rem;
}
.hero .lede {
  color: var(--cream-dim);
  max-width: 46ch;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 2.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}
.scrollcue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}
.scrollcue i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Promo ticker (Two Brothers style) */
.marquee {
  background: var(--olive);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 154, 75, 0.25);
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  padding: 0.65rem 0;
  animation: marquee 32s linear infinite;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.marquee__track span {
  opacity: 0.92;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Promo image carousel */
.banner {
  position: relative;
  background: var(--olive-deep);
  color: var(--cream);
  overflow: hidden;
}
.banner__track {
  position: relative;
  min-height: clamp(360px, 58vw, 520px);
}
.banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.banner__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(31, 46, 22, 0.92) 0%, rgba(31, 46, 22, 0.55) 42%, rgba(31, 46, 22, 0.2) 100%),
    linear-gradient(180deg, transparent 50%, rgba(26, 18, 14, 0.45) 100%);
}
.banner__shade--wine {
  background:
    linear-gradient(105deg, rgba(74, 20, 32, 0.92) 0%, rgba(74, 20, 32, 0.5) 45%, rgba(74, 20, 32, 0.15) 100%),
    linear-gradient(180deg, transparent 50%, rgba(26, 18, 14, 0.4) 100%);
}
.banner__shade--honey {
  background:
    linear-gradient(105deg, rgba(42, 24, 10, 0.78) 0%, rgba(42, 24, 10, 0.35) 48%, rgba(42, 24, 10, 0.12) 100%),
    linear-gradient(180deg, transparent 45%, rgba(26, 18, 14, 0.35) 100%);
}
.banner__shade--poster {
  background:
    linear-gradient(90deg, rgba(31, 46, 22, 0.88) 0%, rgba(31, 46, 22, 0.55) 38%, rgba(31, 46, 22, 0.15) 72%, transparent 100%);
}
.banner__slide--poster img {
  object-fit: cover;
  object-position: center top;
}
.banner--shop .banner__track {
  min-height: clamp(340px, 48vw, 460px);
}
.banner--shop .banner__slide img {
  object-position: center;
}
.banner__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2.5rem;
  max-width: var(--wrap);
  margin: 0 auto;
  left: 0;
  right: 0;
}
.banner__kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}
.banner__copy .display {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 0.85rem;
}
.banner__text {
  max-width: 36ch;
  color: var(--cream-dim);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 1.4rem;
}
.banner__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  pointer-events: none;
}
.banner__arrow,
.banner__dots button {
  pointer-events: auto;
}
.banner__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(231, 203, 134, 0.45);
  background: rgba(31, 46, 22, 0.55);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.banner__arrow:hover {
  background: var(--gold);
  color: #3a2405;
  border-color: var(--gold);
}
.banner__dots {
  display: flex;
  gap: 0.4rem;
}
.banner__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
}
.banner__dots button.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 999px;
}

/* Collection chips row */
.collections {
  background: var(--parch);
  padding: 1.1rem 0 0.2rem;
  border-bottom: 1px solid rgba(200, 154, 75, 0.18);
  position: sticky;
  top: 64px;
  z-index: 70;
}
.collection-row {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.9rem;
  scrollbar-width: none;
}
.collection-row::-webkit-scrollbar {
  display: none;
}
.collection-chip {
  flex: none;
  border: 1px solid var(--line-gold);
  background: var(--white);
  color: var(--wine);
  padding: 0.55em 1.05em;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.collection-chip:hover,
.collection-chip.active {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}

/* Belief / story / pillars reuse */
.belief {
  text-align: center;
}
.belief .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.55rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  color: var(--wine);
  max-width: 22ch;
  margin: 0 auto;
}
.belief .sub {
  margin-top: 1.1rem;
  color: var(--ink-soft);
}
.rule-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.8rem;
  max-width: 280px;
  color: var(--gold);
}
.rule-seal .ln {
  height: 1px;
  flex: 1;
  background: var(--line-gold);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.story__body p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.story__body p.first {
  color: var(--ink);
  font-size: 1.12rem;
}
.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillars-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.8rem;
}
.pillars-head .aside {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.3;
  color: var(--gold-2);
  border-left: 2px solid var(--line-gold);
  padding-left: 1.3rem;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}
.pillar {
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.pillar p {
  font-size: 0.94rem;
  color: var(--cream-dim);
}
.news {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.newscard {
  background: var(--white);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px -30px rgba(74, 20, 32, 0.35);
}
.newscard .tag {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--wine);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.newscard blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.28;
  color: var(--wine);
  margin-bottom: 1rem;
}
.newscard .src {
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-gold);
  padding-top: 0.9rem;
}
.newscard .src b {
  color: var(--wine);
}

/* Category strip */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.cat-card {
  text-align: center;
  padding: 1.2rem 0.7rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(74, 20, 32, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.cat-card:hover,
.cat-card.active {
  transform: translateY(-3px);
  border-color: var(--wine);
}
.cat-card .ic {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}
.cat-card .nm {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1.25;
}

/* Shop */
.shop-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.8rem;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.filter-chip {
  border: 1px solid var(--line-gold);
  background: var(--white);
  color: var(--wine);
  padding: 0.55em 1em;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}
.filter-chip.active,
.filter-chip:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.35rem;
}
.pcard {
  background: var(--white);
  border: 1px solid rgba(74, 20, 32, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -32px rgba(74, 20, 32, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -28px rgba(74, 20, 32, 0.4);
}
.pcard__media {
  position: relative;
  aspect-ratio: 1;
  background: #e8dfcf;
  overflow: hidden;
}
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pcard:hover .pcard__media img {
  transform: scale(1.04);
}
.pcard__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--olive);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: 999px;
}
.pcard__save {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--wine);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35em 0.65em;
  border-radius: 999px;
}
.pcard__body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard__rating {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.pcard__rating b {
  color: var(--olive);
}
.pcard h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--wine);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.pcard__blurb {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  flex: 1;
}
.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}
.pcard__price .now {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olive);
}
.pcard__price .was {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.pcard__price .unit {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.pcard__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.pcard__actions .btn {
  padding: 0.7em 1em;
  font-size: 0.86rem;
}

/* Promise / visit / footer */
.promise {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.promise h2 {
  margin: 0.5rem 0 1.2rem;
}
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cline {
  display: flex;
  gap: 0.9rem;
}
.cline .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cline .val {
  color: var(--cream);
  font-size: 1rem;
}
.visit-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foot {
  background: var(--wine-deep);
  color: var(--cream-dim);
  padding-block: clamp(40px, 6vw, 70px);
  border-top: 1px solid rgba(200, 154, 75, 0.16);
}
.foot__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 154, 75, 0.14);
}
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.92rem;
}
.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.84rem;
  opacity: 0.8;
}
.foot__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-2);
}

/* Modal + drawer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 14, 0.55);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal__panel {
  background: var(--parch);
  border-radius: 16px;
  width: min(920px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45);
}
.modal__media {
  background: #e8dfcf;
  min-height: 280px;
}
.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__body {
  padding: clamp(1.4rem, 3vw, 2rem);
}
.modal__close {
  float: right;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--ink-soft);
  line-height: 1;
}
.modal__body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--wine);
  margin: 0.4rem 0 0.5rem;
  clear: both;
}
.modal__blurb {
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.modal__desc {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.size-chip {
  border: 1px solid var(--line-gold);
  background: var(--white);
  padding: 0.5em 0.9em;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--wine);
}
.size-chip.active {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}
.modal__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 1rem;
}
.modal__price .was {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-left: 0.4rem;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.qty button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  color: var(--wine);
}
.qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--parch);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
}
.drawer.open {
  transform: translateX(0);
}
.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid var(--line-gold);
}
.drawer__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--wine);
}
.drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.3rem;
}
.drawer__empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 2.5rem 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(200, 154, 75, 0.2);
}
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item h4 {
  font-size: 0.92rem;
  color: var(--wine);
  font-weight: 600;
}
.cart-item .meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.cart-item .line {
  font-weight: 700;
  color: var(--olive);
  font-size: 0.92rem;
}
.cart-item .rm {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-decoration: underline;
  margin-top: 0.25rem;
}
.drawer__foot {
  padding: 1.1rem 1.3rem 1.4rem;
  border-top: 1px solid var(--line-gold);
  background: var(--parch-2);
}
.drawer__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--wine);
}
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--olive);
  color: var(--cream);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  z-index: 120;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .collections {
    top: 58px;
  }
  .banner__track {
    min-height: clamp(320px, 78vw, 440px);
  }
  .banner__copy .display {
    max-width: 12ch;
  }
  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(45, 67, 31, 0.98);
    padding: 5.5rem 2rem 2rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    align-items: flex-start;
  }
  .nav__links.open {
    transform: translateY(0);
  }
  .nav__links a {
    font-size: 1.25rem;
    font-family: var(--serif);
  }
  .nav__toggle {
    display: block;
    z-index: 85;
  }
  .split,
  .news,
  .visit,
  .modal__panel,
  .pillars-head {
    grid-template-columns: 1fr;
  }
  .cat-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillars-head .aside {
    border-left: 0;
    border-top: 2px solid var(--line-gold);
    padding: 1rem 0 0;
  }
}
@media (max-width: 560px) {
  .cat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .pcard__actions {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Platform chrome */
.platform-bar {
  background: #1a2614;
  color: var(--cream-dim);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.platform-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
  flex-wrap: wrap;
}
.platform-bar a {
  color: var(--gold-soft);
  font-weight: 600;
}
.platform-bar__meta {
  opacity: 0.85;
}

.pcard__sku {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
  font-variant-numeric: tabular-nums;
}
.pcard h3 a:hover {
  color: var(--olive);
}

.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.9rem;
  margin-top: 1rem;
  padding: 0.9rem;
  background: var(--parch-2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--ink);
}
.modal-meta b {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.modal-full {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--wine);
  font-size: 0.9rem;
}

/* About page */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(200, 154, 75, 0.12), transparent 55%),
    var(--parch);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.page-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 50px -28px rgba(74, 20, 32, 0.45);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.about-card {
  background: var(--white);
  border: 1px solid rgba(74, 20, 32, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}
.about-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--wine);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}
.about-card p {
  color: var(--ink-soft);
  margin-top: 0.7rem;
  font-size: 0.98rem;
}
.about-list,
.about-steps,
.pack-list {
  margin: 0.6rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.about-list li,
.about-steps li,
.pack-list li {
  margin: 0.35rem 0;
}
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine) !important;
  margin-top: 1.1rem !important;
}
.spec-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.spec-preview__item {
  background: var(--white);
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  font-weight: 600;
  color: var(--olive);
  text-align: center;
}

/* Product detail / registry */
.product-page {
  padding: 1.5rem 0 3.5rem;
  min-height: 60vh;
}
.product-loading,
.product-missing {
  padding: 3rem 0;
}
.breadcrumb {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.breadcrumb a {
  color: var(--wine);
  font-weight: 600;
}
.pdp {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}
.pdp__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8dfcf;
  aspect-ratio: 1;
}
.pdp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp__brand {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a6b2e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pdp__info .display {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--wine);
  margin-bottom: 0.5rem;
}
.pdp__blurb {
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.pdp__desc {
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.pdp__price-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-items: baseline;
  margin-bottom: 1rem;
}
.pdp__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--olive);
}
.pdp__mrp {
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-left: 0.45rem;
  font-size: 1rem;
}
.pdp__qty-label {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.pdp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.size-sku {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 0.15rem;
}
.spec-panel {
  background: var(--white);
  border: 1px solid rgba(74, 20, 32, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: 0 18px 40px -32px rgba(74, 20, 32, 0.4);
}
.spec-panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--wine);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}
.spec-panel h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--olive);
  font-size: 1.15rem;
  margin: 1.4rem 0 0.55rem;
}
.spec-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.spec-table {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-gold);
}
.spec-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(200, 154, 75, 0.22);
}
.spec-row dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.spec-row dd {
  color: var(--ink);
  font-size: 0.98rem;
}
.spec-row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
  background: var(--parch-2);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.pack-list--claims li {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine);
}

.collections {
  top: 64px;
}

@media (max-width: 900px) {
  .page-hero__grid,
  .about-grid,
  .pdp,
  .spec-preview {
    grid-template-columns: 1fr;
  }
  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .hero__grain {
    opacity: 0.28;
    width: 70vw;
  }
  .collections {
    top: 58px;
  }
  .modal-meta {
    grid-template-columns: 1fr;
  }
}
