/* Vjollca Hana — mixed light / dark */
:root {
  --black: #0e0e0e;
  --black-soft: #141414;
  --surface: #1a1a1a;
  --surface-2: #222;
  --surface-3: #2c2c2c;
  --border-dark: #333;
  --light: #f2f2f2;
  --light-2: #e8e8e8;
  --light-3: #dcdcdc;
  --border-light: #d0d0d0;
  --text-on-dark: #f2f2f2;
  --muted-on-dark: #9a9a9a;
  --dim-on-dark: #6a6a6a;
  --text-on-light: #141414;
  --muted-on-light: #5c5c5c;
  --dim-on-light: #8a8a8a;
  --accent: #c8c8c8;
  --accent-deep: #9a9a9a;
  --fill-select: #c8c8c8;
  --fill-ink: radial-gradient(ellipse 85% 120% at 50% 42%, #2e2e2e 0%, #1a1a1a 48%, #0a0a0a 100%);
  --fill-ink-linear: linear-gradient(118deg, #0e0e0e 0%, #2a2a2a 42%, #141414 100%);
  --fill-cream: linear-gradient(165deg, #ffffff 0%, #e8e8e8 100%);
  --fill-soft-dark: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
  /* Solid fills for animated wipe hovers (gradients don't interpolate) */
  --fill-solid-light: #ececec;
  --fill-solid-white: #ffffff;
  --fill-solid-dark: #1a1a1a;
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-light: 0 20px 50px rgba(0, 0, 0, 0.08);
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-weight-body: 300;
  --font-weight-ui: 400;
  --font-didot: "Bodoni Moda", "Didot", Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
  --dur-slow: 1.05s;
}

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

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-on-dark);
  background: var(--black);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  min-height: 100%;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  /* App-like: keep bounce from flashing a different edge color */
  background-attachment: fixed;
}

/* ——— Brand preload ——— */
.vh-preload {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #0e0e0e;
  color: #f2f2f2;
  isolation: isolate;
  transition:
    opacity 0.85s var(--ease),
    visibility 0.85s;
}
.vh-preload[hidden] {
  display: none !important;
}
.vh-preload-aura {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(255, 255, 255, 0.07) 0%, transparent 62%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 55%);
  animation: preloadAura 3.2s var(--ease-soft) infinite alternate;
  pointer-events: none;
}
.vh-preload-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: 2rem;
  text-align: center;
}
.vh-preload-lockup {
  position: relative;
  width: 168px;
  height: 112px;
  margin-bottom: 0.15rem;
}
.vh-preload-mark,
.vh-preload-joined {
  position: absolute;
  inset: 0;
  margin: auto;
  object-fit: contain;
  filter: brightness(1.06);
  pointer-events: none;
}
.vh-preload-mark {
  height: 96px;
  width: auto;
  max-width: 118px;
  top: 50%;
  bottom: auto;
  opacity: 0;
}
.vh-preload-mark-v {
  left: 0;
  right: auto;
  transform: translate3d(-72px, -50%, 0);
  animation: preloadVJoin 1.15s var(--ease) 0.12s forwards;
}
.vh-preload-mark-h {
  left: auto;
  right: 0;
  height: 88px;
  max-width: 92px;
  transform: translate3d(72px, -50%, 0);
  animation: preloadHJoin 1.15s var(--ease) 0.12s forwards;
}
.vh-preload-joined {
  width: 104px;
  height: 104px;
  opacity: 0;
  transform: scale(0.86);
  filter: brightness(1.08) drop-shadow(0 0 24px rgba(255, 255, 255, 0.12));
  animation: preloadJoinedIn 0.9s var(--ease) 1.05s forwards;
}
.vh-preload-brand {
  margin: 0;
  font-family: var(--font-didot);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: preloadLogoIn 0.95s var(--ease) 1.35s forwards;
}
.vh-preload-tag {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(242, 242, 242, 0.45);
  opacity: 0;
  animation: preloadFade 0.9s var(--ease) 1.55s forwards;
}
.vh-preload-bar {
  width: min(160px, 42vw);
  height: 1px;
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border-radius: 999px;
  opacity: 0;
  animation: preloadFade 0.6s var(--ease) 1.45s forwards;
}
.vh-preload-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.35), #fff 55%, rgba(255,255,255,0.55));
  transform-origin: left center;
  transition: width 0.35s var(--ease-soft);
}
.vh-preload.is-done {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s;
}
.vh-preload.is-done .vh-preload-inner {
  transform: scale(1.04) translate3d(0, -10px, 0);
  filter: blur(6px);
  opacity: 0;
  transition:
    transform 0.9s var(--ease),
    filter 0.9s var(--ease),
    opacity 0.7s ease;
}
@keyframes preloadVJoin {
  0% {
    opacity: 0;
    transform: translate3d(-78px, -50%, 0) scale(0.94);
  }
  45% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate3d(18px, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(22px, -50%, 0) scale(1.04);
  }
}
@keyframes preloadHJoin {
  0% {
    opacity: 0;
    transform: translate3d(78px, -50%, 0) scale(0.94);
  }
  45% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate3d(-18px, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-22px, -50%, 0) scale(1.04);
  }
}
@keyframes preloadJoinedIn {
  0% {
    opacity: 0;
    transform: scale(0.82);
    filter: brightness(1.2) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  40% {
    opacity: 1;
    transform: scale(1.06);
    filter: brightness(1.15) drop-shadow(0 0 28px rgba(255, 255, 255, 0.22));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.05) drop-shadow(0 0 16px rgba(255, 255, 255, 0.1));
  }
}
@keyframes preloadLogoIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes preloadFade {
  to { opacity: 1; }
}
@keyframes preloadAura {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .vh-preload-aura,
  .vh-preload-mark-v,
  .vh-preload-mark-h,
  .vh-preload-joined,
  .vh-preload-brand,
  .vh-preload-tag,
  .vh-preload-bar {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .vh-preload-mark-v,
  .vh-preload-mark-h {
    opacity: 0;
  }
  .vh-preload-joined {
    opacity: 1;
    transform: scale(1);
  }
  .vh-preload.is-done .vh-preload-inner {
    filter: none;
    transform: none;
  }
}

::selection {
  background: var(--fill-select);
  color: var(--black);
}
::-moz-selection {
  background: var(--fill-select);
  color: var(--black);
}

/* Never italic — Lucide uses <i>, browsers italicize it by default */
i, em, cite, address, dfn, var {
  font-style: normal !important;
}

/* Thin Didone display — hairlines, never bold */
.font-display,
.hero-title,
.display-title,
.script-title,
.giant,
.statement-track,
.manifesto-copy .giant,
.about-card .overlay h3,
.artist-body h3,
.book-head h2,
.book-hours,
.book-face figcaption,
.artist-pick strong,
.composer-preview,
.quote-strip blockquote,
.ritual-item h3,
.ritual-num,
.look-card .meta h3,
.faq-q,
.note-card p,
.number-card .n {
  font-family: var(--font-didot);
  font-weight: 400 !important;
  font-style: normal !important;
  font-variation-settings: "opsz" 72, "wght" 400;
  -webkit-text-stroke: 0.15px transparent; /* softens optical weight */
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 600px) {
  .container { width: min(1180px, calc(100% - 2.5rem)); }
}

/* theme helpers */
.theme-dark {
  background: var(--black);
  color: var(--text-on-dark);
}
.theme-dark-soft {
  background: var(--black-soft);
  color: var(--text-on-dark);
}
.theme-light {
  background: var(--light);
  color: var(--text-on-light);
}
.theme-light-2 {
  background: var(--light-2);
  color: var(--text-on-light);
}

.theme-dark .muted,
.theme-dark-soft .muted { color: var(--muted-on-dark); }
.theme-light .muted,
.theme-light-2 .muted { color: var(--muted-on-light); }

.theme-dark .section-label,
.theme-dark-soft .section-label { color: var(--dim-on-dark); }
.theme-light .section-label,
.theme-light-2 .section-label { color: var(--dim-on-light); }

.theme-dark .caps-title,
.theme-dark-soft .caps-title { color: var(--text-on-dark); }
.theme-light .caps-title,
.theme-light-2 .caps-title { color: var(--text-on-light); }

.theme-light .btn-soft,
.theme-light-2 .btn-soft {
  --btn-fill: var(--fill-solid-light);
  --btn-hover-color: var(--black);
  background: var(--text-on-light);
  color: var(--light);
  border-color: transparent;
}
.theme-light .btn-ghost,
.theme-light-2 .btn-ghost {
  --btn-fill: var(--fill-solid-dark);
  --btn-hover-color: var(--text-on-dark);
  border-color: var(--border-light);
  color: var(--text-on-light);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  padding: 1rem 0;
  padding-top: max(1rem, env(safe-area-inset-top));
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  pointer-events: none;
}
.site-header .header-inner,
.site-header .brand,
.site-header .header-tools {
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 0.2rem 0.15rem;
  transition: color 0.35s var(--ease);
}

.lang-switch a:hover,
.lang-switch a.is-active {
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  text-transform: uppercase;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.brand-mark {
  width: auto;
  height: 38px;
  max-width: min(168px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  background: transparent !important;
  border-radius: 0;
  display: block;
  filter: none;
}
@media (min-width: 480px) {
  .brand-mark {
    height: 44px;
    max-width: 200px;
  }
}
@media (min-width: 900px) {
  .brand-mark {
    height: 48px;
    max-width: 220px;
  }
}

.brand [data-lucide] { width: 18px; height: 18px; stroke-width: 1.25; flex-shrink: 0; }

.header-hours {
  display: none;
}

.btn {
  --btn-fill: var(--fill-solid-light);
  --btn-hover-color: var(--black);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 400;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition:
    color 0.4s var(--ease-soft),
    border-color 0.4s var(--ease-soft),
    opacity 0.35s,
    transform 0.3s var(--ease),
    box-shadow 0.45s var(--ease-soft);
}
.btn > * {
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--btn-fill);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
}
.btn:hover,
.btn:focus-visible {
  color: var(--btn-hover-color);
  border-color: transparent;
}
.btn [data-lucide] { width: 16px; height: 16px; stroke-width: 1.5; }
.btn:active,
.btn.is-pressed {
  transform: scale(0.97);
}
.btn:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  --btn-fill: var(--fill-solid-light);
  --btn-hover-color: var(--black);
  background: var(--text-on-dark);
  color: var(--black);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  --btn-fill: var(--fill-solid-light);
  --btn-hover-color: var(--black);
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
}

.btn-soft {
  --btn-fill: var(--fill-solid-light);
  --btn-hover-color: var(--black);
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
}
.btn-soft:hover,
.btn-soft:focus-visible {
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.14);
}

