:root {
  --red: #a92f32;
  --charcoal: #2d2d32;
  --ink: #141416;
  --muted: #616167;
  --light: #f5f3ef;
  --soft: #fbfaf8;
  --white: #fff;
  --line: rgba(20, 20, 22, .13);
  --shadow: 0 28px 80px rgba(0, 0, 0, .14);
  --header-height: 85px;
  --page-pad: 5vw;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body { margin: 0; min-width: 320px; overflow-x: hidden; font-family: Inter, Arial, sans-serif; color: var(--ink); background: var(--white); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }

h1, h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; line-height: 1.02; }
h1 { max-width: 1080px; font-size: clamp(3.35rem, 8.2vw, 8.75rem); letter-spacing: -.052em; }
h2 { font-size: clamp(2.35rem, 5vw, 5.55rem); letter-spacing: -.038em; }
h3 { margin: 0; font-size: 1.35rem; }
p { line-height: 1.75; color: #555; }
.lead { max-width: 880px; font-size: clamp(1.15rem, 2vw, 1.65rem); color: #474747; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.section-pad { padding: 118px var(--page-pad); }
.compact-pad { padding-top: 52px; padding-bottom: 52px; }
.section-head { max-width: 980px; margin-bottom: 55px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: -9999px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
}
.skip-link:focus { left: 10px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px var(--page-pad);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 8px 30px rgba(0, 0, 0, .08); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.brand img { width: 52px; height: 58px; border-radius: 5px; object-fit: cover; object-position: top; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { position: relative; color: var(--ink); font-size: .84rem; font-weight: 700; text-decoration: none; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--red); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--red); border-radius: 999px; color: var(--red) !important; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { color: #fff !important; background: var(--red); }
.menu-btn { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: transparent; font-size: 28px; cursor: pointer; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding: 165px var(--page-pad) 96px; color: #fff; background: #111; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: slowZoom 18s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .7)); }
.hero-content { position: relative; z-index: 2; max-width: 1180px; }
.hero .eyebrow { color: #fff; }
.hero-copy { max-width: 760px; margin: 24px 0 0; color: rgba(255, 255, 255, .88); font-size: clamp(1.05rem, 1.7vw, 1.45rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 25px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .16); }
.btn.primary { color: #fff; background: var(--red); }
.btn.secondary { color: #fff; border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .12); }

.trust-band { color: #fff; background: #111; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .14); }
.trust-item { min-height: 145px; padding: 28px; background: #111; }
.trust-item b { display: block; margin-bottom: 10px; font-family: "Playfair Display", Georgia, serif; font-size: 2rem; letter-spacing: -.04em; }
.trust-item span { display: block; color: rgba(255, 255, 255, .68); line-height: 1.6; }

.portfolio-overview { background: var(--soft); }
.portfolio-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: -20px 0 44px; }
.portfolio-tabs a { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .86rem; font-weight: 800; text-decoration: none; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.portfolio-tabs a:hover { border-color: var(--red); color: #fff; background: var(--red); }
.featured-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; align-items: stretch; }
.feature-tile { position: relative; min-height: 520px; overflow: hidden; border-radius: 30px; background: #111; box-shadow: 0 18px 55px rgba(0, 0, 0, .1); }
.feature-tile.large { grid-row: span 3; min-height: 820px; }
.feature-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.96); transition: transform .7s ease; }
.feature-tile:hover > img { transform: scale(1.04); }
.feature-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72)); }
.tile-content { position: absolute; z-index: 2; right: 34px; bottom: 30px; left: 34px; color: #fff; }
.tile-content .eyebrow { margin-bottom: 12px; color: #fff; }
.tile-content h3 { margin-bottom: 16px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.05rem, 4vw, 4.3rem); line-height: .98; letter-spacing: -.05em; }
.tile-content p { max-width: 650px; margin-bottom: 22px; color: rgba(255, 255, 255, .84); }
.tile-content a { display: inline-flex; padding-bottom: 6px; border-bottom: 1px solid rgba(255, 255, 255, .68); color: #fff; font-weight: 800; text-decoration: none; }

.split-statement { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: start; background: #fff; }
.split-copy p { margin-top: 0; font-size: 1.08rem; }

.case-study { background: #fff; }
.case-light { background: var(--light); }
.case-dark { color: #fff; background: #1a1a1e; }
.case-dark p { color: rgba(255, 255, 255, .74); }
.case-hero { height: min(82vh, 900px); overflow: hidden; background: #ddd; }
.case-hero img { width: 100%; height: 100%; object-fit: cover; }
.case-body { padding-top: 90px; }
.case-title { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 52px; }
.case-title .lead { margin-top: 8px; }
.project-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 0 50px; background: var(--line); }
.project-facts div { padding: 24px; background: #fff; }
.project-facts dt { margin-bottom: 8px; color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.project-facts dd { margin: 0; color: #303030; font-weight: 700; line-height: 1.5; }
.project-facts.invert { background: rgba(255, 255, 255, .18); }
.project-facts.invert div { background: #1a1a1e; }
.project-facts.invert dd { color: #fff; }
.mixed-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mixed-gallery figure { margin: 0; }
.mixed-gallery img { width: 100%; height: 54vh; min-height: 420px; object-fit: cover; }
.mixed-gallery figcaption { padding: 15px 0 0; color: #666; }

.industrial-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.industrial-grid img { width: 100%; height: 310px; border-radius: 3px; object-fit: cover; }
.industrial-grid img:nth-child(1), .industrial-grid img:nth-child(4), .industrial-grid img:nth-child(10) { grid-column: span 2; }

.concepts { background: var(--soft); }
.concept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.concept-card { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.concept-card img { width: 100%; height: 390px; object-fit: cover; }
.concept-card > div { align-self: end; padding: 34px; }
.concept-card h3 { margin-bottom: 14px; font-family: "Playfair Display", Georgia, serif; font-size: 2.4rem; line-height: 1; letter-spacing: -.04em; }

.design-process { background: #fff; }
.process-board { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 22px; align-items: stretch; }
.process-steps { display: flex; flex-direction: column; gap: 10px; }
.process-step { display: flex; align-items: center; gap: 14px; min-height: 72px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: var(--soft); font-weight: 900; text-align: left; cursor: pointer; transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
.process-step span { min-width: 42px; color: var(--red); font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; line-height: 1; }
.process-step:hover { transform: translateX(5px); background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .07); }
.process-step.active { border-color: #111; color: #fff; background: #111; box-shadow: 0 18px 45px rgba(0, 0, 0, .16); }
.process-step.active span { color: #fff; }
.process-detail { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 580px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: var(--light); }
.process-copy { align-self: end; padding: 48px; }
.process-kicker { margin: 0 0 16px; color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.process-copy h3 { margin-bottom: 22px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.3rem, 4vw, 4.8rem); line-height: .96; letter-spacing: -.055em; }
.process-copy p { font-size: 1.04rem; color: #4d4d4d; }
.process-copy ul { margin: 26px 0 0; padding-left: 20px; color: #555; font-weight: 600; line-height: 1.9; }
.process-image-wrap { position: relative; min-width: 0; min-height: 580px; overflow: hidden; background: #111; }
.process-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity .25s ease, transform .55s ease; }
.process-image-wrap.is-contain { padding: 24px; background: #f1eee8; }
.process-image-wrap.is-contain img { object-fit: contain; }
.process-image-wrap img.changing { opacity: .1; transform: scale(1.02); }

.construction-section { background: var(--light); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.timeline-step { min-height: 245px; padding: 34px; background: var(--light); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.timeline-step:hover { z-index: 2; transform: translateY(-7px); background: #fff; box-shadow: 0 20px 50px rgba(0, 0, 0, .08); }
.timeline-step b { color: var(--red); font-family: "Playfair Display", Georgia, serif; font-size: 2.8rem; }
.timeline-step p { margin-bottom: 0; }

.services-editorial { color: #fff; background: var(--charcoal); }
.services-editorial p { color: rgba(255, 255, 255, .72); }
.service-list { border-top: 1px solid rgba(255, 255, 255, .14); }
.service-row { display: grid; grid-template-columns: 80px .9fr 1.1fr; gap: 30px; align-items: start; padding: 34px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.service-row span { color: var(--red); font-family: "Playfair Display", Georgia, serif; font-size: 2.1rem; }
.service-row h3 { font-size: clamp(1.4rem, 2vw, 2.1rem); }
.service-row p { margin: 0; }

.about-editorial { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; background: #fff; }
.about-text p { margin-top: 0; font-size: 1.06rem; }

.standards { background: #fff; }
.standards-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.included, .excluded { padding: 36px; border: 1px solid var(--line); border-radius: 28px; background: var(--soft); }
.included { border-left: 5px solid var(--red); }
.excluded { border-left: 5px solid var(--charcoal); }
.standards ul { columns: 2; gap: 30px; margin: 22px 0 0; padding-left: 20px; }
.standards li { break-inside: avoid; margin: 0 0 12px; color: #555; }

.faq-section { background: var(--soft); }
.faq-list { max-width: 950px; }
.faq-section details { border-bottom: 1px solid #ddd; padding: 24px 0; }
.faq-section summary { position: relative; padding-right: 38px; font-size: 1.1rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after { content: "+"; position: absolute; right: 0; top: -.2em; color: var(--red); font-size: 1.7rem; font-weight: 400; }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p { max-width: 800px; margin-bottom: 0; }

.contact-section { background: linear-gradient(135deg, var(--charcoal), #111112); }
.contact-card { max-width: 900px; margin: auto; padding: 54px; border-radius: 32px; background: #fff; box-shadow: var(--shadow); }
.contact-card form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 25px; }
input, select, textarea { width: 100%; padding: 16px; border: 1px solid #d8d8d8; border-radius: 12px; color: var(--ink); background: #fff; }
input:hover, select:hover, textarea:hover { border-color: #aaa; }
textarea { grid-column: 1 / -1; min-height: 160px; resize: vertical; }
.contact-card form button { width: max-content; }
.form-status { grid-column: 1 / -1; min-height: 1.3em; margin: 6px 0 0; font-weight: 600; }
.form-status.success { color: #1d7a45; }
.form-status.error { color: var(--red); }
.contact-email { margin-top: 26px; }
.contact-email a { color: var(--red); font-weight: 800; }

footer { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 48px var(--page-pad); color: #fff; text-align: center; background: #111; }
.footer-brand img { width: 86px; height: 96px; border-radius: 8px; background: #fff; object-fit: cover; object-position: top; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.footer-nav a, .footer-email { color: rgba(255, 255, 255, .86); font-weight: 700; text-decoration: none; }
.footer-nav a:hover, .footer-email:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
footer p { max-width: 850px; margin: 0; color: rgba(255, 255, 255, .66); }

[data-lightbox] { cursor: zoom-in; }
[data-lightbox]:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.lightbox { width: min(94vw, 1500px); height: min(92vh, 980px); max-width: none; max-height: none; padding: 0; border: 0; border-radius: 16px; overflow: hidden; color: #fff; background: rgba(12, 12, 14, .98); box-shadow: 0 40px 120px rgba(0, 0, 0, .45); }
.lightbox::backdrop { background: rgba(0, 0, 0, .82); backdrop-filter: blur(5px); }
.lightbox figure { width: 100%; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; padding: 34px 72px 24px; }
.lightbox figure img { width: 100%; height: 100%; object-fit: contain; }
.lightbox figcaption { padding-top: 14px; color: rgba(255, 255, 255, .78); text-align: center; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: #fff; background: rgba(0, 0, 0, .45); cursor: pointer; }
.lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 28px; }
.lightbox-nav { top: 50%; width: 48px; height: 48px; font-size: 34px; transform: translateY(-50%); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 48px; height: 48px; border: 0; border-radius: 50%; color: #fff; background: var(--red); box-shadow: 0 12px 30px rgba(0, 0, 0, .2); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; cursor: pointer; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.js.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js.reveal-ready .reveal.show { opacity: 1; transform: none; }
.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; }

main section[id], #luxury-estate { scroll-margin-top: calc(var(--header-height) + 18px); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.055); } }

@media (max-width: 1100px) {
  :root { --page-pad: 5.5vw; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 0 var(--page-pad);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    opacity: 0;
    pointer-events: none;
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
  }
  .nav.open { max-height: calc(100vh - var(--header-height)); padding-top: 20px; padding-bottom: 26px; opacity: 1; pointer-events: auto; overflow-y: auto; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 14px; border-bottom: 1px solid var(--red) !important; text-align: center; }
  .brand span { display: none; }

  .section-pad { padding-top: 88px; padding-bottom: 88px; }
  .featured-grid, .split-statement, .case-title, .concept-grid, .about-editorial, .standards-grid { grid-template-columns: 1fr; }
  .split-statement, .case-title, .about-editorial { gap: 36px; }
  .feature-tile.large { min-height: 620px; }
  .feature-tile { min-height: 455px; }
  .trust-grid, .project-facts { grid-template-columns: repeat(2, 1fr); }
  .industrial-grid { grid-template-columns: repeat(2, 1fr); }
  .industrial-grid img:nth-child(n) { grid-column: auto; }
  .process-board, .process-detail { grid-template-columns: 1fr; }
  .process-steps { display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; padding-bottom: 8px; }
  .process-step { min-width: 150px; }
  .process-step:hover { transform: translateY(-2px); }
  .process-image-wrap { min-height: 470px; order: -1; }
  .process-copy { padding: 40px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 70px 1fr; }
  .service-row p { grid-column: 2; }
}

@media (max-width: 700px) {
  :root { --header-height: 76px; --page-pad: 20px; --radius: 22px; }
  h1 { font-size: clamp(3rem, 15vw, 4.35rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .site-header { padding-top: 9px; padding-bottom: 9px; }
  .brand img { width: 47px; height: 52px; }
  .hero { min-height: 92svh; padding-top: 130px; padding-bottom: 64px; }
  .hero-media { object-position: 58% center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .section-pad { padding-top: 74px; padding-bottom: 74px; }
  .compact-pad { padding-top: 42px; padding-bottom: 42px; }
  .trust-grid, .project-facts, .mixed-gallery, .timeline { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; }
  .portfolio-tabs { margin-top: -10px; }
  .feature-tile, .feature-tile.large { min-height: 430px; border-radius: 21px; }
  .tile-content { right: 24px; bottom: 24px; left: 24px; }
  .case-hero { height: 54vh; min-height: 390px; }
  .mixed-gallery img { height: 52vh; min-height: 340px; }
  .industrial-grid { grid-template-columns: 1fr; }
  .industrial-grid img { height: 300px; }
  .concept-card { grid-template-columns: 1fr; border-radius: 22px; }
  .concept-card img { height: 300px; }
  .concept-card > div { padding: 26px; }
  .process-steps { grid-template-columns: repeat(5, 145px); }
  .process-step { min-width: 145px; padding: 15px; }
  .process-detail { border-radius: 22px; }
  .process-image-wrap { min-height: 300px; }
  .process-image-wrap.is-contain { padding: 12px; }
  .process-copy { padding: 30px 24px; }
  .timeline-step { min-height: auto; }
  .service-row { grid-template-columns: 54px 1fr; gap: 14px; }
  .standards ul { columns: 1; }
  .included, .excluded { padding: 28px 24px; border-radius: 22px; }
  .contact-card { padding: 34px 22px; border-radius: 24px; }
  .contact-card form { grid-template-columns: 1fr; }
  textarea { grid-column: auto; }
  .contact-card form button { width: 100%; }
  .lightbox { width: 100vw; height: 100dvh; border-radius: 0; }
  .lightbox figure { padding: 62px 20px 22px; }
  .lightbox-nav { top: auto; bottom: 16px; transform: none; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
  .lightbox figcaption { padding-right: 58px; padding-left: 58px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

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

/* Prevent intrinsic image and text sizes from forcing CSS Grid tracks wider than the viewport. */
.trust-grid > *,
.featured-grid > *,
.project-facts > *,
.mixed-gallery > *,
.industrial-grid > *,
.concept-grid > *,
.concept-card > *,
.process-board > *,
.process-detail > *,
.timeline > *,
.service-row > *,
.standards-grid > * { min-width: 0; }
.mixed-gallery figure { min-width: 0; overflow: hidden; }
.industrial-grid,
.featured-grid,
.concept-grid,
.mixed-gallery,
.project-facts,
.trust-grid,
.timeline { max-width: 100%; }
.industrial-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.project-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mixed-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.concept-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-steps { max-width: 100%; }

@media (max-width: 1100px) {
  .trust-grid, .project-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industrial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .trust-grid, .project-facts, .mixed-gallery, .timeline, .industrial-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Keep the navigation usable when JavaScript is unavailable. */
@media (max-width: 1100px) {
  .no-js .site-header { position: relative; flex-wrap: wrap; }
  .no-js .menu-btn { display: none; }
  .no-js .nav {
    position: static;
    width: 100%;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    padding: 12px 0 0;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
  }
  .no-js .nav a { padding: 8px 0; border: 0; }
  .no-js .nav-cta { margin-top: 0; padding: 10px 15px; }
}
