:root {
  /* ---- Palette: warm & tactile — kraft ground, terracotta + mustard accents ---- */
  /* reason: kept the --white/--paper/--wine/--brass property names to limit the diff across
     this shared stylesheet; only the underlying hues moved from wine-minimalist to kraft/terracotta. */
  --white: #f1e6cd;
  --paper: #ebdcb8;   /* kraft tint, alternating sections */
  --paper2:#e3d2a8;   /* deeper tint, shop floor */
  --ink:   #2b2118;
  --muted: #6b5c48;
  --line:  #d9c69a;
  --wine:  #b8502e;   /* terracotta — the main accent */
  --wineDark: #8f3c20;
  --wineDeep: #5c2513;
  --wineSoft: #dcb08e; /* muted clay for text on terracotta */
  --brass: #c98a1f;    /* mustard — the secondary accent, still used sparingly */
  --bean:  #4b2518;

  --shadow:     0 30px 80px rgba(35, 20, 8, 0.16);
  --shadowCard: 0 6px 26px rgba(35, 20, 8, 0.09);
  --shadowLift: 0 22px 54px rgba(35, 20, 8, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --display: "Bitter", Georgia, "Times New Roman", serif;
  --sans: "Karla", "Trebuchet MS", "Segoe UI", system-ui, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fine grain — the crafted-paper texture, more visible on kraft than it was on gallery white */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; }

/* ============================================================
   HEADER
   ============================================================ */
.siteHeader {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 52px);
  height: 60px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  transition: height 240ms var(--ease), background 240ms ease, border-color 240ms ease;
}
.siteHeader.isScrolled {
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brandLogo { height: 32px; width: auto; }

.navLinks {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.navLinks a { position: relative; padding: 4px 0; transition: color 160ms ease; }
.navLinks a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}
.navLinks a:hover, .navLinks a:focus-visible { color: var(--wine); }
.navLinks a:hover::after, .navLinks a:focus-visible::after { transform: scaleX(1); }

.cartLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}
.cartLink:hover, .cartLink:focus-visible { color: var(--wine); }
.cartCount {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: transform 200ms var(--ease);
}
.cartCount.pop { transform: scale(1.32); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ============================================================
   SHARED
   ============================================================ */
.sectionInner { width: min(1140px, calc(100% - 64px)); margin: 0 auto; }

.sectionKicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sectionKicker::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.btn:hover, .btn:focus-visible { transform: translate(-1px, -1px); }
.btnSolid {
  background: var(--wine);
  color: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btnSolid:hover, .btnSolid:focus-visible { background: var(--wineDark); box-shadow: 4px 4px 0 var(--ink); }
.btnLine {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btnLine:hover, .btnLine:focus-visible { color: var(--wine); border-color: var(--wine); }

/* ============================================================
   ROASTER'S SEAL
   ============================================================ */
.seal { width: 100%; height: auto; display: block; overflow: visible; }
.sealRing {
  transform-box: view-box;
  transform-origin: 100px 100px;
  animation: sealSpin 44s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }

.sealRingLine { fill: none; stroke: rgba(184, 80, 46, 0.28); stroke-width: 1; }
.sealRingLine--brass { stroke: rgba(201, 138, 31, 0.65); }
.sealText {
  fill: var(--wine);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.6px;
}
.sealBean { fill: none; stroke: var(--wine); stroke-width: 1.6; stroke-linecap: round; }

/* ============================================================
   HERO — white ground, wine wordmark, rotating seal
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.heroGlow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 82% 30%, rgba(184, 80, 46, 0.10) 0%, transparent 60%),
    radial-gradient(70% 60% at 8% 92%, rgba(184, 80, 46, 0.07) 0%, transparent 55%);
}

.heroInner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: 120px 0 96px;
}
.heroText { max-width: 600px; }

.heroEyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--wine);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroRise 0.9s var(--ease) 0.05s forwards;
}
.dotDivider { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); }

.heroLogo {
  height: clamp(46px, 7vw, 78px);
  width: auto;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroRise 0.9s var(--ease) 0.14s forwards;
}

.heroStatement {
  margin: 0;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 800;
  opacity: 0;
  animation: heroRise 0.95s var(--ease) 0.24s forwards;
}
.heroStatement em { position: relative; font-style: italic; color: var(--wine); font-weight: 800; }
.heroStatement em svg {
  position: absolute; left: -4%; top: 50%; width: 108%; height: 0.5em; overflow: visible; pointer-events: none;
}
.heroStatement em path {
  fill: none; stroke: var(--brass); stroke-width: 7; stroke-linecap: round; opacity: .85;
  stroke-dasharray: 340; stroke-dashoffset: 340; animation: scribbleDraw 0.9s ease 1.1s forwards;
}
@keyframes scribbleDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .heroStatement em path { animation: none; stroke-dashoffset: 0; }
}

.heroLede {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  opacity: 0;
  animation: heroRise 0.95s var(--ease) 0.34s forwards;
}

.heroActions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroRise 0.95s var(--ease) 0.44s forwards;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.heroSealWrap {
  justify-self: center;
  width: clamp(220px, 30vw, 360px);
  opacity: 0;
  animation: heroRise 1.1s var(--ease) 0.5s forwards;
}

.heroScroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.heroScroll svg { animation: scrollBob 2s var(--ease) infinite; }
.heroScroll:hover { color: var(--wine); }
@keyframes scrollBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   PILLARS — KEEP: gold tubes + falling-bean effect (geometry intact)
   ============================================================ */
.pillarsSection { background: var(--paper); padding-top: 100px; overflow: hidden; }
.pillarsLabel { margin-bottom: 36px; }
.pillarsTitle {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.pillarsHint { margin: 16px 0 0; color: var(--muted); font-size: 14.5px; }

.slotStage {
  position: relative;
  width: 100%;
  aspect-ratio: 2400 / 1024;
  isolation: isolate;
  overflow: hidden;
}
.slotMachineImage {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 48px rgba(79, 13, 33, 0.10));
}
.slotHotspots {
  position: absolute;
  z-index: 6;
  top: 20%;
  left: 25.5%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8%;
  width: 49%;
  height: 70%;
}
.hotspotButton {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
}
.hotspotButton:focus-visible { outline: 2px solid rgba(184, 80, 46, 0.3); outline-offset: 3px; }
.beansLayer { position: absolute; z-index: 5; inset: 0; pointer-events: none; }

/* Bean particles (preserved verbatim) */
.bean {
  position: absolute;
  display: block;
  width: var(--beanW);
  height: var(--beanH);
  border-radius: 50%;
  background: var(--bean);
  box-shadow: inset 1px -1px 0 rgba(0, 0, 0, 0.2);
  animation: beanFall var(--duration) cubic-bezier(0.2, 0.68, 0.28, 1) forwards;
}
.bean::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 48%;
  width: 1px;
  height: 64%;
  transform: rotate(12deg);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}
@keyframes beanFall {
  0%   { opacity: 0; transform: translate3d(0, -16px, 0) rotate(0deg) scale(0.8); }
  12%  { opacity: 1; }
  72%  { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--drift), var(--fall), 0) rotate(var(--spin)) scale(0.92); }
}