.btn-link {
  color: var(--accent);
  font-weight: 400;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s, opacity 0.3s;
}
.theme-light .btn-link,
.theme-light-2 .btn-link {
  color: var(--text-on-light);
}
.btn-link:hover {
  color: var(--fill-select);
  border-color: var(--fill-select);
}
.btn-link:active { opacity: 0.7; }

/* Burger → X (desktop + mobile) */
.menu-toggle {
  position: relative;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-on-dark);
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 30px;
  height: 1.5px;
  margin-left: -15px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s ease;
  transform-origin: center;
}
.menu-toggle span:nth-child(1) {
  transform: translateY(-4.5px);
}
.menu-toggle span:nth-child(2) {
  transform: translateY(4.5px);
}
.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  transform: rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  padding: max(5.5rem, calc(env(safe-area-inset-top) + 4.5rem)) 1.75rem max(2.5rem, env(safe-area-inset-bottom));
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.site-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-menu a:not(.btn) {
  position: relative;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: clamp(2.65rem, 8vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-align: right;
  padding: 0.45rem 0.35rem;
  margin-inline: -0.35rem;
  border-radius: 0.35rem;
  opacity: 0;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(12px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    color 0.4s var(--ease-soft);
}
.site-menu a:not(.btn)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-light);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.site-menu.open a:not(.btn) {
  opacity: 1;
  transform: translateY(0);
}
.site-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.site-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.site-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.site-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.site-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.site-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.site-menu.open .site-menu-cta { transition-delay: 0.36s; }
.site-menu a:not(.btn):hover {
  color: var(--black);
}
.site-menu a:not(.btn):hover::before {
  transform: scaleX(1);
}
.site-menu-cta {
  margin-top: 1.5rem;
  width: min(100%, 22rem);
  min-width: min(100%, 16rem);
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.3s;
}
.site-menu.open .site-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.06);
  transform: scale(1.06);
  animation: heroDrift 28s var(--ease-soft) infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.2%, -0.8%, 0); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,14,0.94) 0%, rgba(14,14,14,0.58) 48%, rgba(14,14,14,0.32) 100%),
    linear-gradient(180deg, rgba(14,14,14,0.4) 0%, transparent 32%, rgba(14,14,14,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
}
@media (min-width: 600px) {
  .hero-content {
    width: min(1180px, calc(100% - 2.5rem));
    padding: 8rem 0 5rem;
  }
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  margin: 0;
  font-family: var(--font-didot);
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  max-width: 14ch;
}

.hero-title .line-2 {
  display: block;
  color: var(--accent);
}

.hero-sub {
  margin: 1.5rem 0 0;
  color: var(--muted-on-dark);
  font-size: 1.05rem;
  max-width: 28rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-illu {
  position: absolute;
  right: 5%;
  bottom: 14%;
  width: min(260px, 34vw);
  opacity: 0.78;
  z-index: 3;
  pointer-events: none;
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 11vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  font-weight: 300;
  opacity: 0.72;
}

.section-title-block {
  text-align: center;
  margin-bottom: 2rem;
}

.display-title {
  margin: 0;
  font-family: var(--font-didot);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.caps-title {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-text {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
}

.section-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* Big typography marquee / statement */
.statement {
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-block: 1px solid var(--border-dark);
}

.statement.light {
  border-color: var(--border-light);
  background: var(--light);
  color: var(--text-on-light);
}

.statement-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-didot);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.statement-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.statement-track .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Manifesto / big text ——— */
.manifesto {
  position: relative;
}

.manifesto-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.manifesto-copy .giant {
  font-family: var(--font-didot);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.manifesto-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 34rem;
}

.manifesto-visual {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
}
.manifesto-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,14,0.35));
  pointer-events: none;
  z-index: 1;
}
.manifesto-visual video,
.manifesto-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft), filter 0.7s var(--ease);
}
.manifesto-visual:hover video,
.manifesto-visual:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.manifesto-illu {
  position: absolute;
  width: min(200px, 48%);
  right: -4%;
  bottom: -5%;
  z-index: 2;
  opacity: 0.85;
}

