/* ═══════════════════════════════════════════════
   THE BETTER CONCEPT — ULTRA LUXURY CSS v2
   ═══════════════════════════════════════════════ */

:root {
  --cream: #f8f5ed;
  --cream-deep: rgba(255,255,255,0.88);
  --cream-darker: rgba(255,255,255,0.72);
  --bg: #e9eadf;
  --text: #182118;
  --muted: #5f5f5f;
  --muted-light: #7f7f7f;
  --accent: #2f5d3a;
  --accent-light: rgba(0,0,0,0.10);
  --gold: #5f5f5f;
  --gold-light: rgba(0,0,0,0.10);
  --dark: #050505;
  --line: rgba(0,0,0,0.12);
  --line-strong: rgba(0,0,0,0.22);
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.16);
  --shadow: 0 24px 64px rgba(0,0,0,0.22);
  --shadow-lg: 0 48px 120px rgba(0,0,0,0.30);
  --radius: 24px;
  --radius-sm: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

[id] { scroll-margin-top: 104px; }

body {
  color: var(--text);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,255,255,0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 10%, rgba(255,255,255,0.12) 0%, transparent 34%),
    linear-gradient(180deg, #d1d1d1 0%, #cdcdcd 55%, #c7c7c7 100%);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.8; }

/* ─── AMBIENT LAYERS ─── */
.ambient-wrap {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}
.ambient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.38;
  animation: orbFloat 20s ease-in-out infinite;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.orb-1 {
  width: 700px; height: 700px; top: -250px; left: -250px;
  background: radial-gradient(circle, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px; top: 35%; right: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
  animation-delay: -7s;
}
.orb-3 {
  width: 450px; height: 450px; bottom: 10%; left: 18%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  animation-delay: -14s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(25px,-18px) scale(1.04); }
  66% { transform: translate(-18px,12px) scale(0.97); }
}

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

/* ─── CURSOR ─── */
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,0,0,0.28);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 280ms ease, height 280ms ease, border-color 280ms ease, background 280ms ease;
  mix-blend-mode: multiply;
}
.cursor-ring.is-link {
  width: 56px; height: 56px;
  border-color: rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.04);
}
.cursor-ring.is-view {
  width: 80px; height: 80px;
  border-color: rgba(0,0,0,0.22);
  background: rgba(0,0,0,0.03);
}
.cursor-ring.is-drag {
  width: 64px; height: 64px;
  border-color: rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.03);
}
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}

/* ─── LAYOUT ─── */
.site-header, .section, .site-footer, .marquee-wrap {
  position: relative; z-index: 2;
}
.section {
  width: min(1440px, calc(100vw - 48px));
  margin-inline: auto; padding: 80px 0;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, .brand { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 0.9; }
.kicker {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
}

/* heading-in animation */
h2 {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0s;
}
h2.heading-in {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 900ms cubic-bezier(0.77, 0, 0.175, 1);
}

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  width: min(1480px, calc(100vw - 32px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 24px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(248,245,237,0.62);
  border: 1px solid rgba(24,33,24,0.10);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  backdrop-filter: blur(10px) saturate(1.1);
}
.site-header > * { position: relative; z-index: 1; }
.site-header.scrolled {
  background: rgba(248,245,237,0.88);
  border-color: rgba(24,33,24,0.16);
  box-shadow: 0 8px 32px rgba(24,33,24,0.12);
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(18,18,18,0.92);
  box-shadow: 0 16px 36px rgba(0,0,0,0.34);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease, background 220ms ease;
  z-index: 80;
  cursor: pointer;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: rgba(255,255,255,0.92);
  color: var(--dark);
}

.brand {
  font-size: 0.98rem; font-weight: 600; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px;
  transition: opacity 320ms ease;
}
.brand-sep { color: var(--gold); font-size: 0.6rem; animation: starSpin 8s linear infinite; }
@keyframes starSpin { to { transform: rotate(360deg); } }
.brand-maison { color: var(--text); }
.brand-aurelia { color: var(--accent); font-style: italic; }
.site-header .brand-maison,
.site-header .brand-aurelia,
.site-header .site-nav a {
  color: var(--text);
}

.header-center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.84);
  transition: opacity 320ms ease, transform 320ms ease;
  white-space: nowrap;
}
.header-mark-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(0.98rem, 1.7vw, 1.45rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.035em;
  color: var(--text);
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.42),
    0 6px 14px rgba(24,33,24,0.12);
}