/* ============================================================
   SIGNATURE — KEEP: donut foam image
   ============================================================ */
.signatureSection { padding: clamp(90px, 12vw, 150px) 0; background: var(--white); }
.signatureGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.signatureCopy h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.signatureCopy h2 em { font-style: italic; color: var(--wine); font-weight: 800; }
.signatureBody {
  max-width: 460px;
  margin: 26px 0 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.drinkFigure { position: relative; margin: 0; }
.drinkFigure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.figureTag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.drinkFigure figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

/* ============================================================
   SHOP
   ============================================================ */
.shopSection { padding: clamp(90px, 12vw, 150px) 0; background: var(--paper2); }
.shopHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.shopHeader h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.shopNote { margin: 0 0 6px; max-width: 220px; color: var(--muted); font-size: 13.5px; line-height: 1.6; text-align: right; }

.shopGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.productCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadowCard);
  display: flex;
  flex-direction: column;
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}
.productCard:hover { transform: translateY(-7px); box-shadow: var(--shadowLift); }

.productVisual {
  position: relative;
  height: 196px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.productVisual::after { /* subtle inner sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
/* demo: photo fills the product media box */
img.productVisual { width: 100%; object-fit: cover; padding: 0; }
.pvIndex, .pvCat {
  position: absolute;
  top: 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.82;
}
.pvIndex { left: 16px; font-family: var(--display); font-variant-numeric: oldstyle-nums; letter-spacing: 0.06em; }
.pvCat { right: 16px; }
.pvGlyph {
  width: 64px; height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 420ms var(--ease);
}
.productCard:hover .pvGlyph { transform: translateY(-3px) scale(1.05); }

.pv-espresso { background: linear-gradient(155deg, #2a160c 0%, #4a230f 100%); color: rgba(247, 238, 230, 0.82); }
.pv-chocolate { background: linear-gradient(155deg, #160b06 0%, #2d1708 100%); color: rgba(240, 228, 220, 0.74); }
.pv-kit { background: linear-gradient(155deg, #ffffff 0%, #f1e9e2 100%); color: rgba(184, 80, 46, 0.62); border-bottom: 1px solid var(--line); }
.pv-gift { background: linear-gradient(155deg, #6b4a0f 0%, #c98a1f 100%); color: rgba(255, 250, 235, 0.9); }

.productInfo {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.productName {
  margin: 0;
  font-size: 21px;
  font-weight: 440;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.productDesc { margin: 8px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.productAction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.productPrice {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 440;
  font-variant-numeric: oldstyle-nums;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.addToBag {
  flex: 1;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--wine);
  background: transparent;
  color: var(--wine);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.addToBag:hover, .addToBag:focus-visible { background: var(--wine); color: #fff; transform: translateY(-1px); }

/* ---- Subscription product card ---- */
/* Reserve a fixed promo-banner slot on every card in a grid that contains a
   promo, so images and text lines align across the row. The promo card fills
   the slot with its banner; the other cards leave it as an empty gap. */
.productCard { --promoSlot: 40px; }
.shopGrid:has(.productCard--sub) .productCard { padding-top: var(--promoSlot); }
.productCard--sub { border-top: none; position: relative; overflow: hidden; }

.subBanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--promoSlot);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--wineDark) 0%, var(--wine) 100%);
  border-radius: 17px 17px 0 0;
}
.subBannerLabel {
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.subBannerBadge {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(201, 138, 31, 0.6);
  color: #e7c79a;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Shop grid: give the subscription card's title the wine accent so it reads as
   the featured product. Scoped to shop's [data-grid] so index.html is untouched. */
.shopGrid[data-grid] .productCard--sub .productName a { color: var(--wine); }

.productPriceGroup {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.productPrice--struck {
  font-family: var(--display);
  font-size: 12.5px;
  font-variant-numeric: oldstyle-nums;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(109, 95, 91, 0.55);
  line-height: 1;
}
.productPrice--sub {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 440;
  font-variant-numeric: oldstyle-nums;
  color: var(--wine);
  line-height: 1.1;
}
.productPrice--subNote {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.addToSubscribe {
  flex: 1;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: var(--wine);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.addToSubscribe:hover, .addToSubscribe:focus-visible {
  background: var(--wineDark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(184, 80, 46, 0.3);
}

.productAction--stacked { align-items: flex-end; }
.productOnetimeTag {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============================================================
   ROASTERY — editorial index
   ============================================================ */
.roasterySection { padding: clamp(90px, 12vw, 150px) 0; background: var(--white); }
.sectionHeader { margin-bottom: 56px; }
.sectionHeader h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.roasteryList { list-style: none; margin: 0; padding: 0; }
.roastItem {
  display: grid;
  grid-template-columns: clamp(90px, 14vw, 180px) 1fr;
  gap: clamp(20px, 5vw, 64px);
  align-items: baseline;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.roastItem:last-child { border-bottom: 1px solid var(--line); }
.roastNum {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 320;
  font-variant-numeric: oldstyle-nums;
  line-height: 0.9;
  color: var(--wine);
}
.roastBody { max-width: 560px; }
.roastBody h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 440;
  letter-spacing: -0.015em;
}
.roastBody p { margin: 14px 0 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

/* ============================================================
   NEWSLETTER — wine
   ============================================================ */
.newsletterSection { padding: clamp(90px, 12vw, 150px) 0; background: var(--wine); }
.newsletterInner { display: flex; flex-direction: column; align-items: center; gap: 44px; text-align: center; }
.newsletterKicker { color: rgba(255, 255, 255, 0.7); }
.newsletterKicker::before { background: rgba(255, 255, 255, 0.7); }
.newsletterSection h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fff;
}
.newsletterSub { margin: 18px 0 0; color: var(--wineSoft); font-size: 17px; line-height: 1.65; }
.newsletterForm { display: flex; gap: 10px; width: 100%; max-width: 500px; }
.newsletterInput {
  flex: 1;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.newsletterInput::placeholder { color: var(--muted); }
.newsletterInput:focus { border-color: var(--wineDeep); box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
.newsletterSubmit {
  flex-shrink: 0;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: none;
  background: var(--wineDeep);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.newsletterSubmit:hover, .newsletterSubmit:focus-visible { background: #2a0512; transform: translateY(-2px); }

/* ============================================================
   VISIT / FOOTER — wine dark
   ============================================================ */
.visitSection {  color: #fff; background: var(--wineDark); }
.visitInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: clamp(72px, 9vw, 110px);
}
.visitKicker { color: var(--wineSoft); }
.visitKicker::before { background: var(--wineSoft); }
.visitLeft h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fff;
}
.visitAddress { margin-top: 26px; color: rgba(255, 255, 255, 0.55); font-size: 15px; line-height: 1.9; }
.visitMoreLink {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 160ms ease, opacity 160ms ease;
}
.visitMoreLink:hover, .visitMoreLink:focus-visible { border-color: #fff; opacity: 0.92; }

.visitRight {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.seal--sm { width: 150px; }
.seal--sm .sealRingLine { stroke: rgba(255, 255, 255, 0.26); }
.seal--sm .sealRingLine--brass { stroke: rgba(201, 168, 106, 0.7); }
.seal--sm .sealText { fill: rgba(255, 255, 255, 0.82); }
.seal--sm .sealBean { stroke: rgba(255, 255, 255, 0.85); }

.visitEmailBtn {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--wineDark);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 180ms var(--ease), opacity 180ms ease;
}
.visitEmailBtn:hover, .visitEmailBtn:focus-visible { transform: translateY(-2px); opacity: 0.92; }

.siteFooter { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 26px 0; }
.footerInner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footerCopy { margin: 0; color: rgba(255, 255, 255, 0.4); font-size: 12.5px; letter-spacing: 0.02em; }
.footerNav { display: flex; gap: 28px; font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }
.footerNav a { transition: color 160ms ease; }
.footerNav a:hover, .footerNav a:focus-visible { color: #fff; }

/* ============================================================
   SERVICES — our services
   ============================================================ */
.servicesSection { padding: clamp(90px, 12vw, 150px) 0; background: var(--paper); }
.servicesHeader { margin-bottom: 52px; }
.servicesHeader h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.serviceCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 2.8vw, 34px);
  box-shadow: var(--shadowCard);
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}
.serviceCard:hover { transform: translateY(-6px); box-shadow: var(--shadowLift); }

.serviceIconWrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(184, 80, 46, 0.06);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.serviceIconWrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--wine);
}

.serviceCard h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 440;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.serviceCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.servicesEnquire {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   PREMIUM CLIENTS — auto-scrolling marquee
   ============================================================ */
.clientsSection {
  padding: clamp(90px, 12vw, 150px) 0;
  background: var(--paper2);
  overflow: hidden;
}
.clientsInner { text-align: left; }
.clientsSection h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.clientsSection h2 em { font-style: italic; color: var(--wine); }
.clientsLede {
  margin: 18px 0 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.clientsTrack {
  position: relative;
  margin-top: clamp(52px, 7vw, 80px);
  padding: clamp(28px, 3.5vw, 40px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.clientsTrack::before,
.clientsTrack::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.clientsTrack::before {
  left: 0;
  background: linear-gradient(to right, var(--paper2), transparent);
}
.clientsTrack::after {
  right: 0;
  background: linear-gradient(to left, var(--paper2), transparent);
}

.clientsReel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 40px);
  width: max-content;
  animation: clientsScroll 32s linear infinite;
}
.clientsReel:hover { animation-play-state: paused; }

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.clientLogo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 148px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 200ms ease, background 200ms ease;
}
.clientLogo:hover { border-color: var(--wine); background: rgba(0, 0, 0, 0.05); }
.clientLogo img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.5;
  transition: opacity 200ms ease;
}
.clientLogo:hover img { opacity: 0.9; }

/* Services responsive */
@media (max-width: 900px) {
  .servicesGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .servicesGrid { grid-template-columns: 1fr; gap: 14px; }
  .serviceCard { padding: 22px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .heroEyebrow, .heroLogo, .heroStatement, .heroLede, .heroActions, .heroSealWrap { opacity: 1; animation: none; }
  .clientsReel { animation: none; }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .sectionInner { width: calc(100% - 48px); }

  .heroInner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 110px 0 90px;
    text-align: left;
  }
  .heroSealWrap { justify-self: start; width: clamp(180px, 40vw, 240px); }
  .heroScroll { display: none; }

  .signatureGrid { grid-template-columns: 1fr; }

  .shopGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .shopHeader { flex-direction: column; align-items: flex-start; gap: 14px; }
  .shopNote { text-align: left; }

  .visitInner { flex-direction: column; align-items: flex-start; gap: 44px; }
  .visitRight { flex-direction: row; align-items: center; gap: 28px; }
}

/* ============================================================
   RESPONSIVE — 560px
   ============================================================ */
@media (max-width: 560px) {
  .navLinks { display: none; }
  .cartLabel { display: none; }
  .sectionInner { width: calc(100% - 36px); }

  .heroInner { padding: 100px 0 72px; }
  .heroLede { font-size: 16px; }
  .heroSealWrap { width: 160px; }

  .shopGrid { grid-template-columns: 1fr; gap: 16px; }
  .productVisual { height: 180px; }

  .roastItem { grid-template-columns: 1fr; gap: 8px; padding: 30px 0; }
  .roastNum { font-size: 3.2rem; }

  .newsletterForm { flex-direction: column; max-width: 100%; }
  .newsletterInput, .newsletterSubmit { width: 100%; flex: none; }

  .footerInner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footerNav { gap: 18px; flex-wrap: wrap; }

  /* Pillars mobile — centered crop (preserved) */
  .slotMachineImage { object-position: 60% center; }
  .slotHotspots { top: 20%; left: 7%; width: 86%; height: 70%; }
}

/* ============================================================
   RESPONSIVE — 420px
   ============================================================ */
@media (max-width: 420px) {
  .heroActions { flex-direction: column; align-items: stretch; }
  .heroActions .btn { width: 100%; }
}

/* ============================================================
   ============================================================
   SUB-PAGES — cart · auth · membership (The Bloom Society)
   Shares all tokens, type and motion with the homepage.
   ============================================================
   ============================================================ */

/* ---- Header: account icon + grouped actions ---- */
.headerActions {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  flex-shrink: 0;
}
.accountLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}
.accountLink:hover, .accountLink:focus-visible { color: var(--wine); }
.accountLink svg { display: block; }
.accountLink.isActive { color: var(--wine); }

/* Solid header for interior pages (no hero sitting behind it) */
.siteHeader--solid {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
}

/* ---- Page shell + intro head ---- */
.pageMain { padding-top: 60px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--muted); transition: color 160ms ease; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb span { opacity: 0.45; }

.pageHead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 8vw, 92px) 0 clamp(30px, 4vw, 46px);
}
.pageHead h1 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 6.2vw, 4.1rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.pageHead h1 em { font-style: italic; color: var(--wine); }
.pageHeadSub { margin: 18px 0 0; max-width: 480px; color: var(--muted); font-size: 16px; line-height: 1.7; }

.kickerLight { color: rgba(255, 255, 255, 0.72); }
.kickerLight::before { background: rgba(255, 255, 255, 0.72); }

/* ---- Compact interior footer ---- */
.pageFooter {
  background: var(--wineDark);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0;
}
.pageFooterInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pageFooterBrand { display: flex; align-items: center; gap: 18px; }
.pageFooterBrand img { height: 69px; width: auto; opacity: 0.95; }
.pageFooterBrandText { display: flex; flex-direction: column; gap: 3px; }
.pageFooterSlogan {
  margin: 0;
  font-family: 'Bitter', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}
.pageFooterSlogan em { font-style: italic; color: var(--wineSoft); }
.pageFooterCopy { margin: 0; font-size: 12.5px; color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   CART
   ============================================================ */
.cartSection { background: var(--white); padding: clamp(40px, 6vw, 70px) 0 clamp(72px, 11vw, 124px); }
.cartLayout {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.cartListHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}
.cartListHead h2 { margin: 0; font-size: 1.35rem; font-weight: 440; letter-spacing: -0.01em; }
.cartListCount { color: var(--muted); font-size: 13.5px; }

.cartLine {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: clamp(16px, 2.4vw, 26px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cartThumb {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cartThumb svg {
  width: 40px; height: 40px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.cartLineName { margin: 0; font-family: var(--display); font-size: 1.18rem; font-weight: 460; letter-spacing: -0.01em; }
.cartLineMeta { margin: 5px 0 0; color: var(--muted); font-size: 13px; letter-spacing: 0.02em; }
.cartLineControls { display: flex; align-items: center; gap: 18px; margin-top: 14px; }

.qtyStepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.qtyBtn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 0; background: transparent; cursor: pointer;
  color: var(--ink); font-size: 17px; line-height: 1; border-radius: 999px;
  transition: color 160ms ease;
}
.qtyBtn:hover, .qtyBtn:focus-visible { color: var(--wine); }
.qtyVal { min-width: 26px; text-align: center; font-size: 14px; font-variant-numeric: tabular-nums; }

.cartRemove {
  background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--muted); font-size: 12.5px; letter-spacing: 0.04em;
  transition: color 160ms ease;
}
.cartRemove:hover { color: var(--wine); }

.cartLineRight { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.cartLinePrice { font-family: var(--display); font-size: 1.25rem; font-variant-numeric: oldstyle-nums; }
.cartLineUnit { color: var(--muted); font-size: 12px; }

/* Summary */
.cartSummary {
  position: sticky;
  top: 78px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadowCard);
}
.cartSummary h2 { margin: 0 0 20px; font-size: 1.3rem; font-weight: 440; }
.sumRow { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 0; font-size: 14.5px; color: var(--muted); }
.sumRow > span:last-child { color: var(--ink); font-variant-numeric: oldstyle-nums; font-family: var(--display); font-size: 1.05rem; }
.sumRow--free > span:last-child { color: var(--wine); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.sumDivide { height: 1px; background: var(--line); margin: 12px 0; }
.sumTotal { padding-top: 6px; }
.sumTotal > span:first-child { color: var(--ink); font-size: 16px; font-weight: 600; }
.sumTotal > span:last-child { font-size: 1.6rem; color: var(--ink); }

.promoRow { display: flex; gap: 8px; margin: 22px 0; }
.promoRow input {
  flex: 1; height: 46px; border: 1px solid var(--line); border-radius: 10px;
  padding: 0 14px; font-family: var(--sans); font-size: 13.5px; background: var(--white); outline: none;
  transition: border-color 160ms ease;
}
.promoRow input:focus { border-color: var(--wine); }
.promoRow button {
  height: 46px; padding: 0 16px; border-radius: 10px; border: 1px solid var(--ink);
  background: transparent; font-family: var(--sans); font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.promoRow button:hover { background: var(--ink); color: #fff; }

.checkoutBtn { width: 100%; margin-top: 2px; }
.continueLink {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; color: var(--muted); font-size: 13.5px; transition: color 160ms ease;
}
.continueLink:hover { color: var(--wine); }

.cartPerk {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px; padding: 16px 18px; border-radius: 14px;
  background: rgba(184, 80, 46, 0.05);
  border: 1px solid rgba(184, 80, 46, 0.14);
}
.cartPerk svg { flex-shrink: 0; width: 26px; height: 26px; stroke: var(--wine); fill: none; stroke-width: 1.5; }
.cartPerk p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink); }
.cartPerk a { color: var(--wine); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Empty state */
.cartEmpty { text-align: center; padding: clamp(50px, 9vw, 90px) 0; }
.cartEmpty h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 14px; letter-spacing: -0.02em; }
.cartEmpty p { color: var(--muted); margin: 0 0 28px; }

/* ============================================================
   AUTH — login / register
   ============================================================ */
.authSection { display: grid; grid-template-columns: 1.04fr 0.96fr; min-height: calc(100svh - 60px); }

.authAside {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--wineDeep) 0%, var(--wine) 100%);
  color: #fff;
  padding: clamp(96px, 12vh, 150px) clamp(36px, 5vw, 80px) clamp(48px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.authAside::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 50% at 82% 14%, rgba(201, 138, 31, 0.24), transparent 60%);
}
.authAsideInner { position: relative; max-width: 430px; }
.authAside .seal { width: 92px; margin-bottom: 32px; }
.authAside .sealRingLine { stroke: rgba(255, 255, 255, 0.26); }
.authAside .sealRingLine--brass { stroke: rgba(201, 168, 106, 0.78); }
.authAside .sealText { fill: rgba(255, 255, 255, 0.82); }
.authAside .sealBean { stroke: rgba(255, 255, 255, 0.85); }
.authAside h2 { margin: 14px 0 0; font-size: clamp(2.1rem, 3.4vw, 3.1rem); line-height: 1.06; letter-spacing: -0.025em; color: #fff; }
.authAside h2 em { font-style: italic; color: #e7c79a; }

.authPerks { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 15px; }
.authPerks li { display: flex; gap: 13px; align-items: flex-start; color: rgba(255, 255, 255, 0.84); font-size: 14.5px; line-height: 1.5; }
.authPerks li::before { content: ""; flex-shrink: 0; margin-top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

.authForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 12vh, 140px) clamp(28px, 6vw, 92px) clamp(56px, 8vw, 90px);
  background: var(--white);
}
.authFormInner { width: 100%; max-width: 410px; margin: 0 auto; }
.authForm h1 { margin: 0; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.025em; line-height: 1.05; }
.authForm h1 em { font-style: italic; color: var(--wine); }
.authIntro { margin: 14px 0 32px; color: var(--muted); font-size: 15px; line-height: 1.6; }

.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.fieldInput {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.fieldInput:focus { border-color: var(--wine); background: #fff; box-shadow: 0 0 0 4px rgba(184, 80, 46, 0.08); }
.fieldInput::placeholder { color: #b6a59f; }

.fieldPw { position: relative; }
.fieldPw .fieldInput { padding-right: 64px; }
.pwToggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  height: 40px; padding: 0 12px; border: 0; background: none; cursor: pointer;
  color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 160ms ease;
}
.pwToggle:hover { color: var(--wine); }

.fieldGroup2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fieldRow { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 26px; gap: 12px; }
.remember { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.remember input { width: 16px; height: 16px; accent-color: var(--wine); }
.forgot { font-size: 13.5px; color: var(--wine); transition: opacity 160ms ease; }
.forgot:hover { opacity: 0.7; text-decoration: underline; text-underline-offset: 2px; }

.agree { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 24px; font-size: 13px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.agree input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--wine); flex-shrink: 0; }
.agree a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }

.authSubmit { width: 100%; }
.authDivide { display: flex; align-items: center; gap: 14px; margin: 26px 0; color: var(--muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.authDivide::before, .authDivide::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.authSwap { text-align: center; font-size: 14.5px; color: var(--muted); }
.authSwap a { color: var(--wine); font-weight: 600; }
.authSwap a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   ACCOUNT — membership dashboard
   ============================================================ */
.accountSection { background: var(--paper); padding: clamp(40px, 6vw, 64px) 0 clamp(70px, 10vw, 120px); }

.memberHero {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.memberGreet { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.025em; line-height: 1.05; margin: 14px 0 0; }
.memberGreet em { font-style: italic; color: var(--wine); }
.memberSince { margin: 14px 0 0; color: var(--muted); font-size: 14px; }

.tierBadge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(184, 80, 46, 0.07);
  border: 1px solid rgba(184, 80, 46, 0.18);
  color: var(--wine);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.tierBadge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }

.beanMeter { margin-top: 28px; max-width: 470px; }
.beanMeterTop { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-size: 13.5px; color: var(--muted); }
.beanMeterTop b { color: var(--ink); font-family: var(--display); font-size: 1.2rem; font-variant-numeric: oldstyle-nums; font-weight: 460; }
.beanTrack { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.beanFill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brass), var(--wine)); }
.beanNext { margin: 11px 0 0; font-size: 13px; color: var(--muted); }
.beanNext b { color: var(--wine); }

/* Membership card */
.memberCard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--wineDeep) 0%, var(--wine) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  aspect-ratio: 1.62;
  box-shadow: var(--shadowLift);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(201, 168, 106, 0.4);
}
.memberCardSeal { position: absolute; right: -34px; bottom: -34px; width: 168px; opacity: 0.2; z-index: 0; }
.memberCardSeal .sealRingLine { stroke: rgba(255, 255, 255, 0.5); }
.memberCardSeal .sealRingLine--brass { stroke: rgba(231, 199, 154, 0.7); }
.memberCardSeal .sealText { fill: rgba(255, 255, 255, 0.7); }
.memberCardSeal .sealBean { stroke: rgba(255, 255, 255, 0.8); }
.memberCardTop { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 1; }
.memberCardWordmark { font-family: var(--display); font-style: italic; font-size: 1.45rem; }
.memberCardTier { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #e7c79a; text-align: right; }
.memberCardBody { position: relative; z-index: 1; }
.memberCardName { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.01em; }
.memberCardNo { margin-top: 6px; font-size: 13px; letter-spacing: 0.22em; color: rgba(255, 255, 255, 0.62); font-variant-numeric: tabular-nums; }

/* Stats */
.statGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: clamp(40px, 6vw, 60px); }
.statCard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadowCard); }
.statLabel { margin: 0; font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.statValue { margin: 12px 0 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-variant-numeric: oldstyle-nums; letter-spacing: -0.01em; line-height: 1; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.statValue svg { width: 24px; height: 24px; fill: none; stroke: var(--wine); stroke-width: 1.5; }
.statHint { margin: 9px 0 0; font-size: 13px; color: var(--muted); }

/* Panels: perks, orders, saved */
.accountGrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.accountGrid--single { grid-template-columns: 1fr; margin-top: clamp(24px, 3vw, 40px); }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadowCard); }
.panelHead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.panelHead h2 { margin: 0; font-size: 1.3rem; font-weight: 440; letter-spacing: -0.01em; }
.panelHead a { font-size: 13px; color: var(--wine); font-weight: 600; }
.panelHead a:hover { text-decoration: underline; text-underline-offset: 2px; }

.perkList { list-style: none; margin: 0; padding: 0; }
.perkItem { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.perkItem:first-child { border-top: 0; }
.perkTick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(184, 80, 46, 0.08); color: var(--wine); margin-top: 1px; }
.perkTick svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.perkItem.locked { opacity: 0.55; }
.perkItem.locked .perkTick { background: var(--line); color: var(--muted); }
.perkText h3 { margin: 0; font-size: 15px; font-weight: 600; font-family: var(--sans); }
.perkText p { margin: 4px 0 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.perkLockTag { display: inline-block; margin-left: 8px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); vertical-align: middle; }

.orderItem { padding: 18px 0; border-top: 1px solid var(--line); }
.orderItem:first-child { border-top: 0; }
.orderTop { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.orderId { font-family: var(--display); font-size: 1.05rem; font-variant-numeric: oldstyle-nums; }
.orderDate { font-size: 12.5px; color: var(--muted); }
.orderItemsList { margin: 6px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.orderBottom { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; gap: 12px; flex-wrap: wrap; }
.orderStatus { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.status-delivered { background: rgba(184, 80, 46, 0.07); color: var(--wine); }
.status-roasting { background: rgba(201, 138, 31, 0.16); color: #8a6526; }
.orderMeta { display: flex; align-items: center; gap: 16px; }
.orderBeans { font-size: 13px; color: var(--wine); font-weight: 600; }
.orderTotal { font-family: var(--display); font-size: 1.15rem; font-variant-numeric: oldstyle-nums; }

.savedRow { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); gap: 16px; }
.savedRow:first-child { border-top: 0; }
.savedRow h3 { margin: 0 0 5px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.savedRow p { margin: 0; font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.savedEdit { flex-shrink: 0; font-size: 13px; color: var(--wine); font-weight: 600; }
.savedEdit:hover { text-decoration: underline; text-underline-offset: 2px; }

.accountFootRow { display: flex; justify-content: space-between; align-items: center; margin-top: clamp(34px, 5vw, 52px); gap: 18px; flex-wrap: wrap; }
.accountFootRow p { margin: 0; color: var(--muted); font-size: 13.5px; }
.signOut {
  display: inline-flex; align-items: center; gap: 9px;
  height: 46px; padding: 0 22px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  font-family: var(--sans); font-weight: 600; font-size: 13.5px; cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}
.signOut:hover { border-color: var(--wine); color: var(--wine); }
.signOut svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   SUB-PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .cartLayout { grid-template-columns: 1fr; }
  .cartSummary { position: static; }

  .authSection { grid-template-columns: 1fr; }
  .authAside { padding: clamp(88px, 14vh, 116px) clamp(28px, 7vw, 64px) clamp(40px, 8vw, 64px); }
  .authAside .seal { width: 76px; margin-bottom: 24px; }

  .memberHero { grid-template-columns: 1fr; }
  .memberCard { max-width: 420px; }
  .accountGrid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .accountLabel { display: none; }

  .statGrid { grid-template-columns: 1fr; }
  .fieldGroup2 { grid-template-columns: 1fr; }

  .cartLine { grid-template-columns: 64px 1fr; row-gap: 14px; }
  .cartThumb { width: 64px; height: 64px; }
  .cartThumb svg { width: 30px; height: 30px; }
  .cartLineRight { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; }

  .orderMeta { gap: 12px; }
}

@media (max-width: 420px) {
  .promoRow { flex-direction: column; }
  .promoRow button { width: 100%; }
}

/* ============================================================
   ============================================================
   VISIT PAGE — hours · address · map · outro
   Shares all tokens, type and motion with the homepage.
   ============================================================
   ============================================================ */

.navLinks a.isActive { color: var(--wine); }

/* ---- Hours + address grid ---- */
.visitDetail { background: var(--white); padding: clamp(48px, 7vw, 86px) 0; }
.visitGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.visitPanel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadowCard);
}
.panelTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panelTitle {
  margin: 14px 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* Open / closed badge */
.openStatus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 11px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.openStatus::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.openStatus.is-open { color: #2f7a3f; background: rgba(47, 122, 63, 0.1); }
.openStatus.is-closed { color: var(--wine); background: rgba(184, 80, 46, 0.08); }

/* Day-by-day list */
.hoursList { list-style: none; margin: 0; padding: 0; }
.hoursRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.hoursRow:last-child { border-bottom: 0; }
.hoursDay {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.hoursTime {
  font-family: var(--display);
  font-size: 18px;
  font-feature-settings: "onum" 1;
  color: var(--ink);
}
.hoursClosed { color: var(--wineSoft); font-style: italic; }
.hoursRow.isToday .hoursDay,
.hoursRow.isToday .hoursTime { color: var(--wine); }
.hoursRow.isToday {
  position: relative;
  border-bottom-color: rgba(184, 80, 46, 0.25);
}
.hoursRow.isToday::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
}
.panelNote {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* Address */
.addressBlock {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.dirBtns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }

/* ---- Menu — cake, soufflé & coffee bar (dine-in only, no ecomm) ---- */
.menuSection { background: var(--paper); padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--line); }
.menuHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.menuTitle {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.menuTitle em { font-style: italic; color: var(--wine); }
.menuNote { margin: 0 0 6px; max-width: 240px; color: var(--muted); font-size: 13.5px; line-height: 1.6; text-align: right; }

.menuGroup { margin-top: clamp(28px, 4vw, 44px); }
.menuGroup:first-of-type { margin-top: 0; }
.menuGroupTitle {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
}
.menuList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.menuRow {
  display: grid;
  grid-template-columns: clamp(84px, 9vw, 108px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.menuThumb {
  width: 100%;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper2);
  overflow: hidden;
  box-shadow: 0 10px 22px -14px rgba(60, 20, 10, 0.45);
}
.menuThumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menuRowBody { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.menuName {
  font-family: var(--display);
  font-size: 17.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.menuDesc { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ---- Outro — wine ---- */
.visitOutro { background: var(--wineDark); color: #fff; padding: clamp(72px, 10vw, 120px) 0; }
.visitOutroInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.outroTitle {
  margin: 18px 0 0;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fff;
}
.outroSub {
  margin: 22px 0 30px;
  max-width: 460px;
  color: var(--wineSoft);
  font-size: 16px;
  line-height: 1.7;
}
.outroSeal { flex-shrink: 0; }

/* Outro actions (shared by visit + about) */
.outroActions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btnLightLine {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease;
}
.btnLightLine:hover, .btnLightLine:focus-visible { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ============================================================
   ABOUT PAGE — story · craft · signatures · feed · makers
   Real photography, set in the Slow Bloom system.
   ============================================================ */

/* Alternating text + photo splits (light / paper chambers) */
.aboutSplit { padding: clamp(56px, 8vw, 104px) 0; background: var(--white); }
.aboutSplit--paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.aboutSplitGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.aboutTitle {
  margin: 16px 0 22px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.aboutTitle em { font-style: italic; color: var(--wine); }
.aboutCopy p { margin: 0 0 18px; color: var(--muted); font-size: 16.5px; line-height: 1.8; max-width: 48ch; }
.aboutCopy p:last-child { margin-bottom: 0; }

/* Framed photo — brass inset + caption + corner tag */
.aboutFigure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  outline: 1px solid rgba(201, 138, 31, 0.28);
  outline-offset: -7px;
}
.aboutFigure img { display: block; width: 100%; height: clamp(360px, 46vw, 560px); object-fit: cover; }
.aboutFigure figcaption {
  padding: 15px 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.figTag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(28, 20, 19, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Compact craft steps — fits beside the photo */
.craftList { list-style: none; margin: 6px 0 0; padding: 0; }
.craftItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.craftItem:last-child { border-bottom: 1px solid var(--line); }
.craftIndex {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 340;
  line-height: 1;
  color: var(--brass);
  font-feature-settings: "onum" 1;
}
.craftBody h3 { margin: 0 0 6px; font-size: 1.35rem; font-weight: 440; letter-spacing: -0.01em; }
.craftBody p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Signature drinks list */
.sigList { list-style: none; margin: 24px 0 30px; padding: 0; }
.sigItem {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.sigItem:last-child { border-bottom: 1px solid var(--line); }
.sigName { flex: 0 0 8.6em; font-family: var(--display); font-size: 1.22rem; letter-spacing: -0.01em; color: var(--ink); }
.sigName em { font-style: italic; color: var(--wine); }
.sigNotes { font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }

/* ---- Instagram feed strip ---- */
.feedSection { background: var(--paper2); padding: clamp(56px, 8vw, 96px) 0; }
.feedHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 3.5vw, 40px);
}
.feedTitle { margin: 12px 0 0; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; line-height: 1.05; }
.feedTitle em { font-style: italic; color: var(--wine); }
.igFollow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}
.igFollow:hover, .igFollow:focus-visible { background: var(--wine); color: #fff; }
.igFollow svg { width: 17px; height: 17px; }
.feedGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.4vw, 16px); }
.feedItem {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadowCard);
}
.feedItem img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.feedItem:hover img, .feedItem:focus-visible img { transform: scale(1.06); }
.feedItem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(56, 7, 26, 0.58), rgba(56, 7, 26, 0) 56%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.feedItem:hover::after, .feedItem:focus-visible::after { opacity: 1; }
.feedCap {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.feedItem:hover .feedCap, .feedItem:focus-visible .feedCap { opacity: 1; transform: translateY(0); }

/* Makers — light band, text + seal */
.aboutMakers { background: var(--white); border-top: 1px solid var(--line); padding: clamp(64px, 9vw, 110px) 0; }
.aboutMakersInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 6vw, 80px);
}
.aboutMakersBody { margin: 0; max-width: 52ch; color: var(--muted); font-size: 16.5px; line-height: 1.8; }
.aboutSeal { flex-shrink: 0; width: clamp(150px, 20vw, 200px); }

/* ---- Visit + about responsive ---- */
@media (max-width: 760px) {
  .visitGrid { grid-template-columns: 1fr; }
  .visitOutroInner { flex-direction: column; align-items: flex-start; gap: 44px; }
  .outroSeal { align-self: center; }

  .menuHeader { flex-direction: column; align-items: flex-start; gap: 14px; }
  .menuNote { text-align: left; max-width: none; }
  .menuList { grid-template-columns: 1fr; }

  .aboutSplitGrid { grid-template-columns: 1fr; gap: 34px; }
  .aboutFigure img { height: clamp(300px, 64vw, 440px); }
  .feedGrid { grid-template-columns: repeat(2, 1fr); }
  .aboutMakersInner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .aboutSeal { align-self: center; }
}
@media (max-width: 420px) {
  .dirBtns .btn, .outroActions a { width: 100%; justify-content: center; }
  .feedCap { display: none; }
}

/* ============================================================
   ============================================================
   SHOP — product listing (collection) page
   Shares all tokens, type and motion with the homepage.
   ============================================================
   ============================================================ */
.shopPageSection { background: var(--white); padding: clamp(34px, 5vw, 56px) 0 clamp(72px, 11vw, 120px); }

/* ---- Toolbar: filter pills + sort ---- */
.shopToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.filterPills { display: flex; flex-wrap: wrap; gap: 8px; }
.filterPill {
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.filterPill:hover, .filterPill:focus-visible { color: var(--wine); border-color: rgba(184, 80, 46, 0.4); }
.filterPill.isActive { background: var(--wine); border-color: var(--wine); color: #fff; }

.shopToolbarRight { display: flex; align-items: center; gap: 18px; }
.resultCount { color: var(--muted); font-size: 13px; letter-spacing: 0.02em; white-space: nowrap; }

.sortField {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sortLabel { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.sortSelect {
  appearance: none;
  -webkit-appearance: none;
  height: 38px;
  padding: 0 34px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms ease;
}
.sortSelect:hover, .sortSelect:focus-visible { border-color: var(--wine); }
.sortChevron { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

/* ---- Card linkified media + name ---- */
.productMedia { display: block; }
.productName a { color: inherit; transition: color 160ms ease; }
.productCard:hover .productName a { color: var(--wine); }

/* ---- Filter hide + no-results ---- */
.productCard.isHidden { display: none; }
.shopNoResults { text-align: center; padding: clamp(56px, 9vw, 96px) 0; }
.shopNoResults h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: -0.02em; }
.shopNoResults p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---- Delivery banner ---- */
.shopBanner { background: var(--wine); color: #fff; padding: clamp(56px, 8vw, 90px) 0; }
.shopBannerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.shopBanner h2 {
  margin: 16px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
}

.shopViewAll { font-size: 13.5px; font-weight: 600; color: var(--wine); white-space: nowrap; transition: opacity 160ms ease; }
.shopViewAll:hover, .shopViewAll:focus-visible { opacity: 0.7; }

/* ============================================================
   ============================================================
   PRODUCT DETAIL (PDP)
   ============================================================
   ============================================================ */
.pdpSection { background: var(--white); padding: clamp(28px, 4vw, 44px) 0 clamp(64px, 9vw, 104px); }
.pdpSection .breadcrumb { margin-bottom: clamp(24px, 4vw, 40px); }

.pdpLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

/* ---- Gallery ---- */
.pdpGallery { position: sticky; top: 84px; }
.pdpStage {
  position: relative;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pdpStage::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.14), transparent 60%);
  pointer-events: none;
}
.pdpBadge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pdpGlyph {
  width: clamp(120px, 22vw, 200px);
  height: clamp(120px, 22vw, 200px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 500ms var(--ease);
}
.pdpStage:hover .pdpGlyph { transform: scale(1.04); }

.pdpThumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.pdpThumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 200ms var(--ease), box-shadow 200ms ease;
}
.pdpThumb svg { width: 40%; height: 40%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pdpThumb::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: border-color 180ms ease;
}
.pdpThumb:hover { transform: translateY(-2px); box-shadow: var(--shadowCard); }
.pdpThumb.isActive::after { border-color: var(--wine); }

/* ---- Info column ---- */
.pdpName {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.pdpName em { font-style: italic; color: var(--wine); }

.pdpPriceRow { display: flex; align-items: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.pdpPrice {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-variant-numeric: oldstyle-nums;
  color: var(--ink);
}
.pdpStock {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted);
}
.pdpDot { width: 7px; height: 7px; border-radius: 50%; background: #2f7a3f; box-shadow: 0 0 0 4px rgba(47, 122, 63, 0.15); }

.pdpRating { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; fill: var(--brass); }
.ratingText { font-size: 13px; color: var(--muted); }

.pdpDesc { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 480px; }

/* ---- Options ---- */
.pdpOption { margin-top: 26px; }
.optHead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.optLabel { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.optChosen { font-size: 13.5px; color: var(--muted); font-family: var(--display); font-style: italic; }
.optChips { display: flex; flex-wrap: wrap; gap: 9px; }
.optChip {
  min-width: 56px;
  height: 42px;
  padding: 0 17px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}
.optChip:hover, .optChip:focus-visible { border-color: var(--wine); color: var(--wine); }
.optChip.isActive { border-color: var(--wine); background: var(--wine); color: #fff; }

/* ---- Buy row ---- */
.qtyStepper--lg { border-radius: 14px; }
.qtyStepper--lg .qtyBtn { width: 46px; height: 52px; font-size: 20px; }
.qtyStepper--lg .qtyVal { min-width: 34px; font-size: 16px; }

.pdpBuy { display: flex; gap: 12px; align-items: stretch; margin-top: 32px; }
.pdpAdd {
  flex: 1;
  height: 52px;
  gap: 14px;
  justify-content: space-between;
  padding: 0 24px;
}
.pdpAddPrice {
  font-family: var(--display);
  font-variant-numeric: oldstyle-nums;
  font-size: 16px;
  opacity: 0.92;
}
.pdpAdd.isAdded { background: #2f7a3f; border-color: #2f7a3f; box-shadow: 0 10px 28px rgba(47, 122, 63, 0.26); }

.pdpSecondary { display: flex; align-items: center; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.pdpWish {
  display: inline-flex; align-items: center; gap: 9px;
  height: 44px; padding: 0 18px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--white); color: var(--ink);
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}
.pdpWish svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: fill 180ms ease; }
.pdpWish:hover { border-color: var(--wine); color: var(--wine); }
.pdpWish.isWished { border-color: var(--wine); color: var(--wine); }
.pdpWish.isWished svg { fill: var(--wine); }
.pdpReassure { margin: 0; font-size: 12.5px; color: var(--muted); }

/* ---- At a glance ---- */
.pdpMeta {
  list-style: none;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.pdpMeta li { display: flex; flex-direction: column; gap: 4px; }
.metaKey { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); }
.metaVal { font-size: 14.5px; color: var(--ink); }

/* ---- Tasting story ---- */
.pdpStory { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(70px, 10vw, 130px) 0; }
.pdpStoryGrid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.pdpStoryTitle {
  margin: 16px 0 0;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.pdpStoryTitle em { font-style: italic; color: var(--wine); }
.pdpStoryBody p { margin: 0 0 18px; color: var(--muted); font-size: 16.5px; line-height: 1.8; max-width: 540px; }
.pdpFlavours { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pdpFlavours li {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184, 80, 46, 0.22);
  background: rgba(184, 80, 46, 0.04);
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---- Related ---- */
.pdpRelated { background: var(--white); padding: clamp(70px, 10vw, 130px) 0; }

/* ============================================================
   SHOP + PDP RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .pdpLayout { grid-template-columns: 1fr; gap: 36px; }
  .pdpGallery { position: static; }
  .pdpStage { aspect-ratio: 4 / 3; }
  .pdpStoryGrid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .shopToolbar { gap: 16px; }
  .shopToolbarRight { width: 100%; justify-content: space-between; }
  .filterPills { width: 100%; }

  .pdpThumbs { grid-template-columns: repeat(4, 1fr); }
  .pdpMeta { grid-template-columns: 1fr; }
  .pdpBuy { flex-wrap: wrap; }
  .pdpAdd { flex: 1 1 100%; }
}
