:root {
  --black: #080808;
  --black-soft: #111111;
  --black-raised: #171717;
  --white: #ffffff;
  --gray: #b5b5b5;
  --gray-dark: #747474;
  --red: #e10600;
  --red-dark: #8f0000;
  --line: rgba(255, 255, 255, 0.14);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container: min(92vw, 1400px);
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, video, iframe { display: block; max-width: 100%; }
::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px;
  transform: translateY(-150%); background: var(--white); color: var(--black);
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-light {
  position: fixed; width: 480px; height: 480px; z-index: -1; pointer-events: none;
  border-radius: 50%; opacity: 0.07; background: var(--red); filter: blur(130px);
  transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 50vh) - 50%), 0);
}

.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100; height: var(--header-height);
  border-bottom: 1px solid transparent; transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}
.site-header.scrolled { height: 72px; background: rgba(8, 8, 8, 0.88); border-color: var(--line); backdrop-filter: blur(18px); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; z-index: 2; }
.brand-mark {
  position: relative; display: block; width: 38px; height: 38px; overflow: hidden;
}
.brand-mark img {
  position: absolute; width: 120px; max-width: none; height: auto; left: -46px; top: -35px;
}
.brand-name { font-family: var(--font-display); font-size: 11px; font-weight: 800; line-height: 0.95; letter-spacing: 0.05em; }
.nav-panel { display: flex; align-items: center; gap: clamp(32px, 4vw, 72px); }
.nav-links { display: flex; gap: clamp(18px, 2.2vw, 36px); }
.nav-links a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: #d4d4d4; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; cursor: pointer; z-index: 3; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: var(--white); transition: transform 0.35s var(--ease); }

.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 28px; padding: 0 25px;
  border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.3s var(--ease), color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.button:hover { transform: translateY(-3px); }
