/* ========== TOKENS ========== */
:root {
  --oh-bg: #0a0a0b;
  --oh-bg-2: #0f0f11;
  --oh-bg-3: #17171a;
  --oh-fg: #ece8e2;
  --oh-fg-dim: #8a867f;
  --oh-fg-xdim: #4a4843;
  --oh-border: #26252a;
  --oh-border-strong: #3a393f;
  --oh-red: #ED3C2A;
  --oh-red-hot: #FF5134;
  --oh-accent: var(--oh-red);

  --oh-font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --oh-font-serif: "Newsreader", Georgia, serif;
  --oh-font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --oh-font-body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;

  --oh-max: 1440px;
  --oh-gutter: clamp(20px, 3vw, 48px);
}

/* Light mode */
.oh-mode-light {
  --oh-bg: #f0ece4;
  --oh-bg-2: #e6e1d7;
  --oh-bg-3: #dcd7cc;
  --oh-fg: #18160f;
  --oh-fg-dim: #6a6760;
  --oh-fg-xdim: #a9a69e;
  --oh-border: #c6c1b6;
  --oh-border-strong: #a09b8f;
}
/* Duotone — red on black, nothing else */
.oh-mode-duotone {
  --oh-bg: #0a0a0b;
  --oh-bg-2: #0f0a09;
  --oh-bg-3: #1a0e0b;
  --oh-fg: #ffe2db;
  --oh-fg-dim: #c87b6d;
  --oh-fg-xdim: #6a332a;
  --oh-border: #4a1d17;
  --oh-border-strong: #7a2c23;
}
.oh-mode-duotone .oh-ph-sub,
.oh-mode-duotone .oh-ph-label { color: #ffe2db; }

/* Display font variants */
.oh-disp-serif { --oh-font-display: "Newsreader", Georgia, serif; }
.oh-disp-mono { --oh-font-display: "JetBrains Mono", ui-monospace, monospace; }

/* ========== BASE ========== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--oh-bg);
  color: var(--oh-fg);
  font-family: var(--oh-font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--oh-accent); color: #0a0a0b; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* Grain overlay */
.oh-grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
}

/* ========== NAV ========== */
.oh-nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--oh-gutter);
  background: color-mix(in oklab, var(--oh-bg) 85%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--oh-border);
  font-family: var(--oh-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.oh-nav-brand { display: flex; align-items: center; gap: 10px; }
.oh-nav-logo {
  width: 26px; height: 26px; object-fit: contain;
  background: #fff; border-radius: 4px; padding: 2px;
}
.oh-mode-dark .oh-nav-logo,
.oh-mode-duotone .oh-nav-logo { background: transparent; filter: none; }
.oh-nav-wordmark {
  font-family: var(--oh-font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.oh-colon { color: var(--oh-accent); }

.oh-nav-links { display: flex; gap: 28px; justify-content: center; }
.oh-nav-links a {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 6px 0;
  color: var(--oh-fg-dim);
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.oh-nav-links a:hover, .oh-nav-links a.is-active { color: var(--oh-fg); }
.oh-nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -15px;
  height: 1px; background: var(--oh-accent);
}
.oh-nav-num { color: var(--oh-fg-xdim); font-size: 10px; }

.oh-nav-right { display: flex; align-items: center; gap: 12px; }
.oh-reel-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--oh-border-strong);
  border-radius: 999px;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all .2s;
}
.oh-reel-btn:hover { background: var(--oh-accent); color: #0a0a0b; border-color: var(--oh-accent); }
.oh-reel-btn:hover .oh-reel-dot { background: #0a0a0b; }
.oh-reel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--oh-accent);
  animation: oh-pulse 1.6s ease-in-out infinite;
}
@keyframes oh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}
.oh-reel-year { color: var(--oh-fg-dim); }
.oh-reel-btn:hover .oh-reel-year { color: inherit; opacity: 0.7; }