/* ——— About split ——— */
.about-split {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.about-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 420px;
}

.about-card video,
.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}

.about-card:hover video,
.about-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.05);
}

.about-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(14,14,14,0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.5s var(--ease);
}
.about-card:hover .overlay {
  background: linear-gradient(transparent 28%, rgba(14,14,14,0.92));
}
.about-card .overlay .btn {
  --btn-fill: var(--fill-solid-white);
  --btn-hover-color: #0e0e0e;
  align-self: flex-start;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}

.about-card .overlay h3 {
  font-family: var(--font-didot);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.35rem;
  font-weight: 400;
}

.about-card .overlay p {
  margin: 0 0 1rem;
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  max-width: 28rem;
}

/* ——— Services ——— */
.services-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.service-item {
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.service-item:first-child { border-top: 1px solid var(--border-light); }

.service-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 1rem;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-on-light);
  position: relative;
  z-index: 2;
  transition: color 0.35s;
}

.service-item.active .service-trigger,
.service-item:hover .service-trigger {
  color: var(--light);
}

.service-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(0.12);
  width: min(100vw, 1100px);
  height: 100%;
  background: var(--fill-ink);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease-soft);
  z-index: 1;
}
.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 50%, rgba(255,255,255,0.14) 0%, transparent 42%),
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.08) 0%, transparent 38%);
  pointer-events: none;
}

.service-item.active .service-panel,
.service-item:hover .service-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(1);
  pointer-events: auto;
}

.service-side-img {
  position: absolute;
  top: 50%;
  width: clamp(100px, 16vw, 170px);
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
  transition: opacity 0.45s 0.1s, transform 0.55s 0.1s;
}