.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  position: relative; display: inline-block;
  opacity: 0; animation: navFadeIn 600ms ease forwards;
}
.site-nav { transition: opacity 320ms ease; }
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 280ms ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }

/* ─── HERO ─── */
.hero {
  min-height: auto; display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 0; padding-top: 0;
  position: relative;
  isolation: isolate;
}

.hero-eyebrow { display: none; align-items: center; gap: 16px; }
.eyebrow-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
  animation: eyebrowExpand 1.2s cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
  transform-origin: left;
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--line-strong), transparent);
  transform-origin: right;
}
@keyframes eyebrowExpand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-title-block {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
  text-align: center;
}
.hero-wordmark {
  position: relative;
  width: min(92vw, 1480px);
  margin-inline: auto;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 220ms ease;
}
.hero-wordmark.is-docked {
  opacity: 0 !important;
  visibility: hidden;
}
.hero-h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(2.8rem, 8.6vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.035em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: #171717;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255,255,255,0.34),
    0 8px 18px rgba(0,0,0,0.10),
    0 -1px 0 rgba(255,255,255,0.24);
}
.h1-sign-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.concept-o {
  position: relative;
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin: 0 0.015em;
  border: 0.14em solid currentColor;
  border-radius: 50%;
  transform: translateY(0.055em);
}
.h1-word { color: var(--text); }
.h1-serif { font-style: italic; color: var(--accent); }

/* Character split animation */
.char {
  display: inline-block;
  opacity: 0; transform: translateY(60px) rotateX(-40deg);
  animation: charIn 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--ci) * 50ms + 100ms);
}
@keyframes charIn {
  to { opacity: 1; transform: none; }
}

.hero-tagline {
  display: none;
  margin-top: 12px; font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp 600ms ease 800ms both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Product showcase */
.product-showcase {
  display: grid;
  gap: 22px;
}

.showcase-section {
  padding-top: 10px;
}

.hero-centerpiece,
.showcase-centerpiece {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  min-height: 500px; z-index: 6;
  margin-top: 0;
  padding-top: 0;
  perspective: 1600px;
}

.hero-centerpiece {
  opacity: 0; animation: fadeUp 800ms ease 400ms both;
}

.hero-cups-label,
.showcase-label {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.961);
  white-space: nowrap;
  pointer-events: none;
}

.bag-slider {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  justify-items: center;
}

.bag-slider-viewport {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  padding: 42px 0 66px;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.bag-slider-track {
  display: flex;
  align-items: end;
  gap: 36px;
  width: max-content;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.bag-slider-track.is-dragging {
  transition: none !important;
}

.bag-slide {
  width: clamp(220px, 30vw, 280px);
  flex: 0 0 clamp(220px, 30vw, 280px);
  display: grid;
  gap: 16px;
  justify-items: center;
  opacity: 0.42;
  filter: saturate(0.82) brightness(0.96);
  transform-origin: center bottom;
  transform: perspective(1200px) rotateY(0deg) scale(0.82) translateY(22px);
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    filter 420ms ease;
  cursor: pointer;
}

.bag-slide.is-prev {
  opacity: 0.58;
  filter: saturate(0.9) brightness(0.98);
  transform: perspective(1200px) rotateY(26deg) scale(0.88) translateY(14px);
}

.bag-slide.is-next {
  opacity: 0.58;
  filter: saturate(0.9) brightness(0.98);
  transform: perspective(1200px) rotateY(-26deg) scale(0.88) translateY(14px);
}

.bag-slide.is-active {
  opacity: 1;
  filter: none;
  transform: perspective(1200px) rotateY(0deg) scale(1.03) translateY(-4px);
}

.bag-slide-copy {
  display: grid;
  gap: 4px;
  text-align: center;
}

.bag-slide-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.bag-slide-copy h3 {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.bag-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bag-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(95,114,136,0.22);
  transition: width 260ms ease, background 260ms ease, transform 260ms ease;
  cursor: pointer;
}

.bag-dot.is-active {
  width: 26px;
  background: var(--accent);
  transform: scale(1.02);
}

.bag-glow-ring {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 42%, transparent 68%);
  filter: blur(28px);
  animation: glowPulse 4s ease-in-out infinite;
}
/* Second ring orbit */
.bag-glow-ring::after {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  animation: ringOrbit 6s linear infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes ringOrbit {
  from { transform: rotate(0deg) scaleX(1.2); }
  to { transform: rotate(360deg) scaleX(1.2); }
}

.bag-photo-shell {
  position: relative;
  width: 100%;
  height: clamp(330px, 48vh, 400px);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.28), 0 8px 24px rgba(0,0,0,0.16);
  cursor: none;
  transition: box-shadow 400ms ease;
}
.bag-photo-shell:hover { box-shadow: 0 60px 140px rgba(0,0,0,0.36); }
.bag-photo-secondary { object-position: center 55%; }
.bag-photo-midnight { object-position: center 54%; }
.bag-texture-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(123, 160, 92, 0.34), transparent 28%),
    radial-gradient(circle at 70% 34%, rgba(246, 208, 128, 0.32), transparent 26%),
    radial-gradient(circle at 48% 76%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, rgba(245,248,238,0.72), rgba(222,229,205,0.48));
  opacity: 0.55;
  transform: scale(1.1);
}
.bag-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05);
  transition: transform 600ms ease;
  z-index: 1;
}
.bag-photo-purple {
  filter: saturate(0.82) hue-rotate(138deg) brightness(0.98);
}
.bag-reflection {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
  z-index: 4;
}

