:root {
  --viewport-width: 100vw;
  --viewport-height: 100dvh;
  --paper: #f2dfba;
  --paper-soft: #f8eedc;
  --paper-strong: #ead1a1;
  --ink: #1a120f;
  --ink-soft: #5e4638;
  --ink-faint: rgba(26, 18, 15, 0.14);
  --brick: #c84f39;
  --brick-deep: #9f3324;
  --olive: #5d5a3f;
  --panel: rgba(255, 247, 232, 0.72);
  --panel-strong: rgba(255, 249, 237, 0.88);
  --shadow-soft: 0 18px 42px rgba(72, 41, 28, 0.14);
  --shadow-bold: 0 24px 60px rgba(53, 27, 17, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Big Shoulders Display", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: var(--viewport-height, 100dvh);
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 79, 57, 0.22), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(26, 18, 15, 0.12), transparent 26%),
    linear-gradient(180deg, #f7ead4 0%, #f2dfba 32%, #efe2ca 65%, #f7eadc 100%);
}

.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;
}

html.brand-opening-pending,
html.brand-opening-pending body {
  overflow: hidden;
}

.brand-opening {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f8eedc;
  background:
    linear-gradient(112deg, rgba(200, 79, 57, 0.16), transparent 32%),
    radial-gradient(circle at 74% 18%, rgba(239, 196, 111, 0.11), transparent 28%),
    #17100e;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  isolation: isolate;
}

html.brand-opening-pending .brand-opening {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.brand-opening::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(248, 238, 220, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 238, 220, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black, transparent 74%);
}

.brand-opening::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(239, 196, 111, 0.72), transparent);
  transform: scaleY(0);
  transform-origin: center;
  opacity: 0;
}

.kopi-opening-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.kopi-opening-sun,
.kopi-opening-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(30rem, 72vw, 74rem);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.kopi-opening-sun {
  border: 1px solid rgba(239, 196, 111, 0.18);
  box-shadow:
    inset 0 0 0 12vw rgba(200, 79, 57, 0.025),
    0 0 120px rgba(200, 79, 57, 0.08);
}

.kopi-opening-moon {
  width: clamp(21rem, 52vw, 54rem);
  border: 1px dashed rgba(248, 238, 220, 0.12);
}

.kopi-opening-stars {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(248, 238, 220, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 18%, rgba(248, 238, 220, 0.48) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 72%, rgba(239, 196, 111, 0.58) 0 1px, transparent 1.5px),
    radial-gradient(circle at 24% 80%, rgba(248, 238, 220, 0.45) 0 1px, transparent 1.5px);
}