.service-side-img.left {
  left: 2%;
  clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 20% 100%);
}
.service-side-img.right {
  right: 2%;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.service-item.active .service-side-img,
.service-item:hover .service-side-img {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.service-tags {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 0.5rem;
  padding: 0 1rem 1.25rem;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  /* Always ~2 rows of 5 pills — keeps section height stable */
  min-height: var(--service-tags-h, 5.25rem);
}
.service-item.active .service-tags { display: flex; }
@media (max-width: 899px) {
  .service-tags {
    display: none;
    padding: 0 3.5rem 1.15rem;
    min-height: var(--service-tags-h, 5.5rem);
  }
  .service-item.active .service-tags {
    display: flex;
    animation: serviceTagsIn 0.4s var(--ease);
  }
  .service-item.active .service-trigger {
    color: var(--light);
  }
  .service-item.active .service-panel {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
}
@keyframes serviceTagsIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-tag {
  position: relative;
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(244, 244, 242, 0.4);
  border-radius: 999px;
  color: var(--light);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.4s var(--ease-soft),
    border-color 0.4s var(--ease-soft),
    transform 0.2s var(--ease);
}
.service-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.service-tag:hover::before {
  transform: scaleX(1);
}
.service-tag:hover {
  color: var(--black);
  border-color: transparent;
}
.service-tag:active,
.service-tag.is-pressed {
  transform: scale(0.96);
}

.services-note {
  max-width: 36rem;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--muted-on-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ——— Features ——— */
.features-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  margin-top: 2rem;
}

.features-blob {
  position: absolute;
  width: min(360px, 70vw);
  aspect-ratio: 1;
  background: var(--light-3);
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  animation: blobPulse 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes blobPulse {
  0%, 100% { border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%; transform: scale(1); }
  50% { border-radius: 52% 48% 58% 42% / 42% 58% 42% 58%; transform: scale(1.04); }
}

.features-center {
  position: relative;
  z-index: 2;
  width: min(280px, 55vw);
  aspect-ratio: 3 / 4;
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.features-center img,
.features-center video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card {
  position: absolute;
  z-index: 3;
  width: min(240px, 42vw);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  padding: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.45s var(--ease-soft),
    border-color 0.45s var(--ease-soft),
    box-shadow 0.45s var(--ease-soft),
    transform 0.4s var(--ease);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-dark);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.feature-card > * {
  position: relative;
  z-index: 1;
}
.feature-card:hover::before {
  transform: scaleY(1);
}
.feature-card:hover {
  border-color: transparent;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-dark);
  transform: translateY(-3px);
}
.feature-card:hover p { color: var(--muted-on-dark); }
.feature-card:hover .icon {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-2);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-on-light);
  transition: background 0.45s var(--ease-soft), color 0.45s var(--ease-soft);
}
.feature-card .icon [data-lucide] { width: 18px; height: 18px; stroke-width: 1.1; }
.feature-card h3 { margin: 0 0 0.4rem; font-size: 0.95rem; font-weight: 400; }
.feature-card p { margin: 0; font-size: 0.78rem; color: var(--muted-on-light); line-height: 1.6; }

.feature-card.tl { top: 4%; left: 2%; }
.feature-card.tr { top: 4%; right: 2%; }
.feature-card.bl { bottom: 6%; left: 2%; }
.feature-card.br { bottom: 6%; right: 2%; }

.features-illu {
  position: absolute;
  width: min(170px, 28vw);
  left: 50%;
  top: -2%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width: 800px) {
  .features-stage {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 0;
  }
  .features-blob { position: absolute; }
  .features-center { position: relative; }
  .feature-card {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  .features-illu { display: none; }
}

/* ——— Artists ——— */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .artists-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.artist-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.4s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.artist-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.artist-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255,255,255,0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255,255,255,0.06), transparent 50%),
    linear-gradient(160deg, #161616 0%, #0c0c0c 55%, #141414 100%);
}
.artist-card[data-artist="hana"] .artist-bg {
  background:
    radial-gradient(ellipse 70% 55% at 88% 8%, rgba(255,255,255,0.1), transparent 55%),
    radial-gradient(ellipse 65% 45% at 0% 90%, rgba(255,255,255,0.05), transparent 50%),
    linear-gradient(200deg, #121212 0%, #0a0a0a 50%, #171717 100%);
}

.artist-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  will-change: transform;
}
.artist-orb-a {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 70%);
  animation: artistOrbA 11s ease-in-out infinite;
}
.artist-orb-b {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: -50px;
  background: radial-gradient(circle, rgba(200,200,200,0.22) 0%, rgba(200,200,200,0) 70%);
  animation: artistOrbB 14s ease-in-out infinite;
}
.artist-orb-c {
  width: 120px;
  height: 120px;
  top: 42%;
  right: 18%;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
  animation: artistOrbC 9s ease-in-out infinite;
}
.artist-card[data-artist="hana"] .artist-orb-a {
  animation-duration: 13s;
  animation-direction: reverse;
}
.artist-card[data-artist="hana"] .artist-orb-b {
  animation-duration: 10s;
}

.artist-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
  animation: artistGridDrift 22s linear infinite;
}

.artist-monogram {
  position: absolute;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  left: auto;
  width: min(26%, 96px);
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.5s, transform 0.7s var(--ease);
}
.artist-card[data-artist="hana"] .artist-monogram {
  width: min(22%, 84px);
  max-height: 110px;
}
.artist-card:hover .artist-monogram {
  opacity: 0.26;
  transform: translate(-4px, -6px);
}

@keyframes artistOrbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-28px, 22px) scale(1.12); }
}
@keyframes artistOrbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.08); }
}
@keyframes artistOrbC {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(-16px, 14px); opacity: 0.75; }
}
@keyframes artistGridDrift {
  from { background-position: 0 0; }
  to { background-position: 28px 28px; }
}

.artist-body {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 3.5vw, 2.15rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artist-role {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.45rem;
  font-weight: 300;
}

.artist-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-didot);
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.artist-body > p {
  margin: 0 0 1.25rem;
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 34ch;
}

.artist-highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.artist-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(242,242,242,0.78);
  font-weight: 300;
}
.artist-highlights [data-lucide] {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
  color: #fff;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.artist-body .ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  font-weight: 400;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.artist-body .ig-link [data-lucide] {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}
.artist-body .ig-link::after { display: none; }
.artist-body .ig-link:hover {
  background: #fff;
  border-color: transparent;
  color: #0e0e0e;
}

@media (prefers-reduced-motion: reduce) {
  .artist-orb,
  .artist-grid,
  .hero-media video,
  .hero-media img,
  .kenburns img,
  .kenburns video { animation: none !important; }
  [data-reveal] {
    filter: none;
    transform: none;
    opacity: 1;
  }
}

/* ——— Booking / contact (simple) ——— */
.booking {
  position: relative;
  overflow: hidden;
}
.book-simple {
  max-width: 640px;
}
.book-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.book-head h2 {
  font-family: var(--font-didot);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin: 0.35rem 0 0.85rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.book-head .muted {
  margin: 0;
  max-width: 28rem;
  line-height: 1.7;
  font-weight: 300;
}
.composer-hours {
  margin: 1.35rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dim-on-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.composer-setup-note {
  margin: 0.85rem 0 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--muted-on-dark);
  font-weight: 300;
}
.btn.is-disabled,
.footer-social-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
.composer-hours .live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-on-dark);
}
.composer-hours .live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c8c8;
  display: inline-block;
  animation: pulseLive 2s infinite;
}
.composer-hours .live.is-closed i,
.hours-bar .live.is-closed i {
  animation: none;
  opacity: 0.35;
  box-shadow: none;
}
.composer-hours .live.is-closed,
.hours-bar .live.is-closed {
  color: inherit;
  opacity: 0.72;
}
.optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--dim-on-dark);
  font-size: 0.85em;
}