/* ========== FILM STRIP ========== */
.oh-filmstrip {
  display: flex; gap: 10px;
  padding: 8px var(--oh-gutter);
  overflow: hidden;
  border-top: 1px solid var(--oh-border);
  border-bottom: 1px solid var(--oh-border);
  background: var(--oh-bg-2);
}
.oh-filmstrip-vertical {
  flex-direction: column;
  padding: var(--oh-gutter) 8px;
  border-top: 0; border-bottom: 0;
  border-left: 1px solid var(--oh-border);
  border-right: 1px solid var(--oh-border);
}
.oh-perf {
  flex: 0 0 auto;
  width: 18px; height: 10px;
  background: var(--oh-bg);
  border-radius: 2px;
  border: 1px solid var(--oh-border);
}
.oh-filmstrip-vertical .oh-perf { width: 10px; height: 18px; }

/* ========== HERO ========== */
.oh-hero {
  position: relative;
  padding: 0 0 80px;
  border-bottom: 1px solid var(--oh-border);
}
.oh-hero-strip-top { margin-bottom: 40px; }

.oh-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr 360px;
  gap: 48px;
  padding: 0 var(--oh-gutter);
  align-items: start;
}

.oh-hero-meta {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-fg-dim);
  border-top: 1px solid var(--oh-border);
  padding-top: 12px;
}
.oh-meta-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--oh-border);
}
.oh-meta-row span:last-child { color: var(--oh-fg); }

.oh-hero-title {
  grid-column: 2;
  font-family: var(--oh-font-display);
  font-size: clamp(56px, 9vw, 148px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
}
.oh-hero-line { display: block; }
.oh-hero-title em {
  font-family: var(--oh-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--oh-accent);
}

.oh-hero-lede {
  grid-column: 2;
  max-width: 560px;
  margin: 32px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--oh-fg-dim);
  text-wrap: pretty;
}

.oh-hero-ctas {
  grid-column: 2;
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
}

.oh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--oh-border-strong);
  border-radius: 999px;
  font-family: var(--oh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all .2s;
}
.oh-btn-primary {
  background: var(--oh-accent); color: #0a0a0b; border-color: var(--oh-accent);
}
.oh-btn-primary:hover { background: var(--oh-red-hot); border-color: var(--oh-red-hot); }
.oh-btn-ghost:hover { background: var(--oh-fg); color: var(--oh-bg); border-color: var(--oh-fg); }
.oh-btn-suffix {
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid rgba(10,10,11,0.3);
  font-size: 10px;
  opacity: 0.7;
}

.oh-hero-featured {
  grid-column: 3;
  grid-row: 1 / span 4;
}
.oh-featured-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--oh-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--oh-fg-dim);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.oh-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--oh-accent);
  animation: oh-pulse 1.2s ease-in-out infinite;
}
.oh-hero-thumb { aspect-ratio: 3/4; width: 100%; }