.kopi-opening-clock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(17rem, 34vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid rgba(248, 238, 220, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 18px rgba(248, 238, 220, 0.018),
    0 0 0 19px rgba(248, 238, 220, 0.07);
}

.kopi-opening-clock::before,
.kopi-opening-clock::after {
  content: "";
  position: absolute;
  background: rgba(248, 238, 220, 0.12);
}

.kopi-opening-clock::before {
  top: 50%;
  left: -18px;
  right: -18px;
  height: 1px;
}

.kopi-opening-clock::after {
  top: -18px;
  bottom: -18px;
  left: 50%;
  width: 1px;
}

.kopi-opening-tick {
  position: absolute;
  z-index: 2;
  color: rgba(248, 238, 220, 0.52);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.kopi-opening-tick-00 { top: 13px; left: 50%; transform: translateX(-50%); }
.kopi-opening-tick-06 { top: 50%; right: 13px; transform: translateY(-50%); }
.kopi-opening-tick-12 { bottom: 13px; left: 50%; transform: translateX(-50%); }
.kopi-opening-tick-18 { top: 50%; left: 13px; transform: translateY(-50%); }

.kopi-opening-clock-hand {
  position: absolute;
  z-index: 3;
  bottom: 50%;
  left: calc(50% - 1px);
  width: 2px;
  border-radius: 999px;
  transform-origin: 50% 100%;
}

.kopi-opening-hour-hand {
  height: 26%;
  background: #f8eedc;
  transform: rotate(-68deg);
}

.kopi-opening-minute-hand {
  height: 36%;
  background: #c84f39;
  transform: rotate(48deg);
}

.kopi-opening-clock-pin {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 10px;
  aspect-ratio: 1;
  border: 2px solid #17100e;
  border-radius: 50%;
  background: #efc46f;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(239, 196, 111, 0.5);
}

.kopi-opening-copy {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: min(86vw, 640px);
  text-align: center;
}

.kopi-opening-kicker {
  margin: 0 0 12px;
  color: rgba(248, 238, 220, 0.62);
  font-size: clamp(0.62rem, 1.2vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
}

.kopi-opening-wordmark {
  display: flex;
  gap: 0.16em;
  margin: 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.kopi-opening-wordmark span {
  display: block;
  transform: translateY(110%);
}

.kopi-opening-wordmark span:last-child {
  color: #c84f39;
}

.kopi-opening-status {
  position: relative;
  height: 1.3em;
  margin-top: 22px;
  overflow: hidden;
  color: rgba(248, 238, 220, 0.74);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic;
}

.kopi-opening-status-track {
  transform: translateY(0);
}

.kopi-opening-status span {
  display: block;
  height: 1.3em;
  line-height: 1.3;
}

.kopi-opening-progress {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 58px);
  left: clamp(22px, 5vw, 72px);
  height: 1px;
  overflow: hidden;
  background: rgba(248, 238, 220, 0.14);
}

.kopi-opening-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #c84f39, #efc46f);
  transform: scaleX(0);
  transform-origin: left;
}

html.brand-opening-pending .kopi-opening-sun {
  animation: kopiOrbitBreathe 4.8s ease-in-out both;
}

html.brand-opening-pending .kopi-opening-moon {
  animation: kopiOrbitTurn 5.6s cubic-bezier(0.45, 0, 0.2, 1) both;
}

html.brand-opening-pending .kopi-opening-stars {
  animation: kopiStars 4.8s ease-in-out both;
}

html.brand-opening-pending .kopi-opening-hour-hand {
  animation: kopiHourSweep 4.7s cubic-bezier(0.65, 0, 0.2, 1) both;
}

html.brand-opening-pending .kopi-opening-minute-hand {
  animation: kopiMinuteSweep 4.7s cubic-bezier(0.4, 0, 0.15, 1) both;
}

html.brand-opening-pending .kopi-opening-kicker {
  animation: kopiCopyIn 0.7s 0.5s ease-out both;
}

html.brand-opening-pending .kopi-opening-wordmark span:first-child {
  animation: kopiWordIn 0.92s 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.brand-opening-pending .kopi-opening-wordmark span:last-child {
  animation: kopiWordIn 0.92s 0.74s cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.brand-opening-pending .kopi-opening-status-track {
  animation: kopiStatusReel 2.45s 0.7s cubic-bezier(0.76, 0, 0.24, 1) both;
}

html.brand-opening-pending .kopi-opening-progress span {
  animation: kopiProgress 6.4s 0.15s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.brand-opening.is-resolving {
  animation: kopiOpeningExit 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.brand-opening.is-resolving::after {
  animation: kopiExitRule 0.92s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes kopiOrbitBreathe {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  28% { opacity: 1; }
  100% { opacity: 0.36; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes kopiOrbitTurn {
  from { opacity: 0; transform: translate(-50%, -50%) rotate(-32deg) scale(0.86); }
  30% { opacity: 1; }
  to { opacity: 0.55; transform: translate(-50%, -50%) rotate(28deg) scale(1); }
}

@keyframes kopiStars {
  0%, 18% { opacity: 0; transform: scale(1.04); }
  56%, 100% { opacity: 0.7; transform: scale(1); }
}

@keyframes kopiHourSweep {
  from { transform: rotate(-68deg); }
  to { transform: rotate(292deg); }
}

@keyframes kopiMinuteSweep {
  from { transform: rotate(48deg); }
  to { transform: rotate(1128deg); }
}

@keyframes kopiCopyIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes kopiWordIn {
  to { transform: translateY(0); }
}

@keyframes kopiStatusReel {
  0%, 24% { transform: translateY(0); }
  38%, 62% { transform: translateY(-1.3em); }
  76%, 100% { transform: translateY(-2.6em); }
}

@keyframes kopiProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes kopiOpeningExit {
  0% { clip-path: inset(0 0 0 0); transform: scale(1); opacity: 1; }
  55% { opacity: 1; }
  100% { clip-path: inset(0 0 100% 0); transform: scale(1.025); opacity: 0.72; }
}

@keyframes kopiExitRule {
  0% { opacity: 0; transform: scaleY(0); }
  22% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: translateY(52vh) scaleY(0.24); }
}

@media (max-width: 640px) {
  .kopi-opening-clock {
    width: min(78vw, 21rem);
  }

  .kopi-opening-wordmark {
    flex-direction: column;
    gap: 0;
    font-size: clamp(4.7rem, 24vw, 7.2rem);
    line-height: 0.72;
  }

  .kopi-opening-status {
    margin-top: 28px;
  }
}

body.lightbox-open {
  overflow: hidden;
}

body.wa-guard-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *:not(.brand-opening):not(.brand-opening *),
  *:not(.brand-opening):not(.brand-opening *)::before,
  *:not(.brand-opening):not(.brand-opening *)::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  /*
   * The hero video is an intentional brand element the owner wants visible and
   * playing on every visit. It stays shown under reduced-motion (previously
   * `display: none` here, which hid it entirely); it is muted and looping, and
   * autoplay is driven by the element's native attribute.
   */
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.shell {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
}

.lux-particles,
.page-noise,
.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.lux-particles {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  width: var(--viewport-width, 100vw);
  height: var(--viewport-height, 100dvh);
  opacity: 1;
}

.page-noise {
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-glow-left {
  background: radial-gradient(circle at 20% 12%, rgba(200, 79, 57, 0.18), transparent 22%);
}

.page-glow-right {
  background: radial-gradient(circle at 85% 78%, rgba(93, 90, 63, 0.16), transparent 20%);
}

.site-header,
main,
.site-footer,
.mobile-dock,
.lightbox {
  position: relative;
  z-index: 1;
}

main {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: calc(16px + env(safe-area-inset-top));
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: rgba(255, 246, 229, 0.74);
  border: 1px solid rgba(26, 18, 15, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled .nav {
  background: rgba(255, 245, 226, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.brand-monogram {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  padding: 6px;
  border-radius: 18px;
  object-fit: contain;
  border: 1px solid rgba(26, 18, 15, 0.1);
  background: #fff7ea;
}

.brand-monogram {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 0.92;
}

.brand-copy small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(26, 18, 15, 0.84);
  font-size: 0.93rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(26, 18, 15, 0.06);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: #fff7ef;
  background: linear-gradient(135deg, var(--ink) 0%, #2e1c17 100%);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(26, 18, 15, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.58);
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(26, 18, 15, 0.58);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-switch button.is-active {
  color: #fff7ef;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 18, 15, 0.08);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.eyebrow,
.panel-label,
.menu-meta-eyebrow,
.video-kicker,
.lightbox-caption p {
  margin: 0 0 14px;
  color: var(--brick-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.lookbook-copy h2,
.visit-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
}

.section-heading p,
.lookbook-copy p,
.visit-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding-top: 40px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 72%, rgba(26, 18, 15, 0.05) 72%, rgba(26, 18, 15, 0.05) 100%),
    radial-gradient(circle at 78% 36%, rgba(200, 79, 57, 0.18), transparent 26%),
    radial-gradient(circle at 65% 70%, rgba(26, 18, 15, 0.1), transparent 18%);
  z-index: -1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%, var(--ink)),
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%, var(--ink));
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.16;
}

.hero::before {
  top: 110px;
  left: 4%;
  width: 108px;
  height: 72px;
}

.hero::after {
  right: 5%;
  bottom: 90px;
  width: 128px;
  height: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  grid-template-areas:
    "copy stage"
    "stats stage";
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.hero-copy {
  grid-area: copy;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8.8vw, 7.1rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  line-height: 1.9;
}

.hero-actions,
.lookbook-actions,
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 18, 15, 0.15);
}

.button-primary {
  color: #fff4eb;
  background: linear-gradient(135deg, var(--ink) 0%, #2a1813 100%);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 248, 238, 0.84);
  border-color: rgba(26, 18, 15, 0.12);
}

.button-ghost {
  color: var(--ink);
  background: rgba(26, 18, 15, 0.05);
  border-color: rgba(26, 18, 15, 0.1);
}

.hero-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 240, 0.66);
  border: 1px solid rgba(26, 18, 15, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 0.92;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-stage {
  grid-area: stage;
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 246, 231, 0.5), transparent 52%),
    linear-gradient(135deg, rgba(200, 79, 57, 0.3), rgba(26, 18, 15, 0.22));
  filter: blur(10px);
  transform: translateZ(0);
}

.video-slab {
  position: absolute;
  inset: 9% 14% 14%;
  display: grid;
  place-items: center;
  z-index: 1;
}

.video-shell {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  padding: 16px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 249, 240, 0.72), rgba(255, 250, 242, 0.32)),
    linear-gradient(135deg, rgba(26, 18, 15, 0.16), rgba(200, 79, 57, 0.2));
  border: 1px solid rgba(255, 250, 242, 0.46);
  box-shadow: var(--shadow-bold);
  transform:
    perspective(1200px)
    rotateX(var(--rotate-x, 0deg))
    rotateY(var(--rotate-y, 0deg))
    translateY(var(--shift-y, 0px));
  transition: transform 0.28s ease;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
  background: #f9efe3;
}

.video-caption {
  position: absolute;
  top: 24px;
  left: 24px;
  right: auto;
  bottom: auto;
  max-width: calc(100% - 48px);
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(19, 13, 10, 0.62);
  color: #fff6eb;
  backdrop-filter: blur(12px);
}

.video-caption strong {
  display: block;
  font-size: 1rem;
}

.video-kicker {
  color: rgba(255, 239, 224, 0.74);
}

.orbit-chip,
.floating-card {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.orbit-chip {
  z-index: 2;
  background: rgba(255, 248, 237, 0.82);
  border: 1px solid rgba(26, 18, 15, 0.08);
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chip-a {
  top: 14%;
  left: 4%;
  animation: drift-a 8s ease-in-out infinite;
}

.chip-b {
  top: 7%;
  right: 6%;
  animation: drift-b 9s ease-in-out infinite;
}

.chip-c {
  bottom: 16%;
  left: 8%;
  animation: drift-c 10s ease-in-out infinite;
}

.chip-d {
  bottom: 8%;
  right: 4%;
  animation: drift-a 7.5s ease-in-out infinite reverse;
}

.floating-card {
  width: min(220px, 44%);
  border-radius: 22px;
  color: #fff6ed;
}

.floating-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
}

.floating-card span {
  font-size: 0.82rem;
  line-height: 1.5;
}

.floating-card-a {
  top: 24%;
  right: -2%;
  background: linear-gradient(145deg, rgba(26, 18, 15, 0.88), rgba(47, 28, 23, 0.74));
  animation: drift-b 11s ease-in-out infinite;
}

.floating-card-b {
  left: -2%;
  bottom: 22%;
  background: linear-gradient(145deg, rgba(200, 79, 57, 0.92), rgba(162, 51, 36, 0.74));
  animation: drift-c 12s ease-in-out infinite;
}

.lookbook {
  overflow: hidden;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
}

.lookbook-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lookbook-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.8);
  border: 1px solid rgba(26, 18, 15, 0.08);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.lookbook-stack {
  position: relative;
  min-height: 620px;
}

.lookbook-card {
  position: absolute;
  overflow: hidden;
  padding: 0;
  appearance: none;
  cursor: zoom-in;
  aspect-ratio: 2667.75 / 1513.5;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 18, 15, 0.08);
  background: rgba(255, 248, 238, 0.72);
  box-shadow: var(--shadow-bold);
}

.lookbook-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22, 14, 11, 0.58) 100%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.lookbook-card:hover::before,
.lookbook-card:focus-visible::before {
  opacity: 1;
}

.lookbook-card:focus-visible {
  outline: 2px solid rgba(26, 18, 15, 0.22);
  outline-offset: 4px;
}

.lookbook-hint {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.92);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lookbook-card:hover .lookbook-hint,
.lookbook-card:focus-visible .lookbook-hint {
  opacity: 1;
  transform: translateY(0);
}

.lookbook-card-top {
  top: 0;
  right: 4%;
  width: min(90%, 580px);
  transform: rotate(-5deg);
}

.lookbook-card-bottom {
  bottom: 0;
  left: 2%;
  width: min(84%, 520px);
  transform: rotate(6deg);
}

.lookbook-menu-card {
  position: absolute;
  width: min(90%, 580px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 18, 15, 0.08);
  border-radius: var(--radius-xl);
  background: #f6dba3;
  box-shadow: var(--shadow-bold);
}

.lookbook-menu-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 908;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.45s ease;
}

.lookbook-menu-card img:hover,
.lookbook-menu-card img:focus-visible {
  transform: scale(1.04);
}

.lookbook-menu-card-top {
  top: 0;
  right: 4%;
  transform: rotate(-5deg);
}

.lookbook-menu-card-bottom {
  bottom: 0;
  left: 2%;
  width: min(84%, 520px);
  transform: rotate(6deg);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.88), rgba(255, 244, 228, 0.64));
  border: 1px solid rgba(26, 18, 15, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(26, 18, 15, 0.08);
  color: var(--brick-deep);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 1.12rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.menu-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.hero-grid,
.lookbook-grid,
.visit-grid,
.menu-layout,
.menu-layout > *,
.menu-main,
.category-panel,
.category-list,
.menu-meta-card,
.menu-meta-pills,
.menu-gallery,
.videos-grid,
.contact-list,
.lightbox-dialog {
  min-width: 0;
}

.category-panel,
.menu-meta-card,
.map-card,
.contact-card,
.video-frame,
.menu-card,
.menu-placeholder,
.video-placeholder {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 18, 15, 0.08);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.category-panel {
  position: sticky;
  top: 102px;
  padding: 20px;
  overflow: hidden;
}

.category-list {
  display: grid;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.category-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(26, 18, 15, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.52);
  color: var(--ink);
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.category-button:hover,
.category-button:focus-visible,
.category-button.active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(26, 18, 15, 0.9), rgba(52, 30, 23, 0.8));
  color: #fff6ee;
  border-color: transparent;
}

.category-button strong {
  font-size: 0.96rem;
}

.category-button span {
  font-size: 0.76rem;
  opacity: 0.76;
}

.panel-footnote {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.7;
}

.menu-main {
  display: grid;
  gap: 18px;
}

.menu-meta-card {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(26, 18, 15, 0.93), rgba(49, 29, 23, 0.88)),
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.02));
  color: #fff7ec;
}

.menu-meta-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.9;
}