.bag-shadow-cast {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.24) 0%, transparent 70%);
  filter: blur(14px);
  animation: shadowBreath 4s ease-in-out infinite;
}
.bag-slider-shadow {
  width: 340px;
  bottom: 44px;
  left: 50%;
  opacity: 0.72;
}
@keyframes shadowBreath {
  0%,100% { transform: translateX(-50%) scaleX(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scaleX(1.12); opacity: 1; }
}

/* Cup story */
.cup-story {
  --story-bg: #f3efe7;
  --story-ink: #1d1712;
  margin-top: 20px;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  height: clamp(700px, 92svh, 820px);
  min-height: 0;
  gap: 0;
  border-radius: var(--radius);
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  background: var(--story-bg);
  color: var(--story-ink);
  transition: background 560ms cubic-bezier(0.22, 1, 0.36, 1), color 560ms ease, box-shadow 360ms ease;
}
.cup-story-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: auto;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--story-ink);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease;
}
.cup-story-arrow:disabled {
  opacity: 0.22;
  cursor: default;
}
.cup-story-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}
.cup-story-arrow:disabled:hover {
  opacity: 0.22;
  transform: translateY(-50%);
}
.cup-story-arrow-left { left: -42px; }
.cup-story-arrow-right { right: -42px; }
.cup-story-visual {
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
}
.cup-story-frame {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}
.cup-story-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: filter 420ms ease;
}
.cup-story-image.bag-photo-purple {
  filter: saturate(0.82) hue-rotate(138deg) brightness(0.98);
}
.cup-story-image.bag-photo-midnight {
  filter: saturate(0.18) brightness(0.78) contrast(1.08);
}
.cup-story-copy {
  padding: 22px 28px;
  display: grid;
  align-content: center;
  gap: 10px;
}
.cup-story-copy .kicker,
.cup-story-label {
  color: color-mix(in srgb, var(--story-ink) 62%, white 38%);
}
.cup-story-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 0.94;
  color: var(--story-ink);
  margin: 0;
}
.cup-story-text {
  font-size: 0.86rem;
  line-height: 1.62;
  max-width: 46ch;
}
.cup-story-meta {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cup-story-meta > div {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--story-ink) 18%, white 82%);
}
.cup-story-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cup-story-meta p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--line);
}
.scroll-hint {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  display: inline-block; width: 40px; height: 1px; background: var(--muted-light);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { width: 40px; opacity: 0.5; }
  50% { width: 68px; opacity: 1; }
}
.hero-cta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); transition: gap 300ms ease;
}
.hero-cta:hover { gap: 18px; }

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
}
.marquee-track {
  display: flex; gap: 32px; width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.marquee-track:hover { animation-play-state: paused; }
.sep { color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── INTRO STATEMENT ─── */
.intro-statement { text-align: center; padding: 100px 0; }
.intro-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 30%, var(--line-strong) 70%, transparent);
  margin: 32px 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-statement.in-view .intro-rule { transform: scaleX(1); }
.intro-body { padding: 16px 0; }
.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400; line-height: 1.12; color: var(--text);
  max-width: 1000px; margin: 20px auto 0;
  display: flex; flex-wrap: wrap; gap: 0.22em; justify-content: center;
}
.italic-word { font-style: italic; color: var(--accent); }
.word-reveal {
  display: inline-block; opacity: 0; transform: translateY(24px) rotate(-1deg);
  transition: opacity 500ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--wi) * 65ms + 200ms);
}
.intro-statement.in-view .word-reveal { opacity: 1; transform: none; }