/* Marquee */
.oh-marquee {
  margin-top: 80px;
  border-top: 1px solid var(--oh-border);
  border-bottom: 1px solid var(--oh-border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--oh-bg-2);
}
.oh-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: oh-marquee 60s linear infinite;
}
.oh-marquee-group { display: flex; flex: 0 0 auto; }
.oh-marquee-item {
  display: inline-flex; align-items: center;
  font-family: var(--oh-font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--oh-fg);
  padding: 0 32px;
}
.oh-marquee-sep { color: var(--oh-accent); margin-left: 32px; font-size: 22px; }
@keyframes oh-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ========== SECTION ========== */
.oh-section {
  padding: 100px var(--oh-gutter);
  border-bottom: 1px solid var(--oh-border);
  position: relative;
}
.oh-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--oh-border);
}
.oh-section-head-left { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.oh-section-num {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.oh-section-title {
  font-family: var(--oh-font-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}
.oh-section-sub {
  font-family: var(--oh-font-mono);
  font-size: 12px;
  color: var(--oh-fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.oh-section-head-right {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== WORK ========== */
.oh-work-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 16px;
}
.oh-filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.oh-filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--oh-border);
  border-radius: 999px;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oh-fg-dim);
  transition: all .2s;
}
.oh-filter:hover { color: var(--oh-fg); border-color: var(--oh-border-strong); }
.oh-filter.is-active {
  background: var(--oh-fg); color: var(--oh-bg); border-color: var(--oh-fg);
}
.oh-filter-count {
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.oh-filter.is-active .oh-filter-count { background: rgba(0,0,0,0.15); }
.oh-layout-note {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.oh-dim { color: var(--oh-fg-dim); }

/* Masonry via grid */
.oh-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
.oh-work-grid-uniform { grid-template-columns: repeat(3, 1fr); }
.oh-work-grid-uniform .oh-tile { grid-column: span 1 !important; grid-row: span 1 !important; }
.oh-work-grid-uniform .oh-tile-media { aspect-ratio: 4/3 !important; }

.oh-work-grid-rows { grid-template-columns: 1fr; }
.oh-work-grid-rows .oh-tile { grid-column: span 1 !important; grid-row: span 1 !important; }
.oh-work-grid-rows .oh-tile-media { aspect-ratio: 21/9 !important; }

.oh-tile {
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.oh-tile-wide { grid-column: span 4; grid-row: span 1; }
.oh-tile-wide .oh-tile-media { aspect-ratio: 16/9; }
.oh-tile-tall { grid-column: span 2; grid-row: span 2; }
.oh-tile-tall .oh-tile-media { aspect-ratio: 3/4; height: 100%; }
.oh-tile-square { grid-column: span 2; grid-row: span 1; }
.oh-tile-square .oh-tile-media { aspect-ratio: 1; }

.oh-tile:hover { transform: translateY(-4px); }

.oh-tile-media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--oh-bg-3);
}
.oh-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px;
  opacity: 0; transition: opacity .25s;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.oh-tile-overlay.is-visible { opacity: 1; }
.oh-tile-overlay-top, .oh-tile-overlay-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.oh-play-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}
.oh-tile-duration { background: rgba(0,0,0,0.5); padding: 4px 8px; border-radius: 2px; }

.oh-tile-frame-indicator {
  position: absolute; bottom: 10px; left: 10px;
  display: flex; gap: 4px;
  opacity: 0.5;
}
.oh-tile-frame-indicator span {
  width: 16px; height: 2px;
  background: rgba(255,255,255,0.35);
  transition: background .15s;
}
.oh-tile-frame-indicator span.is-on { background: var(--oh-accent); }

.oh-tile-info {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding: 0 2px;
}
.oh-tile-info-left { display: flex; gap: 12px; align-items: baseline; }
.oh-tile-num {
  font-family: var(--oh-font-mono);
  font-size: 10px;
  color: var(--oh-fg-xdim);
}
.oh-tile-title {
  font-family: var(--oh-font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.oh-tile-client {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-fg-dim);
  text-transform: uppercase;
  margin: 2px 0 0;
  letter-spacing: 0.04em;
}
.oh-tile-info-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  font-family: var(--oh-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.oh-tile-cat { color: var(--oh-accent); }
.oh-tile-year { color: var(--oh-fg-xdim); }

/* ========== PLACEHOLDER ========== */
.oh-placeholder {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  display: block;
}
.oh-ph-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.oh-ph-meta {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--oh-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  display: flex; flex-direction: column; gap: 2px;
  mix-blend-mode: difference;
  color: #fff;
}
.oh-ph-sub { opacity: 0.6; }
.oh-ph-corner {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--oh-font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  mix-blend-mode: difference;
}

/* ========== SERVICES ========== */
.oh-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--oh-border);
  border: 1px solid var(--oh-border);
}
.oh-service {
  padding: 40px;
  background: var(--oh-bg);
  position: relative;
  transition: background .2s;
}
.oh-service:hover { background: var(--oh-bg-2); }
.oh-service-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 16px;
}
.oh-service-code {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-accent);
  letter-spacing: 0.1em;
}
.oh-service-title {
  font-family: var(--oh-font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.oh-service-body {
  font-size: 15px;
  line-height: 1.55;
  max-width: 48ch;
  color: var(--oh-fg-dim);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.oh-service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.oh-service-tags li {
  font-family: var(--oh-font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid var(--oh-border-strong);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh-fg-dim);
}

/* ========== STUDIO ========== */
.oh-studio-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 48px 64px;
}
.oh-studio-copy { max-width: 60ch; }
.oh-studio-lede {
  font-family: var(--oh-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.oh-studio-lede em {
  font-family: var(--oh-font-serif); font-style: italic;
  color: var(--oh-accent);
}
.oh-studio-body {
  font-size: 15px; line-height: 1.6;
  color: var(--oh-fg-dim);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.oh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--oh-border);
  padding-top: 20px;
}
.oh-stat { display: flex; flex-direction: column; gap: 4px; }
.oh-stat-n {
  font-family: var(--oh-font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.oh-stat-l {
  font-family: var(--oh-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh-fg-dim);
}
.oh-studio-visual {
  position: relative;
  grid-row: span 2;
  aspect-ratio: 4/5;
  display: flex;
}
.oh-studio-img { flex: 1; }
.oh-studio-strip { width: 28px; flex: 0 0 auto; }

.oh-studio-team { grid-column: 1; }
.oh-team-title {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oh-fg-dim);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--oh-border);
}
.oh-team-list li {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--oh-border);
}
.oh-team-num {
  font-family: var(--oh-font-mono);
  font-size: 10px;
  color: var(--oh-fg-xdim);
  letter-spacing: 0.1em;
}
.oh-team-role {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oh-fg-dim);
}
.oh-team-name {
  font-family: var(--oh-font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ========== JOURNAL ========== */
.oh-journal-list {
  border-top: 1px solid var(--oh-border);
}
.oh-journal-item {
  display: grid;
  grid-template-columns: 60px 140px 1fr 140px 40px;
  gap: 24px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--oh-border);
  cursor: pointer;
  transition: background .2s, padding .2s;
}
.oh-journal-item:hover {
  background: var(--oh-bg-2);
  padding-left: 20px;
}
.oh-journal-num {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-fg-xdim);
}
.oh-journal-cat {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh-accent);
}
.oh-journal-title {
  font-family: var(--oh-font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.oh-journal-date {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-fg-dim);
  text-align: right;
}
.oh-journal-arrow { opacity: 0.5; transition: all .2s; }
.oh-journal-item:hover .oh-journal-arrow { opacity: 1; transform: translateX(4px); color: var(--oh-accent); }

/* ========== CONTACT ========== */
.oh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.oh-contact-headline {
  font-family: var(--oh-font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 40px;
}
.oh-red { color: var(--oh-accent); }
.oh-contact-dl { margin: 0; }
.oh-contact-dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--oh-border);
  font-family: var(--oh-font-mono);
  font-size: 13px;
}
.oh-contact-dl dt {
  color: var(--oh-fg-dim);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.oh-contact-dl dd { margin: 0; }
.oh-contact-dl a:hover { color: var(--oh-accent); }

.oh-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-self: start;
  padding: 32px;
  background: var(--oh-bg-2);
  border: 1px solid var(--oh-border);
}
.oh-field { display: flex; flex-direction: column; gap: 8px; }
.oh-field-wide { grid-column: span 2; }
.oh-field-label {
  font-family: var(--oh-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oh-fg-dim);
}
.oh-field input, .oh-field select, .oh-field textarea {
  font-family: var(--oh-font-body);
  font-size: 15px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--oh-border-strong);
  color: var(--oh-fg);
  outline: none;
  transition: border-color .2s;
}
.oh-field input:focus, .oh-field select:focus, .oh-field textarea:focus {
  border-color: var(--oh-accent);
}
.oh-field textarea { resize: vertical; font-family: var(--oh-font-body); }
.oh-submit { grid-column: span 2; justify-content: center; margin-top: 8px; }
.oh-submit.is-sent { background: transparent; color: var(--oh-accent); border-color: var(--oh-accent); }

