/* ═══════════════════════════════════════════════════════
   EMPYREAN SPIRITS — Lotte-Style Luxury Landing
   Black · Cream · Amber · Editorial Serif
   ═══════════════════════════════════════════════════════ */

/* Fonts loaded via <link> in HTML for faster first paint */

:root {
  --black: #000000;
  --charcoal: #1a1a1a;
  --cream: #f5f1ed;
  --cream-dark: #e8e2db;
  --amber: #d38035;
  --amber-light: #e8a060;
  --amber-glow: #c45a20;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-secondary: #5c5c5c;
  --ink-faint: #9a9a9a;

  --font-display: 'Bodoni Moda', serif;
  --font-ui: 'DM Sans', sans-serif;

  --header-height: 116px;
  --header-height-sub: 152px;
  --header-bar: 72px;
  --header-utility: 32px;
  --header-meta: 36px;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --z-header: 100;
  --z-age-gate: 200;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) var(--charcoal);
}

body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Touch-friendly defaults */
a,
button {
  -webkit-tap-highlight-color: rgba(211, 128, 53, 0.2);
}

@media (hover: none) and (pointer: coarse) {
  .spotlight__arrow,
  .collection__arrow,
  .site-header__menu {
    min-width: 44px;
    min-height: 44px;
  }
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Image placeholders ── */
.collection__visual,
.philosophy__frame {
  position: relative;
}

.philosophy__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--cream-dark) 0%, #d4ccc3 100%);
  border-radius: 2px;
  z-index: 0;
}

.collection__visual img,
.philosophy__visual img {
  position: relative;
  z-index: 1;
}

/* ── Age Gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-age-gate);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(30px);
  transition: opacity 0.7s var(--ease-expo), visibility 0.7s;
}

html.age-verified .age-gate {
  display: none;
}

html:not(.age-verified) body {
  overflow: hidden;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__box {
  text-align: center;
  max-width: 420px;
  padding: 2rem;
}

.age-gate__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.04em;
}

.age-gate__sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0.4rem 0 2.5rem;
}

.age-gate__q {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 300;
}

.age-gate__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate__btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all 0.4s var(--ease-expo);
}

.age-gate__btn--yes {
  background: var(--amber);
  color: var(--white);
}

.age-gate__btn--yes:hover {
  background: var(--amber-light);
}

.age-gate__btn--no {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--cream);
}

.age-gate__btn--no:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ── Site Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  pointer-events: none;
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header__ticker,
.site-header__bar,
.site-header__meta {
  pointer-events: auto;
}

/* Ticker */
.site-header__ticker {
  overflow: hidden;
  height: var(--header-utility);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.94);
  transition: height 0.45s var(--ease-expo), opacity 0.45s var(--ease-expo);
}

.site-header__ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: max-content;
  padding: 0 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  animation: header-ticker 28s linear infinite;
}

.site-header__ticker-track span:nth-child(odd) {
  white-space: nowrap;
}

.site-header__ticker-track span[aria-hidden="true"] {
  color: var(--amber);
  opacity: 0.6;
}

@keyframes header-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header.is-scrolled .site-header__ticker {
  height: 0;
  opacity: 0;
  border-bottom-width: 0;
}

/* Main bar */
.site-header__bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.85rem 2.5rem;
  min-height: var(--header-bar);
  background: transparent;
  border-bottom: none;
  transition: padding 0.45s var(--ease-expo);
}

.site-header__bar::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: -1;
  pointer-events: none;
  transition: background 0.45s var(--ease-expo), border-color 0.45s var(--ease-expo);
}

.site-header.is-scrolled .site-header__bar::before {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(211, 128, 53, 0.22);
}

.site-header.is-scrolled .site-header__bar {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.site-header__bar > * {
  position: relative;
  z-index: 1;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  transition: opacity 0.3s;
  justify-self: start;
  grid-column: 1;
}

.site-header__logo:hover {
  opacity: 0.85;
}

.site-header__monogram {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(211, 128, 53, 0.45);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--amber-light);
  transition: border-color 0.35s, box-shadow 0.35s;
  flex-shrink: 0;
}

.site-header__logo:hover .site-header__monogram {
  border-color: var(--amber);
  box-shadow: 0 0 24px rgba(211, 128, 53, 0.25);
}

.site-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  padding-bottom: 0.2rem;
}

.site-header__wordmark-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header__wordmark-sub {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Desktop nav */
.site-header__nav {
  grid-column: 2;
  justify-self: center;
  width: max-content;
}

.site-header__links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  list-style: none;
}

.site-header__links li {
  display: flex;
}

.site-header__links a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  white-space: nowrap;
  transition: color 0.35s var(--ease-expo);
}

.site-header__link-num {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(211, 128, 53, 0.55);
  transition: color 0.35s;
}

.site-header__links a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}

.site-header__links a:hover,
.site-header__links a.is-active {
  color: var(--white);
}

.site-header__links a:hover .site-header__link-num,
.site-header__links a.is-active .site-header__link-num {
  color: var(--amber);
}

.site-header__links a:hover::after,
.site-header__links a.is-active::after {
  transform: scaleX(1);
}

/* Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
  grid-column: 3;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 55%, var(--amber-glow) 100%);
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s var(--ease-expo);
}

.site-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(211, 128, 53, 0.35);
}

.site-header__cta-arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  transition: transform 0.35s var(--ease-expo);
}

.site-header__cta:hover .site-header__cta-arrow {
  transform: translate(2px, -2px);
}

/* Burger — mobile only */
.site-header__menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
}

.site-header__menu:hover {
  border-color: rgba(211, 128, 53, 0.45);
  background: rgba(211, 128, 53, 0.08);
}

.site-header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.site-header__menu-icon span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-expo), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.site-header__menu-icon span:last-child {
  width: 65%;
  margin-left: auto;
}

.site-header__menu[aria-expanded="true"] .site-header__menu-icon span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.site-header__menu[aria-expanded="true"] .site-header__menu-icon span:last-child {
  width: 100%;
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Inner page trail */
.site-header__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.55rem 2.5rem;
  min-height: var(--header-meta);
  background: transparent;
  border-bottom: none;
  pointer-events: auto;
}

.site-header__meta::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: -1;
  pointer-events: none;
}

.site-header__meta > * {
  position: relative;
  z-index: 1;
}

.site-header__crumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.site-header__crumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.site-header__crumb a:hover {
  color: var(--amber-light);
}