/* ─── EDITORIAL GRID ─── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-template-rows: auto auto; gap: 16px;
}
.editorial-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); background: rgba(255,255,255,0.10);
  min-height: 300px; cursor: none;
  transition: box-shadow 360ms ease;
}
.editorial-card:hover { box-shadow: var(--shadow-lg); }
.editorial-card img { transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.editorial-card:not(.quote):hover img { transform: scale(1.06) !important; }
.editorial-card.large { grid-row: span 2; min-height: 640px; }
.editorial-card.tall { grid-row: span 2; min-height: 640px; }
.editorial-card.quote {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; min-height: 300px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.94), rgba(230,230,230,0.88)),
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 50%);
}
.quote-deco {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: 0.4; margin-bottom: -16px;
  animation: quoteDrift 6s ease-in-out infinite;
}
@keyframes quoteDrift {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(0deg); }
}
.editorial-card.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem); line-height: 1.05; color: var(--dark);
}
.caption {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark);
  backdrop-filter: blur(8px);
  transform: translateY(-4px); opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.editorial-card:hover .caption { transform: translateY(0); opacity: 1; }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.26) 0%, transparent 55%);
  opacity: 0; transition: opacity 360ms ease; pointer-events: none;
}
.editorial-card:hover .card-overlay, .feature-image:hover .card-overlay,
.campaign-images figure:hover .card-overlay { opacity: 1; }

/* ─── DUAL LINKS ─── */
.dual-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dual-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); cursor: none;
  transition: box-shadow 360ms ease;
}
.dual-card:hover { box-shadow: var(--shadow-lg); }
.dual-card-inner {
  position: relative; z-index: 2;
  display: grid; gap: 16px; padding: 36px; flex: 1;
  align-content: space-between;
}
.dual-card h3 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 0.88; color: var(--dark);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 700ms cubic-bezier(0.77, 0, 0.175, 1), color 220ms ease;
}
.dual-card.in-view h3 { clip-path: inset(0 0% 0 0); }
.dual-card:hover h3 { color: var(--accent); }
.dual-card p { color: #5f7288; font-size: 0.85rem; line-height: 1.8; }
.dual-arrow {
  font-size: 1.4rem; color: var(--accent); display: inline-block;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.dual-card:hover .dual-arrow { transform: translateX(10px); }
.dual-card-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.94), rgba(230,230,230,0.86)),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 50%);
  transition: background 300ms ease;
}

/* ─── FEATURE SHOWCASE ─── */
.feature-showcase { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; align-items: start; }
.feature-copy h2 { font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: 1; margin: 16px 0 20px; }
.feature-copy h2 em { font-style: italic; color: var(--accent); }
.feature-copy p { color: var(--muted); font-size: 0.88rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  transition: gap 300ms ease;
}
.text-link:hover { gap: 16px; }
.feature-visuals { display: grid; grid-template-columns: 1fr 0.75fr; gap: 16px; }
.feature-image {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: rgba(255,255,255,0.10); min-height: 540px;
  position: relative; cursor: none;
  transition: box-shadow 360ms ease;
}
.feature-image:hover { box-shadow: var(--shadow-lg); }
.feature-image img { transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.feature-image.offset { min-height: 380px; margin-top: 120px; }

/* ─── COLLECTION ─── */
.section-heading { text-align: center; margin-bottom: 48px; }
.collection-band .section-heading .kicker { font-size: 1.3rem; }
.section-heading h2 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-style: italic; color: var(--text); margin-top: 10px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1040px, 100%);
  margin: 0 auto 48px;
}