/* ========== FOOTER ========== */
.oh-footer { background: var(--oh-bg-2); }
.oh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding: 60px var(--oh-gutter);
}
.oh-footer-brand { display: flex; align-items: center; gap: 12px; }
.oh-footer-logo { width: 36px; height: 36px; background: #fff; border-radius: 4px; padding: 3px; }
.oh-mode-dark .oh-footer-logo,
.oh-mode-duotone .oh-footer-logo { background: transparent; }
.oh-footer-wordmark {
  font-family: var(--oh-font-mono);
  font-size: 18px;
  font-weight: 500;
}
.oh-footer-col h5 {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh-fg-dim);
  margin: 0 0 12px;
}
.oh-footer-col p, .oh-footer-col li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--oh-fg);
  margin: 0 0 6px;
  font-family: var(--oh-font-mono);
}
.oh-footer-col li:hover { color: var(--oh-accent); cursor: pointer; }
.oh-footer-meta p { color: var(--oh-fg-dim) !important; font-size: 11px; }

/* ========== MODAL ========== */
.oh-modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; justify-content: center; align-items: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
  animation: oh-scrim-in .2s ease;
}
@keyframes oh-scrim-in { from { opacity: 0; } to { opacity: 1; } }
.oh-modal {
  max-width: 1200px; width: 100%;
  background: var(--oh-bg);
  border: 1px solid var(--oh-border);
  padding: 32px;
  position: relative;
  animation: oh-modal-in .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes oh-modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.oh-modal-close {
  position: absolute; top: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--oh-border-strong);
  border-radius: 999px;
  font-family: var(--oh-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--oh-fg);
  z-index: 2;
  background: var(--oh-bg);
}
.oh-modal-close:hover { background: var(--oh-accent); color: #0a0a0b; border-color: var(--oh-accent); }

/* Case study */
.oh-case-head { padding: 8px 0 24px; border-bottom: 1px solid var(--oh-border); margin-bottom: 24px; }
.oh-case-head-top {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.oh-case-cat { color: var(--oh-accent); }
.oh-case-client { color: var(--oh-fg); }
.oh-case-year, .oh-case-duration { color: var(--oh-fg-dim); }
.oh-case-title {
  font-family: var(--oh-font-display);
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}
.oh-case-hero {
  position: relative;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
  overflow: hidden;
}
.oh-case-play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  color: #fff;
  background: rgba(0,0,0,0.15);
  transition: background .2s;
  font-family: var(--oh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.oh-case-play:hover { background: rgba(0,0,0,0.45); }
.oh-case-play-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}
.oh-case-body {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.oh-case-h4 {
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oh-fg-dim);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--oh-border);
}
.oh-case-synopsis p {
  font-family: var(--oh-font-display);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 50ch;
  margin: 0;
  text-wrap: pretty;
}
.oh-case-credits dl { margin: 0; }
.oh-case-credits > dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--oh-border);
  font-family: var(--oh-font-mono);
  font-size: 12px;
}
.oh-case-credits dt { color: var(--oh-fg-dim); text-transform: uppercase; letter-spacing: 0.05em; font-size: 10px; }
.oh-case-credits dd { margin: 0; color: var(--oh-fg); }
.oh-case-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.oh-case-gallery .oh-placeholder { aspect-ratio: 4/3; }
.oh-case-gallery .oh-placeholder:first-child,
.oh-case-gallery .oh-placeholder:last-child { grid-column: span 2; aspect-ratio: 21/9; }