.site-header__crumb-sep {
  color: rgba(211, 128, 53, 0.45);
  font-size: 0.55rem;
}

.site-header__crumb-current {
  color: rgba(255, 255, 255, 0.85);
}

.site-header__share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.site-header__share:hover {
  color: var(--amber-light);
  border-color: rgba(211, 128, 53, 0.4);
  background: rgba(211, 128, 53, 0.08);
}

.site-header__share svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Mobile Nav Drawer ── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-age-gate) - 1);
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding:
    calc(env(safe-area-inset-top, 0px) + 1.25rem)
    1.5rem
    calc(env(safe-area-inset-bottom, 0px) + 2rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(211, 128, 53, 0.12) 0%, transparent 55%),
    #050505;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.45s var(--ease-expo), transform 0.45s var(--ease-expo);
}

.nav-drawer.is-open .nav-drawer__panel {
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.nav-drawer__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}

.nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.nav-drawer__close:hover {
  color: var(--white);
  border-color: rgba(211, 128, 53, 0.45);
  background: rgba(211, 128, 53, 0.1);
}

.nav-drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav-drawer__links {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer__links a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, padding-left 0.35s var(--ease-expo);
}

.nav-drawer__links a:hover,
.nav-drawer__links a.is-active {
  border-bottom-color: rgba(211, 128, 53, 0.35);
  padding-left: 0.5rem;
}

.nav-drawer__num {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  min-width: 1.5rem;
}

.nav-drawer__label {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}

.nav-drawer__links a.is-active .nav-drawer__label {
  color: var(--amber-light);
}

.nav-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 55%, var(--amber-glow) 100%);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s;
}

.nav-drawer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(211, 128, 53, 0.35);
}

body.is-nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-header__ticker-track {
    animation: none;
  }

  .nav-drawer__panel {
    transition: none;
  }
}

@media (min-width: 901px) {
  .site-header__menu {
    display: none !important;
  }

  .site-header__nav {
    display: block;
    position: static;
    transform: none;
    inset: auto;
  }

  .site-header__links {
    flex-direction: row;
  }
}

/* ── Hero — video background ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Poster always paints instantly — no layout shift, fast LCP, and a clean
     fallback whenever the video is skipped (mobile) or blocked (Low Power Mode). */
  background: #080808 url('images/hero-poster.webp') center / cover no-repeat;
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: block;
  object-fit: cover;
  object-position: center;
  /* Never intercept taps or surface native iOS playback controls. */
  pointer-events: none;
}

/* Poster-only and error fallback — hide video, show background image. */
.hero--poster-only .hero__video,
.hero--fallback .hero__video {
  display: none;
}

@media (max-width: 900px) {
  .hero--poster-only .hero__media,
  .hero--fallback .hero__media {
    background-image: url('images/hero-mobile.webp');
    background-position: center bottom;
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: calc(var(--header-height) + 2rem) 2.5rem 3rem;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(211, 128, 53, 0.85);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
  padding-bottom: 0.04em;
}

.hero__sub {
  margin: 1.5rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 12rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s var(--ease-expo), background 0.35s var(--ease-expo), border-color 0.35s var(--ease-expo);
}

.hero__btn--primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 55%, var(--amber-glow) 100%);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(211, 128, 53, 0.35);
}

.hero__btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.hero__btn--ghost:hover {
  border-color: rgba(211, 128, 53, 0.55);
  background: rgba(211, 128, 53, 0.12);
  transform: translateY(-2px);
}

/* ── Featured Selection / Spotlight ── */
.spotlight {
  background: #0a0a0a;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.spotlight__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.spotlight__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.spotlight__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.45rem;
}

.spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.spotlight__count {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
}

.spotlight__count-sep {
  margin: 0 0.35em;
  opacity: 0.5;
}

.spotlight__viewport {
  position: relative;
  touch-action: pan-y;
}

.spotlight__viewport:focus {
  outline: none;
}

.spotlight__viewport:focus-visible {
  outline: 1px solid rgba(211, 128, 53, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
}

.spotlight__track {
  display: grid;
  grid-template-columns: 1fr;
}

.spotlight__slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.55s var(--ease-expo),
    transform 0.55s var(--ease-expo),
    visibility 0.55s;
}

.spotlight__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}

.spotlight__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(360px, 54vh, 520px);
  padding: 1.25rem 0 0.5rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 85% 55% at 50% 88%, rgba(211, 128, 53, 0.09) 0%, transparent 72%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.025) 0%, transparent 45%);
  overflow: hidden;
}

.spotlight__index {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
}

.spotlight__glow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 34%;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.9;
  pointer-events: none;
}

.spotlight__glow--amber  { background: radial-gradient(ellipse, rgba(211, 128, 53, 0.55) 0%, transparent 70%); }
.spotlight__glow--cool   { background: radial-gradient(ellipse, rgba(120, 170, 230, 0.4) 0%, transparent 70%); }
.spotlight__glow--warm   { background: radial-gradient(ellipse, rgba(190, 105, 40, 0.5) 0%, transparent 70%); }
.spotlight__glow--wine   { background: radial-gradient(ellipse, rgba(155, 40, 65, 0.45) 0%, transparent 70%); }
.spotlight__glow--saffron { background: radial-gradient(ellipse, rgba(180, 95, 45, 0.52) 0%, transparent 70%); }

.spotlight__bottle {
  position: relative;
  z-index: 1;
  height: clamp(320px, 54vh, 500px);
  width: auto;
  max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.68));
}

.spotlight__detail {
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight__type {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.7rem;
}

.spotlight__name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.spotlight__desc {
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  align-self: flex-start;
  transition: gap 0.3s var(--ease-expo), color 0.3s;
}

.spotlight__cta:hover {
  color: var(--amber-light);
  gap: 0.85rem;
}

.spotlight__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.spotlight__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.3s var(--ease-expo),
    color 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-expo);
  backdrop-filter: blur(8px);
}

.spotlight__arrow:hover {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  transform: scale(1.06);
}

