/* =====================================================================
   FROG — Premium Spirits  |  styles.css  (v2 — cinematic)
   ===================================================================== */
:root {
  --black: #070504;
  --espresso: #140b06;
  --brown: #211208;
  --gold: #c9a45d;
  --champagne: #e7d3a2;
  --cream: #f5efe3;
  --brochure-paper: #f0e8dc;
  --wine: #5b1015;
  --bronze: #8a6a3d;
  --sage: #a3b18a;
  --sage-dark: #7a8a68;
  --ink: #f8f3ea;
  --ink-dark: #1a1208;

  --serif: "Times New Roman", Times, serif;
  --display: "Times New Roman", Times, serif;
  --sans: "Times New Roman", Times, serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; clip-path: inset(50%) !important;
  border: 0 !important; white-space: nowrap !important;
}
html.age-verified .age-gate { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
body.locked { overflow: hidden; }
.skip-link {
  position: fixed; top: 0.75rem; left: 0.75rem; z-index: 11000;
  padding: 0.7rem 1rem; background: var(--cream); color: var(--ink-dark);
  transform: translateY(-160%); transition: transform 0.2s;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* ---- Global atmosphere ---- */
.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 9999; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(201,164,93,0.07), transparent 65%);
  transform: translate3d(-500px, -500px, 0); transition: opacity 0.4s;
  opacity: 0;
}
body.is-ready .cursor-glow { opacity: 1; }

/* ---- Typography ---- */
.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.68rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.8rem;
}
.line-draw {
  display: inline-block; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  animation: lineGrow 1.2s var(--ease-out) 0.4s both;
}
@keyframes lineGrow { from { width: 0; opacity: 0; } to { width: 36px; opacity: 1; } }

.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: 3.2rem; line-height: 1.12;
  letter-spacing: 0.01em; color: var(--cream);
}
.split-title { overflow: hidden; }
.section-lead {
  max-width: 640px; margin: 1.1rem auto 0;
  color: rgba(248, 243, 234, 0.68); font-size: 1.02rem; font-weight: 300;
}
.section-head { text-align: center; padding: 0 1.25rem; margin-bottom: 3rem; position: relative; z-index: 2; }
.section-head--left { text-align: left; }
.section-head--left .section-lead { margin-left: 0; }
section { position: relative; }
.shede, .cats, .catalogue, .wholesale, .contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em;
  padding: 0.9rem 1.7rem; border-radius: 1px; border: 1px solid transparent;
  cursor: pointer; position: relative; overflow: hidden; white-space: nowrap;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.35s, background 0.35s;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn:disabled { cursor: wait; opacity: 0.65; transform: none; }
.btn--gold {
  background: linear-gradient(135deg, #e2c47a 0%, var(--gold) 45%, #9a7538 100%);
  color: #120a04;
  box-shadow: 0 12px 40px -14px rgba(201, 164, 93, 0.75), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -16px rgba(201, 164, 93, 0.9); }
.btn--outline {
  background: rgba(7,5,4,0.35); color: var(--champagne);
  border-color: rgba(201, 164, 93, 0.45); backdrop-filter: blur(6px);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(201, 164, 93, 0.1); color: var(--cream); }
.btn--ghost { background: transparent; color: rgba(248,243,234,0.75); border-color: rgba(248,243,234,0.22); }
.btn--ghost:hover { color: var(--cream); border-color: rgba(248,243,234,0.45); }
.btn--wa { background: linear-gradient(135deg, #22855a, #1a6845); color: #fff; }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(31,122,82,0.7); }
.btn--shine::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left 0.75s var(--ease);
}
.btn--shine:hover::after { left: 150%; }

.wa-ico { width: 17px; height: 17px; border-radius: 50%; background: #fff; position: relative; display: inline-block; }
.wa-ico::before {
  content: ""; position: absolute; width: 6px; height: 6px;
  border: 2px solid #1f7a52; border-radius: 50% 50% 50% 0; top: 4px; left: 4px;
}
.wa-ico--lg { width: 30px; height: 30px; }
.wa-ico--lg::before { width: 12px; height: 12px; top: 7px; left: 7px; border-width: 3px; }

/* ===================================================================== AGE GATE */
.age-gate {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.age-gate__veil {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(33,18,8,0.95), var(--black));
}
.age-gate__card {
  position: relative; text-align: center; max-width: 480px; width: 100%;
  padding: 3.2rem 2.5rem;
  background: linear-gradient(165deg, rgba(33,18,8,0.92), rgba(7,5,4,0.98));
  border: 1px solid rgba(201,164,93,0.35); border-radius: 2px;
  box-shadow: 0 50px 140px -40px rgba(0,0,0,0.95), inset 0 1px 0 rgba(201,164,93,0.15);
  animation: cardIn 1s var(--ease-out) both;
  max-height: calc(100dvh - 3rem); overflow-y: auto;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: none; } }
.age-gate__badge {
  width: 100px; height: 100px; margin: 0 auto 1.4rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brochure-paper);
  border: 1.5px solid var(--sage);
  box-shadow: 0 0 0 8px rgba(163,177,138,0.12), 0 0 50px rgba(201,164,93,0.15);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 8px rgba(163,177,138,0.1), 0 0 40px rgba(201,164,93,0.12); } 50% { box-shadow: 0 0 0 12px rgba(163,177,138,0.08), 0 0 60px rgba(163,177,138,0.2); } }
.age-gate__badge .logo-img { width: 68px; height: 68px; object-fit: contain; }
.age-gate__shede { font-family: var(--serif); font-size: 0.95rem; color: var(--champagne); margin-bottom: 1rem; letter-spacing: 0.06em; line-height: 1.5; }
.age-gate__kicker { font-size: 0.64rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.age-gate__title { font-family: var(--serif); font-size: 2.1rem; color: var(--cream); margin-bottom: 0.7rem; }
.age-gate__text { color: rgba(248,243,234,0.62); font-size: 0.96rem; margin-bottom: 1.8rem; }
.age-gate__actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.age-gate__actions .btn { min-width: 150px; }
.age-gate__legal { margin-top: 1.6rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,243,234,0.62); }
.age-gate__deny { margin-top: 1rem; color: var(--champagne); font-weight: 600; }
.age-gate.is-exiting { pointer-events: none; }
.age-gate.is-exiting .age-gate__card { animation: cardOut 0.7s var(--ease) forwards; }
@keyframes cardOut { to { opacity: 0; transform: scale(1.05); filter: blur(6px); } }

/* ===================================================================== NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.5s var(--ease), border-color 0.5s, backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: min(1600px, calc(100% - 4rem)); margin: 0 auto;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center; padding: 0.75rem 0;
  column-gap: clamp(0.9rem, 1.4vw, 2rem);
}
.nav.is-stuck {
  background: rgba(7,5,4,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(201,164,93,0.3);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.9);
}
.site-switcher { position: relative; z-index: 960; flex: 0 0 auto; }
.nav__brand {
  display: flex; align-items: center; gap: 0.75rem; padding: 0; border: 0;
  color: inherit; background: transparent; text-align: left; cursor: pointer;
}
.nav__logo {
  width: 116px; height: 44px; display: grid; place-items: center;
  background: transparent; border: 0; box-shadow: none;
  transition: opacity 0.3s ease;
}
.nav__brand:hover .nav__logo,
.nav__brand:focus-visible .nav__logo { opacity: 0.86; }
.nav__logo .logo-img--soho { width: 112px; height: auto; max-height: 42px; object-fit: contain; }
.nav__menu-icon { width: 24px; display: grid; flex: 0 0 auto; gap: 5px; }
.nav__menu-icon i { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.site-switcher.is-open .nav__menu-icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-switcher.is-open .nav__menu-icon i:nth-child(2) { opacity: 0; }
.site-switcher.is-open .nav__menu-icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__brandtext { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brandtext strong { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.08em; color: var(--cream); font-weight: 600; }
.nav__brandtext small { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.site-switcher__chevron {
  width: 7px; height: 7px; margin-left: 0.15rem; border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold); transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.site-switcher.is-open .site-switcher__chevron { transform: rotate(225deg) translate(-2px, -2px); }
.site-switcher__menu {
  position: absolute; z-index: 970; top: 100%; left: 0; width: 244px;
  padding: 0.45rem 0; opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px); background: rgba(7,5,4,0.98); border: 1px solid rgba(201,164,93,0.3);
  border-top: 2px solid var(--gold);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55); backdrop-filter: blur(14px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.site-switcher.is-open .site-switcher__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.site-switcher__item { position: relative; }
.site-switcher__row { display: flex; align-items: stretch; }
.site-switcher__link {
  display: flex; align-items: center; flex: 1; min-width: 0; padding: 0.75rem 0.9rem;
  border-left: 2px solid transparent; color: var(--cream);
}
.site-switcher__link--plain { width: 100%; }
.site-switcher__link:hover, .site-switcher__link:focus-visible,
.site-switcher__item.is-open .site-switcher__link {
  background: rgba(201,164,93,0.1); border-left-color: var(--gold);
}
.site-switcher__menu a[aria-current="page"] { background: rgba(201,164,93,0.09); border-left-color: var(--gold); }
.site-switcher__menu strong { display: block; color: var(--cream); font-family: var(--serif); font-size: 1rem; }
.site-switcher__menu span { display: block; margin-top: 0.2rem; color: rgba(248,243,234,0.58); font-size: 0.67rem; line-height: 1.45; }
.site-switcher__expand {
  position: relative; flex: 0 0 42px; width: 42px; margin: 0; padding: 0; border: 0;
  background: transparent; cursor: pointer;
}
.site-switcher__expand::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translate(-70%, -50%) rotate(-45deg);
}
.site-switcher__item.is-open .site-switcher__expand::before { transform: translate(-40%, -50%) rotate(45deg); }
.site-switcher__flyout {
  position: absolute; z-index: 971; top: -0.45rem; left: calc(100% - 1px); min-width: 272px;
  padding: 1.15rem 0.75rem 0.8rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  background: rgba(7,5,4,0.98); border: 1px solid rgba(201,164,93,0.3); border-top: 2px solid var(--gold);
  box-shadow: 12px 18px 40px rgba(0,0,0,0.55); backdrop-filter: blur(14px);
}
.site-switcher__item.is-open .site-switcher__flyout { opacity: 1; visibility: visible; pointer-events: auto; }
.site-switcher__flyout > p {
  margin: 0 0 0.6rem; padding: 0 0.75rem; color: var(--gold);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.site-switcher__flyout a {
  display: block; padding: 0.72rem 0.75rem; border-bottom: 1px solid rgba(248,243,234,0.07);
  color: rgba(248,243,234,0.86);
}
.site-switcher__flyout a:last-child { border-bottom: 0; }
.site-switcher__flyout a:hover, .site-switcher__flyout a:focus-visible,
.site-switcher__flyout a[aria-current="page"] { background: rgba(201,164,93,0.1); color: var(--cream); }
.site-switcher__flyout strong { font-family: var(--sans); font-size: 0.84rem; font-weight: 600; }

.nav__links { justify-self: center; display: flex; gap: clamp(1rem, 1.25vw, 1.55rem); white-space: nowrap; }
.nav__links a, .nav__dropdown summary {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(248,243,234,0.78); position: relative; padding: 4px 0;
  transition: color 0.3s; cursor: pointer; list-style: none;
}
.nav__dropdown summary::-webkit-details-marker { display: none; }
.nav__links > a::after, .nav__dropdown > summary::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav__links a:hover, .nav__links > a[aria-current="page"], .nav__dropdown summary:hover, .nav__dropdown[open] summary { color: var(--cream); }
.nav__links > a:hover::after, .nav__links > a[aria-current="page"]::after, .nav__dropdown > summary:hover::after, .nav__dropdown[open] > summary::after { width: 100%; }
.nav__mobile-brand, .nav__mobile-portfolio { display: none; }
.nav__dropdown { position: relative; }
.nav__dropdown summary { display: flex; align-items: center; gap: 0.45rem; }
.nav__dropdown summary::before {
  content: ""; width: 6px; height: 6px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: rotate(45deg) translateY(-2px); transition: transform 0.25s; order: 2;
}
.nav__dropdown[open] summary::before { transform: rotate(225deg) translate(-2px, -2px); }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 50%; width: 190px; padding: 1.1rem 0.55rem 0.55rem;
  transform: translateX(-50%); background: rgba(7,5,4,0.98); border: 1px solid rgba(201,164,93,0.3);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55); backdrop-filter: blur(14px);
}
.nav__dropdown-menu a { display: block; padding: 0.7rem 0.75rem; color: rgba(248,243,234,0.72); }
.nav__dropdown-menu a:hover, .nav__dropdown-menu a:focus-visible { background: rgba(201,164,93,0.1); color: var(--cream); }

/* Product-specific masks remove flat source canvases while preserving labels and artwork. */
.image--trim-shede-portrait {
  --image-scale: 1.096;
  clip-path: inset(4.8% 15.7% 4%);
}
.image--trim-zizai-bottle {
  clip-path: polygon(37% 0, 60% 0, 60% 18%, 65% 23%, 66% 28%, 70% 31%, 71% 97%, 67% 100%, 31% 100%, 28% 97%, 28% 31%, 33% 27%, 34% 23%, 38% 18%);
}
.image--trim-crystal-pair {
  --image-scale: 1.22;
  clip-path: inset(12% 10% 6% 11%);
  mix-blend-mode: multiply;
}
.image--trim-macallan-bottle {
  --image-scale: 1.12;
  clip-path: polygon(45% 7%, 55% 7%, 55% 23%, 59% 27%, 63% 32%, 64% 38%, 64% 93%, 62% 95%, 59% 96%, 39% 96%, 37% 94%, 37% 38%, 38% 32%, 42% 27%, 45% 23%);
}
.image--trim-hibiki-bottle {
  clip-path: polygon(39% 0, 60% 0, 60% 15%, 64% 18%, 64% 22%, 69% 25%, 71% 30%, 71% 79%, 69% 82%, 70% 100%, 31% 100%, 31% 82%, 29% 79%, 29% 30%, 31% 25%, 37% 22%, 37% 18%, 39% 15%);
}
.image--trim-montrose-bottle {
  --image-scale: 1.12;
  clip-path: polygon(43% 5%, 57% 5%, 57% 23%, 63% 28%, 67% 34%, 67% 94%, 64% 97%, 57% 99%, 43% 99%, 36% 97%, 33% 94%, 33% 34%, 37% 28%, 43% 23%);
  mix-blend-mode: screen;
}
.image--trim-port-tawny-bottle {
  clip-path: polygon(46% 1%, 55% 1%, 55% 31%, 61% 35%, 64% 42%, 64% 98%, 61% 100%, 39% 100%, 37% 98%, 37% 42%, 40% 35%, 46% 31%);
}
.image--trim-port-white-bottle {
  clip-path: polygon(43% 3%, 57% 3%, 57% 31%, 62% 36%, 67% 43%, 67% 97%, 63% 99%, 37% 99%, 34% 97%, 34% 43%, 38% 36%, 43% 31%);
}