/* ——— Footer ——— */
.site-footer {
  padding: clamp(2.75rem, 6vw, 4rem) 0 0;
  border-top: 1px solid var(--border-dark);
  background: #000;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.footer-mark {
  display: block;
  line-height: 0;
  transition: opacity 0.35s;
}
.footer-mark:hover { opacity: 0.72; }
.footer-mark img {
  width: min(168px, 46vw);
  height: auto;
  display: block;
  margin-inline: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
}
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--muted-on-dark);
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.3s;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--fill-cream);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-nav a:hover::after { transform: scaleX(1); }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted-on-dark);
  font-weight: 300;
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact a:hover { color: var(--text-on-dark); }
.footer-social-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--muted-on-dark);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 40%),
    url("/assets/brand/plate.png") center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease-soft), border-color 0.35s, transform 0.25s var(--ease);
}
.footer-social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-light);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.footer-social-btn [data-lucide] {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  stroke-width: 1.35;
}
.footer-social-btn:hover::before {
  transform: scale(1);
}
.footer-social-btn:hover {
  color: var(--black);
  border-color: transparent;
}
.footer-social-btn:active,
.footer-social-btn.is-pressed {
  transform: scale(0.94);
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dim-on-dark);
}

/* Brand close: small duo + full-bleed wordmark */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(0.5rem, 2vw, 1rem);
  background: #000;
}
.footer-duo {
  width: min(132px, 28vw);
  line-height: 0;
}
.footer-duo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-logo-wide {
  display: block;
  width: 100%;
  padding: 0 0 clamp(1rem, 2.5vw, 1.5rem);
  line-height: 0;
  transition: opacity 0.5s var(--ease-soft), transform 0.7s var(--ease);
}
.footer-logo-wide:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.footer-logo-wide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ——— FAB ——— */
.fab-wrap {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
body.nav-open .fab-wrap { opacity: 0; pointer-events: none; }

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.fab-menu.open {
  pointer-events: auto;
}

.fab-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-on-dark);
  opacity: 0;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(10px) scale(0.96);
  transition:
    color 0.4s var(--ease-soft),
    border-color 0.35s,
    opacity 0.35s var(--ease),
    transform 0.4s var(--ease);
}
.fab-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.fab-item > * {
  position: relative;
  z-index: 1;
}
.fab-menu.open .fab-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fab-menu.open .fab-item:nth-child(1) { transition-delay: 0.04s; }
.fab-menu.open .fab-item:nth-child(2) { transition-delay: 0.08s; }
.fab-menu.open .fab-item:nth-child(3) { transition-delay: 0.12s; }
.fab-item:hover::before {
  transform: scaleX(1);
}
.fab-item:hover {
  border-color: transparent;
  color: var(--black);
}
.fab-item:active,
.fab-item.is-pressed {
  transform: scale(0.97);
}
.fab-item [data-lucide] { width: 16px; height: 16px; stroke-width: 1.5; }

.fab-main {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--text-on-dark);
  color: var(--black);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: color 0.35s, transform 0.3s var(--ease), box-shadow 0.35s;
}
.fab-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-light);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.fab-main [data-lucide] {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  transition: transform 0.4s var(--ease);
}
.fab-main:hover::before,
.fab-main.open::before {
  transform: scale(1);
}
.fab-main:hover,
.fab-main.open {
  color: var(--black);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.22);
}
.fab-main.open [data-lucide] {
  transform: rotate(45deg);
}
.fab-main:active,
.fab-main.is-pressed {
  transform: scale(0.94);
}

/* ——— Draw illustrations ——— */
.draw-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.draw-svg .draw-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  transition: none;
}

.draw-svg.drawn .draw-path {
  animation: none;
}

.draw-svg .draw-fill {
  display: none;
}

.illu-dark { color: var(--text-on-dark); }
.illu-light { color: var(--text-on-light); }
.illu-accent { color: var(--accent); }

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(6px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease),
    filter var(--dur-slow) var(--ease-soft);
  will-change: opacity, transform, filter;
}
[data-reveal].in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  will-change: auto;
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

.lookup {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-dark);
  max-width: 420px;
}
.lookup label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-on-dark);
  margin-bottom: 0.65rem;
  font-weight: 300;
}
.lookup-row { display: flex; gap: 0.5rem; align-items: stretch; }
.lookup .vh-input,
.lookup input {
  flex: 1;
  width: auto;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-dark);
  border-radius: 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  background: rgba(255,255,255,0.03);
  color: var(--text-on-dark);
  transition: border-color 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}
.lookup .vh-input:focus,
.lookup input:focus {
  border-color: #8a8a8a;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.lookup-result {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted-on-dark);
  font-weight: 300;
  line-height: 1.55;
  display: none;
}
.lookup-result.show { display: block; }

.ig-mention { color: var(--accent); }


/* ——— Ritual / process ——— */
.ritual {
  position: relative;
}
.ritual-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.ritual-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
}
.ritual-item:last-child { border-bottom: 1px solid var(--border-light); }
.ritual-num {
  font-family: var(--font-didot);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--dim-on-light);
  letter-spacing: 0.04em;
  min-width: 3ch;
}
.ritual-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-didot);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.ritual-item p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted-on-light);
  font-weight: 300;
  font-size: 0.95rem;
}
.ritual-aside {
  position: absolute;
  right: 4%;
  top: 28%;
  width: min(180px, 26vw);
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 800px) {
  .ritual-aside { display: none; }
}

/* ——— Quote strip ——— */
.quote-strip {
  padding: clamp(4.5rem, 13vw, 9rem) 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,255,255,0.05), transparent 55%),
    #0e0e0e;
}
.quote-strip blockquote {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--font-didot);
  font-size: clamp(2.5rem, 7.2vw, 5.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
}
.quote-strip cite {
  display: block;
  margin-top: 1.85rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.5;
}

/* ——— Film strip horizontal ——— */
.film {
  overflow: hidden;
  padding: 2rem 0 3rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.film.is-dragging {
  cursor: grabbing;
  touch-action: none;
}
.film-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  pointer-events: none; /* drag handled on .film */
}
.film-card {
  width: min(280px, 70vw);
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}
.film-card img,
.film-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  -webkit-user-drag: none;
  user-select: none;
}
.film:not(.is-dragging) .film-card:hover img,
.film:not(.is-dragging) .film-card:hover video {
  transform: scale(1.05);
  filter: brightness(1.06);
}
.film-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .film { cursor: grab; }
}