.spotlight__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.spotlight__progress {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.spotlight__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.spotlight__progress-bar.is-running {
  animation: spotlight-timer var(--spotlight-timer-duration, 5s) linear forwards;
}

@keyframes spotlight-timer {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (min-width: 901px) {
  .spotlight__slide {
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
  }

  .spotlight__visual {
    min-height: 520px;
    border-radius: 24px;
  }

  .spotlight__bottle {
    height: 500px;
    max-width: 92%;
  }

  .spotlight__detail {
    padding: 0 0 0 clamp(2rem, 4vw, 3rem);
    border-left: 1px solid rgba(211, 128, 53, 0.28);
  }
}

/* Shared bottle glow tokens (collection page) */
.cp-glow--amber { background: radial-gradient(ellipse, rgba(211, 128, 53, 0.5) 0%, transparent 70%); }
.cp-glow--cool  { background: radial-gradient(ellipse, rgba(120, 170, 230, 0.35) 0%, transparent 70%); }
.cp-glow--warm  { background: radial-gradient(ellipse, rgba(190, 105, 40, 0.45) 0%, transparent 70%); }
.cp-glow--wine  { background: radial-gradient(ellipse, rgba(155, 40, 65, 0.4) 0%, transparent 70%); }
.cp-glow--saffron { background: radial-gradient(ellipse, rgba(180, 95, 45, 0.48) 0%, transparent 70%); }

@media (prefers-reduced-motion: reduce) {
  .spotlight__slide {
    transition: none;
  }

  .spotlight__progress-bar.is-running {
    animation: none;
    transform: scaleX(0);
  }
}

/* ── Categories ── */
.categories {
  background: var(--charcoal);
  padding: 6rem 2rem;
}

.categories__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.categories__item {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.4s var(--ease-expo), letter-spacing 0.4s var(--ease-expo);
  text-wrap: balance;
  text-align: center;
}

.categories__item:hover {
  color: var(--amber-light);
  letter-spacing: -0.01em;
}

.categories__item--accent {
  color: var(--amber);
}

.categories__item--accent:hover {
  color: var(--amber-light);
}

.categories__item:not(.categories__item--accent)::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-expo);
}

.categories__item:not(.categories__item--accent):hover::after {
  transform: scaleX(1);
}

/* ── Collection ── */
.collection {
  background: #0c0c0c;
  padding: 6.5rem 0 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.collection__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.collection__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.collection__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.45rem;
}

.collection__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  text-wrap: balance;
}

.collection__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.collection__hint {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.collection__arrows {
  display: flex;
  gap: 0.6rem;
}

.collection__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-expo), border-color 0.3s, color 0.3s, transform 0.3s var(--ease-expo);
  backdrop-filter: blur(8px);
}

.collection__arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: scale(1.08);
}

.collection__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.collection__viewport {
  position: relative;
  max-width: 100%;
}

.collection__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  padding-bottom: 1.5rem;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.collection__track::-webkit-scrollbar {
  display: none;
}

.collection__track:active {
  cursor: grabbing;
}

@media (hover: none) and (pointer: coarse) {
  .collection__track {
    cursor: default;
    touch-action: pan-x pan-y;
  }

  .collection__track:active {
    cursor: default;
  }

  .collection__card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }

  .collection__card:hover .collection__visual img {
    transform: none;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.65));
  }

  .collection__card:hover .collection__glow {
    opacity: 0.55;
  }

  .collection__arrow:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    transform: none;
  }

  .collection__link:hover {
    gap: 0.45rem;
    color: var(--amber);
  }
}

.collection__card {
  position: relative;
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.4s var(--ease-expo), background 0.4s var(--ease-expo);
}

.collection__card:hover {
  border-color: rgba(211, 128, 53, 0.35);
  background: rgba(255, 255, 255, 0.035);
}

.collection__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
}

.collection__visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.75rem;
  overflow: visible;
  padding-bottom: 0.75rem;
}

.collection__visual img {
  height: auto;
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.65));
  transition: transform 0.5s var(--ease-expo), filter 0.5s var(--ease-expo);
}

.collection__card:hover .collection__visual img {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.75));
}

.collection__glow {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 32%;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-expo);
}

.collection__card:hover .collection__glow {
  opacity: 0.85;
}

.collection__glow--amber { background: radial-gradient(ellipse, rgba(211, 128, 53, 0.55) 0%, transparent 70%); }
.collection__glow--cool  { background: radial-gradient(ellipse, rgba(120, 170, 230, 0.4) 0%, transparent 70%); }
.collection__glow--warm  { background: radial-gradient(ellipse, rgba(190, 105, 40, 0.5) 0%, transparent 70%); }
.collection__glow--wine  { background: radial-gradient(ellipse, rgba(155, 40, 65, 0.45) 0%, transparent 70%); }
.collection__glow--saffron { background: radial-gradient(ellipse, rgba(180, 95, 45, 0.5) 0%, transparent 70%); }

.collection__body {
  margin-top: auto;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.collection__type {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 1.25rem 0 0.5rem;
}

.collection__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.1;
}

.collection__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  max-width: 32ch;
}

.collection__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap 0.3s var(--ease-expo), color 0.3s;
}

.collection__link:hover {
  gap: 0.75rem;
  color: var(--amber-light);
}

.collection__link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.collection__progress {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
  overflow: hidden;
}

.collection__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--amber);
  transform-origin: left center;
  transition: width 0.15s linear;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all 0.4s var(--ease-expo);
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--amber-glow);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

/* ── Philosophy ── */
.philosophy {
  background: #080808;
  padding: 7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.philosophy__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy__visual {
  position: relative;
}

.philosophy__frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.philosophy__frame::before {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
}

.philosophy__img-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.philosophy__frame-line {
  position: absolute;
  top: -1px;
  left: 2.5rem;
  width: 60px;
  height: 2px;
  background: var(--amber);
}

.philosophy__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.philosophy__heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.philosophy__heading em {
  font-style: italic;
  color: var(--amber-light);
}

.philosophy__body {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.78;
  margin-bottom: 3rem;
  max-width: 48ch;
}

.philosophy__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.philosophy__stat {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s var(--ease-expo);
}

.philosophy__stat:last-child {
  border-right: none;
}

.philosophy__stat:hover {
  background: rgba(211, 128, 53, 0.06);
}

.philosophy__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.philosophy__stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.55rem;
}

/* ── The Craft ── */
.craft {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.craft__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.craft__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.craft__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.craft__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.craft__content {
  max-width: 540px;
}

.craft__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.craft__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.craft__heading em {
  font-style: italic;
  color: var(--amber-light);
}

.craft__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

.craft__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.9rem 1.75rem;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.35s var(--ease-expo), border-color 0.35s, gap 0.35s var(--ease-expo);
}

.craft__cta:hover {
  background: var(--amber);
  border-color: var(--amber);
  gap: 0.75rem;
}