.oh-case-quote {
  padding: 40px;
  border: 1px solid var(--oh-border);
  margin-bottom: 40px;
  position: relative;
}
.oh-case-quote-mark {
  font-family: var(--oh-font-serif);
  font-size: 120px;
  line-height: 0.8;
  color: var(--oh-accent);
  position: absolute;
  top: 20px; left: 20px;
}
.oh-case-quote p {
  font-family: var(--oh-font-display);
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 36ch;
  margin: 0 0 16px 60px;
  text-wrap: balance;
}
.oh-case-quote footer {
  margin-left: 60px;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oh-fg-dim);
}

.oh-case-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.oh-case-related-item {
  text-align: left;
  display: flex; flex-direction: column;
  gap: 8px;
}
.oh-case-related-item .oh-placeholder { aspect-ratio: 4/3; }
.oh-case-related-info {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--oh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
}
.oh-case-related-item:hover .oh-case-related-info { color: var(--oh-accent); }

/* ========== REEL MODAL ========== */
.oh-reel-scrim { background: #000; padding: 0; }
.oh-reel-modal {
  position: relative;
  width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.oh-reel-frame {
  position: relative;
  width: 90%; aspect-ratio: 16/9;
  max-height: 88vh;
  background: #000;
  border: 1px solid var(--oh-border);
}
.oh-reel-ph { position: absolute; inset: 0; }
.oh-reel-hud {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.oh-reel-hud-row { display: flex; align-items: center; gap: 16px; }
.oh-reel-hud-row span { white-space: nowrap; }
.oh-reel-rec {
  width: 8px; height: 8px; border-radius: 50%; background: var(--oh-accent);
  animation: oh-pulse 1.2s ease-in-out infinite;
  padding: 0 !important;
}
.oh-reel-tc { margin-left: auto; font-size: 14px; letter-spacing: 0.1em; }
.oh-reel-scrubber {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 12px 0;
}
.oh-reel-scrubber-bar {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--oh-accent);
  transition: width .06s linear;
}
.oh-reel-marker {
  position: absolute; top: -4px; width: 1px; height: 10px;
  background: rgba(255,255,255,0.5);
}
.oh-reel-hud-bottom {
  flex-wrap: wrap;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}
.oh-modal-close-light { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(0,0,0,0.4); pointer-events: auto; }

/* ========== TWEAKS PANEL ========== */
.oh-tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 320px;
  background: var(--oh-bg-2);
  border: 1px solid var(--oh-border-strong);
  border-radius: 10px;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: var(--oh-font-mono);
  font-size: 11px;
}
.oh-tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--oh-border);
}
.oh-tweaks-title { text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.oh-tweaks-close { padding: 6px; border-radius: 4px; color: var(--oh-fg-dim); }
.oh-tweaks-close:hover { color: var(--oh-fg); }
.oh-tweaks-body { padding: 16px; display: grid; gap: 14px; }
.oh-tweak-row { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 12px; }
.oh-tweak-label { text-transform: uppercase; letter-spacing: 0.08em; color: var(--oh-fg-dim); font-size: 10px; }

.oh-seg {
  display: flex;
  background: var(--oh-bg);
  border: 1px solid var(--oh-border);
  border-radius: 6px;
  padding: 2px;
  overflow: hidden;
}
.oh-seg button {
  flex: 1;
  padding: 6px 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oh-fg-dim);
  border-radius: 4px;
  transition: all .15s;
}
.oh-seg button.is-active { background: var(--oh-fg); color: var(--oh-bg); }

