:root {
  --ink: #0c1b2a;
  --ink-2: #152c43;
  --blue: #0b347c;
  --blue-2: #164da5;
  --red: #e3222a;
  --red-dark: #ba141b;
  --paper: #f5f3ef;
  --white: #fff;
  --muted: #657180;
  --line: #d8dde3;
  --success: #177052;
  --container: 1200px;
  --shadow: 0 22px 60px rgba(12, 27, 42, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 7vw, 6rem); }
h2 { font-size: clamp(2.15rem, 4.6vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { color: #344353; }
::selection { color: var(--white); background: var(--red); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 82px) 0; }
.section--ink { color: var(--white); background: var(--ink); }
.section--ink p { color: #bdc8d3; }
.section--paper { background: var(--paper); }
.section--blue { color: var(--white); background: var(--blue); }
.section--blue p { color: #dae5f4; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 3px; content: ""; background: currentColor; }
.section--ink .eyebrow, .section--blue .eyebrow { color: #ff5960; }
.lede { max-width: 800px; color: #465567; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.section--ink .lede, .section--blue .lede { color: #d9e1e9; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
.section-head > div:first-child { max-width: 820px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { margin-bottom: 0; }
.kicker { color: var(--blue); font-weight: 800; }
.micro { color: var(--muted); font-size: .82rem; line-height: 1.5; }
.red { color: var(--red); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffb6b9; outline-offset: 4px; }

.topbar { padding: 8px 0; color: #d9e2ec; background: #07131f; font-size: .78rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; color: inherit; }
.topbar a { color: var(--white); font-weight: 800; text-decoration: none; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(12, 27, 42, .1);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}
.nav { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 216px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav__links a { position: relative; color: var(--ink); font-size: .84rem; font-weight: 800; text-decoration: none; }
.nav__links a:not(.btn)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 22px; height: 2px; margin: 5px auto; content: ""; background: var(--ink); transition: .2s ease; }
.menu-open .nav-toggle span { opacity: 0; }
.menu-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--white);
  background: var(--red);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: #203c58; }
.btn--line { border-color: rgba(255,255,255,.58); background: transparent; }
.btn--line:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.btn--blue { background: var(--blue); }
.btn--blue:hover { background: var(--blue-2); }
.text-link { color: var(--blue); font-weight: 900; text-decoration: none; }
.text-link:hover { color: var(--red); }
.text-link::after { content: "  →"; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; min-height: 720px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--ink); }
.hero__media, .hero__media::after { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .73; }
.hero__media::after { content: ""; background: linear-gradient(90deg, rgba(6,18,30,.95) 0%, rgba(6,18,30,.72) 48%, rgba(6,18,30,.18) 80%), linear-gradient(0deg, rgba(6,18,30,.7), transparent 50%); }
.hero__content { position: relative; z-index: 1; padding: 110px 0 92px; }
.hero__copy { max-width: 870px; }
.hero h1 { max-width: 860px; margin-bottom: 24px; }
.hero h1 span { color: #ff4c54; }
.hero .lede { max-width: 710px; margin-bottom: 34px; color: #e6edf4; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.28); }
.hero__proof-item { min-width: 190px; padding: 22px 34px 0 0; }
.hero__proof-item + .hero__proof-item { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.28); }
.hero__proof strong { display: block; color: var(--white); font-size: 1.2rem; }
.hero__proof span { color: #bbc9d7; font-size: .8rem; }

.page-hero { position: relative; min-height: 440px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .46; }
.page-hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(7,19,31,.96), rgba(7,19,31,.5)); }
.page-hero__content { position: relative; z-index: 1; max-width: 900px; padding: 90px 0 64px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(2.6rem, 5.8vw, 5rem); }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #d9e2eb; font-size: 1.17rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #b9c6d2; font-size: .78rem; }
.breadcrumbs a { color: var(--white); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__item { min-height: 112px; padding: 25px 26px; border-right: 1px solid var(--line); }
.trust-strip__item:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: .98rem; }
.trust-strip span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 8vw, 100px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; min-height: 560px; overflow: hidden; background: #d9dde1; }
.split__media img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.split__media--contain img { object-fit: contain; padding: 30px; background: #edf0f2; }
.split__content h2 { margin-bottom: 22px; }
.split__content p { margin-bottom: 22px; }
.detail-tag { position: absolute; right: 0; bottom: 0; max-width: 280px; padding: 24px; color: var(--white); background: var(--blue); }
.detail-tag strong { display: block; margin-bottom: 4px; }
.detail-tag span { color: #dbe8f7; font-size: .8rem; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; color: var(--white); background: var(--ink); text-decoration: none; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: transform .5s ease, opacity .3s ease; }
.service-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(7,19,31,.96), rgba(7,19,31,.08) 72%); }
.service-card__content { position: relative; z-index: 1; padding: 30px; }
.service-card__index { display: block; margin-bottom: 12px; color: #ff6269; font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin: 0; color: #d5dfe9; font-size: .9rem; }
.service-card:hover img { opacity: .75; transform: scale(1.04); }

.feature { padding: 30px; border-top: 3px solid var(--red); background: var(--white); box-shadow: 0 10px 34px rgba(12,27,42,.08); }
.feature__num { display: block; margin-bottom: 34px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.feature h3 { margin-bottom: 12px; }
.feature p { margin-bottom: 0; font-size: .92rem; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; color: var(--white); background: var(--blue); font-weight: 900; }

.process { counter-reset: process; }
.process__item { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.18); counter-increment: process; }
.process__item::before { content: counter(process, decimal-leading-zero); color: #ff555d; font-size: 1.1rem; font-weight: 900; letter-spacing: .08em; }
.process__item h3 { margin-bottom: 9px; color: var(--white); }
.process__item p { max-width: 760px; margin: 0; }
.process-light .process__item { border-color: var(--line); }
.process-light .process__item h3 { color: var(--ink); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.timeline__item { min-height: 240px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline__item span { display: block; margin-bottom: 45px; color: var(--red); font-size: .78rem; font-weight: 900; }
.timeline__item p { margin: 0; font-size: .88rem; }

.project-strip { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 210px; gap: 12px; }
.project-tile { position: relative; overflow: hidden; background: #ccd2d7; cursor: zoom-in; }
.project-tile:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.project-tile:nth-child(2) { grid-column: span 5; }
.project-tile:nth-child(3) { grid-column: span 5; }
.project-tile:nth-child(4), .project-tile:nth-child(5), .project-tile:nth-child(6) { grid-column: span 4; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-tile:hover img { transform: scale(1.035); }
.project-tile__caption { position: absolute; right: 0; bottom: 0; left: 0; padding: 34px 18px 15px; color: var(--white); background: linear-gradient(0deg, rgba(7,19,31,.86), transparent); font-size: .8rem; font-weight: 800; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.2); }
.stat { padding: 38px 30px; border-right: 1px solid rgba(255,255,255,.2); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 10px; color: var(--white); font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1; }
.stat span { color: #bdc8d3; font-size: .83rem; }

.proof-panel { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--white); box-shadow: var(--shadow); }
.proof-panel__title { padding: clamp(36px, 6vw, 72px); color: var(--white); background: var(--blue); }
.proof-panel__title h2 { margin-bottom: 18px; }
.proof-panel__title p { margin: 0; color: #dae5f4; }
.proof-panel__list { padding: clamp(36px, 6vw, 72px); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 0 0 18px 32px; color: #344353; }
.check-list li::before { position: absolute; top: .2em; left: 0; width: 19px; height: 19px; display: grid; place-items: center; content: "✓"; border-radius: 50%; color: var(--white); background: var(--success); font-size: .7rem; font-weight: 900; }
.check-list--white li { color: #d9e3ed; }

.scope-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 15px 45px rgba(12,27,42,.08); }
.scope-table th, .scope-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.scope-table th { color: var(--white); background: var(--ink); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
.scope-table td { color: #344353; font-size: .9rem; }
.scope-table tr:last-child td { border-bottom: 0; }
.scope-table .yes { color: var(--success); font-weight: 900; }
.scope-table .case { color: #9a6511; font-weight: 900; }
.table-wrap { overflow-x: auto; }

.notice { padding: 24px 26px; border-left: 4px solid var(--red); background: #fff4f4; }
.notice strong { display: block; margin-bottom: 6px; }
.notice p { margin: 0; font-size: .9rem; }
.notice--blue { border-color: var(--blue); background: #eef4fb; }
.notice--dark { border-color: #ff545c; background: #142b41; }
.notice--dark p, .notice--dark strong { color: #e4ecf4; }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card { overflow: hidden; background: #07131f; }
.video-card video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #06111c; }
.video-card__body { padding: 18px 22px 22px; }
.video-card h3 { margin: 0 0 4px; color: var(--white); font-size: 1.05rem; }
.video-card p { margin: 0; color: #9fb0c0; font-size: .82rem; }

.gallery-tools { position: sticky; z-index: 15; top: 82px; padding: 18px 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 9px 13px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); font-size: .76rem; font-weight: 800; cursor: pointer; }
.filter-btn:hover, .filter-btn.is-active { border-color: var(--ink); color: var(--white); background: var(--ink); }
.gallery-count { margin: 12px 0 0; color: var(--muted); font-size: .8rem; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-card { position: relative; min-height: 260px; overflow: hidden; border: 0; padding: 0; text-align: left; background: #dbe0e5; cursor: zoom-in; }
.gallery-card:nth-child(9n+1), .gallery-card:nth-child(9n+6) { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card__meta { position: absolute; right: 0; bottom: 0; left: 0; padding: 42px 16px 14px; color: var(--white); background: linear-gradient(0deg, rgba(7,19,31,.9), transparent); }
.gallery-card__meta strong, .gallery-card__meta span { display: block; }
.gallery-card__meta strong { font-size: .85rem; }
.gallery-card__meta span { color: #ced9e3; font-size: .7rem; }
.gallery-more { margin-top: 36px; text-align: center; }
.lightbox { position: fixed; z-index: 300; inset: 0; display: none; padding: 30px; color: var(--white); background: rgba(3,10,17,.96); }
.lightbox.is-open { display: grid; grid-template-rows: auto 1fr; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 16px; }
.lightbox__bar p { margin: 0; color: #d5dee7; }
.lightbox__close { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); color: var(--white); background: transparent; font-size: 1.5rem; cursor: pointer; }
.lightbox__figure { min-height: 0; display: grid; place-items: center; margin: 0; }
.lightbox__figure img { max-height: calc(100vh - 110px); object-fit: contain; }

.faq { max-width: 920px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 25px 46px 25px 0; color: var(--ink); font-weight: 900; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 25px; right: 4px; content: "+"; color: var(--red); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding-bottom: 24px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-card { padding: 36px; color: var(--white); background: var(--ink); }
.contact-card h3 { margin-bottom: 28px; }
.contact-line { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-line span { display: block; color: #92a5b8; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-line a, .contact-line address { display: block; margin-top: 5px; color: var(--white); font-size: 1.08rem; font-style: normal; font-weight: 800; text-decoration: none; }
.prep-list { margin: 30px 0; padding-left: 21px; color: #344353; }
.prep-list li { margin-bottom: 10px; padding-left: 6px; }
.map-embed { overflow: hidden; min-height: 450px; background: var(--ink); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: clamp(450px, 52vw, 580px); display: block; border: 0; }

.cta { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 100px) 0; color: var(--white); background: var(--blue); }
.cta::after { position: absolute; top: -120px; right: -60px; width: 360px; height: 360px; content: ""; border: 65px solid rgba(255,255,255,.08); transform: rotate(45deg); }
.cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { max-width: 780px; margin-bottom: 12px; }
.cta p { max-width: 700px; margin: 0; color: #d9e5f4; }

.legal { max-width: 900px; }
.legal h2 { margin: 55px 0 18px; font-size: 2rem; }
.legal h3 { margin-top: 34px; font-size: 1.3rem; }
.legal li { margin-bottom: 8px; color: #344353; }
.legal-meta { display: grid; grid-template-columns: 220px 1fr; margin: 32px 0; border-top: 1px solid var(--line); }
.legal-meta dt, .legal-meta dd { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-meta dt { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.legal-meta dd { color: var(--ink); font-weight: 700; }

.site-footer { color: #c4d0db; background: #07131f; }
.footer-main { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 50px; padding: 70px 0 55px; }
.footer-brand img { width: 235px; height: auto; margin-bottom: 22px; padding: 8px; background: var(--white); }
.footer-brand p { max-width: 360px; color: #91a4b6; font-size: .88rem; }
.footer-col h3 { margin-bottom: 20px; color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #b8c6d2; font-size: .85rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col address { color: #b8c6d2; font-size: .85rem; font-style: normal; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: #7f93a6; font-size: .75rem; }
.footer-bottom a { color: #b9c8d5; }
.footer-bottom .developer-credit { font-size: .68rem; white-space: nowrap; }
.footer-bottom .developer-credit a { color: #d3dde6; text-decoration: none; }
.footer-bottom .developer-credit a:hover { color: var(--white); text-decoration: underline; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { backdrop-filter: none; }
  .nav-toggle { display: block; }
  .nav__links { position: fixed; z-index: 110; top: 109px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; align-content: start; flex-direction: column; gap: 0; margin: 0; padding: 30px 20px max(30px, env(safe-area-inset-bottom)); background: var(--white); box-shadow: 0 24px 48px rgba(12,27,42,.18); overflow-y: auto; overscroll-behavior: contain; }
  .menu-open .nav__links { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: 18px 4px; font-size: 1rem; }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 18px; }
  .trust-strip__grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3), .trust-strip__item:nth-child(4) { border-top: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-card:nth-child(9n+1), .gallery-card:nth-child(9n+6) { grid-column: span 1; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { justify-content: center; }
  .topbar p:first-child { display: none; }
  .nav { min-height: 72px; }
  .brand img { width: 180px; }
  .hero { min-height: 700px; }
  .hero__content { padding: 88px 0 58px; }
  .hero__proof { margin-top: 38px; }
  .hero__proof-item, .hero__proof-item + .hero__proof-item { width: 50%; min-width: 0; padding: 18px 10px 0 0; border: 0; }
  .section-head, .cta__inner { display: block; }
  .section-head .btn, .cta .actions { margin-top: 24px; }
  .split, .proof-panel, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 420px; }
  .grid-2, .grid-3, .grid-4, .video-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .timeline { grid-template-columns: 1fr; }
  .project-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .project-tile:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .project-tile:nth-child(1) { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .gallery-tools { top: 72px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-card { min-height: 210px; }
  .process__item { grid-template-columns: 55px 1fr; gap: 12px; }
  .contact-grid { gap: 45px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }
  .legal-meta { grid-template-columns: 1fr; }
  .legal-meta dt { padding-bottom: 0; border-bottom: 0; }
  .legal-meta dd { padding-top: 4px; }
}

@media (max-width: 480px) {
  .hero__proof-item, .hero__proof-item + .hero__proof-item { width: 100%; }
  .trust-strip__grid, .stats, .gallery, .project-strip { grid-template-columns: 1fr; }
  .trust-strip__item { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .project-tile:nth-child(n) { grid-column: 1; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .lightbox { padding: 14px; }
}

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