.collection-card {
  position: relative; overflow: hidden;
  padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.94), rgba(230,230,230,0.86)),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 45%);
  min-height: 280px; display: flex; flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: box-shadow 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-card:hover {
  box-shadow: var(--shadow);
}
.collection-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: var(--card-image);
  background-size: cover;
  background-position: center right;
  opacity: 0.42;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1);
  transform-origin: center;
  transition: opacity 300ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-card:hover::after {
  opacity: 0.58;
  transform: scale(1.16);
}

/* Mouse glare effect */
.collection-card::before, .dual-card::before, .visit-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(circle 160px at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.28) 0%, transparent 70%);
  opacity: 0; transition: opacity 300ms ease;
}
.collection-card.shining::before, .dual-card.shining::before, .visit-card.shining::before { opacity: 1; }

.cc-number {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--gold);
  opacity: 0; transform: translateX(-20px);
  transition: opacity 500ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-content {
  position: relative;
  z-index: 1;
}
.cc-number.count-in { opacity: 0.5; transform: none; }
.cc-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--dark); margin-bottom: 10px;
  transition: color 220ms ease;
}
.collection-card:hover h3 { color: var(--accent); }
.cc-content p { font-size: 0.84rem; color: #263241; line-height: 1.75; }
.cc-notes { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.cc-notes span {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #161616; padding: 5px 12px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.34); border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}
.collection-card:hover .cc-notes span {
  background: rgba(255,255,255,0.74);
  color: #111;
  border-color: rgba(0,0,0,0.42);
}
.cc-hover-line {
  position: absolute; bottom: 0; left: 0; z-index: 3; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-card:hover .cc-hover-line { width: 100%; }

/* Ripple */
.ripple {
  position: absolute; width: 4px; height: 4px;
  border-radius: 50%; pointer-events: none;
  background: rgba(0,0,0,0.16);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 700ms ease-out forwards;
}
@keyframes rippleOut {
  to { transform: translate(-50%, -50%) scale(80); opacity: 0; }
}

/* Bag feature row */
.bag-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  padding: 56px 0; border-top: 1px solid var(--line);
}
.bag-feature-copy h3 { font-size: clamp(2.4rem, 4.5vw, 4rem); margin: 14px 0 16px; }
.bag-feature-copy h3 em { font-style: italic; color: var(--accent); }
.bag-feature-copy p { color: var(--muted); font-size: 0.86rem; }
.bag-feature-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center; min-height: 480px;
}
.bag-feature-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 68%);
  filter: blur(40px); animation: glowPulse 4s ease-in-out infinite;
}
.bag-feature-shell {
  position: relative; width: min(200px, 52vw); height: min(360px, 52vh);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.28);
  cursor: none; transition: box-shadow 400ms ease;
}
.bag-feature-shell:hover { box-shadow: 0 60px 140px rgba(0,0,0,0.36); }

/* ─── CAMPAIGN ─── */
.campaign-strip { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 20px; align-items: center; }
.campaign-copy h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); margin: 12px 0 16px; line-height: 0.95; }
.campaign-copy p { color: var(--muted); font-size: 0.86rem; }
.campaign-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.campaign-images figure {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: rgba(255,255,255,0.10); min-height: 380px; margin: 0;
  position: relative; cursor: none;
  transition: box-shadow 360ms ease;
}
.campaign-images figure:hover { box-shadow: var(--shadow-lg); }
.campaign-images figure img { transition: transform 700ms ease; }