.menu-meta-card p {
  margin: 0;
  color: rgba(255, 240, 224, 0.78);
  line-height: 1.8;
}

.menu-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.menu-meta-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 247, 234, 0.12);
  border: 1px solid rgba(255, 247, 234, 0.12);
  color: #fff4e9;
  font-size: 0.8rem;
  font-weight: 700;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-gallery.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.menu-card,
.menu-placeholder {
  position: relative;
  overflow: hidden;
}

.menu-placeholder,
.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  color: var(--ink-soft);
  text-align: center;
}

.menu-card {
  border: 0;
  width: 100%;
  padding: 0;
  aspect-ratio: 0.98;
  text-align: left;
  background: rgba(26, 18, 15, 0.08);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-card:hover img,
.menu-card:focus-visible img {
  transform: scale(1.04);
}

.menu-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 11, 9, 0.78) 72%, rgba(15, 11, 9, 0.92) 100%);
  color: #fff5ea;
}

.menu-card-overlay strong {
  display: block;
  font-size: 1rem;
}

.menu-card-overlay p {
  margin: 8px 0 0;
  color: rgba(255, 242, 227, 0.84);
  font-size: 0.84rem;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.menu-card-overlay span {
  display: block;
  margin-top: 10px;
  color: #fff7ec;
  font-size: 0.82rem;
  font-weight: 700;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.videos-grid.is-single {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
}

.video-frame {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.92), rgba(255, 243, 228, 0.72));
}