.button:focus-visible, button:focus-visible, a:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
.button-small { min-height: 42px; padding-inline: 20px; }
.button-red { background: var(--red); color: var(--white); }
.button-red:hover { background: var(--red-dark); }
.button-ghost { border-color: rgba(255,255,255,0.38); background: rgba(8,8,8,0.18); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.button-row { display: flex; gap: 10px; flex-wrap: wrap; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--black); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  overflow: hidden;
  background: radial-gradient(circle at 71% 39%, rgba(143,0,0,0.38), transparent 16%), linear-gradient(115deg, #090909 0%, #141010 52%, #080808 100%);
}
.hero-media::before { content: ""; position: absolute; inset: -15%; opacity: 0.13; background: repeating-linear-gradient(108deg, transparent 0 7vw, rgba(255,255,255,0.16) 7vw calc(7vw + 1px)); transform: rotate(-4deg); }
.hero-video-frame {
  position: absolute; right: clamp(4vw, 7vw, 110px); top: 50%; height: min(76svh, 790px); aspect-ratio: 9/16;
  overflow: hidden; transform: translateY(-48%) rotate(2deg); border: 1px solid rgba(255,255,255,0.15);
  background: #080808; box-shadow: 0 30px 90px rgba(0,0,0,0.58);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-label {
  position: absolute; right: 18px; bottom: 17px; color: rgba(255,255,255,0.58);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-light { position: absolute; border-radius: 50%; filter: blur(90px); mix-blend-mode: screen; }
.hero-light-one { width: 42vw; height: 13vw; right: 0; top: 30%; background: rgba(225,6,0,0.42); transform: rotate(-35deg); animation: breathe 8s ease-in-out infinite alternate; }
.hero-light-two { width: 9vw; height: 60vh; right: 30%; top: 8%; background: rgba(143,0,0,0.3); transform: rotate(27deg); }
.hero-shade { background: linear-gradient(90deg, rgba(8,8,8,0.86) 0%, rgba(8,8,8,0.38) 54%, rgba(8,8,8,0.5) 100%), linear-gradient(0deg, var(--black) 0%, transparent 23%); }
.hero-content { position: relative; min-height: 100svh; padding: calc(var(--header-height) + 42px) 0 42px; display: flex; flex-direction: column; justify-content: space-between; z-index: 2; }
.hero-topline { display: flex; justify-content: space-between; align-items: flex-start; }
.availability { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(225,6,0,0.14); animation: pulse 2s ease-in-out infinite; }
.hero-location { text-align: right; color: var(--gray); font-size: 10px; line-height: 1.6; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-heading-wrap { margin-top: auto; }
.hero-kicker { margin: 0 0 7px 0.5vw; color: var(--gray); font-size: clamp(10px, 0.8vw, 13px); letter-spacing: 0.27em; text-transform: uppercase; }
.hero-title { width: 100%; margin: 0 auto; text-align: center; font-family: var(--font-display); font-size: clamp(64px, 9.65vw, 146px); font-weight: 800; line-height: 0.68; letter-spacing: -0.085em; }
.hero-title span { display: block; white-space: nowrap; }
.hero-title .outline { margin-left: 12.4vw; color: transparent; -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(255,255,255,0.74); }
.hero-bottom { display: flex; justify-content: flex-end; align-items: flex-end; min-height: 58px; margin-top: clamp(18px, 2.5vh, 32px); }
.hero-intro { width: min(510px, 80vw); margin: clamp(42px, 5vh, 58px) 0 0 46%; }
.hero-statement { margin: 0 0 13px; font-family: var(--font-display); font-size: clamp(19px, 1.8vw, 29px); font-weight: 600; line-height: 1.2; }
.hero-copy { margin: 0 0 25px; color: var(--gray); font-size: clamp(13px, 0.95vw, 15px); }
.scroll-cue { display: flex; align-items: center; gap: 14px; writing-mode: vertical-rl; color: var(--gray); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 58px; background: linear-gradient(var(--red) 50%, var(--line) 50%); background-size: 100% 200%; animation: scrollLine 2s ease infinite; }

.section { position: relative; padding: clamp(105px, 12vw, 190px) 0; }
.section-label { margin-bottom: clamp(36px, 5vw, 75px); color: var(--gray); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.section-label span { margin-right: 8px; color: var(--red); }
.section-title { margin: 0; font-family: var(--font-display); font-size: clamp(43px, 6.25vw, 96px); font-weight: 600; line-height: 0.97; letter-spacing: -0.055em; }
.section-title em, .contact-title em { color: var(--gray); font-style: normal; font-weight: 500; }
.heading-aside { align-self: end; max-width: 360px; margin: 0 0 8px; color: var(--gray); font-size: 14px; }

.about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.62fr); gap: clamp(55px, 9vw, 145px); align-items: start; }
.about-text { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; width: 86%; margin: clamp(44px, 6vw, 92px) 0 60px auto; }
.about-text p { margin: 0; color: var(--gray); font-size: 14px; }
.about-text p:first-child { color: var(--white); font-weight: 500; }
.specialties { margin: 0 0 0 auto; padding: 0; width: 86%; list-style: none; border-top: 1px solid var(--line); }
.specialties li { display: flex; gap: 20px; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); font-family: var(--font-body); font-size: clamp(15px, 1.2vw, 19px); font-weight: 500; line-height: 1.35; }
.specialties li span { color: var(--red); font-family: var(--font-body); font-size: 9px; letter-spacing: 0.1em; }
.portrait-wrap { position: sticky; top: 110px; margin-top: 10px; }
.portrait-image-wrap { position: relative; overflow: hidden; aspect-ratio: 0.75; border: 1px solid var(--line); background: #0d0d0d; }
.portrait-image { width: 100%; height: 100%; object-fit: cover; }
.media-placeholder { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid var(--line); color: var(--gray-dark); }
.media-placeholder::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(225,6,0,0.08) 52%, transparent 70%); transform: translateX(-100%); transition: transform 0.9s var(--ease); }
.media-placeholder:hover::before { transform: translateX(100%); }
.frame-corner { position: absolute; width: 44px; height: 44px; }
.frame-corner-top { top: 16px; left: 16px; border-top: 1px solid var(--red); border-left: 1px solid var(--red); }
.frame-corner-bottom { right: 16px; bottom: 16px; border-right: 1px solid var(--red); border-bottom: 1px solid var(--red); }
.portrait-caption { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; color: var(--gray); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }

.services { background: var(--black-soft); }
.split-heading, .process-intro { display: grid; grid-template-columns: 1fr 0.3fr; gap: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); margin-top: clamp(65px, 9vw, 130px); border-top: 1px solid var(--line); }
.service-card { position: relative; min-height: 360px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.45s var(--ease), transform 0.45s var(--ease); }
.service-card:nth-child(1), .service-card:nth-child(4) { border-left: 1px solid var(--line); }
.service-card:nth-child(1), .service-card:nth-child(5) { grid-column: span 5; }
.service-card:nth-child(2), .service-card:nth-child(6) { grid-column: span 3; }
.service-card:nth-child(3), .service-card:nth-child(4) { grid-column: span 4; }
.service-card:hover { z-index: 2; background: #1a1a1a; transform: translateY(-6px); }
.service-number { color: var(--gray-dark); font-size: 9px; letter-spacing: 0.14em; }
.service-icon { position: absolute; right: 28px; top: 27px; width: 35px; height: 35px; fill: none; stroke: var(--red); stroke-width: 1.15; }
.service-card h3 { margin: 135px 0 22px; max-width: 280px; font-family: var(--font-body); font-size: clamp(21px, 2vw, 30px); font-weight: 600; line-height: 1.18; letter-spacing: -0.035em; }
.service-card p { margin: 0; max-width: 340px; color: var(--gray); font-size: 13px; }

.projects { background: var(--black); }
.projects-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 45px; }
.projects-count { margin: 0 0 7px; color: var(--gray); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.projects-count span { color: var(--white); font-family: var(--font-display); font-size: 22px; }
.filter-tabs { display: flex; gap: 8px; overflow-x: auto; margin: 70px 0 40px; padding-bottom: 8px; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-button { flex: none; padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--gray); cursor: pointer; font-size: 10px; letter-spacing: 0.05em; transition: 0.3s ease; }
.filter-button:hover, .filter-button.active { border-color: var(--red); background: var(--red); color: var(--white); }
.projects-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(50px, 7vw, 110px) clamp(22px, 3vw, 48px); }
.project-card:nth-child(even) { margin-top: 130px; }
.project-card.is-hidden { display: none; }
.project-media { position: relative; display: block; overflow: hidden; width: 100%; padding: 0; aspect-ratio: 1.25; border: 1px solid var(--line); background: #121212; color: inherit; font: inherit; text-align: inherit; cursor: pointer; appearance: none; }
.project-card:nth-child(3n) .project-media { aspect-ratio: 0.95; }
.project-media-inner { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: var(--project-gradient); transition: transform 0.7s var(--ease); }
.project-card:hover .project-media-inner { transform: scale(1.025); }
.project-media-inner::before { content: ""; position: absolute; width: 55%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.07); border-radius: 50%; }
.project-media-inner::after { content: ""; position: absolute; width: 1px; height: 140%; background: rgba(255,255,255,0.08); transform: rotate(37deg); }
.project-media.has-real-media .project-media-inner::before,
.project-media.has-real-media .project-media-inner::after { display: none; }
.project-media-inner > img,
.project-media-inner > video,
.project-hover-media,
.project-hover-media > img,
.project-hover-media > video { width: 100%; height: 100%; object-fit: cover; }
.project-hover-media { position: absolute; inset: 0; overflow: hidden; }
.project-hover-media > img,
.project-hover-media > video { position: absolute; inset: 0; }
.project-hover-media > img { object-position: center 46%; transition: opacity 0.45s ease; }
.project-hover-video { opacity: 0; object-position: center; transition: opacity 0.45s ease; }
.project-hover-media.is-playing > img { opacity: 0; }
.project-hover-media.is-playing .project-hover-video { opacity: 1; }
.project-media:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.project-monogram { font-family: var(--font-display); font-size: clamp(74px, 10vw, 150px); font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1); }
.project-placeholder-label { position: absolute; left: 24px; bottom: 21px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.45); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.project-placeholder-label::before { content: "+"; display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid currentColor; border-radius: 50%; }
.project-index { position: absolute; right: 22px; top: 18px; z-index: 2; color: rgba(255,255,255,0.42); font-size: 10px; letter-spacing: 0.14em; }
.project-info { padding-top: 24px; }
.project-category { display: block; margin-bottom: 10px; color: var(--red); font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.project-info h3 { margin: 0 0 14px; font-family: var(--font-body); font-size: clamp(28px, 3vw, 48px); font-weight: 600; line-height: 1.15; letter-spacing: -0.045em; }
.project-info p { max-width: 530px; margin: 0 0 23px; color: var(--gray); font-size: 13px; }
.project-link { display: inline-flex; gap: 11px; align-items: center; padding: 0 0 7px; border: 0; border-bottom: 1px solid rgba(255,255,255,0.4); background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.project-link span { color: var(--red); transition: transform 0.3s var(--ease); }
.project-link:hover span { transform: translate(3px, -3px); }

.process { background: var(--black-soft); }
.timeline { margin: clamp(70px, 9vw, 130px) 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 75px minmax(80px, 1fr) minmax(340px, 0.9fr); gap: 30px; align-items: center; min-height: 155px; border-bottom: 1px solid var(--line); }
.step-number { color: var(--red); font-family: var(--font-display); font-size: 16px; }
.step-line { display: block; width: 100%; height: 1px; background: linear-gradient(90deg, var(--red), var(--line)); transform-origin: left; transition: transform 0.5s var(--ease); }
.process-step:hover .step-line { transform: scaleX(0.82); }
.process-step > div { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; }
.process-step h3 { margin: 0; font-family: var(--font-body); font-size: clamp(21px, 2vw, 30px); font-weight: 600; line-height: 1.22; letter-spacing: -0.035em; }
.process-step p { margin: 0; color: var(--gray); font-size: 13px; }

.contact { position: relative; overflow: hidden; padding: clamp(110px, 14vw, 220px) 0; background: var(--red-dark); }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(225,6,0,0.9), transparent 52%), linear-gradient(120deg, rgba(8,8,8,0.62), transparent 45%); }
.contact-orbit { position: absolute; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; }
.contact-orbit-one { width: 70vw; height: 70vw; right: -30vw; top: -25vw; }
.contact-orbit-two { width: 48vw; height: 48vw; right: -17vw; top: -14vw; }
.contact-inner { position: relative; z-index: 2; }
.contact .section-label { color: rgba(255,255,255,0.64); }
.contact .section-label span { color: var(--white); }
.contact-title { max-width: 1150px; margin: 0; font-family: var(--font-display); font-size: clamp(50px, 7.4vw, 114px); font-weight: 600; line-height: 0.94; letter-spacing: -0.06em; }
.contact-title em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.75); }
.contact-copy { max-width: 540px; margin: 42px 0 70px; color: rgba(255,255,255,0.75); font-size: 14px; }
.contact-links { border-top: 1px solid rgba(255,255,255,0.3); }
.contact-links a { display: grid; grid-template-columns: 70px minmax(180px, 0.55fr) 1fr auto; gap: 25px; align-items: center; min-height: 91px; border-bottom: 1px solid rgba(255,255,255,0.3); transition: padding 0.35s var(--ease), background 0.35s ease; }
.contact-links a:hover { padding-inline: 18px; background: rgba(8,8,8,0.15); }
.contact-links span { font-size: 9px; letter-spacing: 0.12em; }
.contact-links strong { font-family: var(--font-body); font-size: clamp(20px, 2vw, 30px); font-weight: 600; line-height: 1.22; }
.contact-links small { color: rgba(255,255,255,0.65); font-size: 11px; }
.contact-links i { font-size: 24px; font-style: normal; }