/* ——— Split numbers ——— */
.numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .numbers { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.number-card {
  text-align: center;
  padding: 2rem 1rem;
}
.number-card .n {
  font-family: var(--font-didot);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  display: block;
}
.number-card .l {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.55;
}

.caps-title {
  font-weight: 300 !important;
  letter-spacing: 0.32em !important;
}
.brand { font-weight: 400 !important; }
.btn { font-weight: 400 !important; }

/* ——— Progress + cursor ——— */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), #fff 40%, rgba(255,255,255,0.55));
  z-index: 200;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.12s linear;
}

/* ——— Custom cursor (VH flourish) ——— */
.cursor-mark {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 18px;
  height: 21px;
  margin: -3px 0 0 -2px;
  pointer-events: none;
  opacity: 0;
  transition: width 0.18s var(--ease), height 0.18s var(--ease), opacity 0.15s, filter 0.18s;
  will-change: transform;
}
.cursor-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.cursor-mark.is-active {
  width: 24px;
  height: 28px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}
.cursor-mark.is-down {
  width: 14px;
  height: 16px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}
body.has-cursor .cursor-mark { opacity: 0.95; }
body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor select,
body.has-cursor textarea { cursor: none; }

@media (max-width: 900px), (pointer: coarse) {
  .cursor-mark { display: none !important; }
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button { cursor: auto; }
}

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

/* split words */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-word > span {
  display: inline-block;
  transform: translate3d(0, 115%, 0);
  opacity: 0;
  transition:
    transform 1.05s var(--ease),
    opacity 0.7s var(--ease-soft);
}
.split-word.in > span,
[data-split].in .split-word > span {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* ——— Hours pill ——— */
.hours-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1rem 1.5rem;
  border-block: 1px solid var(--border-dark);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}
.hours-bar .live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
}
.hours-bar .live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c8c8;
  box-shadow: 0 0 0 0 rgba(200,200,200,0.45);
  animation: pulseLive 2s infinite;
}
@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ——— Lookbook stack ——— */
.lookbook {
  position: relative;
  overflow: clip;
  background: #000;
}
.lookbook-rail {
  /* Desktop: ~0.7 viewport scroll per look — smooth, not sluggish */
  height: calc(100svh * (1 + var(--look-count, 5) * 0.7));
}
.lookbook-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
  overflow: hidden;
}
.lookbook-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.lookbook-label {
  text-align: center;
  margin: 0;
}
.lookbook-frame {
  position: relative;
  width: min(420px, 86vw);
}
.lookbook-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.look-card {
  position: absolute;
  inset: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.94) translate3d(0, 28px, 0);
  transition:
    opacity 0.85s var(--ease),
    transform 0.95s var(--ease);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.look-card.active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  z-index: 2;
  pointer-events: auto;
}
.look-card img,
.look-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease-soft);
}
.look-card.active img,
.look-card.active video {
  transform: scale(1.045);
}
.look-card .meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 1.5rem 4.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  z-index: 2;
}
.look-card .meta h3 {
  margin: 0;
  font-family: var(--font-didot);
  font-size: 1.75rem;
  font-weight: 400;
}
.look-card .meta p {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted-on-dark);
  font-weight: 300;
}
.lookbook-side {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 4;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}
.lookbook-side .lookbook-dots {
  pointer-events: auto;
}
.lookbook-index {
  font-family: var(--font-didot);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  opacity: 0.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.lookbook-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.lookbook-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,0.22);
  border: none;
  transition: background 0.3s, transform 0.3s var(--ease), width 0.3s;
}
.lookbook-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}
.lookbook-dot:hover { background: rgba(255,255,255,0.55); }

/* ——— Reverse marquee ——— */
.statement.reverse .statement-track {
  animation-direction: reverse;
  animation-duration: 50s;
}

/* hero scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.scroll-hint .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ——— Header stays fixed + transparent (no hide/show on scroll) ——— */
body.nav-open .site-header {
  /* keep above the open menu chrome */
  z-index: 110;
}

/* ——— Composer ——— */
.composer {
  text-align: left;
}
.composer-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dim-on-dark);
}

.artist-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 104px));
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  width: fit-content;
  max-width: 100%;
}
.artist-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: center;
}
.artist-pick-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  aspect-ratio: 1;
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 28px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease-soft), box-shadow 0.45s var(--ease-soft);
}
.artist-pick-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.artist-pick-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.35s var(--ease-soft), filter 0.4s var(--ease-soft);
}
.artist-pick-icon-logo {
  padding: 16px;
}
.artist-pick-icon-logo img {
  width: 78%;
}
.artist-pick span:not(.artist-pick-icon) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
}
.artist-pick strong {
  font-family: var(--font-didot);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
.artist-pick small {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dim-on-dark);
  transition: color 0.35s var(--ease-soft);
}
.artist-pick:hover .artist-pick-icon,
.artist-pick.is-active .artist-pick-icon {
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(255,255,255,0.12);
}
.artist-pick:hover .artist-pick-icon::before,
.artist-pick.is-active .artist-pick-icon::before {
  transform: scaleX(1);
}
.artist-pick:hover .artist-pick-icon img,
.artist-pick.is-active .artist-pick-icon img {
  opacity: 1;
  filter: invert(1);
}
.artist-pick.is-active {
  color: var(--text-on-dark);
}
.artist-pick.is-active small { color: var(--muted-on-dark); }
@media (max-width: 420px) {
  .artist-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    width: min(100%, 280px);
  }
  .artist-pick {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
  }
  .artist-pick-icon {
    width: 64px;
    height: 64px;
    padding: 14px;
    border-radius: 1rem;
  }
  .artist-pick span:not(.artist-pick-icon) { padding: 0; }
  .artist-pick strong { font-size: 0.85rem; }
}

.composer-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .composer-fields { grid-template-columns: 1fr; }
}
.composer-field-full { grid-column: 1 / -1; }

.field-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dim-on-dark);
  margin-bottom: 0.55rem;
}

