@font-face { font-family: "Open Sans"; src: url("/assets/fonts/open-sans-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Open Sans"; src: url("/assets/fonts/open-sans-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: Roboto; src: url("/assets/fonts/roboto-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: Roboto; src: url("/assets/fonts/roboto-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: Roboto; src: url("/assets/fonts/roboto-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Istok Web"; src: url("/assets/fonts/istok-web-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Istok Web"; src: url("/assets/fonts/istok-web-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  --ink: #3b3f4a;
  --muted: #787d85;
  --accent: #1578a8;
  --surface: #ffffff;
  --footer: #22262e;
  --shell: 1320px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: var(--muted);
  background: var(--surface);
  font-size: 15px;
  line-height: 1.86;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { display: flex; min-width: 320px; min-height: 100vh; flex-direction: column; margin: 0; overflow-x: clip; background: var(--surface); }
main { flex: 1 0 auto; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.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: 0; left: 1rem; transform: translateY(-120%); padding: .65rem 1rem; color: #fff; background: #111; }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header { position: sticky; z-index: 20; top: 0; height: 91px; flex: 0 0 auto; background: #fff; box-shadow: 0 1px 0 rgba(34, 38, 46, .1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(calc(100% - 100px), var(--shell)); height: 100%; margin-inline: auto; }
.brand { flex: 0 0 auto; }
.brand img { width: 250px; height: 65px; object-fit: contain; }
.primary-navigation { display: flex; align-items: center; height: 100%; }
.primary-navigation ul { display: flex; align-items: stretch; height: 100%; padding: 0; margin: 0; list-style: none; }
.primary-navigation li { display: flex; align-items: stretch; }
.primary-navigation li a { position: relative; display: grid; place-items: center; padding: 0 21px; color: #292d35; font-size: 14px; font-weight: 700; line-height: 1; text-decoration: none; white-space: nowrap; }
.primary-navigation li a::after { position: absolute; right: 21px; bottom: 24px; left: 21px; height: 2px; content: ""; background: #19b8d1; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.primary-navigation li a:hover::after, .primary-navigation li a:focus-visible::after, .primary-navigation li a.is-active::after { transform: scaleX(1); }
.language-links { display: flex; flex: 0 0 auto; gap: 22px; align-items: center; margin-left: 16px; }
.language-links a { display: block; line-height: 1; text-decoration: none; }
.language-links img { width: 18px; max-width: none; height: 12px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; transition: background-color 180ms ease; }
.menu-toggle:hover, .menu-toggle:focus-visible { background: #f2f4f5; }
.menu-toggle:focus-visible { outline: 2px solid #19b8d1; outline-offset: 2px; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px auto; background: #3b3f4a; transform-origin: center; transition: opacity 180ms ease, transform 220ms var(--ease-out), background-color 180ms ease; }
.menu-toggle:hover span:not(.sr-only), .menu-toggle:focus-visible span:not(.sr-only) { background: #19b8d1; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; height: 1000px; overflow: hidden; background: #333; }
.hero-slide { position: absolute; inset: 0; opacity: 0; background-image: var(--hero-image); background-position: center; background-size: cover; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-caption { position: absolute; top: 51%; left: max(calc((100% - var(--shell)) / 2 + 50px), 6vw); width: max-content; max-width: calc(100% - 96px); padding: 5px 18px 8px; color: #111; background: rgba(255, 255, 255, .68); font-family: Roboto, Helvetica, Arial, sans-serif; font-size: clamp(30px, 3.2vw, 48px); font-weight: 400; line-height: 1.42; transform: translateY(-42%); transition: transform 900ms ease, opacity 900ms ease; }
.hero-slide.is-active .hero-caption { transform: translateY(-50%); }
.hero .slider-arrow { z-index: 3; }

.home-content { padding-block: 70px; }
.intro { max-width: 970px; margin: 0 auto 44px; text-align: center; }
.home-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.feature-list, .services { min-width: 0; }
.feature { min-height: 119px; }
.feature h2, .services > h2 { margin: 0; color: var(--ink); font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 25px; font-weight: 500; line-height: 36px; }
.feature p { margin: 0; }
.feature a { color: #888; font-size: 13px; text-decoration: none; }
.feature a:hover, .feature a:focus-visible { color: var(--accent); }
.accordion-item { margin-top: 8px; }
.accordion-item:first-child { margin-top: 0; }
.accordion-trigger { position: relative; width: 100%; min-height: 28px; padding: 0 30px 0 0; color: var(--ink); border: 0; background: transparent; font: inherit; text-align: left; cursor: pointer; }
.accordion-trigger span::before { position: absolute; top: 7px; right: 0; display: grid; width: 14px; height: 14px; place-items: center; color: #9ba0a7; background: #eef0f2; content: "+"; font-size: 11px; line-height: 1; }
.accordion-item.is-open .accordion-trigger span::before { content: "−"; }
.accordion-panel { display: grid; overflow: hidden; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 420ms ease, opacity 320ms ease; }
.accordion-panel-inner { min-height: 0; overflow: hidden; }
.accordion-panel-inner p { margin: 0; padding: 12px 0 4px; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; opacity: 1; }

.page-hero { position: relative; display: grid; min-height: 430px; place-items: center; overflow: hidden; color: #fff; background-image: linear-gradient(rgba(27, 30, 35, .55), rgba(27, 30, 35, .55)), var(--page-image); background-position: center; background-size: cover; }
.page-hero h1 { width: min(calc(100% - 48px), var(--shell)); margin: 0; font-family: Roboto, Helvetica, Arial, sans-serif; font-size: clamp(34px, 4vw, 54px); font-weight: 500; line-height: 1.15; text-align: center; }
.page-slider { position: relative; height: 570px; overflow: hidden; background: #ddd; }
.page-slide { position: absolute; inset: 0; opacity: 0; background-image: var(--slide-image); background-position: center; background-size: cover; transition: opacity 850ms ease; }
.page-slide.is-active { opacity: 1; }
.slider-arrow { position: absolute; z-index: 2; top: 50%; display: grid; width: 42px; height: 42px; place-items: center; padding: 0 0 4px; color: #fff; border: 0; border-radius: 50%; background: rgba(38, 41, 46, .58); font: 38px/1 Arial, sans-serif; cursor: pointer; opacity: .75; transform: translateY(-50%); transition: opacity 180ms ease; }
.slider-arrow:hover, .slider-arrow:focus-visible { opacity: 1; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; z-index: 2; right: 0; bottom: 18px; left: 0; display: flex; justify-content: center; gap: 5px; }
.slider-dot { width: 17px; height: 17px; padding: 0; border: 2px solid rgba(255,255,255,.78); border-radius: 50%; background: rgba(95,99,104,.72); cursor: pointer; }
.slider-dot.is-active { background: #fff; }
.page-title { padding-block: 45px 24px; }
.page-title h1 { margin: 0; color: var(--ink); font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 32px; font-weight: 500; }
.page-content { padding-block: 70px; }
.page-intro-section { padding-block: 78px 38px; }
.page-intro { margin: 0; font-size: 19.5px; line-height: 28px; }
.prose p { margin: 0 0 1.25em; }
.prose h2, .prose h3 { color: var(--ink); font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; }
.prose a { color: var(--accent); }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.about-layout > img { width: 100%; }
.about-layout .prose h3 { margin-top: 20px; font-size: 25px; }
.about-image, .about-mission { animation: about-enter 700ms var(--ease-out) both; }
.about-image { --about-enter-x: -40px; }
.about-mission { --about-enter-x: -240px; }
@keyframes about-enter {
  from { opacity: 0; transform: translateX(var(--about-enter-x)); }
  to { opacity: 1; transform: translateX(0); }
}

.service-row, .method-row { min-height: 215px; padding-block: 38px; }
.service-row { min-height: 246px; }
.service-row:nth-child(odd), .method-row:nth-child(odd) { background: #f7f7f8; }
.row-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; align-items: start; }
.service-row h2, .method-row h2 { margin: 0; color: #aeb2b8; font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 700; line-height: 28px; }
.method-row h2 { color: var(--accent); font-family: "Istok Web", sans-serif; font-size: 25px; font-weight: 400; line-height: 36px; }
.row-inner .prose { font-size: 19.5px; line-height: 28px; }
[data-reveal] { opacity: 0; transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal="left"] { transform: translateX(-54px); }
[data-reveal="right"] { transform: translateX(54px); }
[data-reveal].is-visible { opacity: 1; transform: translateX(0); }

.standalone-title { padding-block: 98px 80px; text-align: center; }
.standalone-title h1 { margin: 0; color: var(--ink); font-family: Roboto, sans-serif; font-size: 34px; font-weight: 500; line-height: 44px; }
.careers-content { padding-bottom: 68px; }
.careers-layout { display: grid; grid-template-columns: 368px 368px; gap: 30px; align-items: start; }
.careers-layout > img { width: 368px; height: 245px; object-fit: cover; }
.careers-layout h2 { margin: 0 0 2px; color: var(--muted); font-size: 15px; font-weight: 400; line-height: 28px; }
.career-job { margin: 0; }
.career-job .accordion-trigger { min-height: 38px; color: var(--ink); font-size: 15px; line-height: 28px; }
.career-job .accordion-trigger span::before { top: 12px; }
.career-job .accordion-panel-inner { max-height: 320px; overflow-y: auto; }
.career-copy { padding: 10px 0 24px; }
.career-contact { display: inline-block; margin-top: 38px; color: #18afd0; text-decoration: underline; }

.contact-content { padding: 11px 0 9px; }
.contact-layout { display: grid; grid-template-columns: 265px 1fr; gap: 30px; }
.contact-details h2 { margin: 0 0 8px; color: var(--ink); font-size: 24px; font-weight: 600; line-height: 34px; }
.contact-details p { margin: 0 0 12px; }
.contact-details address { font-style: normal; }
.contact-details a { color: #000; text-decoration: none; }
.contact-form { display: grid; grid-template-columns: 1fr; gap: 23px; }
.form-field { display: grid; gap: 6px; }
.form-field label { color: var(--muted); font-size: 15px; line-height: 20px; }
.form-field input, .form-field textarea { width: 100%; padding: 10px 12px; color: var(--ink); border: 1px solid #d2d5d8; border-radius: 0; background: #f5f5f5; font: inherit; }
.form-field input { height: 42px; }
.form-field textarea { height: 276px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); outline: 2px solid color-mix(in srgb, var(--accent) 25%, transparent); }
.contact-form button { justify-self: start; height: 40px; padding: 0 14px; color: #fff; border: 0; border-radius: 3px; background: linear-gradient(135deg, #07b7e6, #2ee1aa); font: 600 13px/40px "Open Sans", sans-serif; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,.16); }
.contact-form button:hover { box-shadow: 0 7px 16px rgba(0,0,0,.26); }
.contact-form button:focus-visible { outline: 2px solid #1578a8; outline-offset: 3px; box-shadow: 0 7px 16px rgba(0,0,0,.26); }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 28px; margin: 0; }
.form-status:empty { display: none; }
.contact-page .map { display: block; width: min(calc(100% - 48px), var(--shell)); min-height: 0; height: 410px; padding: 0; margin: 0 auto 62px; overflow: hidden; background: transparent; }
.contact-page .map iframe { display: block; width: 100%; height: 100%; border: 0; }

.project-title { padding-block: 58px 82px; text-align: center; }
.project-title h1 { font-size: 34px; line-height: 44px; }
.project-list { display: grid; gap: 20px; }
.project-card { display: grid; min-height: 220px; grid-template-columns: 300px 1fr; gap: 30px; padding: 20px; background: #f7f7f8; }
.project-media { position: relative; align-self: stretch; overflow: hidden; }
.project-image-link { display: block; height: 100%; overflow: hidden; }
.project-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 350ms ease; }
.project-media::after { position: absolute; z-index: 1; inset: 0; content: ""; pointer-events: none; background: #111; opacity: 0; transition: opacity 220ms ease; }
.project-image-expand { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 56px; height: 56px; place-items: center; padding: 0; color: #19b8d1; border: 0; border-radius: 50%; background: #fff; cursor: pointer; opacity: 0; transform: translate(-50%, -50%) scale(.82); transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease; }
.project-image-expand span { position: relative; display: block; width: 20px; height: 20px; }
.project-image-expand span::before, .project-image-expand span::after { position: absolute; width: 7px; height: 7px; content: ""; }
.project-image-expand span::before { top: 0; right: 0; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.project-image-expand span::after { bottom: 0; left: 0; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; }
.project-media:hover::after, .project-media:focus-within::after { opacity: .32; }
.project-media:hover .project-image-expand, .project-image-expand:focus-visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.project-media:hover img, .project-media:focus-within img { transform: scale(1.025); }
.project-image-expand:hover, .project-image-expand:focus-visible { box-shadow: 0 5px 14px rgba(0,0,0,.28); }
.project-image-expand:focus-visible { outline: 2px solid #19b8d1; outline-offset: 3px; }
.project-summary { padding-top: 2px; }
.project-summary h2 { margin: 0 0 6px; color: var(--ink); font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 700; line-height: 30px; }
.project-summary h2 a, .details-link { text-decoration: none; }
.project-summary h2 a { transition: color 180ms ease; }
.project-summary h2 a:hover, .project-summary h2 a:focus-visible { color: #19b8d1; }
.project-summary p { margin: 0 0 4px; line-height: 28px; }
.details-link { position: relative; display: inline-block; color: var(--ink); font-size: 13px; font-weight: 700; }
.details-link::after { position: absolute; right: 0; bottom: -2px; left: 0; height: 2px; content: ""; background: #19b8d1; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.details-link:hover::after, .details-link:focus-visible::after { transform: scaleX(1); }
.project-pagination { display: flex; justify-content: center; gap: 28px; padding-block: 52px 60px; }
.project-pagination a { position: relative; min-width: 14px; color: var(--ink); text-align: center; text-decoration: none; }
.project-pagination a.is-current::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: #19b8d1; }

.project-detail { padding-top: 94px; }
.project-detail h1 { margin: 0 0 88px; color: var(--ink); font-family: Roboto, Helvetica, Arial, sans-serif; font-size: clamp(28px, 3vw, 34px); font-weight: 500; line-height: 1.3; overflow-wrap: anywhere; text-align: center; }
.project-main { display: grid; grid-template-columns: minmax(0, 750px) minmax(260px, 350px); gap: clamp(28px, 4.35vw, 50px); align-items: start; }
.project-main > * { min-width: 0; }
.project-featured { width: 100%; height: auto; object-fit: contain; }
.project-featured-frame { width: 100%; overflow: hidden; }
.project-featured-frame--canal { aspect-ratio: 953 / 378; }
.project-featured-frame--canal .project-featured { transform: translateY(-22.832%); }
.project-featured-frame--eauvie { aspect-ratio: 953 / 631; }
.project-featured-frame--eauvie .project-featured { transform: translateY(-4.624%); }
.project-copy { min-width: 0; color: var(--muted); overflow-wrap: anywhere; }
.project-copy p { margin: 0 0 16px; }
.project-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; align-content: start; background: #fff; }
.project-gallery-item { position: relative; display: block; aspect-ratio: 1; padding: 0; overflow: hidden; border: 0; background: #e9ebed; cursor: zoom-in; }
.project-gallery-item::after { position: absolute; inset: 0; content: ""; background: rgba(20, 24, 29, 0); transition: background 180ms ease; }
.project-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 250ms ease; }
.project-gallery-item:hover::after, .project-gallery-item:focus-visible::after { background: rgba(20, 24, 29, .18); }
.project-gallery-item:hover img, .project-gallery-item:focus-visible img { transform: scale(1.035); }
.project-gallery-item:focus-visible { z-index: 1; outline: 3px solid #19b8d1; outline-offset: -3px; }
.project-neighbors { display: grid; grid-template-columns: 1fr 1fr; margin-top: 44px; padding-block: 27px; border-top: 1px solid #dfe2e5; border-bottom: 1px solid #dfe2e5; }
.project-neighbors a { position: relative; display: grid; color: var(--ink); text-decoration: none; }
.project-neighbors small { margin-bottom: 4px; color: #aeb2b8; font-size: 12px; font-weight: 400; }
.project-neighbors strong { font-family: Roboto, sans-serif; font-size: 20px; line-height: 30px; transition: color 180ms ease; }
.project-neighbors a:hover strong, .project-neighbors a:focus-visible strong { color: #19b8d1; }
.project-nav-previous { padding-left: 35px; }
.project-nav-next { padding-right: 35px; text-align: right; }
.project-nav-previous::before, .project-nav-next::after { position: absolute; top: 16px; color: #e0e3e6; font: 44px/1 Arial, sans-serif; }
.project-nav-previous::before { left: 0; content: "‹"; }
.project-nav-next::after { right: 0; content: "›"; }
.project-lightbox { width: min(calc(100% - 48px), 1240px); max-width: none; max-height: calc(100vh - 80px); padding: 0; overflow: visible; color: #fff; border: 0; background: transparent; }
.project-lightbox::backdrop { background: rgba(21, 23, 26, .86); }
.project-lightbox figure { display: grid; justify-items: start; margin: 0; }
.project-lightbox img { width: 100%; max-height: calc(100vh - 120px); object-fit: contain; background: #1d2025; }
.project-lightbox figcaption { padding-top: 7px; font-size: 16px; }
.project-lightbox-close { position: absolute; z-index: 1; top: -37px; right: 0; width: 34px; height: 34px; padding: 0; color: #fff; border: 0; background: transparent; font: 32px/1 Arial, sans-serif; cursor: pointer; opacity: .72; }
.project-lightbox-close:hover, .project-lightbox-close:focus-visible { opacity: 1; }
.project-lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.site-footer { min-height: 60px; flex: 0 0 auto; margin-top: auto; color: #fff; background: var(--footer); font-size: 13px; font-weight: 600; }
.site-footer > div { width: min(calc(100% - 48px), var(--shell)); padding: 18px 0; margin-inline: auto; }

.not-found-content { display: grid; min-height: 540px; place-content: center; justify-items: center; padding-block: 80px; text-align: center; }
.not-found-code { margin: 0; color: #dfe2e5; font: 700 clamp(84px, 16vw, 170px)/.9 Roboto, sans-serif; }
.not-found-content h1 { margin: 22px 0 8px; color: var(--ink); font: 500 34px/1.3 Roboto, sans-serif; }
.not-found-content > p:not(.not-found-code) { margin: 0 0 20px; }
.not-found-content a { color: var(--accent); font-weight: 600; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-fade-out 140ms var(--ease-out) both; }
::view-transition-new(root) { animation: page-fade-in 140ms var(--ease-out) both; }
@keyframes page-fade-out { to { opacity: 0; } }
@keyframes page-fade-in { from { opacity: 0; } }

@media (max-width: 1180px) {
  .header-inner { width: calc(100% - 40px); }
  .primary-navigation li a { padding-inline: 12px; }
  .primary-navigation li a::after { right: 12px; left: 12px; }
  .language-links { gap: 12px; margin-left: 8px; }
}

@media (max-width: 980px) {
  .site-header { height: 56px; }
  .header-inner { width: calc(100% - 36px); }
  .brand img { width: 181px; height: 47px; }
  .menu-toggle { display: block; }
  .primary-navigation { position: absolute; top: 56px; right: 0; left: 0; display: block; height: auto; padding: 18px; visibility: hidden; background: #fff; box-shadow: 0 12px 24px rgba(0, 0, 0, .12); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 180ms ease, transform 220ms var(--ease-out), visibility 0s linear 220ms; }
  .primary-navigation.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .primary-navigation ul { display: block; height: auto; }
  .primary-navigation li { display: block; }
  .primary-navigation li a { display: block; width: max-content; max-width: 100%; padding: 10px 0; transition: color 180ms ease; }
  .primary-navigation li a::after { right: 0; bottom: 2px; left: 0; }
  .primary-navigation li a:hover, .primary-navigation li a:focus-visible { color: #19b8d1; }
  .language-links { margin: 12px 0 0; }
}

@media (max-width: 900px) {
  .hero { height: 844px; }
  .hero-caption { font-size: clamp(24px, 7vw, 36px); }
  .project-main { grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr); gap: 28px; }
  .project-featured { width: 100%; }
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 36px); }
  .hero { height: 754px; }
  .hero-caption { width: calc(100% - 36px); font-size: 25px; }
  .home-content { padding-block: 70px; }
  .intro { margin-bottom: 56px; text-align: left; }
  .home-columns { grid-template-columns: 1fr; gap: 52px; }
  .feature { min-height: 128px; }
  .feature h2, .services > h2 { font-size: 22px; }
  .page-hero { min-height: 330px; }
  .page-slider { height: 330px; }
  .page-content { padding-block: 54px; }
  .about-layout, .careers-layout, .contact-layout, .row-inner { grid-template-columns: 1fr; }
  .about-mission { --about-enter-x: -48px; }
  .standalone-title { padding-block: 54px 44px; }
  .careers-layout > img { width: 100%; height: auto; }
  .page-intro-section { padding-block: 48px 28px; }
  .page-intro, .row-inner .prose { font-size: 15px; line-height: 28px; }
  .service-row, .method-row { min-height: 0; padding-block: 34px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-page .map { width: calc(100% - 36px); height: 320px; margin-bottom: 36px; }
  .project-title { padding-block: 44px 52px; }
  .project-card { grid-template-columns: 1fr; gap: 18px; }
  .project-card img { height: auto; aspect-ratio: 16 / 9; }
  .project-detail { padding-top: 52px; }
  .project-detail h1 { margin-bottom: 48px; font-size: 28px; line-height: 38px; }
  .project-main { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-neighbors { gap: 20px; }
  .project-neighbors strong { font-size: 15px; line-height: 22px; }
  .site-footer > div { width: calc(100% - 36px); text-align: center; }
}

@media (hover: none) {
  .project-media::after { opacity: .14; }
  .project-image-expand { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .about-image, .about-mission { animation-name: about-fade; animation-duration: 200ms !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation-duration: .01ms !important; }
}

@keyframes about-fade { from { opacity: 0; } to { opacity: 1; } }