.nav__cta { justify-self: end; display: flex; align-items: center; gap: 0.65rem; }
.nav__cta .btn { min-height: 40px; padding: 0.6rem 0.95rem; font-size: 0.76rem; white-space: nowrap; }
.locale-switcher { position: relative; flex: 0 0 auto; color: var(--cream); }
.locale-switcher__label {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.locale-switcher select {
  width: 88px; min-width: 88px; height: 40px; padding: 0 1.8rem 0 0.65rem;
  color: var(--cream); background: rgba(7,5,4,0.72);
  border: 1px solid rgba(201,164,93,0.35); border-radius: 2px;
  font-size: 0.72rem; font-weight: 600; cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
}
.locale-switcher::after {
  content: ""; position: absolute; right: 0.68rem; top: 50%; width: 6px; height: 6px;
  border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.locale-switcher select:focus-visible { outline: 2px solid var(--champagne); outline-offset: 2px; }
.locale-switcher select option { color: #111; background: #fff; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--gold); transition: 0.3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================== HERO */
.hero {
  min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,164,93,0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(91,16,21,0.2), transparent 60%),
    linear-gradient(175deg, #050302 0%, var(--espresso) 40%, var(--brown) 100%);
}
.hero__wave {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60c20-20 40-20 60 0s40 20 60 0' fill='none' stroke='%23C9A45D' stroke-width='0.4' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
@keyframes waveDrift { to { background-position: 120px 60px; } }
.hero__glow {
  position: absolute; top: 38%; right: 16%; width: 600px; height: 600px;
  transform: translate(15%, -50%);
  background: radial-gradient(circle, rgba(201,164,93,0.32), rgba(201,164,93,0.04) 50%, transparent 72%);
  filter: blur(12px);
}
@keyframes glowPulse { 0%,100% { opacity: 0.7; transform: translate(15%, -50%) scale(1); } 50% { opacity: 1; transform: translate(15%, -50%) scale(1.08); } }
.hero__beam {
  position: absolute; top: -10%; right: 22%; width: 180px; height: 140%;
  background: linear-gradient(180deg, rgba(231,211,162,0.12), transparent 70%);
  transform: rotate(8deg); filter: blur(20px);
}
@keyframes beamSweep { 0%,100% { opacity: 0.4; transform: rotate(8deg) translateX(0); } 50% { opacity: 0.75; transform: rotate(6deg) translateX(20px); } }
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 40%, rgba(7,5,4,0.85) 100%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2rem;
  padding: 7.5rem 1.5rem 4rem;
}
.hero__line {
  display: block; overflow: hidden;
  transform: translateY(110%); opacity: 0;
  animation: heroLineIn 1s var(--ease-out) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.15s; }
.hero__line:nth-child(2) { animation-delay: 0.3s; }
.hero__line:nth-child(3) { animation-delay: 0.45s; }
.hero__line--gold { color: var(--champagne); font-style: normal; font-weight: 500; }
@keyframes heroLineIn { to { transform: none; opacity: 1; } }

.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 4rem; line-height: 1.08;
  letter-spacing: 0.01em; color: var(--cream); margin-bottom: 1.5rem;
}
.hero__sub {
  max-width: 520px; color: rgba(248,243,234,0.68); font-size: 1.02rem;
  margin-bottom: 1.8rem; font-weight: 400; line-height: 1.65;
}
.hero__fade { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.65s forwards; }
.hero__fade:nth-child(4) { animation-delay: 0.75s; }
.hero__fade:nth-child(5) { animation-delay: 0.85s; }
.hero__fade:nth-child(6) { animation-delay: 0.95s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero__stats {
  display: flex; gap: 2rem; margin-bottom: 2rem; padding: 1rem 0;
  border-top: 1px solid rgba(201,164,93,0.15); border-bottom: 1px solid rgba(201,164,93,0.15);
}
.hero__stats div { display: flex; flex-direction: column; padding-inline-start: 0.75rem; }
.hero__shede-cn {
  font-family: var(--serif); font-size: 1.45rem;
  color: var(--champagne); letter-spacing: 0.12em; margin-bottom: 0.6rem;
}
.hero__wisdom {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem; font-weight: 500;
}
.hero__stats strong { font-family: var(--sans); font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; font-weight: 600; }

/* ---- Brochure wisdom strip ---- */
.wisdom-strip {
  position: relative; z-index: 5;
  background: linear-gradient(90deg, var(--brochure-paper), #e8dfd0, var(--brochure-paper));
  border-top: 1px solid rgba(163,177,138,0.4);
  border-bottom: 1px solid rgba(201,164,93,0.35);
  padding: 1rem 1.5rem;
}
.wisdom-strip__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
  color: var(--ink-dark);
}
.wisdom-strip__cn { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.15em; font-weight: 600; }
.wisdom-strip__divider { color: var(--sage-dark); opacity: 0.6; }
.wisdom-strip__en { font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--bronze); }
.wisdom-strip__pdf {
  margin-left: auto; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--ink-dark); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.3s;
}
.wisdom-strip__pdf:hover { color: var(--bronze); }

/* ---- Shede brochure editorial ---- */
.shede {
  padding: 7rem 0 6rem;
  background:
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(163,177,138,0.08), transparent),
    radial-gradient(ellipse 60% 50% at 10% 40%, rgba(91,16,21,0.18), transparent),
    linear-gradient(180deg, var(--espresso), var(--black));
}
.shede__brochure-head { text-align: center; margin-bottom: 2rem; }
.brochure-label {
  display: inline-flex; gap: 0.35rem; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 3.2rem; color: var(--cream);
  letter-spacing: 0.05em;
}
.brochure-label--en { display: block; font-family: var(--serif); font-size: 2.8rem; letter-spacing: 0.04em; }
.brochure-label span {
  display: inline-block; padding: 0.15rem 0.35rem;
  border-left: 1px solid rgba(201,164,93,0.35);
}
.brochure-label span:first-child { border-left: none; }
.brochure-label__sub {
  font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.45em;
  color: var(--sage); margin-top: 0.6rem; text-transform: uppercase;
}
.shede__intro { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; padding: 0 1.5rem; }
.shede__intro-cn {
  font-family: var(--serif); font-size: 1.6rem;
  color: var(--champagne); letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.shede__intro-en {
  font-family: var(--serif); font-size: 1.85rem; font-weight: 500;
  color: rgba(248,243,234,0.82); letter-spacing: 0.02em; line-height: 1.35;
}
.shede__cn-sub {
  font-family: var(--serif); font-size: 1.1rem; color: var(--sage);
  letter-spacing: 0.2em; margin: -0.5rem 0 1rem;
}
.section-lead--left { margin-left: 0; text-align: left; }
.shede__editorial { max-width: 820px; margin: 4rem auto 0; padding: 0 1.5rem; }
.shede-quote {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(240,232,220,0.08), rgba(163,177,138,0.06));
  border-left: 3px solid var(--sage);
  border-right: 1px solid rgba(201,164,93,0.15);
}
.shede-quote p {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  color: var(--cream); line-height: 1.65; margin-bottom: 1rem;
}
.shede-quote cite { font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(248,243,234,0.45); font-style: normal; }

.feature__title-cn { font-size: 0.78rem; color: var(--sage); letter-spacing: 0.18em; margin-bottom: 0.15rem; }
.feature h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.25rem; }

.sp-name-cn { font-family: var(--serif); font-size: 1rem; color: var(--sage); letter-spacing: 0.12em; margin-bottom: 0.3rem; }
.sp-spec { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin: 0.8rem 0 1rem; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(248,243,234,0.5); }
.sp-spec span { padding: 0.25rem 0.6rem; border: 1px solid rgba(163,177,138,0.25); border-radius: 1px; }

.hero__stats span { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(248,243,234,0.45); margin-top: 0.2rem; }

.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero__link { font-size: 0.88rem; color: var(--gold); letter-spacing: 0.06em; position: relative; }
.hero__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.hero__link:hover::after { width: 100%; }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 520px; perspective: 1200px; }
.hero__orbit {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(201,164,93,0.18);
}
.hero__orbit span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px rgba(201,164,93,0.8);
}
.hero__orbit span:nth-child(1) { top: 8%; left: 50%; }
.hero__orbit span:nth-child(2) { bottom: 12%; right: 10%; }
.hero__orbit span:nth-child(3) { top: 45%; left: 2%; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitDot { 0%,100% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

.hero__pedestal {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 280px; height: 24px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,164,93,0.25), transparent 70%);
  box-shadow: 0 0 80px rgba(201,164,93,0.15);
}
.hero__bottle-wrap {
  position: relative; z-index: 2; transition: transform 0.15s ease-out;
  will-change: transform;
}
.shede-artwork-crop {
  position: relative; display: grid; place-items: center; overflow: hidden;
  aspect-ratio: 314 / 420;
}
.shede-artwork-crop img {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: block; width: auto; height: 109%; max-width: none;
}
.hero__artwork-crop {
  height: clamp(360px, 48vw, 580px); margin: 0 auto;
  filter: drop-shadow(0 50px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 60px rgba(201,164,93,0.2));
  animation: heroFloat 7s ease-in-out 3;
}

@media (min-width: 761px) and (max-height: 900px) {
  .hero { min-height: calc(100svh - 44px); }
  .hero__inner { padding-top: 5.5rem; padding-bottom: 1.5rem; }
  .hero__title { font-size: clamp(2.9rem, 4.1vw, 3.55rem); margin-bottom: 0.85rem; }
  .hero__sub { margin-bottom: 1rem; line-height: 1.5; }
  .hero__wisdom { margin-bottom: 0.7rem; }
  .hero__stats { margin-bottom: 1rem; padding: 0.7rem 0; }
  .hero__actions { margin-bottom: 0.75rem; }
  .hero__visual { min-height: 430px; }
  .hero__artwork-crop { height: min(56vh, 460px); }
  .hero__orbit { width: 400px; height: 400px; }
}
.hero__shine {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: bottleShine 5s ease-in-out 2s 2;
  pointer-events: none; z-index: 3;
}
@keyframes bottleShine { 0%,100% { left: -100%; opacity: 0; } 50% { left: 120%; opacity: 1; } }