.craft__cta::after {
  content: '→';
}

/* ── Footer CTA Band ── */
.footer-cta {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(211, 128, 53, 0.25);
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(211, 128, 53, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 80%, rgba(211, 128, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.footer-cta__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.footer-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  text-wrap: balance;
}

.footer-cta__title em {
  font-style: italic;
  color: var(--amber-light);
}

.footer-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1rem 1.75rem;
  transition: background 0.4s var(--ease-expo), border-color 0.4s, transform 0.4s var(--ease-expo);
}

.footer-cta__btn span {
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-expo);
}

.footer-cta__btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.footer-cta__btn:hover span {
  transform: translateX(4px);
}

/* ── Footer ── */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  padding: 0 0 calc(2rem + env(safe-area-inset-bottom, 0px));
}

.footer__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.footer__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.footer__brand-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.footer__brand-loc {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.35rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.7rem;
}

.footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s, transform 0.3s var(--ease-expo);
}

.footer__col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.35s var(--ease-expo);
}

.footer__col a:hover {
  color: var(--amber-light);
  transform: translateX(4px);
}

.footer__col a:hover::before {
  width: 12px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.35s var(--ease-expo);
}

.footer__social-link:hover {
  color: var(--amber-light);
  border-color: rgba(211, 128, 53, 0.45);
  background: rgba(211, 128, 53, 0.1);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(211, 128, 53, 0.4) 20%, rgba(211, 128, 53, 0.4) 80%, transparent 100%);
  margin-bottom: 1.75rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.footer__copy,
.footer__legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

/* Legacy footer aliases */
.footer__top {
  display: contents;
}

/* ── GSAP line reveals ── */
.reveal-line-wrap {
  display: block;
  overflow: hidden;
  line-height: 1;
  padding-bottom: 0.22em;
}

.reveal-line-wrap + .reveal-line-wrap {
  margin-top: -0.17em;
}

.reveal-line {
  display: block;
  will-change: transform;
  line-height: 1.1;
}

.reveal-clip {
  will-change: clip-path, transform, opacity;
}

/* ── Scroll Reveal (CSS fallback — GSAP handles animation on load) ── */
[data-reveal] {
  opacity: 0;
}

[data-reveal].visible {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .site-header__links {
    gap: 0;
  }

  .site-header__link-num {
    display: none;
  }

  .site-header__links a {
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 104px;
    --header-height-sub: 136px;
    --header-bar: 64px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .philosophy {
    padding: 5.5rem 0;
  }

  .craft {
    min-height: 75vh;
  }

  .craft__inner {
    padding: 5rem 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --header-height-sub: 104px;
    --header-utility: 0px;
    --header-bar: 64px;
    --header-meta: 32px;
  }

  .site-header__ticker {
    display: none;
  }

  .site-header__bar {
    grid-template-columns: 1fr auto;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
  }

  .site-header__logo {
    grid-column: 1;
  }

  .site-header__nav {
    display: none;
    position: static;
    transform: none;
    inset: auto;
    width: auto;
  }

  .site-header__actions {
    grid-column: 2;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__menu {
    display: flex;
  }

  .site-header__meta {
    padding: 0.45rem 1.5rem;
  }

  .site-header__wordmark {
    display: none;
  }

  .footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem;
  }

  .spotlight__slide {
    gap: 0;
  }

  .spotlight__detail {
    padding-top: 1.75rem;
    border-left: none;
    border-top: 1px solid rgba(211, 128, 53, 0.22);
    padding-left: 0;
  }

  .spotlight__desc {
    max-width: none;
  }

  .spotlight__inner {
    padding: 0 1.5rem;
  }

  .spotlight {
    padding: 4.5rem 0 5rem;
  }

  .collection__track {
    scroll-padding-inline: 1.5rem;
    padding-inline: 0.25rem;
    cursor: default;
  }

  .collection__card {
    flex: 0 0 min(300px, calc(100% - 1rem));
  }

  .categories {
    padding: 5rem 1.5rem;
  }

  .categories__item {
    font-size: clamp(2.2rem, 9vw, 4.5rem);
    padding: 0.15rem 0;
  }

  .philosophy__inner {
    padding: 0 1.5rem;
  }

  .philosophy__heading {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }

  .philosophy__body {
    font-size: 0.95rem;
    max-width: none;
  }

  .craft__heading {
    font-size: clamp(1.9rem, 7vw, 2.75rem);
  }

  .craft__body {
    font-size: 0.95rem;
  }

  .footer-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .philosophy__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy__stat:nth-child(2) {
    border-right: none;
  }

  .philosophy__stat:nth-child(1),
  .philosophy__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .collection__inner {
    padding: 0 1.5rem;
  }

  .collection__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .collection__controls {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .collection__visual {
    min-height: 300px;
    padding-bottom: 0.5rem;
  }

  .collection__visual img {
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
    --header-bar: 60px;
  }

  .site-header__bar {
    padding: 0.65rem 1.25rem;
  }

  .site-header__monogram {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .hero__content {
    padding: calc(var(--header-height) + 1.5rem) 1.25rem 2.5rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .spotlight {
    padding: 3.25rem 0 4rem;
  }

  .spotlight__inner {
    padding: 0 1.25rem;
  }

  .spotlight__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 2rem;
  }

  .spotlight__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .spotlight__visual {
    min-height: clamp(340px, 50vh, 400px);
    border-radius: 16px;
  }

  .spotlight__bottle {
    height: clamp(300px, 50vh, 380px);
    max-width: 92%;
  }

  .spotlight__name {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .spotlight__desc {
    font-size: 0.9rem;
    margin-bottom: 1.35rem;
  }

  .spotlight__detail {
    padding-top: 1.5rem;
  }

  .spotlight__arrow {
    width: 44px;
    height: 44px;
  }

  .collection {
    padding: 4rem 0 3.5rem;
  }

  .collection__inner {
    padding: 0 1.25rem;
  }

  .collection__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .collection__card {
    flex: 0 0 min(100%, calc(100% - 1.5rem));
    padding: 1.35rem 1.35rem 1.75rem;
  }

  .collection__track {
    scroll-padding-inline: 1.25rem;
    gap: 1rem;
  }

  .collection__visual {
    min-height: 280px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
  }

  .collection__visual img {
    max-height: 280px;
  }

  .collection__arrow {
    width: 44px;
    height: 44px;
  }

  .collection__name {
    font-size: 1.35rem;
  }

  .categories {
    padding: 3.5rem 1.25rem;
  }

  .categories__item {
    font-size: clamp(1.75rem, 11vw, 3rem);
    line-height: 1.1;
  }

  .philosophy {
    padding: 4rem 0;
  }

  .philosophy__inner {
    padding: 0 1.25rem;
  }

  .philosophy__grid {
    gap: 2.5rem;
  }

  .philosophy__heading {
    margin-bottom: 1.25rem;
  }

  .philosophy__body {
    margin-bottom: 2rem;
  }

  .philosophy__stat {
    padding: 1.15rem 1rem;
  }

  .philosophy__stat-num {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .craft {
    min-height: 65vh;
  }

  .craft__inner {
    padding: 3.5rem 1.25rem;
  }

  .craft__content {
    max-width: none;
  }

  .craft__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .craft__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.88) 100%);
  }

  .footer-cta__inner {
    padding: 2.5rem 1.25rem;
  }

  .footer-cta__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .footer__inner {
    padding: 3rem 1.25rem 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer__ghost {
    font-size: clamp(4.5rem, 26vw, 9rem);
  }

  .age-gate__box {
    padding: 1.5rem 1.25rem;
    max-width: min(420px, calc(100% - 2rem));
  }

  .age-gate__btns {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .age-gate__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .spotlight__visual {
    min-height: 320px;
  }

  .spotlight__bottle {
    height: clamp(280px, 48vh, 340px);
  }

  .categories__item {
    font-size: clamp(1.55rem, 10.5vw, 2.5rem);
  }
}

/* ── Inner Pages ── */
.has-subnav {
  --header-height: var(--header-height-sub);
}

html:has(body.has-subnav) {
  scroll-padding-top: var(--header-height-sub);
}

.inner-page main {
  padding-top: var(--header-height);
  background: #0a0a0a;
}

.page-hero {
  padding: 5rem 2.5rem 3.5rem;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-wrap: balance;
  padding-bottom: 0.04em;
}

.page-hero--collection {
  padding-bottom: 2rem;
  border-bottom: none;
}

.page-hero--collection .page-hero__title {
  margin-bottom: 0;
}

.page-hero__desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  max-width: 52ch;
}

/* ── Collection Page (horizontal showcase) ── */
.collection-page main {
  background: #080808;
  color: var(--white);
  overflow-x: clip;
}

.coll-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height-sub));
  min-height: calc(100dvh - var(--header-height-sub));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.coll-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.coll-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.coll-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.coll-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  padding-bottom: 0.04em;
}

