:root {
  --bg: #060b11;
  --bg-2: #0b1118;
  --panel: #101720;
  --panel-soft: #0d141c;
  --text: #f7f5ef;
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.11);
  --line-gold: rgba(212, 175, 87, 0.42);
  --gold: #d4af57;
  --gold-light: #f5c766;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --sans: "Manrope", Arial, sans-serif;
  --page: min(92vw, 1480px);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scrollbar-color: var(--gold) var(--bg); }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 15px; line-height: 1.55; }
body.menu-open, body.dialog-open { overflow: hidden; }
button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, a, button { overflow-wrap: anywhere; }
em { color: var(--gold-light); font-style: normal; }
::selection { background: var(--gold); color: var(--bg); }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 300; padding: 10px 14px; background: white; color: black; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.grain { position: fixed; inset: 0; z-index: 150; pointer-events: none; opacity: .026; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 210; width: 0; height: 2px; background: var(--gold-light); }

.site-header { position: fixed; top: 0; left: 0; z-index: 100; display: flex; width: 100%; height: 76px; align-items: center; justify-content: space-between; padding: 0 4vw; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease; }
.site-header.scrolled, .compact-header { border-color: var(--line); background: rgba(6, 11, 17, .9); backdrop-filter: blur(18px); }
.brand { position: relative; z-index: 3; display: flex; align-items: center; }
.brand img { width: 122px; height: 48px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 28px 0 24px; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.site-nav > a:hover::after, .site-nav > a.is-active::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; gap: 16px; align-items: center; padding: 10px 17px; border: 1px solid var(--line-gold); border-radius: 3px; transition: background .25s ease, color .25s ease; }
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.menu-toggle { position: relative; z-index: 4; display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { position: absolute; left: 10px; width: 22px; height: 1px; background: white; transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 16px; }.menu-toggle span:last-child { top: 25px; }
.menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }.menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