.hero__bottle {
  object-fit: contain;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.hero__reflection {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%) scaleY(-0.35);
  width: 55%; height: 120px; opacity: 0.35;
  background: linear-gradient(180deg, rgba(201,164,93,0.3), transparent);
  filter: blur(8px); mask-image: linear-gradient(180deg, black, transparent);
}
.hero__badge {
  position: absolute; top: 6%; right: -4%; z-index: 5;
  display: flex; flex-direction: column; text-align: right;
  padding: 0.75rem 1.1rem; border-radius: 2px;
  background: rgba(7,5,4,0.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,164,93,0.45);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.9);
  animation: badgeIn 1s var(--ease-out) 1s both;
}
@keyframes badgeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
.hero__badge small { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); }
.hero__badge strong { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; opacity: 0; animation: fadeUp 0.8s 1.4s forwards; }
.hero__scroll span { display: block; width: 22px; height: 38px; border: 1px solid rgba(201,164,93,0.45); border-radius: 14px; position: relative; }
.hero__scroll span::after { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrolldot 1.8s infinite; }

/* Customer essentials */
.commerce-strip { position: relative; z-index: 4; color: var(--cream); background: #100b08; border-top: 1px solid rgba(201,164,93,0.24); border-bottom: 1px solid rgba(201,164,93,0.2); }
.commerce-strip__inner { max-width: 1240px; min-height: 104px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)) auto; align-items: stretch; }
.commerce-strip__item { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 0.35rem; padding: 1.25rem 1.5rem; border-right: 1px solid rgba(201,164,93,0.16); }
.commerce-strip__item:first-child { padding-left: 0; }
.commerce-strip__item span { color: var(--gold); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.commerce-strip__item strong { color: rgba(248,243,234,0.8); font-size: 0.78rem; font-weight: 500; line-height: 1.45; }
.commerce-strip__item--status strong[data-open="true"]::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 0.5rem; border-radius: 50%; background: #58b78b; box-shadow: 0 0 0 4px rgba(88,183,139,0.12); }
.commerce-strip__action { align-self: center; margin-left: 1.5rem; padding: 0.75rem 1rem; color: #140d08; background: var(--gold); border: 1px solid var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; transition: transform 0.22s var(--ease), background 0.22s ease; }
.commerce-strip__action:hover, .commerce-strip__action:focus-visible { transform: translateY(-2px); background: var(--champagne); }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ===================================================================== BOTTLE SELECTOR — 3D mouse-glide gallery */
.selector {
  padding: 5.5rem 0 6.5rem; overflow: hidden;
  background: var(--black);
  --sel-glow: #c9a45d; --sel-tint: rgba(201,164,93,0.18);
  transition: background 0.8s var(--ease);
}
.selector__ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.selector__spotlight {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--sel-tint), transparent 65%);
  transition: background 0.8s var(--ease);
  animation: spotPulse 5s ease-in-out infinite;
}
@keyframes spotPulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }
.selector__floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(7,5,4,0.6));
}
.selector__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, transparent 30%, rgba(7,5,4,0.7) 100%);
}

.selector__chips { display: flex; gap: 0.55rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; position: relative; z-index: 2; }
.chip {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.25rem; border-radius: 1px; cursor: pointer;
  background: rgba(7,5,4,0.5); color: rgba(248,243,234,0.65);
  border: 1px solid rgba(201,164,93,0.25); transition: all 0.4s var(--ease);
  backdrop-filter: blur(4px);
}
.chip:hover { color: var(--cream); border-color: rgba(201,164,93,0.6); transform: translateY(-2px); }
.chip.is-active {
  background: linear-gradient(135deg, #d8b76e, var(--gold));
  color: #120a04; border-color: var(--gold);
  box-shadow: 0 8px 30px -8px rgba(201,164,93,0.6);
}
.chip--shede.is-active { box-shadow: 0 8px 30px -8px rgba(163,177,138,0.4); border-color: var(--sage); }

.selector__inspector {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 3rem)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  overflow: hidden;
  background: rgba(10,7,5,0.68);
  border: 1px solid rgba(201,164,93,0.26);
  box-shadow: 0 38px 90px -55px rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
}
.selector__stage {
  position: relative; min-width: 0; min-height: 500px; padding: 0 4rem;
  overflow: hidden; border-right: 1px solid rgba(201,164,93,0.18);
}
.selector__viewport {
  overflow: visible; perspective: 1400px; height: 500px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.selector__track {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  transform-style: preserve-3d;
}

.bottle-card {
  position: absolute; bottom: 72px; width: 200px; cursor: pointer; text-align: center;
  padding: 0; border: 0; border-radius: 2px; color: inherit; background: transparent; font: inherit;
  transform-style: preserve-3d;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out), filter 0.9s var(--ease-out), z-index 0s;
  will-change: transform, opacity;
}
.bottle-card__select {
  display: block; width: 100%; padding: 0; border: 0; color: inherit; background: transparent;
  font: inherit; text-align: center; cursor: pointer;
}
.bottle-card__select:focus-visible { outline: 2px solid var(--champagne); outline-offset: 7px; }
.bottle-card__pedestal {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 12px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,164,93,0.3), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.bottle-card.is-active .bottle-card__pedestal { opacity: 1; }
.bottle-card__img-wrap {
  position: relative; padding: 1rem;
  display: flex; align-items: flex-end; justify-content: center;
  height: 300px; box-sizing: border-box;
  border: 1px solid transparent; border-radius: 4px;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.bottle-card__img-wrap--light {
  background: linear-gradient(180deg, #f4efe6, #e8e0d4);
  border-color: rgba(201,164,93,0.25);
}
.bottle-card img {
  max-height: 260px; max-width: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,0.7));
  transition: transform 1s var(--ease-out), filter 0.9s var(--ease-out);
}
.bottle-card__name {
  margin-top: 0.8rem; font-family: var(--serif); font-size: 0.95rem; color: var(--cream);
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s;
}
.bottle-card__cat {
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  opacity: 0; transition: opacity 0.4s;
}
.bottle-card__price {
  margin-top: 0.35rem; font-size: 0.82rem; font-weight: 500; color: var(--champagne);
  opacity: 0; transition: opacity 0.4s;
}
.selector__inspector .bottle-card__name,
.selector__inspector .bottle-card__cat,
.selector__inspector .bottle-card__price { display: none; }

.bottle-card.is-active .bottle-card__img-wrap {
  border-color: rgba(201,164,93,0.55);
  background: radial-gradient(circle at 50% 80%, var(--sel-tint), transparent 70%);
  box-shadow: 0 0 60px var(--sel-tint), inset 0 0 30px rgba(201,164,93,0.05);
}
.bottle-card.is-active img {
  transform: translateY(-12px) scale(1.08);
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.8)) drop-shadow(0 0 40px var(--sel-glow));
}
.bottle-card.is-active .bottle-card__name,
.bottle-card.is-active .bottle-card__cat,
.bottle-card.is-active .bottle-card__price { opacity: 1; transform: none; }

.bottle-card:not(.is-active):hover .bottle-card__img-wrap {
  border-color: rgba(201,164,93,0.35);
}
.bottle-card:not(.is-active):hover img { transform: translateY(-8px) rotateY(4deg); }

.selector__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(7,5,4,0.7); border: 1px solid rgba(201,164,93,0.4);
  color: var(--gold); font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}
.selector__arrow:hover { background: var(--gold); color: #120a04; transform: translateY(-50%) scale(1.08); box-shadow: 0 0 30px rgba(201,164,93,0.5); }
.selector__arrow[hidden] { display: none; }
.selector__arrow--left { left: 0.5rem; }
.selector__arrow--right { right: 0.5rem; }

.selector__panel-wrap {
  position: relative; min-width: 0; display: flex; align-items: center;
  background:
    linear-gradient(145deg, rgba(33,18,8,0.56), rgba(7,5,4,0.9)),
    radial-gradient(circle at 15% 20%, var(--sel-tint), transparent 52%);
}
.selector__panel {
  width: 100%; margin: 0; padding: 2.35rem 2.25rem;
  text-align: left;
  opacity: 0; transform: translateX(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.selector__panel.is-visible { opacity: 1; transform: none; }

.sp-tag {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,164,93,0.35); padding: 0.35rem 1rem; margin-bottom: 0.8rem;
  background: rgba(201,164,93,0.025);
  transition: transform 0.28s var(--ease), color 0.28s ease, border-color 0.28s ease,
              background 0.28s ease, box-shadow 0.28s ease;
}
.sp-name { font-family: var(--serif); font-size: clamp(1.75rem, 2.4vw, 2.35rem); font-weight: 500; line-height: 1.04; color: var(--cream); margin-bottom: 0.75rem; }
.selector__panel .sp-spec { justify-content: flex-start; margin: 0.8rem 0 1rem; }
.selector__panel .sp-spec span {
  position: relative; isolation: isolate; overflow: hidden;
  background: rgba(163,177,138,0.025);
  transition: transform 0.28s var(--ease), color 0.28s ease, border-color 0.28s ease,
              background 0.28s ease, box-shadow 0.28s ease;
}
.sp-tag::after,
.selector__panel .sp-spec span::after {
  content: ""; position: absolute; z-index: 1; inset: -35% -55%;
  pointer-events: none; opacity: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(248,243,234,0.08) 43%, rgba(248,224,166,0.58) 50%, rgba(248,243,234,0.08) 57%, transparent 66%);
  transform: translateX(-72%) skewX(-16deg);
}
@keyframes showcaseLabelGlint {
  0% { opacity: 0; transform: translateX(-72%) skewX(-16deg); }
  18% { opacity: 0.9; }
  100% { opacity: 0; transform: translateX(72%) skewX(-16deg); }
}
@media (hover: hover) and (pointer: fine) {
  .sp-tag:hover {
    color: var(--champagne); border-color: rgba(226,190,111,0.82);
    background: rgba(201,164,93,0.09);
    box-shadow: 0 7px 24px -12px rgba(201,164,93,0.9), inset 0 0 16px rgba(201,164,93,0.06);
    transform: translateY(-2px);
  }
  .selector__panel .sp-spec span:hover {
    color: rgba(248,243,234,0.86); border-color: rgba(184,197,157,0.62);
    background: rgba(163,177,138,0.09);
    box-shadow: 0 6px 20px -13px rgba(184,197,157,0.85), inset 0 0 12px rgba(163,177,138,0.06);
    transform: translateY(-2px);
  }
  .sp-tag:hover::after,
  .selector__panel .sp-spec span:hover::after {
    animation: showcaseLabelGlint 0.72s var(--ease-out) both;
  }
}
.sp-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 1rem 0 1.25rem; border-bottom: 1px solid rgba(201,164,93,0.14); }
.sp-meta div { min-width: 0; padding: 0.72rem 0.75rem; text-align: left; border-top: 1px solid rgba(201,164,93,0.14); }
.sp-meta div:nth-child(even) { padding-left: 1rem; border-left: 1px solid rgba(201,164,93,0.14); }
.sp-meta span { display: block; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(248,243,234,0.4); }
.sp-meta strong { display: block; overflow-wrap: anywhere; font-family: var(--serif); font-size: 1rem; line-height: 1.2; color: var(--champagne); }
.sp-desc { color: rgba(248,243,234,0.68); max-width: 44ch; margin: 0 0 1rem; font-weight: 300; line-height: 1.58; }
.sp-note { max-width: 48ch; margin: -0.35rem 0 1rem; color: rgba(248,243,234,0.58); font-size: 0.75rem; line-height: 1.5; }
.sp-actions { display: grid; gap: 0.65rem; }
.sp-actions .btn { width: 100%; min-height: 46px; padding: 0.8rem 1rem; }