.video-frame-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 4px 14px;
}

.video-frame-header strong {
  font-size: 1rem;
}

.video-frame-header span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
}

.contact-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(26, 18, 15, 0.08);
  color: var(--brick-deep);
  font-size: 1.2rem;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.map-card {
  overflow: hidden;
  min-height: 620px;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 0 0 112px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(26, 18, 15, 0.08);
  background: rgba(255, 248, 235, 0.78);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img,
.footer-brand .brand-monogram {
  width: 62px;
  height: 62px;
  padding: 7px;
  border-radius: 18px;
  object-fit: contain;
  background: #fff7ea;
  border: 1px solid rgba(26, 18, 15, 0.08);
}

.footer-brand strong {
  display: block;
  font-size: 1.1rem;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(26, 18, 15, 0.05);
  border: 1px solid rgba(26, 18, 15, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-note {
  justify-self: end;
  text-align: right;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 10px;
  width: min(440px, calc(100% - 24px));
  padding: 10px;
  border-radius: 999px;
  background: rgba(17, 12, 9, 0.88);
  border: 1px solid rgba(255, 242, 226, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-bold);
  z-index: 30;
}

.mobile-dock a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff6ea;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 40;
}

.lightbox[hidden] {
  display: none;
}

.wa-guard {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 14px;
}

.wa-guard[hidden] {
  display: none;
}

.wa-guard-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
}

.wa-guard-panel {
  position: relative;
  width: min(430px, 100%);
  border-radius: 26px;
  background: #f7f0e8;
  color: #1d140f;
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.wa-guard-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 20, 15, 0.08);
  color: #1d140f;
}