.oh-swatches { display: flex; gap: 6px; }
.oh-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color .15s;
}
.oh-swatch.is-active { border-color: var(--oh-fg); }

.oh-tweaks-foot {
  padding: 10px 16px;
  border-top: 1px solid var(--oh-border);
  font-size: 10px;
  color: var(--oh-fg-dim);
}

/* ========== TRACKS (V / P split) ========== */
.oh-tracks {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--oh-border);
  border: 1px solid var(--oh-border);
}
.oh-track {
  padding: 40px;
  background: var(--oh-bg);
}
.oh-track-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--oh-border); }
.oh-track-code {
  font-family: var(--oh-font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  color: var(--oh-accent);
  letter-spacing: -0.04em;
}
.oh-track-title { font-family: var(--oh-font-display); font-size: 30px; font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.oh-track-sub { font-family: var(--oh-font-mono); font-size: 11px; color: var(--oh-fg-dim); text-transform: uppercase; letter-spacing: 0.08em; margin: 4px 0 0; }
.oh-track-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.oh-track-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--oh-border); font-size: 14px; }
.oh-track-list li:last-child { border-bottom: 0; }
.oh-track-bullet { font-family: var(--oh-font-mono); font-size: 10px; color: var(--oh-fg-xdim); letter-spacing: 0.08em; padding-top: 3px; }