/* Branded controls — never native OS chrome */
.vh-input,
.vh-textarea,
.vh-select-trigger {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border-dark);
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.03);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}
.vh-input,
.vh-select-trigger {
  padding: 0.95rem 1.05rem;
  min-height: 3.15rem;
}
.vh-textarea {
  padding: 0.95rem 1.05rem;
  min-height: 110px;
  resize: vertical;
  line-height: 1.65;
}
.vh-input::placeholder,
.vh-textarea::placeholder {
  color: var(--dim-on-dark);
  font-weight: 300;
}
.vh-input:hover,
.vh-textarea:hover,
.vh-select:not(.is-open) .vh-select-trigger:hover {
  border-color: #4a4a4a;
  background: rgba(255,255,255,0.05);
}
.vh-input:focus,
.vh-textarea:focus,
.vh-select.is-open .vh-select-trigger {
  border-color: #8a8a8a;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.vh-select {
  position: relative;
}
.vh-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  cursor: pointer;
}
.vh-select-trigger [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.35;
  color: var(--muted-on-dark);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), color 0.3s;
}
.vh-select.is-open .vh-select-trigger [data-lucide] {
  transform: rotate(180deg);
  color: var(--text-on-dark);
}
.vh-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vh-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 40;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  border: 1px solid var(--border-dark);
  border-radius: 0.95rem;
  background: #141414;
  box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  max-height: 260px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.28s var(--ease), visibility 0.22s;
}
.vh-select.is-open .vh-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.vh-select-menu li {
  position: relative;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--muted-on-dark);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease-soft);
}
.vh-select-menu li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--fill-solid-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
  pointer-events: none;
  opacity: 0.12;
}
.vh-select-menu li:hover::before,
.vh-select-menu li.is-active::before {
  transform: scaleX(1);
}
.vh-select-menu li:hover,
.vh-select-menu li.is-active {
  color: var(--text-on-dark);
}
.vh-select-menu li[aria-selected="true"]::before {
  background: var(--fill-solid-light);
  opacity: 1;
  transform: scaleX(1);
}
.vh-select-menu li[aria-selected="true"] {
  color: var(--black);
}
.vh-select-menu li[aria-selected="true"]:hover {
  color: var(--black);
}

.composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.composer-kicker,
.composer-preview-wrap { display: none; }

select,
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
  font-family: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

/* ——— DM love notes ——— */
.notes {
  overflow: hidden;
  padding: 3rem 0;
}
.notes-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: filmScroll 70s linear infinite;
}
@keyframes filmScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.note-card {
  width: min(320px, 78vw);
  flex-shrink: 0;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.55);
}
.note-card p {
  margin: 0;
  font-family: var(--font-didot);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.note-card .from {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.5;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.faq-item {
  position: relative;
  border-top: 1px solid var(--border-dark);
  transition: border-color 0.35s;
  z-index: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-dark); }
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  right: -1.5rem;
  background: var(--fill-solid-dark);
  border-radius: 0.85rem;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
  opacity: 0.14;
}
@media (min-width: 700px) {
  .faq-item::before {
    left: -2.5rem;
    right: -2.5rem;
  }
}
.faq-item:hover::before,
.faq-item.open::before {
  transform: scaleX(1);
}
.faq-item.open + .faq-item,
.faq-item:hover + .faq-item {
  border-top-color: transparent;
}
.faq-item:hover,
.faq-item.open {
  border-color: transparent;
}
.faq-list-light .faq-item::before {
  background: var(--fill-solid-white);
  opacity: 1;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-didot);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s;
}
.faq-q [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.25;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), color 0.3s;
}
.faq-item:hover .faq-q [data-lucide],
.faq-item.open .faq-q [data-lucide] {
  color: var(--accent-deep);
}
.faq-item.open .faq-q [data-lucide] { transform: rotate(45deg); }
/* Fixed answer slot — height never animates, so the section doesn't jump */
.faq-a {
  position: relative;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity 0.3s var(--ease-soft), transform 0.35s var(--ease);
  color: var(--muted-on-dark);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  pointer-events: none;
}
.faq-item.open .faq-a {
  height: var(--faq-answer-h, 7.5rem);
  padding-bottom: 1.35rem;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

/* ——— Clip reveal band ——— */
.clip-band {
  position: relative;
  min-height: clamp(42vh, 52vw, 68vh);
  padding: 0;
  overflow: hidden;
}
.clip-band .bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.clip-band .bg-media video,
.clip-band .bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

/* ken burns */
.kenburns {
  overflow: hidden;
}
.kenburns img,
.kenburns video {
  animation: ken 32s var(--ease-soft) infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
@keyframes ken {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1%, -0.6%, 0); }
}

/* count up */
.number-card .n[data-count] {
  font-variant-numeric: tabular-nums;
}


/* FAQ on light sections */
.faq-list-light .faq-item {
  border-color: var(--border-light);
}
.faq-list-light .faq-q { color: var(--text-on-light); }
.faq-list-light .faq-a { color: var(--muted-on-light); }

/* Thinner brand + nav */
.brand {
  font-weight: 300 !important;
  letter-spacing: 0.22em;
}

/* Statement dots shouldn't be italic i */
.statement-track .dot,
.statement-track i.dot {
  font-style: normal !important;
  font-size: 0;
}

.theme-light .number-card .n,
.theme-light-2 .number-card .n { color: var(--text-on-light); }
.theme-light .number-card .l,
.theme-light-2 .number-card .l { color: var(--dim-on-light); opacity: 1; }

/* Extra: kill any residual italic from user-agent on lucide */
[data-lucide] {
  font-style: normal !important;
  display: inline-block;
  vertical-align: middle;
}