/* ─── FIND US ─── */
.find-us {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: 28px;
  align-items: center;
}
.find-us-copy {
  text-align: left;
  justify-self: start;
}
.find-us-copy h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin: 12px 0 16px;
  color: var(--text);
}
.find-us-copy .kicker {
  color: #202020;
  font-weight: 500;
}
.find-us-copy p {
  max-width: 420px;
  margin-right: auto;
  color: #252525;
  font-weight: 400;
  font-size: 0.86rem;
}
.find-us-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  grid-template-areas: "locations map";
  gap: 16px;
  align-items: stretch;
  justify-self: start;
  width: 100%;
}
.find-us-map {
  grid-area: map;
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.14);
  cursor: none;
  isolation: isolate;
}
.find-us-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: inherit;
  pointer-events: none;
}
.find-us-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  pointer-events: none;
  transform-origin: center;
}
.find-us-map.is-popping iframe {
  animation: mapPop 520ms cubic-bezier(0.18, 1.25, 0.36, 1) both;
}
@keyframes mapPop {
  0% {
    opacity: 0.15;
    transform: scale(0.9) translateY(18px);
    filter: blur(8px);
  }
  58% {
    opacity: 1;
    transform: scale(1.035) translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
.find-us-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.find-us-map-cta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 11px 16px 10px;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.find-us-locations {
  grid-area: locations;
  display: grid;
  gap: 12px;
  align-content: stretch;
}
.find-us-location {
  width: 100%;
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.78), rgba(224,224,224,0.72)),
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 50%);
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: none;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.find-us-location span {
  display: block;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1;
}
.find-us-location small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}
.find-us-location:hover,
.find-us-location.is-active {
  transform: translateX(6px);
  border-color: var(--line-strong);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.96), rgba(238,238,238,0.88)),
    radial-gradient(circle at top right, rgba(0,0,0,0.05), transparent 48%);
  box-shadow: var(--shadow);
}
.find-us-location.is-active small { color: var(--accent); }

/* ─── PARTNERS ─── */
.partners { text-align: center; }
.partners .kicker { margin-bottom: 32px; display: block; }
.partner-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.partner-row span {
  padding: 12px 22px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,0.10); color: var(--muted);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(16px) scale(0.92);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, opacity 220ms ease;
  cursor: none;
}
.partner-row span.wave-in { opacity: 1; transform: none; }
.partner-row span:hover {
  background: rgba(255,255,255,0.18); border-color: var(--accent);
  color: var(--accent); transform: translateY(-3px) scale(1.04);
}

/* ─── VISIT ─── */
.social-visit { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 20px; align-items: start; }
.visit-copy h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); margin: 12px 0 16px; }
.visit-copy p { color: var(--muted); font-size: 0.86rem; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.visit-card {
  padding: 28px; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.94), rgba(230,230,230,0.86)),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 45%);
  min-height: 220px; display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden; cursor: none;
  transition: box-shadow 360ms ease;
}
.visit-card:hover { box-shadow: var(--shadow); }
.vc-icon {
  font-size: 1.4rem; color: var(--gold); line-height: 1;
  display: inline-block; animation: iconSpin 8s linear infinite;
}
@keyframes iconSpin {
  0%,100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}