/* ========== BTS ========== */
.oh-bts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.oh-bts-cell { overflow: hidden; }
.oh-bts-cell .oh-placeholder { width: 100%; height: 100%; }
.oh-bts-cell-0 { grid-column: span 3; grid-row: span 2; }
.oh-bts-cell-1 { grid-column: span 3; }
.oh-bts-cell-2 { grid-column: span 2; }
.oh-bts-cell-3 { grid-column: span 1; }
.oh-bts-cell-4 { grid-column: span 2; grid-row: span 2; }
.oh-bts-cell .oh-placeholder { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.oh-bts-cell:hover .oh-placeholder { transform: scale(1.04); }

/* ========== CAREERS ========== */
.oh-careers-intro { max-width: 60ch; font-family: var(--oh-font-display); font-size: 22px; line-height: 1.4; color: var(--oh-fg-dim); margin: 0 0 32px; text-wrap: pretty; }
.oh-careers-intro p { margin: 0; }
.oh-careers-list { border-top: 1px solid var(--oh-border); }
.oh-career-item {
  display: grid;
  grid-template-columns: 60px 1fr 180px 40px;
  gap: 24px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--oh-border);
  cursor: pointer;
  transition: background .2s, padding .2s;
}
.oh-career-item:hover { background: var(--oh-bg-2); padding-left: 20px; }
.oh-career-num { font-family: var(--oh-font-mono); font-size: 11px; color: var(--oh-fg-xdim); letter-spacing: 0.1em; }
.oh-career-body { display: flex; flex-direction: column; gap: 4px; }
.oh-career-role { font-family: var(--oh-font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.oh-career-desc { font-size: 13px; color: var(--oh-fg-dim); margin: 0; max-width: 60ch; text-wrap: pretty; }
.oh-career-type { font-family: var(--oh-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--oh-fg-dim); text-align: right; }
.oh-career-arrow { opacity: 0.5; transition: all .2s; }
.oh-career-item:hover .oh-career-arrow { opacity: 1; color: var(--oh-accent); transform: translateX(4px); }

/* Team tag */
.oh-team-tag { font-family: var(--oh-font-mono); font-size: 9px; color: var(--oh-accent); text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid var(--oh-accent); padding: 2px 6px; border-radius: 3px; justify-self: end; }
.oh-team-list li { grid-template-columns: 40px 1fr 1fr auto; }

/* ========== INSTAGRAM ========== */
.oh-ig-intro {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.oh-ig-intro p {
  font-family: var(--oh-font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--oh-fg-dim);
  max-width: 52ch;
  margin: 0;
  text-wrap: pretty;
}
.oh-ig-inline-link { color: var(--oh-fg); border-bottom: 1px solid var(--oh-accent); }
.oh-ig-btn { text-decoration: none; }

.oh-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.oh-ig-card {
  display: block;
  text-decoration: none;
  position: relative;
  background: var(--oh-bg-2);
  border: 1px solid var(--oh-border);
  overflow: hidden;
  min-height: 420px;
}
.oh-ig-card iframe {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
.oh-ig-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  height: 420px;
  color: var(--oh-fg-dim);
  font-family: var(--oh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--oh-bg-3);
}
.oh-ig-fallback-sub { font-size: 10px; color: var(--oh-fg-xdim); }

.oh-ig-footnote {
  margin-top: 24px;
  font-family: var(--oh-font-mono);
  font-size: 11px;
  color: var(--oh-fg-dim);
  letter-spacing: 0.03em;
}

@media (max-width: 1100px) {
  .oh-ig-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .oh-ig-grid { grid-template-columns: 1fr; gap: 12px; }
}

.oh-btn-suffix-ghost { border-left-color: var(--oh-border-strong) !important; color: var(--oh-fg-dim); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .oh-hero-grid { grid-template-columns: 1fr; }
  .oh-hero-featured { grid-column: 1; grid-row: auto; }
  .oh-hero-title { grid-column: 1; }
  .oh-hero-lede, .oh-hero-ctas { grid-column: 1; }
  .oh-work-grid { grid-template-columns: repeat(4, 1fr); }
  .oh-tile-wide { grid-column: span 4; }
  .oh-tile-tall { grid-column: span 2; }
  .oh-tile-square { grid-column: span 2; }
  .oh-services-grid { grid-template-columns: 1fr; }
  .oh-studio-grid { grid-template-columns: 1fr; }
  .oh-contact-grid { grid-template-columns: 1fr; }
  .oh-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .oh-journal-item { grid-template-columns: 40px 100px 1fr 40px; }
  .oh-journal-date { display: none; }
  .oh-case-body { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .oh-nav { grid-template-columns: 1fr auto; }
  .oh-nav-links { display: none; }
  .oh-work-grid { grid-template-columns: repeat(2, 1fr); }
  .oh-tile-wide { grid-column: span 2; }
  .oh-tile-tall, .oh-tile-square { grid-column: span 2; }
  .oh-tweaks { width: calc(100% - 40px); }
  .oh-hero-title { font-size: 56px; }
  .oh-marquee-item { font-size: 28px; }
  .oh-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .oh-case-related-grid { grid-template-columns: 1fr; }
  .oh-contact-form { grid-template-columns: 1fr; }
  .oh-field-wide { grid-column: auto; }
  .oh-submit { grid-column: auto; }
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 1100px) {
  .oh-tracks { grid-template-columns: 1fr; }
  .oh-bts-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .oh-bts-cell-0, .oh-bts-cell-4 { grid-column: span 2; }
  .oh-bts-cell-1, .oh-bts-cell-2, .oh-bts-cell-3 { grid-column: span 2; grid-row: span 1; }
  .oh-career-item { grid-template-columns: 40px 1fr 120px 40px; }
}
@media (max-width: 700px) {
  .oh-bts-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .oh-bts-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
  .oh-career-item { grid-template-columns: 30px 1fr 30px; }
  .oh-career-type { display: none; }
}
@media (max-width: 1100px) {
  .oh-hero-grid { grid-template-columns: 1fr; }
  .oh-hero-featured { grid-column: 1; grid-row: auto; }
  .oh-hero-title { grid-column: 1; }
  .oh-hero-lede, .oh-hero-ctas { grid-column: 1; }
  .oh-work-grid { grid-template-columns: repeat(4, 1fr); }
  .oh-tile-wide { grid-column: span 4; }
  .oh-tile-tall { grid-column: span 2; }
  .oh-tile-square { grid-column: span 2; }
  .oh-services-grid { grid-template-columns: 1fr; }
  .oh-studio-grid { grid-template-columns: 1fr; }
  .oh-contact-grid { grid-template-columns: 1fr; }
  .oh-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .oh-journal-item { grid-template-columns: 40px 100px 1fr 40px; }
  .oh-journal-date { display: none; }
  .oh-case-body { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .oh-nav { grid-template-columns: 1fr auto; }
  .oh-nav-links { display: none; }
  .oh-work-grid { grid-template-columns: repeat(2, 1fr); }
  .oh-tile-wide { grid-column: span 2; }
  .oh-tile-tall, .oh-tile-square { grid-column: span 2; }
  .oh-tweaks { width: calc(100% - 40px); }
  .oh-hero-title { font-size: 56px; }
  .oh-marquee-item { font-size: 28px; }
  .oh-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .oh-case-related-grid { grid-template-columns: 1fr; }
  .oh-contact-form { grid-template-columns: 1fr; }
  .oh-field-wide { grid-column: auto; }
  .oh-submit { grid-column: auto; }
}