.coll-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  max-width: 42ch;
  font-family: var(--font-display);
  font-style: italic;
}

.coll-hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.coll-hero__scroll-line {
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

/* ── Collection Spirits — Vertical Scroll Layout ── */

.coll-spirits {
  position: relative;
  background: #080808;
}

.coll-spirits__list {
  position: relative;
}

/* Side dot navigation */
.coll-sidenav {
  position: fixed;
  right: clamp(1.25rem, 2.5vw, 2.25rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
}

.coll-sidenav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.coll-sidenav__dot {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.2rem 0;
  justify-content: flex-end;
}

.coll-sidenav__name {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
  white-space: nowrap;
  pointer-events: none;
}

.coll-sidenav__dot:hover .coll-sidenav__name,
.coll-sidenav__item.is-active .coll-sidenav__name {
  opacity: 1;
  transform: translateX(0);
}

.coll-sidenav__item.is-active .coll-sidenav__name {
  color: var(--amber-light);
}

.coll-sidenav__mark {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  transition: background 0.35s, border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  flex-shrink: 0;
}

.coll-sidenav__item.is-active .coll-sidenav__mark {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(211, 128, 53, 0.5);
}

.coll-sidenav__dot:hover .coll-sidenav__mark {
  border-color: var(--amber-light);
}

/* Panel */
.coll-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.042);
}

.coll-panel__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coll-panel__glow {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 50%;
  height: 55%;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.28;
}

.coll-panel--alt .coll-panel__glow {
  left: 10%;
  right: auto;
}

/* Large ghost number in background */
.coll-panel__ghost {
  position: absolute;
  bottom: -0.08em;
  right: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(14rem, 32vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.coll-panel--alt .coll-panel__ghost {
  right: auto;
  left: -0.04em;
}

/* Two-column grid */
.coll-panel__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "info visual";
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.coll-panel__info { grid-area: info; }
.coll-panel__visual { grid-area: visual; }

/* Alternate: flip columns */
.coll-panel--alt .coll-panel__layout {
  grid-template-areas: "visual info";
}

/* Meta row: number + line + category */
.coll-panel__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.coll-panel__num {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.22);
}

.coll-panel__divider-h {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.coll-panel__category {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.coll-panel__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 1.75rem;
}

.coll-panel__name-line {
  display: block;
}

.coll-panel__name-line--em {
  font-style: italic;
  color: var(--amber-light);
}

.coll-panel__desc {
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.82;
  max-width: 40ch;
  margin-bottom: 1.75rem;
}

.coll-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.coll-panel__tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  transition: border-color 0.3s, color 0.3s;
}

.coll-panel__tag:hover {
  border-color: rgba(211, 128, 53, 0.3);
  color: rgba(211, 128, 53, 0.8);
}

.coll-panel__cta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s, gap 0.35s var(--ease-expo);
  text-decoration: none;
}

.coll-panel__cta:hover {
  color: var(--amber-light);
  gap: 1.05rem;
}

.coll-panel__cta-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-expo);
}

.coll-panel__cta:hover .coll-panel__cta-arrow {
  transform: translateX(4px);
}

.coll-panel__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(420px, 58vh, 600px);
}

.coll-panel__bottle-glow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 32%;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.62;
  pointer-events: none;
}

.coll-panel__bottle {
  position: relative;
  z-index: 1;
  max-height: clamp(360px, 54vh, 540px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.7));
}

/* Mobile */
@media (max-width: 900px) {
  .coll-hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .coll-hero__scroll-cue {
    bottom: 1.75rem;
  }

  .coll-sidenav {
    display: none;
  }

  .coll-panel {
    min-height: auto;
    padding: 4rem 1.5rem 5rem;
  }

  .coll-panel__layout,
  .coll-panel--alt .coll-panel__layout {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "info";
    gap: 2rem;
  }

  .coll-panel__visual {
    min-height: clamp(280px, 68vw, 380px);
  }

  .coll-panel__bottle {
    max-height: min(65vw, 340px);
  }

  .coll-panel__ghost {
    font-size: clamp(8rem, 28vw, 16rem);
  }
}