.footer { padding: 75px 0 30px; background: var(--black); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: end; padding-bottom: 60px; }
.footer-brand { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); font-weight: 800; line-height: 0.72; letter-spacing: -0.065em; }
.footer-brand span { color: transparent; -webkit-text-stroke: 1px var(--gray); }
.footer-meta { display: flex; flex-direction: column; color: var(--gray); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.back-to-top { display: flex; gap: 12px; align-items: center; color: var(--gray); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.back-to-top span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); color: var(--white); transition: background 0.3s ease; }
.back-to-top:hover span { background: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--gray-dark); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }

.project-dialog { width: min(960px, calc(100vw - 32px)); max-height: calc(100svh - 32px); padding: 0; border: 1px solid var(--line); background: var(--black-soft); color: var(--white); box-shadow: 0 35px 120px rgba(0,0,0,0.75); }
.project-dialog::backdrop { background: rgba(0,0,0,0.8); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; right: 15px; top: 15px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(8,8,8,0.7); cursor: pointer; font-size: 28px; line-height: 1; }
.dialog-media { aspect-ratio: 16/8; display: grid; place-items: center; background: var(--dialog-gradient); border-bottom: 1px solid var(--line); color: var(--gray-dark); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.dialog-media > img,
.dialog-media > video,
.dialog-media > iframe { width: 100%; height: 100%; object-fit: cover; }
.dialog-media > img { object-position: center 47%; }
.dialog-body { padding: clamp(26px, 5vw, 55px); }
.dialog-heading { display: flex; gap: 26px; align-items: center; }
.dialog-logo { flex: 0 0 132px; width: 132px; height: 105px; background-image: var(--project-logo); background-repeat: no-repeat; background-position: center; background-size: var(--project-logo-size, 185%); }
.dialog-body h2 { margin: 8px 0 22px; font-family: var(--font-body); font-size: clamp(34px, 6vw, 64px); font-weight: 600; line-height: 1.15; letter-spacing: -0.05em; }
.dialog-body p { max-width: 720px; margin: 8px 0 0; color: var(--gray); }
.dialog-section { margin-top: 46px; }
.dialog-section h3 { margin: 0 0 18px; color: var(--white); font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.dialog-services { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.dialog-services li { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--gray); font-size: 10px; letter-spacing: 0.04em; }
.dialog-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.dialog-gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: #111; }
.dialog-gallery img.is-wide { grid-column: 1 / -1; aspect-ratio: 16/9; }
.dialog-published { border-top: 1px solid var(--line); }
.dialog-published a { display: grid; grid-template-columns: 46px minmax(180px, 1fr) auto 24px; gap: 18px; align-items: center; min-height: 74px; border-bottom: 1px solid var(--line); transition: padding 0.3s var(--ease), background 0.3s ease; }
.dialog-published a:hover { padding-inline: 12px; background: rgba(255,255,255,0.025); }
.dialog-published span { color: var(--red); font-size: 9px; letter-spacing: 0.12em; }
.dialog-published strong { font-family: var(--font-body); font-size: 15px; font-weight: 600; }
.dialog-published small { color: var(--gray); font-size: 9px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.dialog-published i { color: var(--red); font-size: 16px; font-style: normal; transition: transform 0.3s var(--ease); }
.dialog-published a:hover i { transform: translate(3px, -3px); }
.dialog-cta { display: inline-flex; gap: 14px; align-items: center; margin-top: 42px; padding: 15px 20px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.3s ease, transform 0.3s var(--ease); }
.dialog-cta:hover { background: #ff1009; transform: translateY(-2px); }
.dialog-cta span { font-size: 15px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes breathe { to { transform: translate(4vw, 2vh) rotate(-29deg) scale(1.15); opacity: 0.5; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(225,6,0,0); } }
@keyframes scrollLine { 0% { background-position: 0 100%; } 100% { background-position: 0 -100%; } }

@media (max-width: 1080px) {
  :root { --container: min(92vw, 940px); }
  .hero-title { font-size: min(9.65vw, 98px); }
  .menu-toggle { display: block; }
  .nav-panel { position: fixed; inset: 0; visibility: hidden; opacity: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: 100px 7vw 50px; background: rgba(8,8,8,0.97); transition: opacity 0.35s ease, visibility 0.35s ease; }
  .nav-panel.open { visibility: visible; opacity: 1; }
  .nav-links { flex-direction: column; gap: 7px; }
  .nav-links a { font-family: var(--font-display); font-size: clamp(34px, 7vw, 66px); font-weight: 600; letter-spacing: -0.04em; line-height: 1.08; }
  .nav-panel .button { margin-top: 30px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero-intro { margin-left: 37%; }
  .about-grid { grid-template-columns: 1.15fr 0.7fr; gap: 50px; }
  .about-text, .specialties { width: 100%; }
  .about-text { grid-template-columns: 1fr; gap: 18px; }
  .service-card:nth-child(n) { grid-column: span 6; border-left: 1px solid var(--line); }
  .project-card:nth-child(even) { margin-top: 80px; }
  .process-step { grid-template-columns: 60px 0.5fr 1fr; }
  .process-step > div { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 720px) {
  :root { --container: calc(100vw - 36px); --header-height: 72px; }
  .site-header.scrolled { height: 64px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-mark img { width: 108px; left: -41px; top: -31.5px; }
  .cursor-light { display: none; }
  .hero-content { min-height: 100svh; padding-bottom: max(25px, env(safe-area-inset-bottom)); }
  .hero-topline { align-items: center; }
  .hero-location { display: none; }
  .availability { font-size: 9px; }
  .hero-video-frame { right: -14vw; top: 44%; height: min(68svh, 620px); opacity: 0.78; }
  .hero-light-one { width: 90vw; height: 30vw; right: -27vw; top: 36%; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,8,8,0.83), rgba(8,8,8,0.34)), linear-gradient(0deg, var(--black) 0%, transparent 34%); }
  .hero-heading-wrap { transform: none; margin-top: auto; }
  .hero-kicker { margin-left: 0; font-size: 9px; }
  .hero-title { font-size: calc(10.3vw - 3.8px); line-height: 0.75; }
  .hero-title .outline { margin-left: 0; }
  .hero-bottom { min-height: 0; margin-top: 0; }
  .hero-intro { width: 100%; margin-left: 0; }
  .hero-statement { width: 88%; font-size: 18px; }
  .hero-copy { width: 92%; font-size: 12px; line-height: 1.55; }
  .button { min-height: 50px; padding-inline: 20px; }
  .scroll-cue { display: none; }
  .section { padding: 95px 0; }
  .section-label { margin-bottom: 32px; }
  .section-title { font-size: clamp(39px, 12vw, 58px); line-height: 1; }
  .about-grid { display: flex; flex-direction: column; gap: 60px; }
  .about-text { margin: 40px 0; }
  .portrait-wrap { position: relative; top: auto; width: 88%; margin-left: auto; }
  .split-heading, .process-intro { grid-template-columns: 1fr; gap: 25px; }
  .heading-aside { justify-self: start; }
  .services-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .service-card:nth-child(n) { grid-column: auto; min-height: 315px; border-left: 1px solid var(--line); }
  .service-card h3 { margin-top: 105px; }
  .projects-heading { align-items: flex-start; flex-direction: column; }
  .projects-count { display: none; }
  .filter-tabs { margin: 45px calc((100vw - var(--container)) / -2) 30px; padding-inline: 18px; }
  .projects-list { grid-template-columns: 1fr; gap: 65px; }
  .project-card:nth-child(even) { margin-top: 0; }
  .project-media, .project-card:nth-child(3n) .project-media { aspect-ratio: 1.05; }
  .project-info h3 { font-size: 34px; }
  .project-dialog { width: calc(100vw - 20px); max-height: calc(100svh - 20px); }
  .dialog-media { aspect-ratio: 4/3; }
  .dialog-heading { gap: 16px; align-items: flex-start; }
  .dialog-logo { flex-basis: 92px; width: 92px; height: 74px; background-size: var(--project-logo-size, 185%); }
  .dialog-body h2 { margin-bottom: 12px; font-size: 36px; }
  .dialog-gallery { grid-template-columns: 1fr; }
  .dialog-published a { grid-template-columns: 34px 1fr 18px; gap: 10px; padding: 15px 0; }
  .dialog-published small { grid-column: 2; grid-row: 2; }
  .dialog-published i { grid-column: 3; grid-row: 1 / 3; }
  .process-step { grid-template-columns: 50px 1fr; gap: 15px; padding: 28px 0; }
  .step-line { display: none; }
  .process-step > div { grid-column: 2; }
  .contact-title { font-size: clamp(43px, 13vw, 66px); }
  .contact-copy { margin: 30px 0 50px; }
  .contact-links a { grid-template-columns: 34px 1fr auto; gap: 12px; padding: 18px 0; }
  .contact-links small { grid-column: 2 / 4; grid-row: 2; }
  .contact-links i { grid-column: 3; grid-row: 1; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-meta { grid-column: 1; grid-row: 2; }
  .back-to-top { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 0; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 390px) {
  :root { --container: calc(100vw - 28px); }
  .hero-title { font-size: calc(10.3vw - 3.8px); }
  .button-row .button { flex: 1; gap: 10px; padding-inline: 14px; }
  .section-title { font-size: 11.5vw; }
  .portrait-wrap { width: 94%; }
  .service-card { padding: 25px; }
}

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