:root {
  --black: #080808;
  --paper: #f2f1ed;
  --ink: #101010;
  --muted: #74746f;
  --line: rgba(16, 16, 16, .18);
  --light-line: rgba(255, 255, 255, .2);
  --accent: #e52608;
  --content-max: 1440px;
  --pad: max(clamp(22px, 5.5vw, 88px), calc((100vw - var(--content-max)) / 2));
  --space: clamp(105px, 10vw, 175px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", Arial, sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }

.site-header { position: fixed; z-index: 20; inset: 0 0 auto; height: clamp(72px, 6vw, 92px); padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; color: #fff; transition: background .4s ease, height .4s ease; }
.site-header.scrolled { height: 62px; background: rgba(8,8,8,.86); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .23em; font-weight: 500; }
.brand-mark { width: 17px; height: 17px; border: 4px solid currentColor; border-radius: 50%; position: relative; display: block; }
.brand-mark::after { content: ""; position: absolute; background: var(--accent); width: 7px; height: 5px; right: -5px; bottom: -3px; transform: rotate(-12deg); }
.site-header nav { display: flex; gap: 34px; font-size: 11px; letter-spacing: .06em; }
.site-header nav a { position: relative; opacity: .62; transition: opacity .35s ease; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent); transition: right .45s cubic-bezier(.2,.8,.2,1); }
.site-header nav a:hover, .site-header nav a.active { opacity: 1; }
.site-header nav a:hover::after, .site-header nav a.active::after { right: 0; }
.menu-button { display: none; background: none; border: 0; color: #fff; }

.hero { height: clamp(700px, 56.25vw, 960px); min-height: min(100svh, 700px); max-height: 100svh; position: relative; overflow: hidden; background: var(--black); color: #fff; }
.hero-media { position: absolute; inset: -4%; background: url("assets/optimized/hero-production.jpg") center / cover no-repeat; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05); animation: heroIn 2.2s cubic-bezier(.2,.8,.2,1) forwards; will-change: transform; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity 1.2s ease; }
.js .hero-video { opacity: 0; }
.js .hero-video.ready { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.28) 58%, rgba(0,0,0,.08)), linear-gradient(0deg, rgba(0,0,0,.55), transparent 48%); }
.hero-content { position: absolute; inset: 0; padding: clamp(170px, 20vh, 240px) var(--pad) clamp(80px, 9vh, 110px); display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow, .section-label { margin: 0; text-transform: uppercase; font-size: 9px; letter-spacing: .21em; font-weight: 500; }
.eyebrow { color: rgba(255,255,255,.58); animation: rise 1.2s .25s both; }
.hero h1 { margin: 28px 0 0; max-width: 1050px; font-size: clamp(64px, 6vw, 100px); line-height: 1.07; letter-spacing: -.022em; font-weight: 300; animation: rise 1.3s .38s both; }
h1 span, h2 span { color: var(--accent); }
.hero-copy { max-width: 530px; margin: 30px 0 34px; color: rgba(255,255,255,.62); font-size: clamp(13px, 1vw, 15px); line-height: 1.65; animation: rise 1.3s .5s both; }
.hero-actions { display: flex; gap: 12px; animation: rise 1.3s .62s both; }
.hero-proof { margin-top: auto; width: min(670px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); animation: rise 1.3s .74s both; }
.hero-proof span { padding: 18px 20px 0 0; color: rgba(255,255,255,.62); text-transform: uppercase; font-size: 9px; letter-spacing: .16em; font-weight: 500; }
.hero-proof span + span { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.18); }
.button { min-width: 155px; padding: 13px 16px; display: inline-flex; justify-content: space-between; gap: 24px; border: 1px solid transparent; text-transform: uppercase; font-size: 9px; letter-spacing: .12em; font-weight: 500; transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease; }
.button span { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(3px, -3px); }
.button-light { background: #fff; color: #111; }
.button-light:hover { background: var(--accent); color: #fff; }
.button-ghost { border-color: rgba(255,255,255,.38); color: #fff; }
.button-ghost:hover { border-color: #fff; }
.button-dark { background: var(--ink); color: #fff; width: 100%; }
.button-dark:hover { background: var(--accent); }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 10px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; opacity: .62; }
.scroll-cue i { width: 1px; height: 28px; background: currentColor; }

.value, .capabilities, .selected-work, .why, .industries, .process, .contact { padding: var(--space) var(--pad); }
.value { padding-bottom: clamp(55px, 6vw, 95px); }
.value .section-intro { margin-bottom: 0; }
.capabilities { padding-top: clamp(70px, 8vw, 125px); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, .7fr); align-items: end; gap: clamp(60px, 9vw, 150px); margin-bottom: clamp(80px, 8vw, 130px); }
.section-intro .section-label { grid-column: 1 / -1; color: var(--muted); }
.section-intro h2, .work-head h2, .why-head h2, .industries-head h2, .process h2, .studio h2, .contact h2 { margin: 0; font-size: clamp(56px, 5.8vw, 98px); line-height: 1.08; letter-spacing: -.024em; font-weight: 300; }
.section-intro > p:last-child, .work-head > p { max-width: 350px; color: var(--muted); font-size: clamp(13px, 1vw, 15px); line-height: 1.65; }
.value-copy { max-width: 430px; }
.value-copy p { margin: 0; color: var(--muted); font-size: clamp(13px, 1vw, 15px); line-height: 1.7; }
.value-copy p + p { margin-top: 18px; }
.capability-list { border-top: 1px solid var(--line); }
.capability { height: clamp(330px, 29vw, 490px); display: grid; grid-template-columns: minmax(300px, .82fr) 1.8fr; border-bottom: 1px solid var(--line); overflow: hidden; opacity: .68; transition: opacity .6s ease; }
.capability.is-active, .capability:hover { opacity: 1; }
.capability-copy { padding: clamp(38px, 4vw, 68px) clamp(30px, 5vw, 75px) clamp(38px, 4vw, 68px) 0; display: flex; flex-direction: column; align-items: flex-start; }
.capability-copy > span { color: var(--accent); font-size: 10px; letter-spacing: .16em; }
.capability-copy h3 { margin: clamp(42px, 5vw, 78px) 0 18px; font-size: clamp(30px, 3vw, 50px); line-height: 1.08; letter-spacing: -.025em; font-weight: 300; }
.capability-copy p { max-width: 360px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.capability-copy a { margin-top: clamp(24px, 2.2vw, 34px); padding-bottom: 8px; border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; font-weight: 500; transition: border-color .35s ease, color .35s ease; }
.capability-copy a:hover { color: var(--accent); border-color: var(--accent); }
.capability-copy b { margin-left: 25px; color: var(--accent); font-weight: 400; }
.capability img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.capability:hover img { transform: scale(1.025); }

.selected-work { background: var(--black); color: #fff; }
.work-head { display: grid; grid-template-columns: 1.7fr .7fr; align-items: end; gap: clamp(60px, 9vw, 150px); margin-bottom: clamp(75px, 7vw, 115px); }
.work-head .section-label, .process .section-label, .studio .section-label, .contact .section-label { margin-bottom: 28px; color: var(--accent); }
.work-head > p { color: rgba(255,255,255,.44); }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 7vw, 110px) clamp(24px, 3vw, 50px); align-items: start; }
.project-feature { grid-column: 1 / -1; }
.project-media { overflow: hidden; background: #111; position: relative; }
.project-media::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .6s ease; pointer-events: none; }
.project-media img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s ease; }
.project-feature .project-media img { aspect-ratio: 16 / 8.5; }
.project:hover img { transform: scale(1.035); filter: brightness(.86); }
.project:hover .project-media::after { background: rgba(0,0,0,.08); }
.project-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--light-line); }
.project-meta h3, .project-meta p, .project-meta span { margin: 0; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 400; }
.project-meta p { color: rgba(255,255,255,.42); }
.project-meta span { color: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .35s ease, transform .35s ease; }
.project:hover .project-meta span { opacity: 1; transform: translateX(0); }

.why { background: var(--paper); }
.why-head, .industries-head { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, .7fr); align-items: end; gap: clamp(60px, 9vw, 150px); margin-bottom: clamp(75px, 7vw, 115px); }
.why-head .section-label, .industries-head .section-label { grid-column: 1 / -1; margin-bottom: 0; color: var(--accent); }
.why-head > p, .industries-head > p { max-width: 380px; margin: 0; color: var(--muted); font-size: clamp(13px, 1vw, 15px); line-height: 1.7; }
.why-grid, .industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.why-card, .industry-grid article { min-height: 285px; padding: 30px clamp(20px, 2.5vw, 42px) 25px 0; border-right: 1px solid var(--line); }
.why-card:last-child, .industry-grid article:last-child { border-right: 0; }
.why-card span, .industry-grid span { color: var(--accent); font-size: 10px; letter-spacing: .14em; }
.why-card h3, .industry-grid h3 { max-width: 220px; margin: 62px 0 18px; font-size: clamp(19px, 1.8vw, 28px); line-height: 1.15; letter-spacing: -.02em; font-weight: 300; }
.why-card p, .industry-grid p { max-width: 230px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.industries { background: var(--black); color: #fff; }
.industries-head > p { color: rgba(255,255,255,.48); }
.industry-grid { border-color: var(--light-line); }
.industry-grid article { border-color: var(--light-line); }
.industry-grid p { color: rgba(255,255,255,.48); }

.process { background: var(--paper); }
.process-head { margin-bottom: clamp(80px, 8vw, 130px); }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-list li { min-height: 230px; padding: 28px clamp(20px, 3vw, 50px) 0 0; border-right: 1px solid var(--line); }
.process-list li:last-child { border-right: 0; }
.process-list span { color: var(--accent); font-size: 10px; letter-spacing: .14em; }
.process-list h3 { margin: 55px 0 18px; font-size: clamp(20px, 2vw, 30px); line-height: 1.08; font-weight: 300; letter-spacing: -.018em; }
.process-list p { max-width: 210px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.studio { height: clamp(650px, 56.25vw, 900px); position: relative; overflow: hidden; background: var(--black); color: #fff; }
.studio-media { position: absolute; inset: -5% 0; background: url("assets/optimized/studio-team.jpg") center / cover no-repeat; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05); will-change: transform; }
.studio-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.32) 62%, rgba(0,0,0,.06)); }
.studio-copy { position: absolute; left: var(--pad); bottom: clamp(75px, 8vw, 125px); max-width: 900px; }
.studio h2 { font-size: clamp(50px, 5vw, 84px); }
.studio-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); max-width: 780px; margin-top: 32px; }
.studio-body p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }

.contact { display: grid; grid-template-columns: 1.55fr 1fr; align-items: end; gap: clamp(70px, 9vw, 150px); }
.contact h2 { font-size: clamp(50px, 5vw, 84px); }
.contact-details { padding-bottom: 8px; }
.contact-intro { max-width: 430px; margin: 0 0 34px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.contact-email { padding: 0 0 18px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; font-size: clamp(17px, 1.5vw, 24px); letter-spacing: -.025em; transition: color .35s ease, border-color .35s ease; }
.contact-email span { color: var(--accent); }
.contact-email:hover { color: var(--accent); border-color: var(--accent); }
.contact address { margin: 24px 0 50px; color: var(--muted); font-style: normal; font-size: 12px; line-height: 1.7; }
.contact-options { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 6px; }
.contact-options span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); text-transform: uppercase; font-size: 8px; letter-spacing: .12em; font-weight: 500; }

footer { min-height: 96px; padding: 26px var(--pad); background: var(--black); color: rgba(255,255,255,.46); display: flex; align-items: center; justify-content: space-between; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand { color: #fff; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .95s ease var(--reveal-delay, 0ms), transform .95s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroIn { from { opacity: .3; transform: translate3d(0, 0, 0) scale(1.1); } to { opacity: 1; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05); } }

@media (max-width: 760px) {
  :root { --space: clamp(82px, 22vw, 108px); }
  .site-header { height: 66px; }
  .menu-button { display: block; padding: 10px 0; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
  .site-header nav { display: none; position: absolute; top: 61px; left: 0; width: 100%; padding: 26px var(--pad) 34px; background: rgba(8,8,8,.97); flex-direction: column; gap: 24px; }
  .site-header nav.open { display: flex; }
  .hero { height: 100svh; min-height: 680px; max-height: none; }
  .hero-content { padding-top: 19vh; }
  .hero h1 { font-size: clamp(46px, 12.7vw, 60px); line-height: 1.1; letter-spacing: -.018em; }
  .hero-copy br { display: none; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-proof { display: none; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .section-intro, .work-head, .why-head, .industries-head, .contact { grid-template-columns: 1fr; gap: 38px; }
  .section-intro h2, .work-head h2, .why-head h2, .industries-head h2, .process h2, .studio h2, .contact h2 { font-size: clamp(46px, 12.5vw, 60px); line-height: 1.1; letter-spacing: -.018em; }
  .capability-copy h3 { margin: auto 0 18px; line-height: 1.1; letter-spacing: -.015em; }
  .capability { height: auto; grid-template-columns: 1fr; }
  .capability { opacity: 1; }
  .capability-copy { min-height: 280px; padding-right: 0; }
  .capability-copy a { margin-top: auto; }
  .capability img { height: auto; aspect-ratio: 4 / 3; }
  .project-grid { grid-template-columns: 1fr; }
  .project-feature { grid-column: auto; }
  .project-feature .project-media img, .project-media img { aspect-ratio: 4 / 3; }
  .why-grid, .industry-grid { grid-template-columns: 1fr; }
  .why-card, .industry-grid article { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--line); }
  .industry-grid article { border-color: var(--light-line); }
  .why-card h3, .industry-grid h3 { margin-top: 45px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 220px; border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2) { border-right: 0; }
  .studio { height: 760px; }
  .studio-media { background-position: 62% center; }
  .studio-copy { right: var(--pad); }
  .studio-body { grid-template-columns: 1fr; gap: 16px; margin-top: 26px; }
  .contact-details { margin-top: 15px; }
  footer { flex-wrap: wrap; gap: 24px; }
  .footer-brand { width: 100%; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .capability { grid-template-columns: .9fr 1.4fr; }
  .why-grid, .industry-grid { grid-template-columns: 1fr 1fr; }
  .why-card, .industry-grid article { border-bottom: 1px solid var(--line); }
  .industry-grid article { border-color: var(--light-line); }
  .why-card:nth-child(2), .why-card:nth-child(4), .industry-grid article:nth-child(2), .industry-grid article:nth-child(4) { border-right: 0; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2) { border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .parallax-media { transform: scale(1.05) !important; }
}