/* ── Collection Showcase (editorial) ── */
.col-showcase {
  padding: 0 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.col-piece {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 3rem;
  align-items: end;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  transition: opacity 0.4s var(--ease-expo);
}

.col-piece:first-child {
  border-top: none;
  padding-top: 2rem;
}

.col-piece:hover .col-piece__bottle {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.8));
}

.col-piece__index {
  position: absolute;
  top: 5rem;
  left: 0;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.22);
}

.col-piece--flip .col-piece__index {
  left: auto;
  right: 0;
}

.col-piece--flip {
  grid-template-columns: minmax(280px, 340px) 1fr;
}

.col-piece--flip .col-piece__stage {
  order: 2;
}

.col-piece--flip .col-piece__meta {
  order: 1;
  text-align: right;
  align-items: flex-end;
}

.col-piece--flip .col-piece__watermark {
  left: auto;
  right: 50%;
  transform: translate(50%, -50%);
}

.col-piece__stage {
  position: relative;
  min-height: clamp(380px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  padding-bottom: 1.5rem;
}

.col-piece__watermark {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.5s var(--ease-expo);
  text-align: center;
}

.col-piece__watermark--long {
  font-size: clamp(3rem, 9vw, 7.5rem);
}

.col-piece__glow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 28%;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s var(--ease-expo);
}

.col-piece__glow--amber { background: radial-gradient(ellipse, rgba(211, 128, 53, 0.55) 0%, transparent 70%); }
.col-piece__glow--cool  { background: radial-gradient(ellipse, rgba(120, 170, 230, 0.42) 0%, transparent 70%); }
.col-piece__glow--warm  { background: radial-gradient(ellipse, rgba(190, 105, 40, 0.5) 0%, transparent 70%); }
.col-piece__glow--wine  { background: radial-gradient(ellipse, rgba(155, 40, 65, 0.48) 0%, transparent 70%); }
.col-piece__glow--saffron { background: radial-gradient(ellipse, rgba(180, 95, 45, 0.5) 0%, transparent 70%); }

.col-piece__bottle {
  position: relative;
  z-index: 2;
  height: auto;
  max-height: clamp(320px, 44vh, 480px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.7));
  transition: transform 0.6s var(--ease-expo), filter 0.6s var(--ease-expo);
}

.col-piece:hover .col-piece__watermark {
  color: rgba(255, 255, 255, 0.07);
}

.col-piece:hover .col-piece__glow {
  opacity: 0.9;
}

.col-piece__meta {
  display: flex;
  flex-direction: column;
  padding-bottom: 2.5rem;
}

.col-piece__type {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.col-piece__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.72;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}

.col-piece__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s, gap 0.35s var(--ease-expo);
}

.col-piece__link::after {
  content: '→';
}

.col-piece:hover .col-piece__link {
  color: var(--amber-light);
  gap: 0.8rem;
}

/* ── Craft Page (editorial chronicle) ── */
.craft-page main {
  background: #080808;
  overflow-x: clip;
}

.craft-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.craft-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.craft-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.craft-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 38%, rgba(0, 0, 0, 0.85) 100%);
}

.craft-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(5rem, 10vh, 8rem);
}

.craft-hero__rule {
  width: 72px;
  height: 1px;
  background: var(--amber);
  margin-bottom: 1.75rem;
  transform-origin: left center;
}

.craft-hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.craft-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.75rem;
  max-width: 11ch;
}

.craft-hero__title .reveal-line-wrap + .reveal-line-wrap {
  margin-top: -0.18em;
}

.craft-hero__title em {
  font-style: italic;
  color: var(--amber-light);
}

.craft-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 28ch;
  font-style: italic;
  font-family: var(--font-display);
}

.craft-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.craft-hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--amber), transparent);
}

.craft-manifesto {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}

.craft-manifesto__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 18rem);
  font-weight: 500;
  font-style: italic;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.craft-manifesto__quote {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  margin: 0 auto 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.18;
}

.craft-manifesto__note {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.85;
}

.craft-acts {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.craft-acts__pin {
  min-height: 100vh;
  min-height: 100dvh;
}

.craft-acts__layout {
  display: grid;
  grid-template-columns: minmax(280px, 34%) 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 7rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vh, 3rem);
  gap: clamp(2rem, 5vw, 4rem);
}

.craft-acts__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.craft-acts__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.craft-acts__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.02;
}

.craft-acts__steps {
  list-style: none;
  margin: clamp(2.5rem, 6vh, 4rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.craft-act-tab {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: default;
  transition: opacity 0.45s var(--ease-expo);
  opacity: 0.28;
}

.craft-act-tab.is-active {
  opacity: 1;
}

.craft-act-tab__num {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.45s var(--ease-expo);
}

.craft-act-tab.is-active .craft-act-tab__num {
  color: var(--amber);
}

.craft-act-tab__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  transform-origin: left center;
  transition: transform 0.55s var(--ease-expo), letter-spacing 0.55s var(--ease-expo);
}

.craft-act-tab.is-active .craft-act-tab__name {
  transform: scale(1.04);
  letter-spacing: 0.02em;
}

.craft-acts__meter {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.craft-acts__meter-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform-origin: left center;
  transition: width 0.15s linear;
}

.craft-acts__canvas {
  position: relative;
  min-height: clamp(420px, 72vh, 760px);
  align-self: center;
}

.craft-act-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 0;
}

.craft-act-panel.is-active {
  z-index: 1;
}

.craft-act-panel__ghost {
  position: absolute;
  top: -4%;
  right: -2%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.craft-act-panel__figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 1;
  overflow: hidden;
  mask-image: radial-gradient(ellipse 88% 92% at 58% 42%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 58% 42%, #000 55%, transparent 100%);
}

.craft-act-panel__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.craft-act-panel__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.15) 42%, transparent 68%);
}

.craft-act-panel__detail {
  position: relative;
  z-index: 2;
  max-width: 46ch;
  padding: 0 0 1.5rem 0.5rem;
}

.craft-act-panel__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.craft-act-panel__desc {
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.78;
}

