/* LA 27 PRODUCTIONS — styles */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --ink: #f5f1ef;
  --ink-dim: #8a8480;
  --ink-mute: #4a4644;
  --line: #1f1c1c;
  --accent: oklch(0.58 0.22 25);       /* brand red */
  --accent-bright: oklch(0.64 0.25 25);
  --accent-deep: oklch(0.42 0.18 25);
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

body.is-locked {
  overflow: hidden;
  height: 100vh;
}

/* ===== Language overlay ===== */

.lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.lang-overlay-inner {
  width: 100%;
  max-width: 720px;
  display: grid;
  gap: 56px;
}

.lang-overlay-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.lang-overlay-brand .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

.lang-overlay-titles {
  display: grid;
  gap: 6px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.lang-overlay-line {
  color: var(--ink-mute);
  font-style: italic;
  opacity: 0;
  transform: translateY(12px);
  animation: langLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lang-overlay-line:nth-child(1) { animation-delay: 0.1s; color: var(--ink); }
.lang-overlay-line:nth-child(2) { animation-delay: 0.18s; }
.lang-overlay-line:nth-child(3) { animation-delay: 0.26s; }
.lang-overlay-line:nth-child(4) { animation-delay: 0.34s; }
.lang-overlay-line:nth-child(5) { animation-delay: 0.42s; }

@keyframes langLineIn {
  to { opacity: 1; transform: translateY(0); }
}

.lang-overlay-list {
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lang-overlay-list li {
  background: #050505;
}

.lang-overlay-list a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 4px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 18px;
  position: relative;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease,
              background 0.3s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: langLineIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lang-overlay-list li:nth-child(1) a { animation-delay: 0.55s; }
.lang-overlay-list li:nth-child(2) a { animation-delay: 0.6s; }
.lang-overlay-list li:nth-child(3) a { animation-delay: 0.65s; }
.lang-overlay-list li:nth-child(4) a { animation-delay: 0.7s; }
.lang-overlay-list li:nth-child(5) a { animation-delay: 0.75s; }

.lang-overlay-list a .code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  transition: color 0.3s ease;
}

.lang-overlay-list a .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--ink);
}

.lang-overlay-list a .arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-mute);
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, color 0.3s ease;
}

.lang-overlay-list a:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: #0a0a0a;
}

.lang-overlay-list a:hover .code,
.lang-overlay-list a:hover .arrow {
  color: var(--accent);
}

.lang-overlay-list a:hover .arrow {
  transform: translateX(0);
  opacity: 1;
}

.lang-overlay-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 600px) {
  .lang-overlay { padding: 24px; }
  .lang-overlay-inner { gap: 32px; }
  .lang-overlay-titles { font-size: 28px; }
  .lang-overlay-list a { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 16px 4px; }
}

/* ===== Nav language switcher ===== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switch {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lang-switch-btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.lang-switch-btn:hover { opacity: 1; }

.lang-switch-btn svg {
  transition: transform 0.3s ease;
}

.lang-switch.is-open .lang-switch-btn svg {
  transform: rotate(180deg);
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  list-style: none;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}

.lang-switch.is-open .lang-switch-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-switch-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.lang-switch-menu a:hover,
.lang-switch-menu a.is-active {
  opacity: 1;
  background: rgba(255,255,255,0.04);
}

.lang-switch-menu a .code {
  color: var(--accent);
  font-weight: 500;
}

.lang-switch-menu a.is-active .code {
  color: var(--accent);
}

@media (max-width: 768px) {
  .nav-right { gap: 12px; }
  .lang-switch-menu { right: -8px; }
}

/* Custom cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              mix-blend-mode 0.3s ease;
  mix-blend-mode: difference;
}

.cursor.is-hover {
  width: 56px;
  height: 56px;
  background: var(--ink);
}

.cursor.is-play {
  width: 88px;
  height: 88px;
  background: var(--accent);
  mix-blend-mode: normal;
}

.cursor-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.cursor.is-play .cursor-label {
  opacity: 1;
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
  a, button { cursor: pointer; }
}

@media (hover: hover) {
  a, button { cursor: none; }
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ===== Layout primitives ===== */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ===== Nav ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
  color: #fff;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-brand strong {
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-meta .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links, .nav-meta { display: none; }
}