/* ===================================================================== SHEDE */
.shede__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; align-items: center;
}
.shede__frame {
  position: relative; padding: 2.8rem; overflow: hidden;
  border: 1px solid rgba(201,164,93,0.28); border-radius: 2px;
  background: linear-gradient(180deg, rgba(33,18,8,0.55), rgba(7,5,4,0.65));
}
.shede__frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,164,93,0.1), transparent 60%);
}
@keyframes frameGlow { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.shede__artwork-crop {
  height: 440px; margin: 0 auto;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,0.75));
  transition: transform 0.6s var(--ease);
}
.shede__frame img {
  z-index: 1;
  object-fit: contain;
}
.shede__visual:hover .shede__artwork-crop { transform: scale(1.03) translateY(-6px); }
.shede__brochure { margin-top: 1.5rem; width: 100%; }
.shede__features { margin: 2rem 0; }
.feature { display: flex; gap: 1.2rem; padding: 1.3rem 0; border-top: 1px solid rgba(201,164,93,0.15); }
.feature:last-child { border-bottom: 1px solid rgba(201,164,93,0.15); }
.feature__num { font-family: var(--display); font-size: 1rem; color: var(--gold); letter-spacing: 0.12em; }
.feature h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.25rem; }
.feature p { color: rgba(248,243,234,0.62); font-size: 0.92rem; font-weight: 300; }
.shede__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ===================================================================== CATEGORIES */
.cats { padding: 7rem 0; background: var(--black); }
.cats__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cat-card {
  position: relative; min-height: 460px; border-radius: 2px; overflow: hidden;
  display: flex; align-items: flex-end;
  border: 1px solid rgba(201,164,93,0.15);
  transition: transform 0.6s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.cat-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; opacity: 0.35; transform: scale(1.05);
  transition: transform 1s var(--ease), opacity 0.6s, filter 0.6s;
  filter: grayscale(0.3) brightness(0.7);
}
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(7,5,4,0.4) 50%, rgba(7,5,4,0.95) 100%);
  transition: opacity 0.5s;
}
.cat-card--liquor::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 30%, rgba(201,164,93,0.15), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.cat-card--whisky::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 30%, rgba(200,134,47,0.18), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.cat-card--wine::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 30%, rgba(126,20,27,0.25), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.cat-card--wine .cat-card__img {
  opacity: 0.7;
  filter: grayscale(0.08) brightness(1.18) contrast(0.95);
}
.cat-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.9); }
.cat-card:hover::before { opacity: 1; }
.cat-card:hover .cat-card__img { transform: scale(1.12); opacity: 0.55; filter: none; }
.cat-card--wine:hover .cat-card__img { opacity: 0.82; filter: brightness(1.2) saturate(1.05); }
.cat-card__body { position: relative; z-index: 2; padding: 2rem; width: 100%; }
.cat-card__body h3 { font-family: var(--serif); font-size: 1.75rem; color: var(--cream); margin-bottom: 0.45rem; }
.cat-card__body p { color: rgba(248,243,234,0.7); font-size: 0.92rem; margin-bottom: 1rem; font-weight: 300; }
.cat-card__count {
  display: block; margin: -0.45rem 0 0.85rem;
  color: rgba(248,243,234,0.48); font-size: 0.68rem; text-transform: uppercase;
}
.cat-card__btn { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold); display: inline-block; transition: transform 0.3s; }
.cat-card:hover .cat-card__btn { transform: translateX(6px); }

/* Tilt cards */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ===================================================================== CATALOGUE */
.catalogue { padding: 7rem 0; background: linear-gradient(180deg, var(--black), var(--espresso)); }
.catalogue__filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; cursor: pointer;
  padding: 0.65rem 1.35rem; border-radius: 1px; transition: all 0.35s var(--ease);
  background: transparent; color: rgba(248,243,234,0.65); border: 1px solid rgba(201,164,93,0.25);
}
.filter:hover { color: var(--cream); border-color: var(--gold); }
.filter.is-active { background: var(--gold); color: #120a04; border-color: var(--gold); box-shadow: 0 6px 24px -6px rgba(201,164,93,0.5); }

.catalogue__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem;
}
.catalogue__notice {
  max-width: 880px; margin: 2rem auto 0; padding: 0 1.5rem;
  color: rgba(248,243,234,0.6); font-size: 0.78rem; line-height: 1.7; text-align: center;
}
.catalogue__notice a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }
.catalogue__more { display: flex; justify-content: center; margin-top: 2.5rem; padding: 0 1.25rem; }

/* Dedicated reviewed-product catalogue */
.catalogue-page-body { background: #090706; }
.catalogue-page-body .nav {
  background: #090706;
  border-bottom-color: rgba(201,164,93,0.24);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.catalogue-page-body .nav__dropdown > summary { color: var(--cream); }
.catalogue-page-body .nav__dropdown-menu {
  background: #0b0806;
  backdrop-filter: none;
}
.catalogue-page {
  min-height: 100vh; padding: 9rem 0 6rem;
  background:
    radial-gradient(circle at 15% 0%, rgba(116,54,31,0.2), transparent 34rem),
    linear-gradient(180deg, #090706, #120d0b 58%, #090706);
}
.catalogue-page__intro {
  width: min(var(--maxw), calc(100% - 3rem)); margin: 0 auto 2.25rem;
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 3rem; align-items: end; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,164,93,0.22);
}
.catalogue-page__title {
  margin: 0; color: var(--cream); font-family: var(--serif);
  font-size: 4.5rem; line-height: 0.95; font-weight: 500;
}
.catalogue-page__intro-copy > p {
  max-width: 700px; margin: 0; color: rgba(248,243,234,0.68);
  font-size: 1rem; line-height: 1.75;
}
.catalogue-seller {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.15rem; padding-top: 1rem;
  border-top: 1px solid rgba(201,164,93,0.18);
}
.catalogue-seller img {
  flex: 0 0 auto; width: 58px; height: 58px; object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.32));
}
.catalogue-seller span { display: grid; gap: 0.2rem; min-width: 0; }
.catalogue-seller strong {
  color: var(--champagne); font-family: var(--serif); font-size: 1rem; font-weight: 600;
}
.catalogue-seller small { color: rgba(248,243,234,0.52); font-size: 0.72rem; line-height: 1.5; }
.catalogue-toolbar {
  position: sticky; top: 80px; z-index: 30;
  width: min(var(--maxw), calc(100% - 3rem)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(240px, 1fr) minmax(190px, 260px);
  gap: 1rem; padding: 1rem 0;
  background: rgba(9,7,6,0.94); border-bottom: 1px solid rgba(201,164,93,0.2);
  backdrop-filter: blur(12px);
}
.catalogue-search, .catalogue-sort {
  display: grid; gap: 0.4rem; color: rgba(248,243,234,0.55);
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
}
.catalogue-search input, .catalogue-sort select {
  width: 100%; min-height: 46px; padding: 0.75rem 0.9rem;
  border: 1px solid rgba(201,164,93,0.28); border-radius: 1px;
  background: #110d0b; color: var(--cream); font: 500 0.88rem var(--sans);
}
.catalogue-search input:focus, .catalogue-sort select:focus {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.catalogue-category-bar {
  width: min(var(--maxw), calc(100% - 3rem)); margin: 1.25rem auto 0;
  overflow-x: auto; padding-bottom: 0.35rem; scroll-margin-top: 150px;
  scrollbar-width: thin;
}
.catalogue-category-bar__inner { display: flex; gap: 0.5rem; width: max-content; min-width: 100%; }
.catalogue-category-bar .filter { flex: 0 0 auto; }
.catalogue-category-bar [data-count] {
  display: inline-grid; place-items: center; min-width: 1.4rem; margin-left: 0.45rem;
  padding: 0.1rem 0.25rem; color: inherit; border: 1px solid currentColor;
  font-size: 0.62rem; opacity: 0.65;
}
.catalogue-results-bar {
  width: min(var(--maxw), calc(100% - 3rem)); margin: 1.5rem auto;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  color: rgba(248,243,234,0.55); font-size: 0.78rem;
}
.catalogue-results-bar a { color: var(--champagne); }
.catalogue-page__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalogue-page__grid .pcard__desc {
  display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
}
.catalogue-empty {
  width: min(720px, calc(100% - 3rem)); margin: 4rem auto; padding: 3rem 0;
  text-align: center; border-top: 1px solid rgba(201,164,93,0.2);
  border-bottom: 1px solid rgba(201,164,93,0.2);
}
.catalogue-empty h2 { color: var(--cream); font: 500 2rem var(--serif); }
.catalogue-empty p { margin: 0.5rem 0 1.5rem; color: rgba(248,243,234,0.6); }
.catalogue-pagination { display: flex; justify-content: center; margin: 2.5rem 0 0; }
.catalogue-trade-band {
  width: min(var(--maxw), calc(100% - 3rem)); margin: 0 auto; padding: 3.5rem 0;
  display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 2.5rem; align-items: center;
  border-top: 1px solid rgba(201,164,93,0.25);
}
.catalogue-trade-band h2 { margin: 0; color: var(--cream); font: 500 2.1rem/1.05 var(--serif); }
.catalogue-trade-band > p { color: rgba(248,243,234,0.62); line-height: 1.65; }

.product-dialog {
  position: fixed; inset: 50% auto auto 50%;
  width: min(980px, calc(100% - 2rem)); max-height: min(780px, calc(100dvh - 2rem));
  margin: 0; transform: translate(-50%, -50%);
  padding: 0; overflow: auto; border: 1px solid rgba(201,164,93,0.45); border-radius: 2px;
  background: #100c0a; color: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,0.75);
}
.product-dialog::backdrop { background: rgba(3,2,2,0.82); backdrop-filter: blur(4px); }
.product-dialog__close {
  position: absolute; z-index: 3; top: 0.75rem; right: 0.75rem;
  width: 42px; height: 42px; border: 1px solid rgba(201,164,93,0.3);
  background: #110d0b; color: var(--cream); cursor: pointer; font-size: 1.5rem;
}
.product-dialog__layout { display: grid; grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr); }
.product-dialog__media {
  min-height: 560px; display: grid; place-items: center; padding: 3rem;
  background: radial-gradient(circle at 50% 40%, rgba(201,164,93,0.14), transparent 65%), #080605;
}
.product-dialog__media > img { position: relative; z-index: 1; width: 100%; height: 100%; max-height: 500px; object-fit: contain; }
.product-dialog__body { padding: 4rem 3rem 3rem; }
.product-dialog__body h2 { margin: 0.4rem 0 1.5rem; font: 500 2.8rem/1 var(--serif); }
.product-dialog__body dl { margin: 0 0 1.5rem; border-top: 1px solid rgba(201,164,93,0.2); }
.product-dialog__body dl div {
  display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,164,93,0.14);
}
.product-dialog__body dt { color: rgba(248,243,234,0.48); font-size: 0.72rem; text-transform: uppercase; }
.product-dialog__body dd { margin: 0; color: var(--champagne); font-size: 0.82rem; }
.product-dialog__body > p:not(.eyebrow) { color: rgba(248,243,234,0.66); line-height: 1.7; }
.product-dialog__body .btn { width: 100%; margin-top: 1rem; }
.product-dialog__note { font-size: 0.76rem; }