.craft-measures {
  padding: clamp(4rem, 10vh, 6rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.craft-measures__list {
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem 1rem;
}

.craft-measures__item {
  flex: 1 1 140px;
  text-align: center;
}

.craft-measures__val {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.craft-measures__plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--amber);
  margin-left: 0.05em;
}

.craft-measures__key {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.65rem;
}

.craft-salon {
  position: relative;
  min-height: clamp(560px, 90vh, 960px);
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.craft-salon__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.craft-salon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.craft-salon__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.4) 45%, rgba(8, 8, 8, 0.55) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.7) 0%, transparent 55%);
}

.craft-salon__panel {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding-bottom: 2rem;
}

.craft-salon__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.craft-salon__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1.25rem;
}

.craft-salon__title em {
  font-style: italic;
  color: var(--amber-light);
}

.craft-salon__body {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 42ch;
}

.craft-salon__marks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.craft-salon__marks li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 1.5rem;
  position: relative;
}

.craft-salon__marks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  opacity: 0.7;
}

.craft-invite {
  padding: clamp(6rem, 14vh, 9rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.craft-invite__inner {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(211, 128, 53, 0.35);
}

.craft-invite__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.craft-invite__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.craft-invite__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.craft-invite__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.35rem;
  transition: color 0.35s var(--ease-expo), border-color 0.35s, gap 0.35s var(--ease-expo);
}

.craft-invite__link:hover {
  color: var(--amber-light);
  border-color: var(--amber);
  gap: 0.85rem;
}

.craft-invite__link::after {
  content: '→';
}

@media (max-width: 900px) {
  .craft-acts__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
  }

  .craft-acts__pin {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .craft-acts__aside {
    gap: 2rem;
  }

  .craft-acts__steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 1.5rem;
  }

  .craft-act-tab {
    grid-template-columns: auto auto;
    gap: 0.45rem;
    border-bottom: none;
    padding: 0;
    opacity: 0.35;
  }

  .craft-act-tab__name {
    font-size: 1rem;
  }

  .craft-act-tab.is-active .craft-act-tab__name {
    transform: none;
  }

  .craft-acts__meter {
    display: none;
  }

  .craft-acts__canvas {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
  }

  .craft-act-panel {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-height: clamp(380px, 62vh, 520px);
  }

  .craft-act-panel__figure {
    mask-image: radial-gradient(ellipse 96% 94% at 50% 40%, #000 58%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 96% 94% at 50% 40%, #000 58%, transparent 100%);
  }

  .craft-measures__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .craft-measures__list {
    grid-template-columns: 1fr;
  }

  .craft-hero__scroll {
    display: none;
  }
}

/* ── Connect Page ── */
.connect-page main {
  background: #080808;
  overflow-x: clip;
}

.connect-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.connect-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.connect-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.connect-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.connect-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vh, 6rem);
}

.connect-hero__rule {
  width: 72px;
  height: 1px;
  background: var(--amber);
  margin-bottom: 1.75rem;
}

.connect-hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.connect-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  max-width: 12ch;
}

.connect-hero__title .reveal-line-wrap + .reveal-line-wrap {
  margin-top: -0.18em;
}

.connect-hero__title em {
  font-style: italic;
  color: var(--amber-light);
}

.connect-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 40ch;
}

.connect-intro {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}

.connect-intro__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 16rem);
  font-weight: 500;
  font-style: italic;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

.connect-intro__text {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.connect-paths {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(4rem, 10vh, 6rem);
  display: flex;
  flex-direction: column;
}

.connect-path {
  display: grid;
  grid-template-columns: 3rem 1fr auto auto;
  align-items: baseline;
  gap: 1rem 2rem;
  padding: clamp(1.75rem, 3vh, 2.25rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: inherit;
  transition: padding-left 0.45s var(--ease-expo), color 0.35s;
}

.connect-path:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.connect-path:hover {
  padding-left: 0.75rem;
  color: var(--white);
}

.connect-path__num {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.35s;
}

.connect-path:hover .connect-path__num {
  color: var(--amber);
}

.connect-path__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
}

.connect-path__hint {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
}

.connect-path__arrow {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.35s, transform 0.45s var(--ease-expo);
}

.connect-path:hover .connect-path__arrow {
  color: var(--amber);
  transform: translateX(6px);
}

.connect-reach {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(3rem, 8vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.5rem, 4vw, 3rem) clamp(6rem, 14vh, 9rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.connect-reach__label,
.connect-form__label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.connect-reach__title,
.connect-form__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.connect-reach__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.connect-reach__list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.connect-reach__key {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.connect-reach__val {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

a.connect-reach__val:hover {
  color: var(--amber-light);
}

.connect-reach__social {
  display: flex;
  gap: 1.75rem;
}

.connect-reach__social-note {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  max-width: 28ch;
  line-height: 1.6;
}

.connect-reach__social-link {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.2rem;
  transition: color 0.35s, border-color 0.35s;
}

.connect-reach__social-link:hover {
  color: var(--amber-light);
  border-color: var(--amber);
}

.connect-form__field {
  margin-bottom: 1.75rem;
}

.connect-form__field label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.55rem;
}

.connect-form__field input,
.connect-form__field select,
.connect-form__field textarea {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.65rem 0;
  outline: none;
  transition: border-color 0.35s;
  border-radius: 0;
  appearance: none;
}

.connect-form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d38035' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.connect-form__field input:focus,
.connect-form__field select:focus,
.connect-form__field textarea:focus {
  border-bottom-color: var(--amber);
}

.connect-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.connect-form__submit {
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  border: 1px solid var(--amber);
  padding: 1rem 2.25rem;
  cursor: pointer;
  transition: background 0.35s var(--ease-expo), border-color 0.35s;
}

.connect-form__submit:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.connect-form__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--amber-light);
  min-height: 1.25em;
}

@media (max-width: 900px) {
  .connect-path {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }

  .connect-path__hint {
    grid-column: 2;
    text-align: left;
  }

  .connect-path__arrow {
    display: none;
  }

  .connect-reach {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 520px) {
  .connect-hero {
    min-height: 62vh;
  }

  .connect-reach__layout {
    gap: 2.5rem;
  }

  .connect-form {
    width: 100%;
    max-width: 100%;
  }

  .connect-form__field input,
  .connect-form__field select,
  .connect-form__field textarea {
    font-size: 16px;
  }
}

/* ── Product Detail Page ── */
.product-page main {
  background: #080808;
  color: var(--white);
}

.product-hero {
  padding: 4rem 2.5rem 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-hero__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-hero__visual img {
  height: 460px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.7));
  position: relative;
  z-index: 1;
}

.product-hero__glow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 35%;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.7;
  pointer-events: none;
}

.product-hero__glow--amber { background: radial-gradient(ellipse, rgba(211, 128, 53, 0.6) 0%, transparent 70%); }
.product-hero__glow--cool  { background: radial-gradient(ellipse, rgba(120, 170, 230, 0.45) 0%, transparent 70%); }
.product-hero__glow--warm  { background: radial-gradient(ellipse, rgba(190, 105, 40, 0.55) 0%, transparent 70%); }
.product-hero__glow--wine  { background: radial-gradient(ellipse, rgba(155, 40, 65, 0.5) 0%, transparent 70%); }
.product-hero__glow--saffron { background: radial-gradient(ellipse, rgba(180, 95, 45, 0.52) 0%, transparent 70%); }

.product-hero__content {
  max-width: 34rem;
}

.product-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.product-hero__tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.product-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s, background 0.35s, border-color 0.35s, color 0.35s;
}