.wa-guard-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #1f6f43;
  color: #f7f0e8;
  font-size: 20px;
}

.wa-guard-badge {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(31, 111, 67, 0.12);
  color: #1f6f43;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
}

.wa-guard-panel h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1;
}

.wa-guard-panel p,
.wa-guard-panel li {
  color: rgba(29, 20, 15, 0.76);
  line-height: 1.55;
}

.wa-guard-panel ol {
  margin: 14px 0;
  padding-left: 22px;
}

.wa-guard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wa-guard-actions button,
.wa-guard-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: #1d140f;
  color: #f7f0e8;
  font-weight: 800;
}

.wa-guard-actions a {
  background: rgba(29, 20, 15, 0.08);
  color: #1d140f;
}

.wa-guard-number {
  margin-bottom: 0;
  font-weight: 800;
  text-align: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 10, 8, 0.86);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(1080px, 100%);
}

.lightbox-figure {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: rgba(255, 248, 237, 0.98);
  box-shadow: var(--shadow-bold);
}

.lightbox-figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #f7e9cf;
}

.lightbox-caption {
  padding: 18px 20px 20px;
}

.lightbox-copy {
  display: grid;
  gap: 8px;
}

.lightbox-caption h3 {
  margin: 0;
  font-size: 1.1rem;
}