.full-range { padding: 6rem 0 7rem; background: linear-gradient(180deg, var(--espresso), #0a0706); }
.full-range__filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.25rem; padding: 0 1rem; }
.full-range__filters .filter { cursor: pointer; }
.full-range__filters .filter span { margin-left: 0.35rem; color: currentColor; opacity: 0.68; }
.full-range__results {
  width: min(1180px, 100%); margin: -1.15rem auto 1.15rem; padding: 0 1.25rem;
  color: rgba(245,236,220,0.58); font-size: 0.72rem; text-align: right;
}
.full-range__results p { margin: 0; }
.full-range__grid {
  width: min(1180px, 100%); margin: 0 auto; padding: 0 1.25rem;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.85rem;
}
.full-range__empty {
  grid-column: 1 / -1; margin: 0; padding: 2rem 1rem; text-align: center;
  color: rgba(245,236,220,0.55); font-size: 0.85rem;
}
.full-range__empty code { color: var(--champagne); font-size: 0.78rem; }
.full-range__sentinel {
  grid-column: 1 / -1;
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  padding-top: 0.75rem;
}
.full-range__card {
  position: relative; overflow: hidden; background: #120e0c; border: 1px solid rgba(245,236,220,0.08);
  aspect-ratio: 3 / 4; contain: layout paint style; content-visibility: auto; contain-intrinsic-size: 280px 374px;
}
.full-range__card img {
  width: 100%; height: 100%; padding: 0.7rem; object-fit: contain; display: block;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.45s ease;
}
.full-range__card img.is-loaded { opacity: 1; }
.full-range__card:hover img.is-loaded { transform: scale(1.04); }
.full-range__card.has-image-error::before {
  content: "Image unavailable";
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(245,236,220,0.55); font-size: 0.72rem;
}
.full-range__card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 0.75rem 0.7rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #f5ecd4; font-size: 0.68rem; line-height: 1.35;
}
.full-range__card .full-range__pack {
  display: block; margin-bottom: 0.2rem; color: var(--champagne);
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.full-range__actions { display: flex; justify-content: center; margin-top: 2rem; padding: 0 1.25rem; }
.catalogue-image-library { border-top: 1px solid rgba(201,164,93,0.14); }
.catalogue-image-library .section-lead { max-width: 760px; }
.pcard {
  display: flex; flex-direction: column; border-radius: 2px; overflow: hidden;
  background: linear-gradient(180deg, rgba(33,18,8,0.5), rgba(7,5,4,0.75));
  border: 1px solid rgba(201,164,93,0.14);
  transition: transform 0.55s var(--ease), border-color 0.4s, box-shadow 0.4s;
  opacity: 0; transform: translateY(30px);
}
.pcard.is-in { opacity: 1; transform: none; }
.pcard:hover { transform: translateY(-10px); border-color: rgba(201,164,93,0.55); box-shadow: 0 35px 70px -28px rgba(0,0,0,0.95); }
.pcard__media {
  position: relative; height: 270px; display: grid; place-items: center; padding: 3.2rem 1.5rem 1.2rem;
  background: radial-gradient(circle at 50% 40%, rgba(201,164,93,0.06), transparent 65%);
  overflow: hidden;
}
.pcard__media--light {
  background: linear-gradient(180deg, #f4efe6, #e8e0d4);
  border-bottom: 1px solid rgba(201,164,93,0.12);
}
.pcard__media--light .pcard__image-stage > img { filter: drop-shadow(0 12px 18px rgba(0,0,0,0.25)); }
.pcard__media::after {
  content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.7s var(--ease); z-index: 2; pointer-events: none;
}
.pcard:hover .pcard__media::after { left: 150%; }
.pcard__image-stage {
  position: absolute; z-index: 1; inset: 2.8rem 1.5rem 0.8rem;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pcard__image-stage > img {
  position: relative; z-index: 1; display: block; width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain; transform-origin: center; transform: scale(var(--image-scale, 1));
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.65)); transition: transform 0.55s var(--ease);
}
.pcard:hover .pcard__image-stage > img { transform: scale(calc(var(--image-scale, 1) * 1.04)); }
.pcard__image-stage .product-image-missing { min-height: 0; }
.pcard__badge {
  position: absolute; z-index: 3; top: 12px; left: 12px; max-width: calc(100% - 24px);
  font-size: 0.58rem; line-height: 1.35; letter-spacing: 0.14em; text-transform: uppercase;
  color: #120a04; background: var(--gold); padding: 0.35rem 0.65rem; font-weight: 700;
}
.pcard__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.pcard__cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.pcard__name { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.45rem; line-height: 1.25; }
.pcard__promotion { align-self: flex-start; margin: 0 0 0.55rem; padding: 0.25rem 0.45rem; color: #120a04; background: var(--champagne); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; }
.pcard__spec { display: flex; gap: 0.75rem; font-size: 0.76rem; color: rgba(248,243,234,0.5); margin-bottom: 0.65rem; flex-wrap: wrap; }
.pcard__spec .price { color: var(--champagne); font-weight: 600; }
.pcard__spec .price del { margin-right: 0.4rem; color: rgba(248,243,234,0.38); font-weight: 400; }
.pcard__desc { color: rgba(248,243,234,0.6); font-size: 0.86rem; margin-bottom: 1.1rem; flex: 1; font-weight: 300; }
.pcard__note { margin: -0.5rem 0 1rem; color: rgba(248,243,234,0.48); font-size: 0.72rem; line-height: 1.55; }
.pcard__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.pcard__actions .btn { width: 100%; padding: 0.68rem 1rem; font-size: 0.8rem; }

.mobile-conversion-bar { display: none; }

/* ===================================================================== WHOLESALE */
.wholesale { padding: 7rem 0; background: linear-gradient(180deg, var(--espresso), var(--black)); }
.wholesale__inner { max-width: 1040px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
.seller-identity {
  max-width: 340px; margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(201,164,93,0.22);
}
.seller-identity__label {
  margin: 0 0 0.8rem; color: var(--gold); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; line-height: 1.4; text-transform: uppercase;
}
.seller-identity__logo { display: block; width: min(100%, 300px); }
.seller-identity__logo img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.38));
}
.seller-identity__copy {
  margin: 0.75rem 0 0; color: rgba(248,243,234,0.58);
  font-size: 0.78rem; line-height: 1.6;
}
.wform {
  background: linear-gradient(180deg, rgba(33,18,8,0.45), rgba(7,5,4,0.65));
  border: 1px solid rgba(201,164,93,0.22); border-radius: 2px; padding: 2rem;
}
.wholesale.is-scroll-target .reveal { opacity: 1; transform: none; transition: none; }
.wform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wform__honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.wform label { display: block; margin-bottom: 1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248,243,234,0.55); }
.wform input, .wform textarea {
  width: 100%; margin-top: 0.4rem; padding: 0.85rem 0.95rem;
  background: rgba(7,5,4,0.55); border: 1px solid rgba(201,164,93,0.2); border-radius: 1px;
  color: var(--ink); font-family: var(--sans); font-size: 0.94rem;
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.wform input:focus, .wform textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,93,0.1); background: rgba(7,5,4,0.75); }
.wform input.invalid, .wform input[aria-invalid="true"] { border-color: #db6d74; animation: shake 0.4s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.wform__field-error { display: block; min-height: 1.2em; margin-top: 0.32rem; color: #ffd5d8; font-size: 0.7rem; letter-spacing: 0; text-transform: none; }
.wform__product-field { margin-bottom: 1rem; }
.wform__field-label {
  display: block; margin-bottom: 0.4rem; color: rgba(248,243,234,0.55);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.wform__field-hint {
  display: block; margin-top: 0.48rem; color: rgba(248,243,234,0.55);
  font-size: 0.74rem; line-height: 1.5; letter-spacing: 0; text-transform: none;
}
.wproduct-picker { position: relative; }
.wproduct-tags {
  display: grid; gap: 0.55rem; margin: 0 0 0.65rem; padding: 0; list-style: none;
}
.wproduct-tags:empty { display: none; }
.wproduct-tag {
  display: grid; grid-template-columns: minmax(0, 1fr) 7.5rem 2.5rem; gap: 0.55rem; align-items: stretch;
  min-height: 3.4rem; padding: 0.4rem;
  border: 1px solid rgba(201,164,93,0.25); background: rgba(201,164,93,0.055);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.wproduct-tag:hover,
.wproduct-tag:focus-within {
  border-color: rgba(224,188,113,0.55); background: rgba(201,164,93,0.1);
  box-shadow: inset 3px 0 0 rgba(224,188,113,0.72);
}
.wproduct-tag.is-selected {
  border-color: var(--gold); background: rgba(201,164,93,0.14);
  box-shadow: inset 3px 0 0 var(--gold), 0 8px 24px rgba(0,0,0,0.18);
}
.wproduct-tag.is-new { animation: wproduct-arrive 0.42s var(--ease); }
@keyframes wproduct-arrive {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}
.wproduct-tag__name {
  min-width: 0; padding: 0.42rem 0.55rem; border: 0; background: transparent; color: var(--ink);
  font: 600 0.9rem/1.25 var(--sans); text-align: left; cursor: pointer;
}
.wproduct-tag__name:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.wproduct-tag__name span,
.wproduct-tag__name small { display: block; overflow-wrap: anywhere; }
.wproduct-tag__name small {
  margin-top: 0.25rem; color: rgba(248,243,234,0.5); font-size: 0.66rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.wform .wproduct-tag__quantity {
  position: relative; display: grid; grid-template-rows: auto 1fr; gap: 0.2rem; min-width: 0; margin: 0;
  color: rgba(248,243,234,0.58); font-size: 0.61rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.wform .wproduct-tag__quantity input {
  min-width: 0; height: 2.15rem; margin: 0; padding: 0.35rem 0.55rem;
  font-size: 0.88rem; font-variant-numeric: tabular-nums;
}
.wproduct-tag__hint {
  position: absolute; z-index: 25; right: 0; bottom: calc(100% + 0.55rem);
  width: max-content; max-width: min(15rem, calc(100vw - 3rem)); padding: 0.55rem 0.7rem;
  color: var(--cream); border: 1px solid rgba(224,188,113,0.55); background: #17100b;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  font-size: 0.7rem; font-weight: 600; line-height: 1.35; letter-spacing: 0; text-transform: none;
  animation: quantityHintIn 0.2s var(--ease-out);
}
.wproduct-tag__hint::after {
  content: ""; position: absolute; top: 100%; right: 1rem;
  border: 0.38rem solid transparent; border-top-color: rgba(224,188,113,0.55);
}
@keyframes quantityHintIn {
  from { opacity: 0; transform: translateY(0.25rem); }
}
.wproduct-tag__remove {
  align-self: end; width: 2.15rem; height: 2.15rem; padding: 0;
  border: 1px solid rgba(201,164,93,0.2); background: rgba(7,5,4,0.35); color: rgba(248,243,234,0.7);
  font: 400 1.35rem/1 var(--sans); cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.wproduct-tag__remove:hover,
.wproduct-tag__remove:focus-visible {
  outline: none; border-color: #db6d74; background: rgba(126,20,27,0.28); color: #fff;
}
.wproduct-combobox { position: relative; }
.wform .wproduct-combobox__input { margin-top: 0; }
.wproduct-combobox__input[aria-expanded="true"] { border-color: rgba(224,188,113,0.62); }
.wproduct-suggestions {
  position: absolute; z-index: 24; top: calc(100% + 0.3rem); right: 0; left: 0;
  max-height: min(22rem, 48vh); margin: 0; padding: 0.35rem; overflow-y: auto;
  border: 1px solid rgba(224,188,113,0.45); background: #130e0a;
  box-shadow: 0 18px 42px rgba(0,0,0,0.52); list-style: none;
}
.wproduct-suggestions[hidden] { display: none; }
.wproduct-suggestion {
  display: grid; gap: 0.18rem; padding: 0.72rem 0.78rem; color: rgba(248,243,234,0.86);
  border-left: 2px solid transparent; cursor: pointer;
}
.wproduct-suggestion + .wproduct-suggestion { border-top: 1px solid rgba(201,164,93,0.11); }
.wproduct-suggestion:hover,
.wproduct-suggestion.is-active,
.wproduct-suggestion[aria-selected="true"] {
  border-left-color: var(--gold); background: rgba(201,164,93,0.12); color: #fff;
}
.wproduct-suggestion strong { font-size: 0.88rem; line-height: 1.35; }
.wproduct-suggestion small {
  color: rgba(248,243,234,0.5); font-size: 0.64rem; letter-spacing: 0.09em; text-transform: uppercase;
}
.wform__privacy { margin: 0.25rem 0 1rem; color: rgba(248,243,234,0.62); font-size: 0.78rem; line-height: 1.65; }
.wform__privacy a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }
.wform__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.wform__note { font-size: 0.76rem; color: rgba(248,243,234,0.62); font-weight: 300; }
.wform__status { margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: 2px; font-weight: 600; animation: fadeUp 0.5s var(--ease); }
.wform__status--success { background: rgba(31,122,82,0.12); border: 1px solid rgba(31,122,82,0.45); color: #bfe9d3; }
.wform__status--error { background: rgba(126,20,27,0.2); border: 1px solid rgba(219,109,116,0.55); color: #ffd5d8; }
.wform__status--error a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }

/* ===================================================================== CONTACT */
.contact { padding: 3.5rem 0; background: var(--black); }
.contact .section-head { margin-bottom: 1.5rem; }
.contact__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: 2rem; align-items: stretch; }
.contact__map { border-radius: 2px; overflow: hidden; border: 1px solid rgba(201,164,93,0.25); min-height: 430px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: grayscale(0.35) contrast(1.05) brightness(0.82); }
.contact__map .map-consent-placeholder {
  display: grid; gap: 0.75rem; align-content: center; min-height: 430px; padding: 1.4rem 1.5rem;
  color: var(--cream, #f4efe5); background: rgba(12, 24, 18, 0.92);
}
.contact__map .map-consent-placeholder p { margin: 0; color: rgba(244,239,229,0.78); line-height: 1.55; }
.contact__map .map-consent-placeholder[hidden] { display: none !important; }
.footer button[data-cookie-settings],
.footer button[data-analytics-settings] {
  width: fit-content; padding: 0; color: inherit; border: 0; border-bottom: 1px solid currentColor;
  background: transparent; font: inherit; cursor: pointer; text-align: left;
}
.contact__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.25rem; }
.contact__list > li { display: flex; flex-direction: column; min-width: 0; padding: 0.72rem 0; border-bottom: 1px solid rgba(201,164,93,0.12); }
.contact__item--wide { grid-column: 1 / -1; }
.contact__hours { display: grid; grid-template-columns: 1fr; gap: 0.12rem; margin-top: 0.4rem; }
.contact__hours li {
  display: flex; flex-direction: row; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.28rem 0; border-bottom: none;
  font-size: 0.88rem;
}
.contact__hours li span { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.01em; text-transform: none; color: rgba(248,243,234,0.55); margin: 0; }
.contact__hours li strong { white-space: nowrap; font-family: var(--sans); font-size: 0.72rem; font-weight: 500; color: var(--cream); }
.contact__list span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact__list strong, .contact__list a { overflow-wrap: anywhere; font-family: var(--serif); font-size: 1.02rem; color: var(--cream); }
.contact__list a:hover { color: var(--gold); }
.contact__directions { width: fit-content; margin-top: 1.25rem; }
.contact__note { margin-top: 1.2rem; font-size: 0.84rem; color: rgba(248,243,234,0.5); font-style: italic; font-weight: 300; }

/* Shared focus treatment for scannable information rows. */
.hero__stats > div,
.sp-meta > div,
.feature,
.contact__list > li {
  --row-rx: 0deg; --row-ry: 0deg;
  padding-inline-start: 0.75rem;
  position: relative; transform-style: preserve-3d;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}
.hero__stats > div > *,
.sp-meta > div > *,
.feature > *,
.contact__list > li > * {
  position: relative; transform: translateZ(0); transition: transform 0.3s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .hero__stats > div:hover,
  .sp-meta > div:hover,
  .feature:hover,
  .contact__list > li:hover,
  .contact__list > li:focus-within {
    transform: perspective(900px) translate3d(6px,-2px,14px) rotateX(var(--row-rx)) rotateY(var(--row-ry));
    background: rgba(201,164,93,0.055);
    box-shadow: inset 3px 0 0 rgba(201,164,93,0.72), 0 16px 34px rgba(0,0,0,0.14);
  }
  .hero__stats > div:hover > *,
  .sp-meta > div:hover > *,
  .feature:hover > *,
  .contact__list > li:hover > *,
  .contact__list > li:focus-within > * { transform: translateZ(14px); }
}

/* ===================================================================== FOOTER */
.footer { padding: 4rem 0 1.5rem; border-top: 1px solid rgba(201,164,93,0.2); background: linear-gradient(180deg, var(--black), #030201); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; display: grid;
  grid-template-columns: minmax(280px,1.35fr) repeat(3,minmax(150px,0.72fr)); gap: 2.75rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.8rem; max-width: 410px; }
.footer__brand-marks { display: flex; align-items: center; gap: 1rem; min-height: 58px; }
.footer__brand-marks .nav__logo { flex: 0 0 auto; }
.footer__soho-logo { display: block; width: min(230px, calc(100% - 70px)); }
.footer__soho-logo img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 9px 18px rgba(0,0,0,0.32));
}
.footer__brand p { margin: 0; color: rgba(248,243,234,0.55); font-size: 0.82rem; font-weight: 300; line-height: 1.55; }
.footer__brand .footer__company {
  margin-bottom: -0.45rem; color: var(--champagne); font-family: var(--serif);
  font-size: 1.08rem; font-weight: 600; letter-spacing: 0.04em;
}
.footer__company span {
  display: block; margin-top: 0.2rem; color: rgba(248,243,234,0.48); font-family: var(--sans);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.footer__col { min-width: 0; }
.footer__col h4 { margin: 0 0 0.9rem; padding-bottom: 0.65rem; color: var(--cream); border-bottom: 1px solid rgba(201,164,93,0.14); font-family: var(--serif); font-size: 1rem; }
.footer__col a { display: block; color: rgba(248,243,234,0.62); font-size: 0.8rem; line-height: 1.35; padding: 0.3rem 0; transition: color 0.3s, transform 0.3s; }
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(201,164,93,0.35);
  background: rgba(7,5,4,0.5); transition: all 0.35s var(--ease);
  padding: 0;
}
.footer__social a:hover { border-color: var(--gold); background: rgba(201,164,93,0.12); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; fill: var(--champagne); transition: fill 0.3s; }
.footer__social a:hover svg { fill: var(--gold); }
.footer__bar {
  max-width: var(--maxw); margin: 2.75rem auto 0; padding: 1.35rem 1.5rem 0;
  display: grid; grid-template-columns: minmax(150px,0.55fr) minmax(340px,1.8fr) auto; gap: 1.5rem;
  align-items: start; border-top: 1px solid rgba(201,164,93,0.12);
}
.footer__bar p { margin: 0; color: rgba(248,243,234,0.42); font-size: 0.66rem; line-height: 1.55; }
.footer__bar p:last-child { text-align: right; white-space: nowrap; }

/* ===================================================================== FLOATING */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #22855a, #1a6845);
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(31,122,82,0.85);
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
  animation: waPulse 2.8s 3;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa.is-suppressed { opacity: 0; pointer-events: none; transform: translateY(18px); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(31,122,82,0.5); } 70% { box-shadow: 0 0 0 16px rgba(31,122,82,0); } 100% { box-shadow: 0 0 0 0 rgba(31,122,82,0); } }

.float-wholesale {
  position: fixed; bottom: 32px; right: 104px; z-index: 800;
  background: linear-gradient(135deg, #e2c47a, var(--gold), #9a7538); color: #120a04;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem; border-radius: 40px;
  box-shadow: 0 16px 40px -12px rgba(201,164,93,0.75);
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.float-wholesale.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* ===================================================================== PLACEHOLDERS */
.img-fallback {
  display: grid; place-items: center; text-align: center; min-height: 200px;
  background: radial-gradient(circle at 50% 35%, rgba(201,164,93,0.12), transparent 65%), linear-gradient(180deg, #1c1107, #0a0603);
  border-radius: 2px; color: var(--gold);
}
.img-fallback .ph-bottle {
  width: 50px; height: 140px; border-radius: 12px 12px 6px 6px; position: relative;
  background: linear-gradient(180deg, rgba(201,164,93,0.3), rgba(201,164,93,0.06));
  border: 1px solid rgba(201,164,93,0.4);
}
@keyframes phFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.img-fallback .ph-bottle::before { content: ""; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 16px; height: 22px; background: rgba(201,164,93,0.35); border-radius: 2px; }
.img-fallback .ph-label { margin-top: 0.8rem; font-family: var(--serif); font-size: 0.9rem; color: var(--champagne); }
.img-fallback.ph--logo { background: none; min-height: auto; }
.img-fallback.ph--logo .ph-bottle { display: none; }
.img-fallback.ph--logo .ph-label { font-family: var(--display); margin: 0; font-size: 0.85rem; letter-spacing: 0.2em; }
.product-image-missing {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  color: var(--champagne); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: radial-gradient(circle at 50% 38%, rgba(201,164,93,0.12), transparent 62%);
}
.product-image-missing .ph-bottle {
  width: 44px; height: 132px; border: 1px solid rgba(201,164,93,0.45);
  border-radius: 9px 9px 5px 5px;
  background: linear-gradient(180deg, rgba(201,164,93,0.22), rgba(201,164,93,0.04));
  position: relative;
}
.product-image-missing .ph-bottle::before {
  content: ""; position: absolute; top: -19px; left: 50%; transform: translateX(-50%);
  width: 15px; height: 20px; border: 1px solid rgba(201,164,93,0.4);
  background: rgba(201,164,93,0.18); border-radius: 2px 2px 0 0;
}
.bottle-card .product-image-missing { min-height: 0; font-size: 0.58rem; text-align: center; }
.bottle-card .product-image-missing .ph-bottle { width: 36px; height: 104px; }

/* ===================================================================== REVEALS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal, .pcard { opacity: 1; transform: none; }
  .ambient, .cursor-glow { display: none; }
  html { scroll-behavior: auto; }
  .hero__stats > div:hover,
  .sp-meta > div:hover,
  .feature:hover,
  .contact__list > li:hover { transform: none; }
  .hero__stats > div:hover > *,
  .sp-meta > div:hover > *,
  .feature:hover > *,
  .contact__list > li:hover > * { transform: none; }
  .sp-tag:hover,
  .selector__panel .sp-spec span:hover { transform: none; }
  .sp-tag::after,
  .selector__panel .sp-spec span::after { display: none; }
}

/* ===================================================================== RESPONSIVE */
@media (max-width: 1024px) {
  .section-title { font-size: 2.8rem; }
  .hero__title { font-size: 3.2rem; }
  .hero__inner { gap: 1rem; }
  .shede__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .shede__artwork-crop { height: 340px; }
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue__grid { grid-template-columns: repeat(2, 1fr); }
  .full-range__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wholesale__inner { grid-template-columns: 1fr; }
  .seller-identity { margin-inline: auto; text-align: center; }
  .seller-identity__logo { margin-inline: auto; }
  .selector__stage { padding: 0 3rem; }
}

@media (max-width: 1100px) {
  .nav__inner { width: calc(100% - 2rem); }
  .site-switcher { display: none; }
  .nav__mobile-brand { display: block; width: 116px; }
  .nav__mobile-brand img { display: block; width: 112px; height: auto; max-height: 42px; object-fit: contain; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: min(82vw, 340px); height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 1.5rem; padding: 6rem 2rem 2rem;
    overflow-y: auto;
    background: rgba(7,5,4,0.98); backdrop-filter: blur(16px);
    border-left: 1px solid rgba(201,164,93,0.25); transition: right 0.45s var(--ease); z-index: 905;
  }
  .nav.is-open .nav__links { right: 0; }
  .nav__mobile-portfolio {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1rem;
    margin-bottom: 0.35rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(201,164,93,0.3);
  }
  .nav__mobile-portfolio span { grid-column: 1 / -1; margin-bottom: 0.45rem; color: var(--gold); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
  .nav__mobile-portfolio a { padding: 0.35rem 0; font-size: 0.86rem; }
  .nav__links a { font-size: 1.05rem; }
  .nav__dropdown { width: 100%; }
  .nav__dropdown summary { width: max-content; font-size: 1.05rem; }
  .nav__dropdown-menu {
    position: static; width: 100%; transform: none; margin-top: 0.75rem; padding: 0.35rem 0 0.35rem 0.75rem;
    background: transparent; border: 0; border-left: 1px solid rgba(201,164,93,0.3); box-shadow: none; backdrop-filter: none;
  }
  .nav__dropdown-menu a { font-size: 0.94rem; padding: 0.5rem 0.75rem; }
  .nav__cta { display: none; }
  .locale-switcher { margin-left: auto; }
  .nav__burger { display: flex; z-index: 910; }
}

@media (max-width: 900px) {
  .selector__inspector {
    width: min(720px, calc(100% - 3rem));
    grid-template-columns: 1fr;
  }
  .selector__stage {
    min-height: 340px; padding: 0 3rem;
    border-right: 0; border-bottom: 1px solid rgba(201,164,93,0.18);
  }
  .selector__viewport { height: 340px; }
  .bottle-card { bottom: 30px; width: 180px; }
  .bottle-card__img-wrap { height: 260px; }
  .bottle-card img { max-height: 230px; }
  .selector__panel { padding: 2rem; }
  .sp-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 64px; }
  .commerce-strip__inner { min-height: 0; padding: 0; grid-template-columns: 1fr; }
  .commerce-strip__item { min-height: 74px; padding: 0.9rem 1rem; border-right: 0; border-bottom: 1px solid rgba(201,164,93,0.14); }
  .commerce-strip__item:first-child { padding-left: 1rem; }
  .commerce-strip__action { width: calc(100% - 2rem); margin: 0.9rem 1rem; text-align: center; }
  .mobile-conversion-bar {
    position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; height: 64px;
    display: grid; grid-template-columns: 1fr 1fr; padding: 8px max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    background: rgba(8,5,4,0.96); border-top: 1px solid rgba(201,164,93,0.35); box-shadow: 0 -10px 34px rgba(0,0,0,0.36); backdrop-filter: blur(12px);
  }
  .mobile-conversion-bar a { display: grid; place-items: center; min-width: 0; color: var(--cream); border: 1px solid rgba(201,164,93,0.35); font-size: 0.74rem; font-weight: 700; text-align: center; }
  .mobile-conversion-bar a + a { color: #140d08; background: var(--gold); border-color: var(--gold); }
  .cursor-glow { display: none; }
  .nav__inner { width: 100%; padding: 0.75rem 0.75rem; gap: 0.45rem; }
  .nav__brand { gap: 0.5rem; }
  .nav__brandtext small { max-width: 125px; white-space: normal; letter-spacing: 0.1em; font-size: 0.52rem; }
  .site-switcher__chevron { display: none; }
  .locale-switcher select { min-width: 80px; width: 80px; padding-left: 0.5rem; padding-right: 1.45rem; }
  .locale-switcher::after { right: 0.5rem; }
  .nav__burger { flex: 0 0 32px; padding: 3px; }
  .nav__burger span { width: 24px; }
  .site-switcher__menu {
    width: min(320px, calc(100vw - 2rem));
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
  }
  .site-switcher__flyout {
    position: static; left: auto; min-width: 0; margin: 0 0.55rem 0.35rem 0.85rem;
    padding: 0.7rem 0.35rem 0.45rem;
    border: 0; border-left: 2px solid rgba(201,164,93,0.38); box-shadow: none; backdrop-filter: none;
  }
  .site-switcher__item:not(.is-open) .site-switcher__flyout { display: none; }

  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 6.5rem 1rem 2.5rem; }
  .hero__title { font-size: 2.6rem; }
  .section-title { font-size: 2.25rem; }
  .brochure-label, .brochure-label--en { font-size: 2.25rem; }
  .shede__intro-cn { font-size: 1.25rem; }
  .shede__intro-en { font-size: 1.45rem; }
  .sp-name { font-size: 1.75rem; }
  .hero__visual { order: 2; min-height: 330px; }
  .hero__artwork-crop { height: min(78vw, 330px); }
  .hero__orbit { width: min(86vw, 360px); height: min(86vw, 360px); }
  .hero__badge { right: 0.25rem; top: 0.25rem; max-width: 170px; }
  .hero__badge small { letter-spacing: 0.12em; }
  .hero__scroll { display: none; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__stats { gap: 1rem; }

  .selector, .shede, .cats, .catalogue, .wholesale { padding-top: 5rem; padding-bottom: 5rem; }
  .contact { padding-top: 3rem; padding-bottom: 3rem; }
  .section-head { margin-bottom: 2.25rem; }

  .selector__chips {
    justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto;
    margin-bottom: 1rem; padding: 0 1rem 0.5rem;
    scrollbar-width: none;
  }
  .selector__chips::-webkit-scrollbar { display: none; }
  .selector__chips .chip { flex: 0 0 auto; }
  .selector__inspector { width: calc(100% - 2rem); }
  .selector__stage { padding: 0; min-height: 0; }
  .selector__viewport {
    height: 230px; perspective: none;
    overflow-x: auto; overflow-y: hidden;
    justify-content: flex-start; align-items: center;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    padding: 0;
  }
  .selector__viewport::-webkit-scrollbar { display: none; }
  .selector__track { position: relative; display: flex; gap: 1rem; padding: 0 1rem; width: max-content; height: 100%; align-items: center; transform: none; }
  .bottle-card {
    position: relative !important; scroll-snap-align: center;
    width: calc(100vw - 4.5rem); max-width: 300px; flex: 0 0 auto;
    bottom: auto !important; transform: none !important;
    opacity: 0.9 !important; filter: none !important; left: auto !important;
  }
  .bottle-card.is-active { opacity: 1 !important; }
  .bottle-card__img-wrap { height: 205px; padding: 0.75rem; }
  .bottle-card img { max-height: 180px; }
  .selector__arrow {
    display: grid; width: 38px; height: 38px; top: 115px;
    font-size: 1.2rem; background: rgba(7,5,4,0.84);
  }
  .selector__panel-wrap { align-items: flex-start; }
  .selector__panel { padding: 1.25rem; margin: 0; transform: translateY(10px); }
  .sp-tag { margin-bottom: 0.55rem; padding: 0.3rem 0.7rem; letter-spacing: 0.16em; }
  .sp-name { margin-bottom: 0.55rem; font-size: 1.65rem; }
  .sp-desc { margin-bottom: 0.75rem; font-size: 0.88rem; line-height: 1.5; }
  .selector__panel .sp-spec { margin: 0.65rem 0 0.75rem; }
  .sp-meta { margin: 0.75rem 0 1rem; }
  .sp-meta div { padding: 0.62rem 0.65rem; }
  .sp-meta div:nth-child(even) { padding-left: 0.75rem; }
  .sp-meta span { letter-spacing: 0.14em; }
  .sp-meta strong { font-size: 0.95rem; }
  .sp-actions { grid-template-columns: 1fr; }

  .cats__grid, .catalogue__grid { grid-template-columns: 1fr; }
  .full-range__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wform__row { grid-template-columns: 1fr; }
  .wform { padding: 1.35rem; }
  .wproduct-tag { grid-template-columns: minmax(0, 1fr) 5.5rem 2.5rem; gap: 0.4rem; }
  .wproduct-tag__name { padding-inline: 0.35rem; font-size: 0.84rem; }
  .wform .wproduct-tag__quantity { font-size: 0.56rem; }
  .wproduct-suggestions { max-height: 44vh; }
  .wform__actions { align-items: stretch; }
  .wform__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer__brand { grid-column: 1 / -1; max-width: 620px; }
  .footer__bar { grid-template-columns: 1fr; gap: 0.65rem; }
  .footer__bar p:last-child { text-align: left; white-space: normal; }
  .float-wholesale { display: none; }
  .section-head--left { text-align: center; }
  .wisdom-strip__pdf { margin-left: 0; width: 100%; text-align: center; margin-top: 0.5rem; }
  .shede__intro { margin-bottom: 2rem; }
  .shede__actions, .sp-actions { justify-content: center; }
  .contact__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact__info { order: -1; }
  .contact__map, .contact__map iframe { min-height: 160px; }
  .float-wa { display: none; }
  .wa-ico--lg { width: 26px; height: 26px; }
  .wa-ico--lg::before { width: 10px; height: 10px; top: 6px; left: 6px; }
}

@media (max-width: 520px) {
  .nav__brandtext { display: none; }
  .nav__logo { width: 90px; }
  .nav__logo .logo-img--soho { width: 86px; }
}

html[lang="zh-CN"] body { font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif; }
html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] h4,
html[lang="zh-CN"] .nav__brandtext strong,
html[lang="zh-CN"] .sp-name,
html[lang="zh-CN"] .pcard__name {
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  letter-spacing: 0;
}
html[lang="zh-CN"] .hero__title { font-size: 4.5rem; line-height: 1.12; }
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .nav__brandtext small,
html[lang="zh-CN"] .brochure-label__sub { letter-spacing: 0; }

@media (min-width: 761px) and (max-height: 900px) {
  html[lang="zh-CN"] .hero__title {
    font-size: clamp(2.9rem, 4.1vw, 3.55rem);
    line-height: 1.1;
  }
}

.footer__col button[data-analytics-settings],
.footer__col button[data-cookie-settings] {
  width: fit-content; padding: 0.3rem 0; color: rgba(248,243,234,0.62); border: 0;
  background: transparent; font: inherit; font-size: 0.8rem; line-height: 1.35; text-align: left; cursor: pointer;
}
.footer__col button[data-analytics-settings]:hover,
.footer__col button[data-cookie-settings]:hover { color: var(--gold); }
.analytics-consent, .cookie-consent {
  position: fixed; z-index: 11050; left: 50%; bottom: 1rem; width: min(520px, calc(100% - 1.5rem));
  transform: translateX(-50%);
  display: grid !important; grid-template-columns: minmax(0,1fr) auto; gap: 0.65rem 0.85rem; align-items: center;
  padding: 0.7rem 0.85rem; color: var(--cream); border: 1px solid rgba(201,164,93,0.4);
  border-radius: 10px; background: rgba(18,12,9,0.96); box-shadow: 0 10px 28px rgba(0,0,0,0.34);
  font-family: var(--sans); opacity: 1; visibility: visible; pointer-events: auto;
}
.analytics-consent strong, .cookie-consent strong {
  display: block; margin-bottom: 0.1rem; color: var(--champagne); font-size: 0.82rem; line-height: 1.2;
}
.analytics-consent p, .cookie-consent p { margin: 0; color: rgba(248,243,234,0.7); font-size: 0.72rem; line-height: 1.4; }
.analytics-consent p a, .cookie-consent p a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__copy { min-width: 0; }
.analytics-consent__actions, .cookie-consent__actions {
  display: flex; flex-wrap: nowrap; gap: 0.4rem; justify-content: flex-end; align-items: center;
}
.analytics-consent button, .cookie-consent button {
  min-height: 32px; min-width: 0; padding: 0.35rem 0.65rem; color: var(--cream);
  border: 1px solid rgba(248,243,234,0.25); border-radius: 6px; background: transparent;
  font-size: 0.72rem; font-weight: 600; white-space: nowrap; cursor: pointer;
}
.analytics-consent button[data-cookie-action="accept"],
.cookie-consent button[data-cookie-action="accept"] {
  color: #17100b; border-color: var(--gold); background: var(--gold);
}
.cookie-consent__panel { grid-column: 1 / -1; }
.cookie-consent:has(.cookie-consent__panel) {
  width: min(420px, calc(100% - 1.5rem));
  grid-template-columns: 1fr;
}
.cookie-consent__options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 0.75rem; margin: 0.45rem 0 0.35rem; border: 0; padding: 0;
}
.cookie-consent__options label { display: flex; gap: 0.4rem; align-items: center; color: rgba(248,243,234,0.82); font-size: 0.72rem; }
.storefront-announcement {
  position: fixed; z-index: 1200; top: 94px; right: 1.25rem; width: min(380px, calc(100% - 2.5rem));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 1rem;
  color: var(--cream); border: 1px solid rgba(201,164,93,0.45); background: rgba(18,12,9,0.94);
  box-shadow: 0 12px 38px rgba(0,0,0,0.28); font-family: var(--sans); font-size: 0.82rem;
}
.storefront-announcement button { padding: 0; color: var(--gold); border: 0; background: transparent; font-size: 1.3rem; cursor: pointer; }

.promotion-banner {
  position: relative; z-index: 850; margin-top: 82px;
  color: #fff8e7; border-block: 1px solid rgba(231,199,128,0.55);
  background: #7b1720; box-shadow: 0 10px 30px rgba(0,0,0,0.24);
}
.promotion-banner__inner {
  width: min(var(--maxw), calc(100% - 3rem)); min-height: 54px; margin: 0 auto;
  display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center; gap: 1rem;
}
.promotion-banner__eyebrow { color: #f0cf81; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.promotion-banner strong { min-width: 0; overflow-wrap: anywhere; font-family: var(--serif); font-size: 1.12rem; font-weight: 600; }
.promotion-banner__offer { color: rgba(255,248,231,0.82); font-size: 0.78rem; font-weight: 600; }
.promotion-banner__link {
  min-height: 34px; display: inline-flex; align-items: center; padding: 0.4rem 0.75rem;
  color: #17100b; border: 1px solid #e7c780; background: #e7c780; font-size: 0.72rem; font-weight: 800;
}
.promotion-banner__link:hover, .promotion-banner__link:focus-visible { background: #fff1c7; }
body.has-promotion-banner .hero { min-height: calc(100svh - 54px); }
body.has-promotion-banner.catalogue-page-body .catalogue-page { padding-top: 6rem; }
/* Preserve the complete product photo and use a softened copy to fill any
   unused space when its aspect ratio differs from the fixed catalogue card. */
.catalogue-image-frame { position: relative; isolation: isolate; }
.catalogue-image-frame::before {
  content: ""; position: absolute; inset: -24px; z-index: 0; pointer-events: none;
  background: var(--catalogue-image) center / cover no-repeat;
  filter: blur(18px) saturate(0.72) brightness(0.64);
  opacity: 0.58; transform: scale(1.08);
}
.pcard__media--light .catalogue-image-frame::before {
  filter: blur(18px) saturate(0.66) brightness(1.02); opacity: 0.46;
}

[id^="product-"] { scroll-margin-top: 160px; }

@media (max-width: 760px) {
  html[lang="zh-CN"] .hero__title { font-size: 3rem; }
  .analytics-consent, .cookie-consent {
    left: 0.75rem; right: 0.75rem; bottom: 4.6rem; width: auto; transform: none;
    grid-template-columns: 1fr; gap: 0.55rem; padding: 0.65rem 0.75rem;
  }
  .analytics-consent__actions, .cookie-consent__actions {
    display: grid; grid-template-columns: 1fr 1fr 1fr; width: 100%;
  }
  .analytics-consent button, .cookie-consent button { width: 100%; padding: 0.4rem 0.35rem; }
  .storefront-announcement { top: 78px; right: 0.75rem; width: calc(100% - 1.5rem); }
  .promotion-banner { margin-top: 72px; }
  .promotion-banner__inner { width: calc(100% - 1.5rem); min-height: 62px; grid-template-columns: minmax(0,1fr) auto; gap: 0.2rem 0.75rem; padding-block: 0.55rem; }
  .promotion-banner__eyebrow, .promotion-banner__offer { grid-column: 1; }
  .promotion-banner strong { grid-column: 1; font-size: 1rem; }
  .promotion-banner__link { grid-column: 2; grid-row: 1 / 4; }
}

@media (max-width: 460px) {
  .age-gate { padding: 0.75rem; }
  .age-gate__card { padding: 2rem 1.1rem; max-height: calc(100dvh - 1.5rem); }
  .age-gate__badge { width: 82px; height: 82px; margin-bottom: 1rem; }
  .age-gate__badge .logo-img { width: 56px; height: 56px; }
  .age-gate__title { font-size: 1.8rem; }
  .hero__title { font-size: 2.25rem; }
  .age-gate__actions { flex-direction: column; }
  .age-gate__actions .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { justify-content: space-between; gap: 0.5rem; }
  .hero__stats span { font-size: 0.58rem; letter-spacing: 0.08em; }
  .hero__visual { min-height: 300px; }
  .hero__artwork-crop { height: min(82vw, 300px); }
  .catalogue__grid, .cats__grid, .contact__grid, .wholesale__inner { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 900px) {
  .catalogue-page__intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .catalogue-page__title { font-size: 3.5rem; }
  .catalogue-trade-band { grid-template-columns: 1fr; gap: 1.25rem; }
  .catalogue-trade-band .btn { justify-self: start; }
  .product-dialog__layout { grid-template-columns: 1fr; }
  .product-dialog__media { min-height: 360px; max-height: 420px; }
}

@media (max-width: 600px) {
  .catalogue-page { padding-top: 7rem; }
  .catalogue-page__intro,
  .catalogue-toolbar,
  .catalogue-category-bar,
  .catalogue-results-bar,
  .catalogue-trade-band { width: calc(100% - 2rem); }
  .catalogue-page__title { font-size: 3rem; }
  .catalogue-seller { align-items: flex-start; }
  .catalogue-seller img { width: 50px; height: 50px; }
  .catalogue-toolbar {
    top: 72px; grid-template-columns: minmax(0, 1fr) 132px; gap: 0.6rem;
  }
  .catalogue-sort span, .catalogue-search span { font-size: 0.56rem; }
  .catalogue-search input, .catalogue-sort select { min-height: 42px; padding: 0.65rem; font-size: 0.78rem; }
  .catalogue-results-bar { align-items: flex-start; flex-direction: column; }
  .product-dialog { width: calc(100% - 1rem); max-height: calc(100dvh - 1rem); }
  .product-dialog__media { min-height: 280px; max-height: 320px; padding: 2.5rem 2rem 1.5rem; }
  .product-dialog__body { padding: 2rem 1.25rem 1.5rem; }
  .product-dialog__body h2 { padding-right: 2.5rem; font-size: 2.25rem; }
  .product-dialog__body dl div { grid-template-columns: 90px 1fr; }
  .footer { padding-top: 3rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
}

@media (max-width: 520px) {
  .seller-identity__logo { width: 92px; }
  .footer__soho-logo { width: 76px; }
}

/* Shared corporate footer */
.corporate-footer {
  padding: 0 max(1.5rem, calc((100vw - 1200px) / 2));
  color: rgba(255,255,255,0.66);
  border-top: 1px solid rgba(217,189,117,0.24);
  background: #07100d;
  font-family: "Times New Roman", Times, serif;
}
.corporate-footer a { color: inherit; text-decoration: none; }
.corporate-footer__main { display: grid; grid-template-columns: minmax(260px,1.45fr) repeat(3,minmax(150px,0.7fr)); gap: clamp(2rem,4vw,4.5rem); padding: 4.25rem 0 3.25rem; }
.corporate-footer__brand img { width: 190px; height: auto; max-height: 68px; object-fit: contain; object-position: left center; }
.corporate-footer__brand > p { max-width: 340px; margin: 1.25rem 0 0; color: rgba(255,255,255,0.53); font-size: 0.76rem; line-height: 1.7; }
.corporate-footer__group { display: flex; flex-direction: column; align-items: flex-start; gap: 0.72rem; }
.corporate-footer__group > p { margin: 0 0 0.35rem; color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.corporate-footer__group a { font-size: 0.72rem; line-height: 1.45; transition: color 0.2s ease; }
.corporate-footer__group a:hover,
.corporate-footer__group a:focus-visible,
.corporate-footer__bottom a:hover,
.corporate-footer__bottom a:focus-visible,
.corporate-footer__bottom button:hover,
.corporate-footer__bottom button:focus-visible { color: #d9bd75; }
.corporate-footer__contact address { margin-top: 0.2rem; color: rgba(255,255,255,0.46); font-size: 0.7rem; font-style: normal; line-height: 1.65; }
.corporate-footer__contact .corporate-footer__whatsapp { color: #d9bd75; font-weight: 700; }
.corporate-footer__disclosure { margin: 0; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.09); border-bottom: 1px solid rgba(255,255,255,0.09); color: rgba(255,255,255,0.42); font-size: 0.62rem; line-height: 1.65; }
.corporate-footer__bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.corporate-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 0.55rem 1.15rem; }
.corporate-footer__bottom a,
.corporate-footer__bottom button,
.corporate-footer__bottom > p { margin: 0; color: rgba(255,255,255,0.46); font: inherit; font-size: 0.62rem; }
.corporate-footer__bottom button { padding: 0; border: 0; background: transparent; cursor: pointer; }
@media (max-width: 900px) {
  .corporate-footer__main { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .corporate-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .corporate-footer__main { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2.25rem 1.5rem; padding: 3.25rem 0 2.5rem; }
  .corporate-footer__brand { grid-column: 1 / -1; }
  .corporate-footer__contact { grid-column: 1 / -1; }
  .corporate-footer__bottom { align-items: flex-start; flex-direction: column; padding: 1.25rem 0; }
}

/* Automatic spirits collection slideshow */
.spirits-showcase { padding: clamp(5rem,8vw,8rem) max(1.5rem,calc((100% - var(--maxw)) / 2)); overflow: hidden; background: #0c0805; }
.spirits-showcase__head { max-width: 760px; margin-bottom: 3rem; }
.spirits-showcase__viewport { position: relative; min-height: clamp(520px,68vw,720px); overflow: hidden; border: 1px solid rgba(201,164,93,.25); background: #120c08; }
.spirits-showcase__slide { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); opacity: 0; visibility: hidden; transform: translateX(3%); transition: opacity .8s ease, transform .8s var(--ease-out), visibility .8s; }
.spirits-showcase__slide.is-active { opacity: 1; visibility: visible; transform: none; }
.spirits-showcase__slide img { width: 100%; height: 100%; min-height: 520px; object-fit: contain; padding: clamp(2rem,5vw,5rem); background: radial-gradient(circle at 50% 42%,rgba(201,164,93,.18),transparent 58%); }
.spirits-showcase__slide > div { align-self: center; padding: clamp(2rem,6vw,6rem); }
.spirits-showcase__slide span { color: var(--gold); font-size: .75rem; letter-spacing: .2em; }
.spirits-showcase__slide h3 { margin: 1rem 0; color: var(--cream); font: 500 clamp(3rem,6vw,6rem)/.95 var(--serif); }
.spirits-showcase__slide p { max-width: 430px; color: rgba(248,243,234,.64); }
.spirits-showcase__controls { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; margin-top: 1.25rem; }
.spirits-showcase__controls > button { width: 44px; height: 44px; color: var(--cream); border: 1px solid rgba(201,164,93,.4); background: transparent; cursor: pointer; }
.spirits-showcase__controls > div { display: flex; gap: .55rem; }
.spirits-showcase__controls > div button { width: 26px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.3); cursor: pointer; }
.spirits-showcase__controls > div button.is-active { background: var(--gold); }
.spirits-pillars { padding: clamp(4rem,7vw,6.5rem) max(1.5rem,calc((100% - var(--maxw)) / 2)) clamp(6rem,9vw,9rem); background: #0c0805; }
.spirits-pillars__intro { max-width: 720px; margin: 0 auto clamp(2.75rem,5vw,4.25rem); text-align: center; }
.spirits-pillars .spirits-pillars__intro h2 { margin: .7rem 0 1rem; color: var(--cream); font: 500 clamp(2.25rem,4vw,3.4rem)/1 var(--serif); }
.spirits-pillars__intro > p:not(.eyebrow) { max-width: 620px; margin: 0 auto; color: rgba(248,243,234,.64); }
.spirits-pillars__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.spirits-pillars article { min-height: 260px; padding: clamp(2rem,4vw,3.5rem); border: 1px solid rgba(201,164,93,.2); }
.spirits-pillars__media { height: 0; margin: -1rem 0 0; opacity: 0; transition: height .25s ease, margin .25s ease, opacity .25s ease; }
.spirits-pillars__media:not([hidden]) { height: 150px; margin: -1rem 0 1.5rem; opacity: 1; }
.spirits-pillars__media img { object-fit: cover; }
.spirits-pillars article + article { border-left: 0; }
.spirits-pillars span { color: var(--gold); }
.spirits-pillars article > span { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.spirits-pillars h2 { margin: 1.7rem 0 1rem; color: var(--cream); font: 500 2rem/1.05 var(--serif); }
.spirits-pillars p { color: rgba(248,243,234,.6); font-size: .88rem; }
.spirits-pillars__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.spirits-pillars__actions .btn { width: 100%; padding: .8rem 1rem; font-size: .76rem; white-space: normal; text-align: center; }
.spirits-pillars__intro .spirits-pillars__actions .btn { width: auto; }
.corporate-footer__follow-label { margin-top: .85rem !important; color: #fff !important; font-size: .64rem !important; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.corporate-footer__socials {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin: 0.15rem 0 0.35rem;
}
.corporate-footer__socials a {
  width: 38px; height: 38px; display: grid; place-items: center; font-size: 0;
  color: #f4efe5; border: 1px solid rgba(201,164,93,0.38); border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.corporate-footer__socials a:hover,
.corporate-footer__socials a:focus-visible { color: #140d08; background: var(--gold); border-color: var(--gold); }
.corporate-footer__socials svg { width: 16px; height: 16px; }
.corporate-footer__social--xhs { width: auto !important; min-width: 38px; padding: 0 0.45rem; border-radius: 999px !important; }
.corporate-footer__social--xhs span { font-size: 0.58rem; font-weight: 700; letter-spacing: 0; line-height: 1; }

@media (max-width: 900px) {
  .spirits-showcase__slide { grid-template-columns: 1fr; }
  .spirits-showcase__slide img { min-height: 300px; max-height: 360px; }
  .spirits-showcase__slide > div { padding: 2rem; }
  .spirits-pillars__grid { grid-template-columns: 1fr; }
  .spirits-pillars article + article { border-left: 1px solid rgba(201,164,93,.2); border-top: 0; }
}

@media (max-width: 560px) {
  .spirits-showcase__viewport { min-height: 610px; }
  .spirits-showcase__slide img { min-height: 300px; height: 300px; padding: 2rem; }
  .spirits-showcase__slide h3 { font-size: 3rem; }
}