.product-hero__btn--primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 55%, var(--amber-glow) 100%);
}

.product-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(211, 128, 53, 0.35);
}

.product-hero__btn--ghost {
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.product-hero__btn--ghost:hover {
  border-color: rgba(211, 128, 53, 0.45);
  color: var(--amber-light);
}

.product-hero__type {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.product-hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.product-hero__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.75rem;
}

.product-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 46ch;
}

.product-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap 0.3s var(--ease-expo);
}

.product-hero__back:hover {
  gap: 0.75rem;
}

.product-hero__back::before {
  content: '←';
}

.product-notes {
  padding: 4rem 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

.product-notes__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2rem;
}

.product-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-notes__item {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.product-notes__item:last-child {
  border-right: none;
}

.product-notes__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.65rem;
}

.product-notes__value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white);
  line-height: 1.35;
}

.product-related {
  padding: 0 2.5rem 6rem;
  max-width: 1320px;
  margin: 0 auto;
}

.product-related__heading {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-related__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: border-color 0.35s var(--ease-expo), background 0.35s;
}

.product-related__card:hover {
  border-color: rgba(211, 128, 53, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.product-related__card img {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.product-related__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.product-related__type {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 900px) {
  .page-hero,
  .col-showcase,
  .product-hero,
  .product-notes,
  .product-related {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .col-piece,
  .col-piece--flip {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 0;
  }

  .col-piece__index,
  .col-piece--flip .col-piece__index {
    top: 3.5rem;
    left: 0;
    right: auto;
  }

  .col-piece--flip .col-piece__stage,
  .col-piece--flip .col-piece__meta {
    order: unset;
    text-align: left;
    align-items: flex-start;
  }

  .col-piece__stage {
    min-height: clamp(300px, 72vw, 380px);
    padding-bottom: 1.25rem;
  }

  .col-piece__bottle {
    max-height: min(72vw, 340px);
  }

  .col-piece__watermark {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .col-piece__meta {
    padding-bottom: 0;
  }

  .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-hero__visual {
    min-height: 360px;
  }

  .product-hero__visual img {
    height: 340px;
  }

  .product-notes__grid {
    grid-template-columns: 1fr;
  }

  .product-notes__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .product-notes__item:last-child {
    border-bottom: none;
  }

  .product-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .coll-panel__name {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .coll-panel__cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .col-piece__stage {
    min-height: clamp(260px, 68vw, 320px);
    padding-bottom: 1rem;
  }

  .col-piece__bottle {
    max-height: min(68vw, 300px);
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
  }

  .collection__card,
  .collection__visual img,
  .collection__glow,
  .collection__progress-bar,
  .philosophy__stat {
    transition: none;
  }

  .categories__item {
    transition: none;
  }

  .col-piece__bottle,
  .col-piece__glow,
  .col-piece__watermark,
  .product-related__card {
    transition: none;
  }
}

/* ══ Homepage refinements ══ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), rgba(211,128,53,0.45));
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(211,128,53,0.45);
}

/* Marquee strip */
.hp-marquee {
  position: relative;
  overflow: hidden;
  background: #080808;
  border-top: 1px solid rgba(211, 128, 53, 0.18);
  border-bottom: 1px solid rgba(211, 128, 53, 0.18);
  padding: 1.1rem 0;
  box-shadow:
    inset clamp(48px, 10vw, 120px) 0 clamp(32px, 6vw, 72px) clamp(-24px, -4vw, -48px) #080808,
    inset clamp(-48px, -10vw, -120px) 0 clamp(32px, 6vw, 72px) clamp(-24px, -4vw, -48px) #080808;
}

.hp-marquee::before,
.hp-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(72px, 14vw, 160px);
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hp-marquee::before {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
}

.hp-marquee::after {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
}

.hp-marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 38s linear infinite;
  will-change: transform;
}

.hp-marquee__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  padding-right: 2rem;
  white-space: nowrap;
}

/* Small-caps category label */
.hp-marquee__cat {
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 500;
}

/* Italic Bodoni spirit name */
.hp-marquee__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--amber-light);
  line-height: 1;
  padding: 0 0.15rem;
}

/* Diamond separator */
.hp-marquee__gem {
  color: rgba(211, 128, 53, 0.35);
  font-size: 0.45rem;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes marqueeMove {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.hp-marquee:hover .hp-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .hp-marquee__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
  .hp-marquee__group:last-child {
    display: none;
  }
}

/* Hero: stack buttons on small screens */
@media (max-width: 480px) {
  .hero__content {
    padding: 0 1.25rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero__btn {
    justify-content: center;
    text-align: center;
  }
  .hero__eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.22em;
  }

  .product-hero__visual {
    min-height: 280px;
  }

  .product-hero__visual img {
    height: 260px;
  }
}

/* Collection cards: slightly wider on small mobile */
@media (max-width: 600px) {
  .collection__card {
    flex: 0 0 min(100%, calc(100% - 1rem));
  }
  .collection__visual {
    min-height: 280px;
  }
  .collection__visual img {
    max-height: 280px;
  }
}

/* Philosophy stat numbers: slightly larger on mobile so they feel impactful */
@media (max-width: 600px) {
  .philosophy__stat-num {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .philosophy__stat {
    padding: 1.25rem 1rem;
  }
}

/* Craft section: ensure min height on mobile */
@media (max-width: 600px) {
  .craft {
    min-height: 80vh;
  }
  .craft__heading {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