.vc-platform { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.visit-card p { color: #5f7288; font-size: 0.84rem; margin: 0; margin-top: auto; }

/* ─── FOOTER ─── */
.site-footer {
  width: min(1440px, calc(100vw - 48px));
  margin-inline: auto; padding: 64px 0 48px;
  border-top: 1px solid var(--line); position: relative; z-index: 2;
}
.footer-brand { margin-bottom: 48px; }
.footer-brand .brand { font-size: 1.3rem; margin-bottom: 8px; }
.footer-brand span { font-size: 0.78rem; color: var(--muted); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.footer-cols > div { display: grid; gap: 10px; align-content: start; }
.footer-cols p { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.footer-cols a, .footer-cols span { font-size: 0.8rem; color: var(--muted); transition: color 200ms ease, transform 200ms ease; display: inline-block; }
.footer-cols a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light);
  padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-sep { color: var(--gold); animation: starSpin 6s linear infinite; }

/* ─── REVEALS ─── */
.reveal-fade {
  opacity: 0;
  transition: opacity 700ms ease var(--d, 0ms);
}
.reveal-up {
  opacity: 0; transform: translateY(36px) scale(0.992);
  transition: opacity 600ms ease var(--d, 0ms), transform 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
.reveal-scale {
  opacity: 0; transform: scale(0.93);
  transition: opacity 700ms ease var(--d, 0ms), transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 600ms ease var(--d, 0ms), transform 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 600ms ease var(--d, 0ms), transform 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
.reveal-fade.in-view, .reveal-up.in-view, .reveal-scale.in-view,
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: none; }
/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .site-header { gap: 14px; padding: 12px 18px; }
  .brand { font-size: 0.9rem; gap: 6px; }
  .site-nav { gap: 20px; }
  .hero-panels, .feature-showcase, .campaign-strip, .social-visit, .bag-feature, .find-us { grid-template-columns: 1fr; }
  .feature-visuals, .campaign-images, .dual-links { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-card.large, .editorial-card.tall { grid-row: span 1; min-height: 460px; }
  .feature-image.offset { margin-top: 0; min-height: 460px; }
}

@media (max-width: 720px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }
  body { touch-action: pan-y pinch-zoom; }
  .section { width: min(100vw - 24px, 1440px); padding: 56px 0; }
  .site-header {
    position: fixed;
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    margin-inline: 0;
    padding: 11px 14px;
    gap: 10px;
    flex-wrap: nowrap;
    border-radius: 20px;
    background: rgba(10,10,10,0.92);
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0,0,0,0.24);
  }
  main { padding-top: 96px; overflow-x: hidden; }
  .brand { display: none; }
  .site-nav a { animation: none; opacity: 1; }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .site-header .site-nav a {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
    color: var(--cream);
  }
  .back-to-top {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .hero-h1 {
    font-size: clamp(1.45rem, 7.5vw, 2.45rem);
  }
  .hero-wordmark { width: min(96vw, 760px); }
  .h1-sign-text { padding-inline: 0.12em; }
  .hero-panels, .feature-visuals, .campaign-images, .dual-links,
  .collection-grid, .visit-grid, .footer-cols, .editorial-grid { grid-template-columns: 1fr; }
  .find-us-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "locations"
      "map";
  }
  .find-us-map { min-height: 300px; border-radius: 20px; }
  .find-us-locations { grid-template-columns: 1fr; }
  .find-us-location {
    min-height: 104px;
    padding: 18px;
  }
  .find-us-location:hover,
  .find-us-location.is-active {
    transform: translateY(-3px);
  }
  .hero-title-block { min-height: calc(100svh - 96px); }
  .hero-centerpiece,
  .showcase-centerpiece { min-height: 380px; margin-top: 0; padding-top: 28px; }
  .hero-cups-label,
  .showcase-label {
    top: -26px;
    font-size: 1.45rem;
    letter-spacing: 0.14em;
  }
  .bag-slider { width: 100%; }
  .bag-slider-viewport { width: 100%; padding: 34px 0 54px; }
  .bag-slider-track { gap: 22px; }
  .bag-slide, .bag-slide.is-prev, .bag-slide.is-next, .bag-slide.is-active {
    width: min(198px, 52vw);
    flex-basis: min(198px, 52vw);
  }
  .bag-slide.is-prev { transform: perspective(1200px) rotateY(18deg) scale(0.86) translateY(18px); }
  .bag-slide.is-next { transform: perspective(1200px) rotateY(-18deg) scale(0.86) translateY(18px); }
  .bag-slide.is-active { transform: perspective(1200px) rotateY(0deg) scale(1) translateY(0); }
  .bag-photo-shell { height: min(300px, 46vh); }
  .bag-slide-copy h3 { font-size: 1.15rem; }
  .bag-slider-shadow { width: 220px; bottom: 36px; }
  .ambient-orb,
  .bag-glow-ring,
  .bag-glow-ring::after,
  .bag-shadow-cast,
  .marquee-track { animation: none !important; }
  .bag-slider-track,
  .bag-slide,
  .bag-photo-shell,
  .bag-photo,
  .bag-slide-copy,
  .site-nav a { transition-duration: 320ms !important; }
  .cup-story {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .cup-story-arrow {
    font-size: 2rem;
  }
  .cup-story-arrow-left { left: -12px; }
  .cup-story-arrow-right { right: -12px; }
  .cup-story-visual {
    min-height: 220px;
    padding: 12px;
  }
  .cup-story-copy {
    padding: 18px 18px 20px;
  }
  .cup-story-meta {
    grid-template-columns: 1fr;
  }
  .bag-feature { padding: 32px 0; }
  .cursor-ring, .cursor-dot { display: none; }
  body { cursor: auto; }
  * { cursor: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal-fade, .reveal-up, .reveal-scale, .reveal-left, .reveal-right, .word-reveal { opacity: 1 !important; transform: none !important; }
  h2 { clip-path: none !important; }
}