.hero { position: relative; display: grid; min-height: 760px; height: 100svh; max-height: 980px; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
 .hero-collage { position: absolute; inset: 84px 18px 18px 42%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 8px; filter: brightness(1.32) contrast(1.06); animation: hero-in 1.35s ease-out both; }
.hero-tile { position: relative; min-width: 0; min-height: 0; aspect-ratio: 1 / 1; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 3px; background: var(--panel); }
.hero-tile::after { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(4,9,14,0), rgba(4,9,14,.14)); content: ""; }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); transition: transform 1.2s cubic-bezier(.2,.75,.2,1), filter .5s ease; }
.hero-tile:hover img { filter: contrast(1.08) brightness(1.06); transform: scale(1.035); }
.hero-tile-1, .hero-tile-2, .hero-tile-3, .hero-tile-4, .hero-tile-5, .hero-tile-6, .hero-tile-7, .hero-tile-8, .hero-tile-9, .hero-tile-10, .hero-tile-11 { grid-column: auto; grid-row: auto; display: block; }
.hero-tile-1 img { object-position: 52% center; }
.hero-tile-2 img { object-position: 42% center; }
.hero-tile-3 img { object-position: 48% center; }
.hero-tile-4 img { object-position: 48% 34%; }
.hero-tile-5 img { object-position: 64% center; }
.hero-tile-6 img { object-position: 58% center; }
.hero-tile-7 img { object-position: 38% center; }
.hero-tile-8 img { object-position: 50% center; }
.hero-tile-9 img { object-position: 50% 52%; }
.hero-tile-10 img { object-position: 50% center; filter: grayscale(1) contrast(1.06); }
.hero-tile-10:hover img { filter: grayscale(1) contrast(1.1) brightness(1.06); }
.hero-tile-11 img { object-position: 48% 34%; }
.hero-overlay { background: linear-gradient(90deg, rgba(6,11,17,1) 0%, rgba(6,11,17,.88) 29%, rgba(6,11,17,.38) 47%, rgba(6,11,17,0) 71%, rgba(6,11,17,0) 100%), linear-gradient(0deg, rgba(6,11,17,.58), transparent 56%); }
.hero-content { position: relative; z-index: 2; width: var(--page); margin: 38px auto 0; }
.kicker, .eyebrow { margin: 0 0 17px; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.hero h1 { max-width: 960px; margin: 0; font-size: clamp(42px, 5.3vw, 82px); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; text-transform: uppercase; }
.hero-subtitle { max-width: 670px; margin: 25px 0 0; font-size: clamp(18px, 1.65vw, 26px); font-weight: 500; line-height: 1.35; text-transform: uppercase; }
.hero-description { max-width: 590px; margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.hero-actions, .dialog-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 47px; align-items: center; justify-content: center; gap: 18px; padding: 0 22px; border: 1px solid var(--line); border-radius: 3px; background: transparent; font-size: 11px; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--gold); background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #171207; box-shadow: 0 12px 34px rgba(212,175,87,.15); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { border-color: var(--line-gold); background: rgba(7,12,18,.4); }
.button-secondary:hover { border-color: var(--gold); background: rgba(212,175,87,.08); }
.play-mini { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 8px; }
.service-line { display: flex; flex-wrap: wrap; gap: 14px 27px; margin: 36px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-line li { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.service-line li::before { margin-right: 9px; color: var(--gold); content: "✦"; }
.hero-location { position: absolute; right: 4vw; bottom: 35px; z-index: 2; display: flex; align-items: center; gap: 12px; }
.hero-location .pin { color: var(--gold); font-size: 25px; }.hero-location p { margin: 0; }.hero-location strong, .hero-location small { display: block; }.hero-location strong { font-size: 11px; }.hero-location small { color: var(--muted); font-size: 9px; }

.section { width: var(--page); margin: 0 auto; padding: clamp(72px, 8vw, 126px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-title { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 8vw; align-items: end; margin-bottom: 42px; }
.section-title.compact { align-items: center; }
.section-title h2 { margin: 0; font-size: clamp(38px, 4.5vw, 70px); font-weight: 600; letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.section-title > p { max-width: 560px; margin: 0; color: var(--muted); }
.section-title .text-button { justify-self: end; }
.text-button { display: inline-flex; gap: 14px; align-items: center; padding: 11px 16px; border: 1px solid var(--line); border-radius: 3px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.text-button:hover { border-color: var(--gold); color: var(--gold-light); }

.direction-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.direction-card, .info-card { position: relative; min-width: 0; padding: 24px 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: linear-gradient(155deg, rgba(18,25,34,.88), rgba(8,14,20,.92)); transition: transform .28s ease, border-color .28s ease, background .28s ease; }
.direction-card:hover, .info-card:hover { border-color: var(--line-gold); background: linear-gradient(155deg, rgba(23,31,40,.96), rgba(10,16,22,.96)); transform: translateY(-5px); }
.direction-icon { display: grid; width: 35px; height: 35px; place-items: center; margin-bottom: 32px; color: var(--gold-light); font-size: 23px; }
.direction-card h3, .info-card h3 { margin: 0 0 10px; font-size: 15px; line-height: 1.25; }
.direction-card p, .info-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 17px; }
.tags span, .tags b, .dialog-tags span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 2px; color: var(--faint); font-size: 8px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.featured-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 7px; }
.project-card { min-width: 0; border: 1px solid var(--line); border-radius: 5px; background: var(--panel-soft); overflow: hidden; transition: border-color .28s ease, transform .28s ease; }
.project-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.project-open { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.project-image { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel); }
.project-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,9,13,.56), transparent 60%); content: ""; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .4s ease; }
.project-card:hover img { transform: scale(1.045); filter: brightness(1.06); }
.play { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: rgba(6,11,17,.6); color: transparent; font-size: 0; font-style: normal; transform: translate(-50%,-50%); backdrop-filter: blur(7px); }
.play::before { content: "\25B6"; color: #fff; font-size: 12px; line-height: 1; transform: translateX(1px); }
.project-body { display: block; min-height: 139px; padding: 18px; }
.project-body strong, .project-body small { display: block; }
.project-body strong { min-height: 42px; font-size: 13px; line-height: 1.45; }
.project-body small { margin-top: 7px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.featured-grid .project-body { padding: 14px; }.featured-grid .project-body strong { font-size: 11px; }.featured-grid .project-body small { display: none; }

.client-marquee { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(255,255,255,.012), rgba(212,175,87,.032), rgba(255,255,255,.012)); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.client-track { display: flex; width: max-content; animation: clients-marquee 40s linear infinite; will-change: transform; }
.client-marquee:hover .client-track { animation-play-state: paused; }
.client-row { display: flex; flex: 0 0 auto; align-items: stretch; width: max-content; }
.client-card { flex: 0 0 244px; width: 244px; min-width: 244px; margin: 0; padding: 34px 26px 24px; overflow: hidden; border-right: 1px solid var(--line); opacity: .66; text-align: center; transition: opacity .28s ease, background .28s ease, transform .28s ease; }
.client-card:hover { background: rgba(255,255,255,.025); opacity: 1; transform: translateY(-3px); }
.client-card > div { display: grid; width: 100%; height: 88px; place-items: center; }
.client-card img { display: block; width: auto; max-width: 100%; max-height: 58px; object-fit: contain; filter: none; }
.client-card img.client-wide { max-width: 178px; max-height: 56px; }
.client-card img.client-alushta { max-width: 118px; max-height: 68px; }
.client-card img.client-azmol { max-width: 172px; max-height: 46px; }
.client-card img.client-mdk { max-width: 116px; max-height: 74px; }
.client-card img.client-slavutich { max-width: 180px; max-height: 58px; }
.client-card img.client-ccp { max-width: 178px; max-height: 46px; }
.client-card figcaption { min-height: 22px; margin-top: 18px; color: var(--faint); font-size: 8px; font-weight: 600; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
@keyframes clients-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.info-grid { display: grid; gap: 9px; }.info-grid.four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.info-card { min-height: 190px; }.info-card > span { display: block; margin-bottom: 35px; color: var(--gold); font-size: 21px; font-weight: 600; }
.process-list { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 5px; list-style: none; }
.process-list li { position: relative; min-width: 0; min-height: 175px; padding: 25px 22px; border-right: 1px solid var(--line); }
.process-list li:last-child { border: 0; }.process-list li:not(:last-child)::after { position: absolute; top: 31px; right: -7px; z-index: 2; color: var(--gold); content: "→"; }
.process-list b { color: var(--gold); font-size: 19px; }.process-list h3 { margin: 22px 0 8px; font-size: 13px; }.process-list p { margin: 0; color: var(--muted); font-size: 10px; }
.deliverables-layout { display: grid; gap: 12px; }
.included { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 28px; border: 1px solid var(--line-gold); border-radius: 5px; background: rgba(212,175,87,.035); }
.included .eyebrow { flex: 0 0 auto; margin: 0; }.included > p:last-child { margin: 0; color: var(--muted); font-size: 11px; text-align: right; }.included i { margin: 0 8px; color: var(--gold); font-style: normal; }

.contact { position: relative; display: grid; grid-template-columns: 1.1fr .7fr; gap: 7vw; min-height: 500px; align-items: center; padding-right: 4vw; padding-left: 4vw; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; }
.contact > img, .contact-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }.contact > img { object-fit: cover; opacity: .54; }.contact-overlay { background: linear-gradient(90deg, rgba(6,11,17,.96), rgba(6,11,17,.7) 58%, rgba(6,11,17,.25)), linear-gradient(0deg, rgba(6,11,17,.7), transparent); }
.contact-copy, .contact-actions, .contact-points { position: relative; z-index: 2; }
.contact h2 { margin: 0 0 20px; font-size: clamp(42px,5vw,72px); letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; margin: 0; font-size: 17px; }.contact-copy small { display: block; max-width: 620px; margin-top: 18px; color: var(--muted); }
.contact-actions { flex-direction: column; align-items: stretch; margin: 0; }.contact-points { position: absolute; right: 4vw; bottom: 31px; left: 4vw; display: flex; gap: 42px; margin: 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.contact-points li { color: var(--muted); font-size: 9px; text-transform: uppercase; }.contact-points li::before { margin-right: 9px; color: var(--gold); content: "✓"; }

.site-footer { display: grid; grid-template-columns: 1.5fr repeat(3,.55fr); gap: 5vw; width: var(--page); margin: 0 auto; padding: 55px 0 78px; border-top: 1px solid var(--line); }
.footer-brand img { width: 128px; height: 50px; object-fit: contain; object-position: left; }.footer-brand p { color: var(--muted); font-size: 10px; }
.site-footer h3 { margin: 0 0 15px; color: var(--faint); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }.site-footer a { display: block; width: fit-content; margin: 7px 0; color: var(--muted); font-size: 10px; }.site-footer a:hover { color: var(--gold-light); }
.copyright { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--faint); font-size: 9px; }

.portfolio-main { padding-top: 76px; }
.portfolio-hero { padding-top: 95px; padding-bottom: 50px; border: 0 !important; }.portfolio-hero h1 { margin: 0; font-size: clamp(55px,8vw,120px); line-height: .94; text-transform: uppercase; }.portfolio-hero > p:last-child { max-width: 750px; margin: 24px 0 0; color: var(--muted); }
.portfolio-content { padding-top: 24px; }.portfolio-filters { display: flex; gap: 8px; margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }.portfolio-filters::-webkit-scrollbar { display: none; }
.filter-button { flex: 0 0 auto; padding: 9px 16px; border: 1px solid var(--line); border-radius: 3px; background: var(--panel); color: var(--muted); font-size: 9px; font-weight: 600; cursor: pointer; }.filter-button:hover, .filter-button.is-active { border-color: var(--gold); background: var(--gold); color: #171207; }
.project-card[hidden] { display: none; }.empty-state { margin: 50px 0; color: var(--muted); text-align: center; }.load-more { margin: 36px auto 0; }
.portfolio-cta { display: grid; grid-template-columns: 1fr 1fr auto; gap: 35px; align-items: center; }.portfolio-cta h2 { margin: 0; font-size: clamp(28px,4vw,55px); text-transform: uppercase; }.portfolio-cta p { color: var(--muted); }

.video-dialog { width: min(1180px, 94vw); max-height: 92vh; padding: 0; overflow: auto; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: #080e14; color: var(--text); box-shadow: 0 30px 100px rgba(0,0,0,.7); }
.video-dialog::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(9px); }
.dialog-close { position: absolute; top: 13px; right: 14px; z-index: 4; display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(5,9,13,.78); color: white; font-size: 25px; cursor: pointer; }
.dialog-layout { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(310px,.75fr); min-height: 590px; }
.video-frame { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 25px; background: #030609; }
.video-frame iframe { width: 100%; aspect-ratio: 16/9; border: 0; background: black; }.video-fallback { margin: 12px 0 0; color: var(--faint); font-size: 9px; }.video-fallback a { color: var(--gold); text-decoration: underline; }
.dialog-info { padding: 45px 34px 30px; overflow-y: auto; }.dialog-info h2 { margin: 0 0 13px; font-size: clamp(28px,3vw,45px); line-height: 1.1; }.dialog-description { color: var(--muted); }
.dialog-info dl { margin: 28px 0; }.dialog-info dl div { padding: 14px 0; border-top: 1px solid var(--line); }.dialog-info dt { margin-bottom: 5px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.dialog-info dd { margin: 0; color: var(--muted); font-size: 11px; }
.dialog-actions { flex-direction: column; align-items: stretch; }

.reveal { opacity: 1; transform: none; }

@keyframes hero-in { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }

@media (max-width: 1180px) {
  .direction-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .featured-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
  .featured-grid .project-body strong { font-size: 13px; }.featured-grid .project-body small { display: block; }
  .process-list { grid-template-columns: repeat(3,minmax(0,1fr)); }.process-list li { border-bottom: 1px solid var(--line); }.process-list li:nth-child(3) { border-right: 0; }.process-list li::after { display: none; }
}

@media (max-width: 820px) {
  body { font-size: 14px; }
  .site-header { height: 66px; padding: 0 5vw; }.brand img { width: 108px; }.menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 80px 8vw; background: rgba(6,11,17,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }.site-nav > a:not(.nav-cta) { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 20px; }.site-nav > a:not(.nav-cta)::after { display: none; }.nav-cta { justify-content: space-between; margin-top: 28px; padding: 17px 20px; font-size: 13px; }
  .hero { min-height: 720px; height: auto; padding: 120px 0 105px; }.hero-collage { inset: 66px 0 0 36%; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-rows: 1fr; gap: 5px; opacity: .86; }.hero-tile { aspect-ratio: 1 / 1; }.hero-tile-1, .hero-tile-2, .hero-tile-3, .hero-tile-4, .hero-tile-5, .hero-tile-6, .hero-tile-7, .hero-tile-8, .hero-tile-9, .hero-tile-10, .hero-tile-11 { grid-column: auto; grid-row: auto; display: block; }.hero-overlay { background: linear-gradient(90deg,rgba(6,11,17,.99),rgba(6,11,17,.83) 54%,rgba(6,11,17,.22)), linear-gradient(0deg,rgba(6,11,17,.9),rgba(6,11,17,.05) 50%,rgba(6,11,17,.42)); }.hero-content { width: 90vw; margin: 0 auto; }.hero-location { right: 5vw; bottom: 24px; left: 5vw; }.service-line { gap: 11px 20px; }
  .section { width: 90vw; padding: 70px 0; }.section-title { grid-template-columns: 1fr; gap: 18px; }.section-title .text-button { justify-self: start; }
  .direction-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.project-grid, .featured-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .client-marquee { margin-right: -5vw; margin-left: -5vw; -webkit-mask-image: none; mask-image: none; }.client-card { flex: 0 0 196px; width: 196px; min-width: 196px; padding: 30px 20px 22px; overflow: hidden; }.client-card > div { height: 78px; }.client-card img, .client-card img.client-wide, .client-card img.client-azmol, .client-card img.client-slavutich, .client-card img.client-ccp { max-width: 150px; }.client-card img.client-mdk { max-width: 106px; }
  .info-grid.four { grid-template-columns: repeat(2,minmax(0,1fr)); }.process-list { grid-template-columns: repeat(2,minmax(0,1fr)); }.process-list li:nth-child(3) { border-right: 1px solid var(--line); }.process-list li:nth-child(2n) { border-right: 0; }
  .included { display: block; }.included > p:last-child { margin-top: 12px; text-align: left; }
  .contact { grid-template-columns: 1fr; gap: 35px; padding: 70px 6vw 120px; }.contact-actions { margin: 0; }.contact-points { flex-wrap: wrap; gap: 12px 28px; }
  .site-footer { grid-template-columns: repeat(3,1fr); }.footer-brand { grid-column: 1 / -1; }
  .portfolio-main { padding-top: 66px; }.portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.portfolio-cta { grid-template-columns: 1fr; }
  .dialog-layout { grid-template-columns: 1fr; }.dialog-info { padding-top: 25px; }.video-dialog { max-height: 95vh; }
}

@media (max-width: 560px) {
  .site-header { max-width: 100vw; }
  .hero { min-height: 790px; padding-top: 105px; }.hero-collage { inset: 66px 0 0; grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 1fr; opacity: .84; gap: 5px; filter: brightness(1.22) contrast(1.04); }.hero-tile { aspect-ratio: 1 / 1; }.hero-tile-1, .hero-tile-2, .hero-tile-3, .hero-tile-4, .hero-tile-5, .hero-tile-6, .hero-tile-7, .hero-tile-8, .hero-tile-9, .hero-tile-10, .hero-tile-11 { grid-column: auto; grid-row: auto; display: block; }.hero-overlay { background: linear-gradient(90deg,rgba(6,11,17,.94) 0%,rgba(6,11,17,.76) 54%,rgba(6,11,17,.22) 100%), linear-gradient(0deg,rgba(6,11,17,.98) 0%,rgba(6,11,17,.69) 44%,rgba(6,11,17,.08) 100%); }.hero-content { min-width: 0; max-width: calc(100vw - 40px); text-shadow: 0 2px 18px rgba(0,0,0,.95); }.kicker { max-width: 100%; font-size: 8px; line-height: 1.55; }.hero h1 { width: 100%; max-width: 100%; font-size: clamp(27px, 7.45vw, 30px); line-height: 1.06; letter-spacing: -.055em; overflow-wrap: normal; word-break: normal; }.hero-subtitle, .hero-description { width: 100%; max-width: 100%; }.hero-subtitle { font-size: 15px; overflow-wrap: anywhere; }.hero-description { font-size: 12px; }.hero-actions { width: 100%; flex-direction: column; align-items: stretch; text-shadow: none; }.hero-actions .button { width: 100%; }.service-line { max-width: 100%; margin-top: 28px; padding-top: 20px; }.service-line li { font-size: 8px; }
  .section { padding: 58px 0; }.section-title h2 { font-size: 37px; }.direction-grid { display: flex; margin-right: -5vw; padding-right: 5vw; overflow-x: auto; scroll-snap-type: x mandatory; }.direction-card { flex: 0 0 77vw; scroll-snap-align: start; }
  .project-grid, .featured-grid, .portfolio-grid { grid-template-columns: 1fr; }.project-body { min-height: 128px; }
  .info-grid.four { grid-template-columns: 1fr; }.info-card { min-height: 165px; }.info-card > span { margin-bottom: 25px; }
  .process-list { grid-template-columns: 1fr; }.process-list li, .process-list li:nth-child(3) { border-right: 0; }
  .included i { margin: 0 4px; }
  .contact { min-height: 660px; padding-top: 62px; }.contact h2 { font-size: 40px; }.contact-copy > p:not(.eyebrow) { font-size: 15px; }.contact-points { bottom: 22px; }
  .site-footer { grid-template-columns: repeat(2,1fr); gap: 34px; }
  .portfolio-hero { min-width: 0; padding-top: 70px; }.portfolio-hero h1 { max-width: 100%; font-size: clamp(42px, 13vw, 52px); }.portfolio-hero > p:last-child { max-width: 100%; }.portfolio-filters { max-width: 100vw; margin-right: -5vw; padding-right: 5vw; }
  .video-dialog { width: 96vw; }.video-frame { padding: 12px; }.dialog-info { padding: 25px 19px; }.dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .client-track { width: 100%; flex-wrap: wrap; animation: none; }
  .client-row { flex-wrap: wrap; width: 100%; }
  .client-row[aria-hidden="true"] { display: none; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
