:root {
  --ink: #07131d;
  --ink-soft: #263640;
  --paper: #f6f5f1;
  --paper-deep: #ecece7;
  --line: rgba(7, 19, 29, .14);
  --red: #df2424;
  --red-deep: #b7191c;
  --green: #00ba60;
  --white: #fff;
  --container: min(1220px, calc(100vw - 80px));
  --display: "Playfair Display", Georgia, serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--green); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 130px 0; }
.section-tight { padding: 0 0 130px; }
.section-dark { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: var(--white); background: var(--ink); transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 30; top: 0; width: 100%; color: var(--white); transition: background .25s ease, box-shadow .25s ease, color .25s ease; }
.site-header.is-scrolled { color: var(--ink); background: rgba(246, 245, 241, .96); box-shadow: 0 1px 0 rgba(7, 19, 29, .12); backdrop-filter: blur(13px); }
.header-inner { display: flex; min-height: 90px; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 2; display: block; width: 130px; }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .08)); }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-nav > a:not(.nav-contact) { position: relative; padding: 8px 0; }
.site-nav > a:not(.nav-contact)::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:not(.nav-contact):hover::after, .site-nav > a:not(.nav-contact):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { padding: 13px 17px; color: var(--white); background: var(--red); transition: background .2s ease, transform .2s ease; }
.nav-contact:hover, .nav-contact:focus-visible { background: var(--red-deep); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero { position: relative; display: flex; min-height: max(720px, 100svh); color: var(--white); background: var(--ink); overflow: hidden; align-items: center; }
.hero-image { position: absolute; inset: 0; background: url("../../gallery-images/WhatsApp Image 2026-07-29 at 20.42.40.jpeg") center 48% / cover no-repeat; transform: scale(1.015); animation: hero-zoom 16s ease-out both; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 10, 16, .94) 0%, rgba(2, 10, 16, .76) 43%, rgba(2, 10, 16, .26) 80%), linear-gradient(0deg, rgba(2, 10, 16, .68), transparent 37%); }
.hero-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 82px 82px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.hero-content { position: relative; z-index: 1; padding: 152px 0 168px; }
.eyebrow { display: flex; gap: 9px; align-items: center; margin: 0 0 19px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h1 { max-width: 790px; margin-bottom: 26px; font-family: var(--display); font-size: clamp(3.7rem, 7.4vw, 7.35rem); font-weight: 600; line-height: .98; }
h1 em { position: relative; color: var(--green); font-style: italic; font-weight: 600; }
.hero-copy { max-width: 560px; margin-bottom: 37px; color: rgba(255, 255, 255, .8); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 28px; align-items: center; }
.button { display: inline-flex; min-height: 53px; padding: 13px 22px; align-items: center; justify-content: center; gap: 20px; border: 0; font-size: 11px; font-weight: 800; letter-spacing: .09em; line-height: 1.2; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button span { font-size: 19px; font-weight: 400; }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover, .button-primary:focus-visible { color: var(--white); background: var(--red-deep); transform: translateY(-3px); }
.text-link { display: inline-flex; gap: 11px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: gap .2s ease; }
.text-link:hover, .text-link:focus-visible { gap: 16px; }
.text-link-light { border-color: rgba(255, 255, 255, .7); color: var(--white); }
.hero-footer { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: flex; min-height: 104px; border-top: 1px solid rgba(255, 255, 255, .22); align-items: center; }
.hero-proof { display: flex; min-width: 225px; min-height: 58px; gap: 13px; padding-right: 31px; border-right: 1px solid rgba(255, 255, 255, .22); align-items: center; }
.hero-proof + .hero-proof { padding-left: 31px; }
.hero-proof strong { color: var(--green); font-size: 26px; font-weight: 700; letter-spacing: -.06em; line-height: 1; }
.hero-proof span { color: rgba(255, 255, 255, .72); font-size: 10px; font-weight: 700; letter-spacing: .065em; line-height: 1.5; text-transform: uppercase; }
.hero-scroll { display: flex; gap: 11px; margin-left: auto; color: rgba(255, 255, 255, .75); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll span { color: var(--green); font-size: 18px; line-height: .7; }

.intro { position: relative; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 11.5%; }
.section-heading h2 { max-width: 700px; margin-bottom: 0; font-family: var(--display); font-size: clamp(2.45rem, 4.6vw, 4.5rem); font-weight: 600; line-height: 1.04; }
.intro-copy { max-width: 525px; padding-top: 4px; }
.intro-copy .lead { margin-bottom: 23px; color: var(--ink); font-size: 19px; font-weight: 600; line-height: 1.56; }
.intro-copy > p:not(.lead) { margin-bottom: 28px; color: #56636a; font-size: 14px; line-height: 1.85; }
.commitment-row { display: grid; margin-top: 112px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); grid-template-columns: 70px 1fr 70px 1fr; gap: 30px; align-items: center; }
.commitment-row > div { padding: 31px 0; }
.commitment-row > div:nth-child(2) { border-right: 1px solid var(--line); }
.commitment-number { color: var(--red); font-family: var(--display); font-size: 32px; font-style: italic; }
.commitment-row .eyebrow { margin-bottom: 8px; }
.commitment-row h3 { max-width: 295px; margin: 0; font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.3; }

.services { padding: 136px 0 142px; }
.services-visual { position: absolute; z-index: 0; top: 0; right: -8%; width: 57%; height: 100%; opacity: .2; background: linear-gradient(90deg, var(--ink) 0%, transparent 30%), url("../../other-images/industry.jpg") center / cover no-repeat; mix-blend-mode: screen; }
.services-inner { position: relative; z-index: 1; }
.services-top { display: flex; justify-content: space-between; gap: 80px; align-items: end; }
.services-top h2 { max-width: 600px; }
.services-summary { max-width: 325px; margin: 0 0 6px; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.8; }
.service-list { display: grid; margin-top: 70px; border-top: 1px solid rgba(255,255,255,.28); grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 365px; padding: 28px 25px 22px; border-right: 1px solid rgba(255,255,255,.28); transition: background .25s ease; }
.service-card:first-child { border-left: 1px solid rgba(255,255,255,.28); }
.service-card:hover { background: rgba(255,255,255,.06); }
.service-index { display: block; margin-bottom: 70px; color: var(--green); font-family: var(--display); font-size: 28px; font-style: italic; }
.service-card h3 { margin-bottom: 14px; font-family: var(--display); font-size: 25px; font-weight: 600; line-height: 1.12; }
.service-card p { margin-bottom: 19px; color: rgba(255,255,255,.63); font-size: 12px; line-height: 1.7; }
.service-card ul { padding: 0; margin: 0; color: rgba(255,255,255,.85); font-size: 11px; line-height: 1.8; list-style: none; }
.service-card li { position: relative; padding-left: 12px; }
.service-card li::before { position: absolute; top: .75em; left: 0; width: 4px; height: 4px; content: ""; background: var(--red); border-radius: 50%; }

.project-experience { background: #f1f0eb; }
.project-header { display: flex; gap: 12%; justify-content: space-between; align-items: end; }
.project-header h2 { max-width: 675px; }
.project-intro { max-width: 375px; margin: 0 0 7px; color: #56636a; font-size: 14px; line-height: 1.8; }
.project-grid { display: grid; margin-top: 70px; grid-template-columns: 1.55fr 1fr; grid-template-rows: 300px 300px; gap: 15px; }
.project-card { position: relative; min-height: 0; overflow: hidden; background: var(--ink); }
.project-card-featured { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.06); }
.project-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(2,10,16,.86), rgba(2,10,16,.04) 65%); pointer-events: none; }
.project-card-copy { position: absolute; z-index: 1; right: 25px; bottom: 22px; left: 25px; color: var(--white); }
.project-card-copy span { display: block; margin-bottom: 4px; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-card-copy h3 { max-width: 320px; margin: 0; font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.15; }
.project-list { display: grid; margin-top: 81px; border-top: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); }
.project-list article { padding: 28px 40px 30px 0; border-bottom: 1px solid var(--line); }
.project-list article:nth-child(odd) { margin-right: 39px; }
.project-list article:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--line); }
.project-year { display: block; margin-bottom: 8px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.project-list h3 { margin-bottom: 6px; font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.2; }
.project-list p { max-width: 460px; margin: 0; color: #5d686d; font-size: 12px; line-height: 1.7; }

.gallery { overflow: hidden; background: #f1f0eb; }
.gallery-heading { display: flex; margin-bottom: 42px; justify-content: space-between; align-items: end; }
.gallery-heading .eyebrow { margin-bottom: 0; }
.gallery-heading h2 { max-width: 550px; margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.3rem); font-weight: 600; line-height: 1.04; }
.gallery-grid { display: grid; width: min(1440px, 100%); min-height: 500px; margin: auto; grid-template-columns: 1.45fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 8px; }
.gallery-grid figure { padding: 0; margin: 0; overflow: hidden; background: var(--ink); }
.gallery-grid figure:nth-child(2) { grid-column: 2; }
.gallery-grid figure:nth-child(3) { grid-column: 3; }
.gallery-grid figure:nth-child(4) { grid-column: 2; }
.gallery-wide { grid-row: span 2; }
.gallery-tall { grid-column: 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

.clients { padding-bottom: 134px; background: var(--paper); }
.client-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.client-heading .eyebrow { margin-bottom: 0; }
.client-heading h2 { max-width: 630px; margin: 0; font-family: var(--display); font-size: clamp(2.1rem, 3.8vw, 3.75rem); font-weight: 600; line-height: 1.06; }
.client-logos { display: grid; margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); }
.client-logos img { width: 100%; height: 104px; padding: 22px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); object-fit: contain; filter: grayscale(1) contrast(.88); opacity: .74; transition: filter .2s ease, opacity .2s ease, background .2s ease; }
.client-logos img:hover { background: var(--white); filter: grayscale(0) contrast(1); opacity: 1; }

.contact { padding: 125px 0; background: #08131b; }
.contact::before { position: absolute; z-index: 0; top: -120px; right: -220px; width: 680px; height: 680px; content: ""; border: 1px solid rgba(0,186,96,.28); border-radius: 50%; box-shadow: 0 0 0 65px rgba(0,186,96,.04), 0 0 0 130px rgba(0,186,96,.03); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 11.5%; }
.contact-copy h2 { max-width: 520px; margin-bottom: 20px; font-family: var(--display); font-size: clamp(2.8rem, 4.7vw, 4.55rem); font-weight: 600; line-height: 1.03; }
.contact-copy > p:not(.eyebrow) { max-width: 455px; margin-bottom: 36px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.85; }
.contact-details { display: grid; margin-bottom: 37px; gap: 18px; }
.contact-details a { display: flex; flex-direction: column; gap: 2px; font-size: 15px; font-weight: 700; transition: color .2s ease; }
.contact-details a:hover { color: var(--green); }
.contact-details span, .address-block > span { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.address-block { max-width: 440px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); }
.address-block + .address-block { margin-top: 16px; }
.address-block p { margin: 5px 0 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.75; }
.contact-form-wrap { padding: 39px; background: var(--white); color: var(--ink); box-shadow: 25px 25px 0 rgba(223,36,36,.18); }
.form-notice { margin-bottom: 22px; padding: 13px 15px; font-size: 12px; font-weight: 600; line-height: 1.55; }
.form-notice-success { color: #075d32; background: #e3f7ec; border-left: 3px solid var(--green); }
.form-notice-error { color: #8d1717; background: #fde9e9; border-left: 3px solid var(--red); }
.contact-form { display: grid; gap: 19px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 7px; }
.field label { color: #46545b; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.field label b { color: var(--red); }
.field input, .field textarea, .field select { width: 100%; padding: 10px 0; border: 0; border-bottom: 1px solid #aeb6b9; border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; font-weight: 600; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 94px; resize: vertical; }
.field select { padding-right: 26px; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: #90999e; font-weight: 400; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--green); box-shadow: 0 2px 0 var(--green); }
.button-full { width: 100%; margin-top: 5px; }
.form-footnote { margin: -7px 0 0; color: #778187; font-size: 10px; line-height: 1.55; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 48px 0 22px; color: var(--white); background: #050c12; }
.footer-main { display: grid; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.15); grid-template-columns: 180px 1fr auto; gap: 55px; align-items: center; }
.footer-brand { width: 135px; }
.footer-main p { max-width: 540px; margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.7; }
.footer-top { display: inline-flex; gap: 10px; align-items: center; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom { display: flex; padding-top: 19px; justify-content: space-between; color: rgba(255,255,255,.44); font-size: 9px; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card.reveal:nth-child(2), .project-list article:nth-child(2) { transition-delay: .08s; }
.service-card.reveal:nth-child(3), .project-list article:nth-child(3) { transition-delay: .15s; }
.service-card.reveal:nth-child(4), .project-list article:nth-child(4) { transition-delay: .22s; }

@keyframes hero-zoom { from { transform: scale(1.075); } to { transform: scale(1.015); } }

@media (max-width: 980px) {
  :root { --container: min(100% - 48px, 1220px); }
  .site-nav { gap: 19px; }
  .services-top, .project-header { gap: 40px; }
  .service-card { padding-right: 17px; padding-left: 17px; }
  .contact-grid { gap: 7%; }
  .contact-form-wrap { padding: 31px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 40px); }
  html { scroll-padding-top: 76px; }
  .section { padding: 84px 0; }
  .section-tight { padding-bottom: 84px; }
  .header-inner { min-height: 72px; }
  .brand { width: 104px; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 42px; height: 40px; padding: 0; border: 0; background: transparent; place-content: center; gap: 6px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; top: 0; right: 0; left: 0; display: flex; min-height: 100svh; padding: 110px 20px 35px; color: var(--ink); background: var(--paper); flex-direction: column; align-items: flex-start; justify-content: center; gap: 15px; clip-path: inset(0 0 100% 0); transition: clip-path .35s cubic-bezier(.7,0,.2,1); }
  .site-nav.is-open { clip-path: inset(0); }
  .site-nav > a:not(.nav-contact) { font-family: var(--display); font-size: 37px; font-weight: 600; letter-spacing: -.04em; line-height: 1.2; text-transform: none; }
  .site-nav .nav-contact { margin-top: 18px; }
  .hero { min-height: 760px; }
  .hero-grid { background-size: 50px 50px; }
  .hero-content { padding: 145px 0 165px; }
  h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .hero-copy { font-size: 15px; }
  .hero-actions { gap: 23px; align-items: flex-start; flex-direction: column; }
  .hero-footer { min-height: 86px; }
  .hero-proof { min-width: 0; flex: 1; padding-right: 12px; }
  .hero-proof + .hero-proof { padding-left: 12px; }
  .hero-proof strong { font-size: 22px; }
  .hero-proof span { font-size: 8px; letter-spacing: .03em; }
  .hero-scroll { display: none; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .intro-copy { max-width: 100%; }
  .commitment-row { margin-top: 70px; grid-template-columns: 47px 1fr; gap: 0 15px; }
  .commitment-row > div { padding: 24px 0; }
  .commitment-row > div:nth-child(2) { border-right: 0; }
  .commitment-row > div:nth-child(3) { border-top: 1px solid var(--line); }
  .commitment-row > div:nth-child(4) { border-top: 1px solid var(--line); }
  .services { padding: 85px 0; }
  .services-top, .project-header { flex-direction: column; align-items: flex-start; }
  .services-summary, .project-intro { max-width: 510px; }
  .service-list { margin-top: 47px; grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 325px; }
  .service-card:nth-child(3) { border-left: 1px solid rgba(255,255,255,.28); }
  .service-index { margin-bottom: 45px; }
  .project-grid { margin-top: 48px; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 230px; }
  .project-card-featured { grid-column: span 2; grid-row: auto; }
  .project-card-copy h3 { font-size: 21px; }
  .project-list { margin-top: 60px; }
  .project-list article { padding-right: 25px; }
  .project-list article:nth-child(odd) { margin-right: 24px; }
  .project-list article:nth-child(even) { padding-left: 25px; }
  .gallery-heading, .client-heading { gap: 20px; flex-direction: column; align-items: flex-start; }
  .gallery-grid { min-height: 600px; grid-template-columns: 1fr 1fr; grid-template-rows: 250px 175px 175px; }
  .gallery-wide { grid-row: auto; grid-column: span 2; }
  .gallery-grid figure:nth-child(2) { grid-column: auto; }
  .gallery-grid figure:nth-child(3) { grid-column: auto; }
  .gallery-grid figure:nth-child(4) { display: none; }
  .gallery-tall { display: none; }
  .client-logos { margin-top: 50px; grid-template-columns: repeat(3, 1fr); }
  .contact { padding: 85px 0; }
  .contact-form-wrap { padding: 26px 22px; box-shadow: 13px 13px 0 rgba(223,36,36,.17); }
  .footer-main { grid-template-columns: 1fr; gap: 21px; }
  .footer-bottom { gap: 6px; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { min-height: 720px; }
  .hero-copy { max-width: 330px; }
  .button { width: 100%; }
  .text-link { font-size: 9px; }
  .hero-proof { gap: 8px; }
  .intro-copy .lead { font-size: 17px; }
  .service-list { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(3) { min-height: 0; border-left: 1px solid rgba(255,255,255,.28); }
  .service-index { margin-bottom: 29px; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: 300px 225px 225px; }
  .project-card-featured { grid-column: auto; }
  .project-list { grid-template-columns: 1fr; }
  .project-list article, .project-list article:nth-child(odd), .project-list article:nth-child(even) { padding: 23px 0; margin: 0; border-left: 0; }
  .form-row { grid-template-columns: 1fr; gap: 19px; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .client-logos img { height: 90px; padding: 19px; }
}

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