/* ===== Scroll progress ===== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--accent);
  z-index: 99;
  transition: width 0.15s linear;
}

/* ===== Section markers (sticky right) ===== */

.section-index {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 18px;
  mix-blend-mode: difference;
  color: #fff;
}

.section-index a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.section-index a.is-active { opacity: 1; }

.section-index .num { width: 28px; }
.section-index .label {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-index a.is-active .label,
.section-index a:hover .label {
  width: 80px;
}

@media (max-width: 1024px) {
  .section-index { display: none; }
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  overflow: hidden;
}

.hero-meta {
  position: absolute;
  top: 96px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 0.05em;
}

.hero-title .it {
  font-style: italic;
  color: var(--accent);
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

@keyframes wordRise {
  to { transform: translateY(0); }
}

.hero-sub {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub-left {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  max-width: 320px;
  line-height: 1.6;
}

.hero-sub-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.scroll-cue .arrow {
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Waveform */

.waveform {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 18vh;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 3px;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.4s ease 1s forwards;
  z-index: -1;
}

@keyframes fadeIn {
  to { opacity: 0.5; }
}

.waveform .bar {
  flex: 1;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  animation: wave 1.4s ease-in-out infinite;
}

/* ===== Trust strip ===== */

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--ink-mute);
}

.trust-inner span {
  display: inline-flex;
  align-items: center;
  gap: 80px;
}

.trust-inner .sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* ===== Section base ===== */

section {
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 96px 0 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow .num {
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.section-title .it {
  font-style: italic;
  color: var(--accent);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Work ===== */

.work {
  padding: 0 48px;
}

.work-grid {
  display: grid;
  gap: 80px;
  padding-bottom: 120px;
}

.work-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.work-item:nth-child(even) { direction: rtl; }
.work-item:nth-child(even) > * { direction: ltr; }

.work-media,
.play-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  overflow: hidden;
  border-radius: 2px;
}

.video-frame {
  position: absolute;
  inset: 0;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.work-media {
  border: 1px solid var(--line);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.work-media:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 80px -20px rgba(220, 38, 38, 0.18);
}

.play-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  cursor: none;
  isolation: isolate;
}

.play-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
  z-index: 0;
}

.play-card--ferrari .play-card-bg {
  background:
    radial-gradient(ellipse at 70% 30%, oklch(0.35 0.12 30) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, oklch(0.22 0.05 25) 0%, transparent 60%),
    linear-gradient(180deg, #1a0e0a 0%, #0a0605 100%);
}

.play-card--dior .play-card-bg {
  background:
    radial-gradient(ellipse at 30% 30%, oklch(0.38 0.06 80) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, oklch(0.25 0.04 60) 0%, transparent 60%),
    linear-gradient(180deg, #1c1610 0%, #0a0806 100%);
}

.play-card-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.025) 0,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 6px),
    repeating-linear-gradient(45deg,
      rgba(0,0,0,0.18) 0,
      rgba(0,0,0,0.18) 1px,
      transparent 1px,
      transparent 4px);
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.play-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.play-card-top,
.play-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.play-card-top { top: 0; }
.play-card-bottom { bottom: 0; }

.play-card-tag {
  color: var(--ink);
  opacity: 0.85;
}

.play-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}

.play-card-dur {
  color: var(--ink-dim);
}

.play-card-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 3;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              color 0.4s ease;
}

.play-card-btn svg {
  margin-left: 4px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-card:hover .play-card-bg {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.play-card:hover .play-card-btn {
  width: 104px;
  height: 104px;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.play-card:hover .play-card-btn svg {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .play-card-btn { width: 64px; height: 64px; }
  .play-card:hover .play-card-btn { width: 76px; height: 76px; }
  .play-card-title { font-size: 18px; }
  .play-card-top, .play-card-bottom { padding: 14px 16px; }
}

.work-media .placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(241,236,225,0.02) 0,
      rgba(241,236,225,0.02) 2px,
      transparent 2px,
      transparent 8px),
    linear-gradient(180deg, #1a1814 0%, #0e0c0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover .placeholder { transform: scale(1.04); }

.work-media .ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.8;
}

.work-media .ph-label strong {
  display: block;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.work-info {
  padding: 0 24px;
}

.work-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.work-title .it { font-style: italic; }

.work-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-meta .sep {
  width: 24px;
  height: 1px;
  background: var(--ink-mute);
}

.work-desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink-mute);
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.work-link:hover {
  border-color: var(--accent);
  gap: 18px;
}

@media (max-width: 900px) {
  .work-item { grid-template-columns: 1fr; gap: 32px; }
  .work-item:nth-child(even) { direction: ltr; }
  .work-grid { gap: 80px; }
  .work-info { padding: 0; }
}

/* ===== Why / Studio (no photo) ===== */

.why {
  padding: 0 48px;
}

.why-lede {
  max-width: 920px;
  margin: 0 auto 96px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}

.why-lede em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.why-lede .hl {
  font-style: italic;
  color: var(--ink);
  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  margin-bottom: 120px;
}

.pillar-card {
  background: var(--bg);
  padding: 56px 40px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 380px;
}

.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 88px;
  line-height: 0.9;
  color: var(--accent);
  font-weight: 400;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.015em;
}

.pillar-title .it { font-style: italic; }

.pillar-body {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
  margin-top: auto;
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; padding: 48px 32px; }
  .why-lede { font-size: 24px; padding: 0; }
}

/* ===== Studio (about) ===== */

.studio {
  padding: 0 48px;
}

.studio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  padding-bottom: 120px;
}