/* ——— Mobile polish ——— */
@media (max-width: 899px) {
  .hero-title {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
    max-width: 11ch;
  }
  .hero-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    max-width: 100%;
    line-height: 1.5;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-top: 1.15rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }
  .hero-actions .btn { width: 100%; }
  .hero-illu { display: none; }
  .scroll-hint { display: none; }

  .hours-bar {
    gap: 0.65rem 1.25rem;
    padding: 0.85rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .manifesto-copy .giant {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
  }
  .manifesto-illu {
    right: 4%;
    bottom: -4%;
    width: min(140px, 38%);
  }

  .about-card { min-height: 420px; }
  .about-card .overlay h3 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .service-trigger {
    padding: 1.15rem 0.25rem;
    font-size: clamp(1.15rem, 5.5vw, 1.65rem);
    letter-spacing: 0.14em;
  }
  .service-panel {
    width: 100vw;
  }
  .service-side-img {
    display: block;
    width: 72px;
    opacity: 0;
  }
  .service-item.active .service-side-img {
    opacity: 0.92;
  }
  .service-side-img.left { left: 0.35rem; }
  .service-side-img.right { right: 0.35rem; }

  .book-head h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }
  .composer-actions {
    flex-direction: column;
  }
  .composer-actions .btn { width: 100%; }

  .artists-grid { gap: 1.5rem; }
  .artist-body h3 { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  .faq-q {
    font-size: 1.15rem;
    text-align: left;
    gap: 0.75rem;
  }

  .footer-mark img {
    width: min(140px, 52vw);
  }
  .footer-nav {
    gap: 0.25rem 1.1rem;
  }
  .footer-nav a { font-size: 0.72rem; }

  .fab-main {
    width: 52px;
    height: 52px;
  }

  /* Lookbook: edge-to-edge fullscreen media on phone / tablet */
  .lookbook-rail {
    /* Phone: shorter travel — one swipe ≈ one look */
    height: calc(100svh * (1 + var(--look-count, 5) * 0.48));
  }
  .lookbook-pin {
    padding: 0;
    place-items: stretch;
  }
  .lookbook-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    gap: 0;
  }
  .lookbook-label {
    position: absolute;
    top: max(1.1rem, env(safe-area-inset-top));
    left: 0;
    right: 0;
    z-index: 6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  }
  .lookbook-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .lookbook-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .look-card {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    transform: scale(1.02);
  }
  .look-card.active {
    transform: scale(1);
  }
  .look-card.active img,
  .look-card.active video {
    transform: none;
  }
  .look-card .meta {
    padding: 1.35rem 1.25rem 5.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.92));
  }
  .lookbook-side {
    bottom: max(1.15rem, calc(env(safe-area-inset-bottom) + 0.35rem));
  }

  .quote-strip blockquote {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .number-card .n {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .brand {
    letter-spacing: 0.14em;
    font-size: 0.68rem;
  }
  .menu-toggle span {
    width: 28px;
    margin-left: -14px;
  }
  .menu-toggle span:nth-child(1) { transform: translateY(-4px); }
  .menu-toggle span:nth-child(2) { transform: translateY(4px); }
  .menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { transform: rotate(-45deg); }

  .film-card { width: min(220px, 68vw); }
}

/* ——— Interaction polish ——— */
.ig-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted-on-dark);
  transition: color 0.3s;
}
.ig-link [data-lucide] { width: 16px; height: 16px; stroke-width: 1.5; }
.ig-link:hover { color: var(--text-on-dark); }
.ig-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.ig-link:hover::after { transform: scaleX(1); }

.footer-nav a:active::after {
  transform: scaleX(1);
}

.feature-card:active {
  transform: translateY(-1px);
}

.service-trigger:active {
  opacity: 0.9;
}

.footer-duo {
  transition: opacity 0.4s, transform 0.5s var(--ease);
}
.footer-duo:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

/* ——— Visit / map ——— */
.visit {
  overflow: hidden;
}
.visit-layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
}
@media (min-width: 900px) {
  .visit-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.visit-copy .display-title {
  margin: 0.35rem 0 1rem;
}
.visit-copy .muted {
  margin: 0 0 0.55rem;
  max-width: 28rem;
  line-height: 1.7;
  font-weight: 300;
}
.visit-place {
  color: rgba(255, 255, 255, 0.78) !important;
  letter-spacing: 0.02em;
}
.visit-hours {
  opacity: 0.72;
  font-size: 0.92em;
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.visit-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  max-height: 520px;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  /* Isolate from reveal filters / transforms so wheel isn't stolen */
  transform: translateZ(0);
}
@media (min-width: 900px) {
  .visit-map {
    aspect-ratio: 5 / 4;
    min-height: 360px;
  }
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
  pointer-events: none !important;
}
/* Must have a real paint layer — fully transparent shields are skipped by hit-testing */
.visit-map-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.01);
  cursor: default;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 700px) {
  .visit-actions .btn { width: 100%; }
  .visit-map {
    aspect-ratio: 1 / 1;
    min-height: 260px;
    border-radius: 1rem;
  }
}

/* ——— Subscribe ——— */
.subscribe-layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: end;
  max-width: 820px;
}
@media (min-width: 800px) {
  .subscribe-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.subscribe-copy .display-title {
  margin: 0.35rem 0 1rem;
}
.subscribe-copy .muted {
  margin: 0;
  max-width: 26rem;
  line-height: 1.7;
  font-weight: 300;
}
.subscribe-form {
  display: grid;
  gap: 0.65rem;
}
.subscribe-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 0.85rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s;
}
.subscribe-field:focus-within {
  border-color: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.subscribe-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-on-light);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.9rem 1.05rem;
}
.subscribe-input::placeholder {
  color: var(--dim-on-light);
  font-weight: 300;
}
.subscribe-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0 1.25rem;
  border: 0;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.subscribe-submit:hover,
.subscribe-submit:focus-visible {
  background: #2a2a2a;
  color: #fff;
  outline: none;
}
.subscribe-submit:active {
  background: #000;
}
.subscribe-submit svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.subscribe-note {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-on-light);
}
.subscribe-note.is-ok { color: #2a2a2a; }
.subscribe-note.is-error { color: #8a3030; }

@media (max-width: 560px) {
  .subscribe-field {
    grid-template-columns: 1fr;
  }
  .subscribe-submit {
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    min-height: 2.85rem;
  }
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: #fff;
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0.75rem);
  outline: 2px solid #0a0a0a;
  outline-offset: 2px;
}

.composer-actions .btn.is-copied,
.btn.is-copied {
  position: relative;
}

.composer-actions .btn.is-copied::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.4rem 0.65rem;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:active,
  .btn.is-pressed,
  .fab-main:active,
  .fab-main.is-pressed,
  .feature-card:hover {
    transform: none;
  }
}
