:root {
  --ink: #f0eee9;
  --muted: #aaa7a1;
  --black: #080808;
  --panel: #11110f;
  --red: #a30e1d;
  --line: rgba(255,255,255,.14);
}

html[data-theme="light"] {
  --ink: #171614;
  --muted: #67635d;
  --black: #f3f0e9;
  --panel: #fffdf8;
  --line: rgba(19,18,16,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .45s ease, color .45s ease;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { color: inherit; }
em { color: var(--red); font-family: inherit; font-style: italic; font-weight: 500; }
::selection { background: var(--red); color: #fff; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 88px; padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent; transition: background .4s, border-color .4s, height .4s;
}
.site-header.scrolled { height: 70px; background: rgba(8,8,8,.82); backdrop-filter: blur(18px); border-color: var(--line); }
html[data-theme="light"] .site-header:not(.scrolled) { color: #fff; }
html[data-theme="light"] .site-header.scrolled { background: rgba(243,240,233,.9); color: var(--ink); }
html[data-theme="light"] body.menu-open .site-header { background: rgba(243,240,233,.96); color: var(--ink); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 10px; letter-spacing: -.04em; }
.brand-mark { font-size: 25px; font-weight: 900; color: var(--red); }
.brand-name { font-size: 15px; font-weight: 650; line-height: 1; }
.desktop-nav { display: flex; align-items: center; gap: 40px; font-size: 12px; text-transform: uppercase; letter-spacing: .17em; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--red); transition: right .3s; }
.desktop-nav a:hover::after { right: 0; }
.theme-toggle { display: inline-flex; align-items: center; gap: 9px; padding: 7px 0; border: 0; background: transparent; font: inherit; text-transform: uppercase; letter-spacing: .14em; cursor: pointer; transition: color .25s ease; }
.theme-toggle:hover,.theme-toggle:focus-visible { color: var(--red); }
.theme-toggle:focus-visible,
.menu-button:focus-visible,
.detail-close:focus-visible { outline: 1px solid var(--red); outline-offset: 4px; }
.theme-toggle-icon { position: relative; display: block; width: 21px; height: 21px; border: 1px solid currentColor; border-radius: 50%; overflow: hidden; }
.theme-toggle-icon::after { content: ""; position: absolute; inset: 3px 3px 3px 50%; border-radius: 0 10px 10px 0; background: currentColor; transition: inset .35s ease, border-radius .35s ease; }
html[data-theme="light"] .theme-toggle-icon::after { inset: 3px; border-radius: 50%; }
.menu-button, .mobile-menu { display: none; }

.hero { position: relative; min-height: 100svh; padding: 130px 4vw 5vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: #f0eee9; }
.hero-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-media img { height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.55) contrast(1.08); animation: drift 18s ease-in-out infinite alternate; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(6,6,6,.88) 0%, rgba(6,6,6,.48) 55%, rgba(6,6,6,.18) 100%), linear-gradient(0deg, #080808 0%, transparent 32%); }
.hero-shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 35%, transparent 0%, rgba(0,0,0,.18) 70%); }
.hero-kicker, .eyebrow { margin: 0; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.hero-kicker { width: max-content; padding-top: 10px; border-top: 2px solid var(--red); color: #d0cdc7; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 2px; background: var(--red); margin-right: 12px; vertical-align: middle; }
.hero-heading-wrap { margin: auto 0; }
.hero-heading { margin: 0; max-width: 1250px; font-size: clamp(64px, 10.3vw, 156px); line-height: .8; letter-spacing: -.078em; font-weight: 750; text-transform: lowercase; }
.hero-line { display: block; }
.hero-line-shift { padding-left: 11vw; }
.hero-heading em { letter-spacing: -.085em; }
.hero-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; padding-left: 36vw; }
.hero-footer p { max-width: 500px; margin: 0; color: #d1cfca; font-size: clamp(14px,1.25vw,18px); line-height: 1.55; }
.text-link { flex: none; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; transition: color .3s, border-color .3s; }
.text-link:hover { color: var(--red); border-color: var(--red); }
.text-link span { margin-left: 20px; }
.scroll-cue { position: absolute; right: 4vw; top: 50%; display: flex; align-items: center; gap: 12px; transform: rotate(90deg) translateX(50%); transform-origin: right; color: rgba(255,255,255,.5); font-size: 9px; text-transform: uppercase; letter-spacing: .24em; }
.scroll-cue span { width: 45px; height: 1px; background: currentColor; }

.discipline-bar { overflow: hidden; border-block: 1px solid rgba(255,255,255,.28); background: var(--red); color: white; }
.discipline-track { display: flex; width: max-content; animation: discipline-scroll 25s linear infinite; }
.discipline-bar:hover .discipline-track { animation-play-state: paused; }
.discipline-group { display: flex; flex: none; align-items: center; gap: 30px; padding: 16px 15px; }
.discipline-group span { white-space: nowrap; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.discipline-group i { display: block; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.8); }
@keyframes discipline-scroll { to { transform: translateX(-50%); } }

.work-section, .studio-section, .contact-section { padding: 140px 4vw; }
.work-section { background: var(--black); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; padding-bottom: 72px; }
.section-heading h2, .studio-section h2, .contact-section h2 { margin: 32px 0 0; font-size: clamp(50px,7.5vw,112px); line-height: .88; letter-spacing: -.07em; }
.section-intro { justify-self: end; max-width: 390px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.project-list { display: flex; flex-direction: column; gap: 130px; }
.project { cursor: pointer; outline: none; }
.project-wide { width: 85%; }
.project-compact { width: 62%; }
.project-compact:nth-child(even) { align-self: flex-end; }
.project-image { position: relative; aspect-ratio: 16/8.4; overflow: hidden; background: #181818; }
.project-image::after { content: none; }
.project-image img { height: 100%; object-fit: cover; filter: none; transition: transform 1s cubic-bezier(.2,.7,.1,1); }
.project:hover .project-image img, .project:focus .project-image img { transform: scale(1.035); filter: none; }
.project-index { position: absolute; z-index: 2; top: 20px; left: 22px; padding: 10px 13px; border: 0; background: var(--red); color: #fff; font-size: 10px; font-weight: 650; letter-spacing: .1em; text-shadow: none; }
.view-project { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; width: clamp(112px,10vw,154px); aspect-ratio: 1; place-items: center; padding: 18px; border-radius: 50%; background: rgba(163,14,29,.94); color: white; font-size: 9px; text-align: center; text-transform: uppercase; letter-spacing: .16em; transform: translate(-50%,-42%) scale(.72); opacity: 0; pointer-events: none; backdrop-filter: blur(6px); transition: transform .55s cubic-bezier(.16,.72,.18,1), opacity .4s ease; }
.project:hover .view-project, .project:focus-visible .view-project { transform: translate(-50%,-50%) scale(1); opacity: 1; }
.project-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding-top: 22px; }
.project-meta h3 { margin: 0 0 6px; color: var(--ink); font-size: clamp(25px,3vw,44px); letter-spacing: -.045em; }
.project-meta p { margin: 0; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.project-meta .project-note { max-width: 260px; padding-top: 9px; text-align: right; text-transform: none; letter-spacing: 0; font-size: 14px; }
.project-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
.project-offset { margin-top: 180px; }
.portrait-frame { aspect-ratio: 4/5; }

.studio-section { background: #f1efe9; color: #111; }
.studio-section .eyebrow { color: #55514b; }
.studio-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; align-items: end; }
.studio-copy { padding-bottom: 10px; color: #514e49; font-size: 16px; line-height: 1.65; }
.studio-copy .lead { color: #151515; font-size: clamp(21px,2.1vw,30px); line-height: 1.35; letter-spacing: -.025em; }
.services { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 110px; border-top: 1px solid rgba(0,0,0,.25); }
.services span { padding: 22px 12px 0 0; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }

.contact-section { min-height: 80svh; display: flex; flex-direction: column; justify-content: space-between; background: var(--red); color: #fff; }
.contact-section .eyebrow { color: rgba(255,255,255,.78); }
.contact-section .eyebrow::before { background: white; }
.contact-section h2 { font-size: clamp(64px,11vw,160px); }
.contact-section em { color: white; }
.email-link { align-self: flex-end; margin-top: 80px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: clamp(18px,2.2vw,32px); letter-spacing: -.03em; }
.email-link span { margin-left: 40px; }

footer { padding: 36px 4vw; display: flex; justify-content: center; border-top: 1px solid var(--line); background: var(--black); color: var(--muted); font-size: 10px; letter-spacing: .08em; }
footer p { margin: 0; }
.footer-brand { color: var(--ink); text-transform: none; letter-spacing: normal; }

/* Project detail experience */
.project-detail { position: fixed; inset: 0; z-index: 90; background: var(--black); visibility: hidden; opacity: 0; transition: opacity .45s, visibility .45s, background-color .45s ease, color .45s ease; }
.project-detail.open { visibility: visible; opacity: 1; }
.detail-header { position: fixed; z-index: 5; inset: 0 0 auto; height: 76px; padding: 0 4vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; background: linear-gradient(rgba(4,4,4,.82), transparent); color: #fff; }
.detail-header > p { margin: 0; text-align: center; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.detail-close { justify-self: end; display: flex; align-items: center; gap: 12px; padding: 0; border: 0; background: none; font: inherit; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; cursor: pointer; }
.detail-close span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 20px; transition: background .25s, color .25s; }
.detail-close:hover span { background: white; color: black; }
.detail-scroll { height: 100%; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.detail-hero { position: relative; height: 100svh; min-height: 650px; display: flex; align-items: flex-end; padding: 7vh 4vw; overflow: hidden; }
.detail-hero > img { position: absolute; inset: 0; z-index: -2; height: 100%; object-fit: cover; filter: saturate(.78); }
.detail-hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(5,5,5,.9) 0%, transparent 58%), linear-gradient(90deg, rgba(0,0,0,.3), transparent 60%); }
.detail-title-wrap { color: #fff; }
.detail-title-wrap > p { margin: 0 0 18px 7px; font-size: 10px; text-transform: uppercase; letter-spacing: .22em; }
.detail-title-wrap h2 { max-width: 1250px; margin: 0; font-size: clamp(72px,12vw,180px); line-height: .78; letter-spacing: -.085em; text-transform: lowercase; }
.detail-scroll-cue { position: absolute; right: 4vw; bottom: 7vh; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.detail-about { padding: 140px 4vw; background: #f1efe9; color: #111; }
.detail-about .eyebrow { color: #55514b; }
.detail-about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 11vw; margin-top: 80px; }
.detail-lead { margin: 0; font-size: clamp(34px,4.3vw,66px); line-height: 1.02; letter-spacing: -.055em; }
.detail-description { max-width: 520px; color: #4e4a45; font-size: 16px; line-height: 1.7; }
.detail-description > p { margin: 0; }
.detail-description dl { margin: 70px 0 0; border-top: 1px solid rgba(0,0,0,.25); }
.detail-description dl div { display: grid; grid-template-columns: 1fr 1.5fr; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,.15); }
.detail-description dt { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.detail-description dd { margin: 0; font-size: 12px; color: #111; }
.detail-film { padding: 130px 4vw; background: var(--black); color: var(--ink); }
.detail-film-label { display: flex; justify-content: space-between; margin-bottom: 18px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .19em; }
.detail-video-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.detail-video-wrap iframe { display: block; width: 100%; height: 100%; border: 0; touch-action: manipulation; }
.detail-bts { padding: 40px 4vw 140px; background: var(--black); color: var(--ink); }
.detail-bts .eyebrow { color: var(--muted); }
.detail-bts-heading { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; margin-bottom: 80px; }
.detail-bts-heading h3 { margin: 0; font-size: clamp(50px,7vw,106px); line-height: .88; letter-spacing: -.07em; }
.detail-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.detail-gallery figure { margin: 0; overflow: hidden; background: #151515; }
.detail-gallery figure:nth-child(3n) { grid-column: 1/-1; }
.detail-gallery img { height: 100%; min-height: 420px; object-fit: cover; transition: transform .8s ease; }
.detail-gallery figure:hover img { transform: scale(1.025); }
.next-project { width: 100%; min-height: 360px; padding: 70px 4vw; border: 0; background: var(--red); color: white; display: grid; grid-template-columns: .4fr 1fr auto; align-items: center; text-align: left; cursor: pointer; }
.next-project span { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.next-project strong { font-size: clamp(50px,8vw,120px); line-height: .9; letter-spacing: -.07em; text-transform: lowercase; }
.next-project i { font-size: 50px; font-style: normal; transition: transform .3s; }
.next-project:hover i { transform: translate(8px,-8px); }

.reveal { opacity: 0; transform: translateY(52px); transition: opacity .9s ease var(--reveal-delay,0ms), transform 1.05s cubic-bezier(.16,.72,.18,1) var(--reveal-delay,0ms); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes drift { to { transform: scale(1.06) translateX(-1.5%); } }

@media (max-width: 760px) {
  .site-header { height: 72px; padding-inline: 20px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; width: 38px; height: 38px; padding: 10px 6px; border: 0; background: transparent; flex-direction: column; justify-content: center; gap: 7px; }
  .menu-button span { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 40; padding: 110px 20px 40px; background: var(--black); flex-direction: column; justify-content: center; gap: 18px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s, background-color .45s ease, color .45s ease; }
  .mobile-menu.open { display: flex; opacity: 1; visibility: visible; }
  .mobile-menu a { font-size: 52px; line-height: 1; letter-spacing: -.06em; transition: color .25s ease, transform .25s ease; }
  .mobile-menu a:hover,
  .mobile-menu a:focus-visible { color: var(--red); transform: translateX(8px); }
  .mobile-theme-toggle { width: max-content; margin-top: 34px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 11px; }
  .hero { padding: 108px 20px 28px; min-height: 760px; }
  .hero-media img { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,6,6,.83), rgba(6,6,6,.2)), linear-gradient(0deg,#080808,transparent 45%); }
  .hero-heading { font-size: clamp(57px,18vw,92px); line-height: .83; }
  .hero-line-shift { padding-left: 0; }
  .hero-footer { padding-left: 0; display: block; }
  .hero-footer p { max-width: 88%; font-size: 14px; }
  .text-link { display: inline-block; margin-top: 28px; }
  .scroll-cue { display: none; }
  .work-section, .studio-section, .contact-section { padding: 92px 20px; }
  .section-heading { display: block; padding-bottom: 48px; }
  .section-heading h2, .studio-section h2 { font-size: 55px; }
  .section-intro { margin-top: 28px; }
  .project-list { gap: 78px; }
  .discipline-group { gap: 22px; padding-block: 14px; }
  .discipline-group span { font-size: 9px; }
  .project-wide { width: 100%; }
  .project-compact { width: 100%; }
  .project-image { aspect-ratio: 4/3; }
  .project-pair { grid-template-columns: 1fr; gap: 78px; }
  .project-offset { margin-top: 0; }
  .portrait-frame { aspect-ratio: 4/5; }
  .view-project { display: none; }
  .project-meta .project-note { display: none; }
  .studio-grid { grid-template-columns: 1fr; gap: 45px; }
  .services { grid-template-columns: 1fr; margin-top: 70px; }
  .services span { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.17); }
  .contact-section { min-height: 650px; }
  .contact-section h2 { font-size: 64px; }
  .email-link { align-self: flex-start; font-size: 17px; }
  .email-link span { margin-left: 10px; }
  footer { padding-inline: 20px; }
  .detail-header { height: calc(66px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) 20px 0; grid-template-columns: minmax(0,1fr) auto; background: rgba(8,8,8,.94); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px); }
  .detail-header > p { display: none; }
  .detail-header .brand { min-width: 0; }
  .detail-close { gap: 9px; }
  .detail-hero { height: auto; min-height: 0; padding: calc(66px + env(safe-area-inset-top)) 0 0; display: block; background: #050505; overflow: hidden; }
  .detail-hero > img { position: relative; inset: auto; z-index: 0; display: block; width: 100%; height: auto; object-fit: contain; filter: none; }
  .detail-hero-shade { display: none; }
  .detail-title-wrap { position: relative; z-index: 1; width: 100%; min-width: 0; padding: 26px 20px 38px; background: #050505; }
  .detail-title-wrap > p { margin: 0 0 13px 2px; font-size: 9px; line-height: 1.45; }
  .detail-title-wrap h2 { max-width: 100%; font-size: clamp(52px,16.5vw,76px); line-height: .84; overflow-wrap: anywhere; }
  .detail-scroll-cue { display: none; }
  .detail-about { padding: 82px 20px 76px; }
  .detail-film { padding-block: 76px; }
  .detail-bts { padding: 72px 20px 96px; }
  .detail-about-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 42px; }
  .detail-lead { font-size: clamp(32px,9.5vw,39px); line-height: 1.04; }
  .detail-description { font-size: 15px; line-height: 1.65; }
  .detail-description dl { margin-top: 38px; }
  .detail-description dl div { grid-template-columns: minmax(82px,.8fr) 1.5fr; gap: 14px; padding: 14px 0; }
  .detail-film { padding-inline: 0; }
  .detail-film-label { padding-inline: 20px; }
  .detail-video-wrap { height: clamp(230px, 68vw, 390px); aspect-ratio: auto; border-radius: 0; }
  .detail-bts-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .detail-bts-heading h3 { font-size: clamp(43px,13vw,54px); }
  .detail-gallery { grid-template-columns: 1fr; gap: 12px; }
  .detail-gallery figure:nth-child(3n) { grid-column: auto; }
  .detail-gallery img { display: block; width: 100%; height: auto; min-height: 0; aspect-ratio: 4/3; }
  .next-project { min-height: 240px; padding: 44px 20px; grid-template-columns: minmax(0,1fr) auto; gap: 22px 14px; }
  .next-project span { grid-column: 1/-1; align-self: start; }
  .next-project strong { max-width: 100%; font-size: clamp(40px,13.5vw,55px); line-height: .88; overflow-wrap: anywhere; }
  .next-project i { font-size: 35px; }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .detail-hero { height: auto; min-height: 0; padding: 76px 0 0; display: block; background: #050505; overflow: hidden; }
  .detail-hero > img { position: relative; inset: auto; z-index: 0; display: block; width: 100%; height: auto; object-fit: contain; filter: none; }
  .detail-hero-shade { display: none; }
  .detail-title-wrap { position: relative; z-index: 1; width: 100%; padding: 34px 4vw 50px; background: #050505; }
  .detail-title-wrap h2 { max-width: 100%; font-size: clamp(64px,10vw,96px); line-height: .84; overflow-wrap: anywhere; }
  .detail-scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Refined, repeatable project grid */
.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 3vw, 52px);
  row-gap: clamp(86px, 10vw, 150px);
}
.project-featured { grid-column: 1 / -1; }
.project-standard { min-width: 0; }
.project-image { aspect-ratio: 4 / 3; }
.project-featured .project-image { aspect-ratio: 16 / 7.7; }
.project-final { margin-top: 18px; }
.project-meta {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.project-identity h3 {
  display: flex;
  align-items: baseline;
  gap: 13px;
}
.project-identity h3 i {
  color: var(--red);
  font-size: .44em;
  font-style: normal;
  opacity: 0;
  transform: translate(-7px,7px);
  transition: opacity .3s, transform .3s;
}
.project:hover .project-identity h3 i,
.project:focus .project-identity h3 i { opacity: 1; transform: none; }
.project-standard .project-meta { display: block; }
.project-standard .project-note {
  max-width: 420px;
  margin-top: 17px;
  padding-right: 7%;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  line-height: 1.55;
}
.project-featured .project-meta { align-items: flex-end; }
.project-featured .project-note {
  max-width: 330px;
  padding-bottom: 4px;
  font-size: 13px;
  line-height: 1.55;
}
.project-identity p span { color: var(--red); margin-inline: 5px; }
@media (max-width: 760px) {
  .project-list { grid-template-columns: 1fr; row-gap: 72px; }
  .project-featured,.project-standard { grid-column: 1; width: 100%; margin: 0; }
  .project-image,.project-featured .project-image { aspect-ratio: 4 / 3; }
  .project-meta,.project-featured .project-meta { display: block; padding-top: 16px; }
  .project-meta .project-note,.project-featured .project-note { display: block; margin-top: 14px; max-width: 92%; padding: 0; text-align: left; font-size: 12px; line-height: 1.55; }
  .project-identity h3 { justify-content: space-between; }
  .project-identity h3 i { opacity: 1; transform: none; }
}

/* OKO identity + restrained loading moment */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  gap: 18px;
  background: var(--red);
  color: #fff;
  transition: opacity .42s ease, visibility .42s ease;
}
.site-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  width: clamp(96px, 11vw, 150px);
  justify-self: center;
  transform-origin: 50% 65%;
  animation: mark-arrival .8s cubic-bezier(.18,.72,.12,1) both;
}
.loader-mark img { display: block; width: 100%; aspect-ratio: 1.52 / 1; object-fit: contain; }
.loader {
  font-weight: 700;
  font-family: sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: -.035em;
  text-align: center;
  justify-self: center;
  animation: loader-blink 1s linear infinite alternate;
}
.loader::before { content: "OKO Studio loading..."; }
@keyframes loader-blink { to { opacity: 0; } }
@keyframes mark-arrival {
  0% { opacity: 0; transform: translateY(20px) rotate(-3deg) scale(.88); }
  62% { opacity: 1; transform: translateY(-3px) rotate(1deg) scale(1.025); }
  100% { transform: none; }
}

.brand-symbol {
  display: grid;
  width: 32px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.brand-symbol img { display: block; width: 100%; height: 100%; object-fit: contain; }
.site-header .brand-symbol { width: 44px; height: 30px; }
.detail-header .brand-symbol { width: 40px; height: 28px; }
.brand-divider { width: 1px; height: 20px; margin-inline: 3px; background: currentColor; opacity: .42; }
.brand-name { white-space: nowrap; }
.site-header .brand-name { font-size: clamp(17px, 1.35vw, 20px); letter-spacing: -.045em; }
.detail-header .brand-name { font-size: 16px; letter-spacing: -.035em; }
.footer-brand .brand-symbol { width: 32px; height: 22px; }

/* Services presented as an editorial studio index */
.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: stretch;
  margin-top: clamp(72px, 9vw, 130px);
}
.services-image { position: relative; margin: 0; min-height: 560px; overflow: hidden; background: #d9d5cc; }
.services-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 42%); pointer-events: none; }
.services-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .9s cubic-bezier(.2,.7,.1,1), filter .6s; }
.services-image:hover img { transform: scale(1.025); filter: saturate(1); }
.services-image figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 22px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.services-showcase .services { display: flex; flex-direction: column; justify-content: center; margin: 0; border: 0; }
.services-showcase .services span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,.22);
  font-size: clamp(20px, 2.25vw, 35px);
  line-height: 1;
  text-transform: none;
  letter-spacing: -.035em;
  transition: padding-left .3s ease, color .3s ease;
}
.services-showcase .services span:last-child { border-bottom: 1px solid rgba(0,0,0,.22); }
.services-showcase .services span:hover { padding-left: 8px; color: var(--red); }
.services-showcase .services i { color: var(--red); font-size: 9px; font-style: normal; letter-spacing: .12em; }

@media (max-width: 760px) {
  .brand-symbol { width: 31px; height: 22px; }
  .site-header .brand-symbol { width: 38px; height: 26px; }
  .site-header .brand-name { font-size: 16px; }
  .site-header .brand-divider { height: 18px; }
  .services-showcase { grid-template-columns: 1fr; gap: 40px; margin-top: 68px; }
  .services-image { min-height: 0; aspect-ratio: 4 / 3; }
  .services-image figcaption { inset: auto 15px 14px; font-size: 8px; }
  .services-showcase .services { margin: 0; }
  .services-showcase .services span { grid-template-columns: 34px 1fr; padding: 17px 0; font-size: clamp(21px, 7vw, 30px); }
}

@media (max-width: 760px) and (orientation: landscape) {
  .detail-video-wrap { height: min(76svh, 430px); }
}

@media (prefers-reduced-motion: reduce) {
  .loader-mark { animation: none; }
}