.studio-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border-radius: 2px;
  overflow: hidden;
}

.studio-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.02);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.4s ease;
}

.studio-portrait:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}

.studio-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.studio-text {
  padding-top: 24px;
}

.studio-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: var(--ink);
}

.studio-quote .it {
  font-style: italic;
  color: var(--accent);
}

.studio-bio {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.studio-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

.studio-signature .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
}

.studio-signature .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
}

.studio-signature .linkedin {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.studio-signature .linkedin:hover {
  border-color: var(--accent);
  background: rgba(220, 38, 38, 0.06);
  color: var(--accent);
}

@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Contact ===== */

.contact {
  padding: 0 48px 80px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  padding-top: 96px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.contact-title .it {
  font-style: italic;
  color: var(--accent);
}

.contact-aside {
  margin-top: 40px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
}

.contact-direct {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 380px;
}

.contact-direct .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

.contact-direct .mail {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-mute);
  transition: border-color 0.3s ease;
}

.contact-direct .mail:hover { border-color: var(--accent); }

.contact-status {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.contact-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.7 0.15 145);
  box-shadow: 0 0 0 4px oklch(0.7 0.15 145 / 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Form */

.form {
  display: grid;
  gap: 4px;
  align-self: start;
  margin-top: 24px;
}

.field {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 24px 0 14px;
  transition: border-color 0.3s ease;
}

.field:hover { border-color: var(--ink-mute); }
.field:focus-within { border-color: var(--accent); }

.field label {
  position: absolute;
  top: 24px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease,
              font-size 0.3s ease;
  transform-origin: left top;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  padding: 0;
  margin-top: 4px;
  resize: none;
  font-weight: 400;
}

.field textarea {
  min-height: 84px;
  line-height: 1.5;
}

.field select {
  appearance: none;
  cursor: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
                    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
  background-position: calc(100% - 12px) 12px, calc(100% - 6px) 12px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field option { background: var(--bg-2); color: var(--ink); }

.field.is-filled label,
.field:focus-within label {
  transform: translateY(-24px) scale(0.85);
  color: var(--accent);
}

.form-submit {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn {
  appearance: none;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateX(4px);
}

.btn-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-success {
  padding: 48px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-success.is-shown {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; }
}

/* ===== Footer ===== */

footer {
  border-top: 1px solid var(--line);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

footer .right {
  display: flex;
  gap: 32px;
}

@media (max-width: 768px) {
  footer { padding: 32px 24px; flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ===== Video lightbox ===== */

.vlightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vlightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vlightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.vlightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  display: grid;
  gap: 16px;
  transform: scale(0.98);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vlightbox.is-open .vlightbox-inner {
  transform: scale(1);
}

.vlightbox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.vlightbox-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.vlightbox-title .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

.vlightbox-title-text {
  color: var(--ink);
}

.vlightbox-close {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.vlightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.vlightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.7);
}

.vlightbox-iframe-wrap {
  position: absolute;
  inset: 0;
}

.vlightbox-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vlightbox-hint {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  justify-content: center;
}

@media (max-width: 768px) {
  .vlightbox { padding: 16px; }
  .vlightbox-hint { display: none; }
  .vlightbox-close span { display: none; }
  .vlightbox-close { padding: 10px; }
}

/* ===== Hero pills (mobile value-prop strip) ===== */

.hero-pills {
  display: none;
}

/* ===== MOBILE OVERHAUL — max 680px ===== */

@media (max-width: 680px) {

  /* Nav */
  .nav { padding: 16px 20px; }
  .nav-meta { display: none; }

  /* Hero */
  .hero {
    padding: 0 20px;
    min-height: 100svh;
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .hero-meta {
    top: 72px;
    left: 20px;
    right: 20px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
    line-height: 0.9;
    margin-bottom: 0.1em;
  }

  .waveform {
    left: 20px;
    right: 20px;
    bottom: auto;
    top: 30%;
    height: 40px;
    opacity: 0.18 !important;
  }

  .hero-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 24px;
  }

  .hero-sub-left {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.65;
  }

  /* Show mobile value pills */
  .hero-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
  }

  .hero-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--ink-dim);
  }

  .hero-pill-sep { display: none; }

  /* Trust strip */
  .trust-inner { font-size: 20px; gap: 40px; }
  .trust-inner span { gap: 40px; }

  /* Sections */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 56px 0 24px;
    margin-bottom: 32px;
  }

  .section-title { font-size: clamp(40px, 11vw, 72px); }

  /* Work */
  .work { padding: 0 20px; }
  .work-grid { gap: 56px; padding-bottom: 80px; }
  .work-title { font-size: clamp(36px, 9vw, 52px); }
  .work-info { padding: 0; }
  .work-desc { font-size: 14px; }

  /* Why */
  .why { padding: 0 20px; }
  .why-lede { font-size: 20px; margin-bottom: 56px; padding: 0; text-align: left; }
  .pillars-grid { margin-bottom: 80px; }
  .pillar-card { padding: 40px 24px 48px; min-height: auto; }
  .pillar-num { font-size: 64px; }
  .pillar-title { font-size: clamp(28px, 7vw, 40px); }

  /* Founder */
  .studio { padding: 0 20px; }
  .studio-grid { padding-bottom: 80px; gap: 32px; }
  .studio-portrait { aspect-ratio: 3/2; max-height: 280px; }
  .studio-portrait img { object-position: top center; }
  .studio-quote { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 28px; }
  .studio-bio { font-size: 15px; }
  .studio-signature { flex-direction: column; align-items: flex-start; gap: 20px; max-width: 100%; }

  /* Contact */
  .contact { padding: 0 20px 64px; }
  .contact-grid { padding-top: 56px; gap: 40px; }
  .contact-title { font-size: clamp(52px, 13vw, 80px); }
  .contact-aside { font-size: 14px; margin-top: 24px; max-width: 100%; }
  .contact-direct { max-width: 100%; margin-top: 32px; padding-top: 24px; }
  .contact-direct .mail { font-size: 22px; word-break: break-all; }

  /* Form — prevent iOS zoom on input focus */
  .field { padding: 20px 0 12px; }
  .field input, .field textarea, .field select { font-size: 16px; }

  /* Footer */
  footer { padding: 28px 20px; }
}

/* ===== TABLET — 681px to 1024px ===== */

@media (min-width: 681px) and (max-width: 1024px) {
  .hero { padding: 0 32px; }
  .hero-meta { left: 32px; right: 32px; }
  .waveform { left: 32px; right: 32px; }
  .work { padding: 0 32px; }
  .why { padding: 0 32px; }
  .studio { padding: 0 32px; }
  .contact { padding: 0 32px 80px; }
  footer { padding: 40px 32px; }
  .section-title { font-size: clamp(44px, 7vw, 96px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-title .word > span { transform: translateY(0); }
  .reveal { opacity: 1; transform: none; }
}