.lightbox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lightbox-caption span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.lightbox-description {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.lightbox-description[hidden],
.lightbox-caption span[hidden] {
  display: none;
}

.lightbox-close,
.lightbox-nav {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff8ee;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -12px, 0);
  }
}

@keyframes drift-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-8px, 10px, 0);
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 12px;
    border-radius: 28px;
    background: rgba(255, 247, 230, 0.96);
    border: 1px solid rgba(26, 18, 15, 0.08);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-switch {
    justify-self: start;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .lookbook-grid,
  .visit-grid,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "stage"
      "stats";
    gap: 28px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .category-panel {
    position: static;
  }

  .lookbook-stack {
    min-height: 560px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 20px;
  }

  .hero-copy h1,
  .section-heading h2,
  .lookbook-copy h2,
  .visit-copy h2 {
    letter-spacing: 0;
  }

  .atmosphere-grid,
  .videos-grid,
  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .category-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .category-button {
    min-width: 220px;
    scroll-snap-align: start;
  }

  .floating-card {
    width: min(190px, 46%);
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 60px 0;
  }

  .shell {
    width: min(100% - 24px, 1140px);
  }

  .site-header {
    padding-top: calc(10px + env(safe-area-inset-top));
  }

  .nav {
    padding: 10px 12px;
  }

  .brand img,
  .brand-monogram {
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .brand-copy strong {
    font-size: 1.56rem;
    line-height: 0.94;
  }

  .brand-copy small {
    font-size: 0.64rem;
    letter-spacing: 0.09em;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 52px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.85rem);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 20px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-stage {
    min-height: 320px;
  }

  .video-slab {
    inset: 10% 12% 14%;
  }

  .orbit-chip {
    padding: 11px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .floating-card {
    width: auto;
    max-width: 180px;
    padding: 12px 14px;
  }

  .floating-card strong {
    font-size: 1.6rem;
  }

  .lookbook-stack {
    min-height: 430px;
  }

  .lookbook-card-top,
  .lookbook-menu-card-top {
    width: min(92%, 420px);
  }

  .lookbook-card-bottom,
  .lookbook-menu-card-bottom {
    width: min(84%, 360px);
  }

  .lookbook-hint {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-dock {
    display: flex;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-stage {
    min-height: 334px;
  }

  .video-shell {
    width: min(100%, 254px);
    padding: 10px;
    border-radius: 24px;
  }

  .hero-video {
    border-radius: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-stats .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .video-caption {
    top: 18px;
    left: 18px;
    right: auto;
    bottom: auto;
    max-width: calc(100% - 36px);
  }

  .chip-a {
    top: 3%;
    left: 0;
  }

  .chip-b {
    top: 4%;
    right: 0;
  }

  .chip-c {
    bottom: 12%;
    left: 2%;
  }

  .chip-d {
    right: 2%;
    bottom: 4%;
  }

  .floating-card-a {
    right: 2%;
    top: 22%;
  }

  .floating-card-b {
    left: 2%;
    bottom: 20%;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-dock {
    width: calc(100% - 20px);
    padding: 8px;
    gap: 8px;
  }

  .mobile-dock a {
    min-height: 44px;
    gap: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-stage {
    min-height: 300px;
  }

  .video-slab {
    inset: 8% 10% 12%;
  }

  .video-shell {
    width: min(100%, 228px);
  }

  .orbit-chip {
    padding: 9px 11px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .chip-c {
    display: none;
  }

  .stat-card {
    padding: 13px;
  }

  .stat-value {
    font-size: clamp(1.5rem, 7.8vw, 2.05rem);
  }

  .hero-stats {
    margin-top: 26px;
  }

  .mobile-dock {
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: calc(100% - 16px);
    padding: 7px;
  }

  .mobile-dock a {
    min-height: 42px;
    font-size: 0.8rem;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .section {
    padding: 48px 0;
  }

  .site-header {
    padding-top: calc(8px + env(safe-area-inset-top));
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.96fr);
    grid-template-areas:
      "copy stage"
      "stats stage";
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 5.4vw, 3.4rem);
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-stage {
    min-height: 260px;
  }

  .video-slab {
    inset: 8% 12% 12%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
  }

  .hero-stats .stat-card:last-child {
    grid-column: auto;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-value {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
  }

  .stat-label {
    font-size: 0.74rem;
    line-height: 1.36;
  }

  .orbit-chip {
    padding: 10px 12px;
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-particles {
    opacity: 0.72;
  }

  html {
    scroll-behavior: auto;
  }

  *:not(.brand-opening):not(.brand-opening *),
  *:not(.brand-opening):not(.brand-opening *)::before,
  *:not(.brand-opening):not(.brand-opening *)::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
