:root {
  --ink: #0b0b0d;
  --ink-soft: #17171b;
  --burgundy: #5a0f20;
  --burgundy-dark: #360812;
  --red: #c51f2d;
  --red-bright: #e22735;
  --paper: #ffffff;
  --mist: #f3f4f5;
  --line: #dfe1e4;
  --muted: #62666d;
  --shadow: 0 24px 70px rgba(11, 11, 13, 0.14);
  --display: "Montserrat", "Segoe UI", Arial, sans-serif;
  --body: "DM Sans", Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --max: 1240px;
  --ease: 220ms ease;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.top-progress { position: fixed; top: 0; left: 0; z-index: 250; width: 100%; height: 3px; background: transparent; pointer-events: none; }
.top-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--red), #ffffff); transition: width 100ms linear; }
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; }
.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; }
:where(a, button, input, textarea, select):focus-visible { outline: 3px solid var(--red-bright); outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 16px; background: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-mist { background: var(--mist); }
.section-dark { color: white; background: var(--ink); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; line-height: .98; letter-spacing: .01em; }
h1 { font-size: clamp(3.2rem, 5.8vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.7rem); line-height: 1.14; }
p { margin: 0 0 1.15em; }
.lead { color: #3e4248; font-size: clamp(1.08rem, 1.8vw, 1.25rem); line-height: 1.75; }
.section-dark .lead { color: #c8cbd0; }
.rule { width: 54px; height: 4px; margin: 22px 0 26px; background: var(--red); }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), color var(--ease), border var(--ease);
}
.btn::after { content: "\2197"; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--red); }
.btn-primary:hover { background: var(--red-bright); }
.btn-outline { color: white; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.2); }
.btn-outline:hover { border-color: white; background: white; color: var(--ink); }
.btn-dark { color: white; background: var(--ink); }
.btn-dark:hover { background: var(--burgundy); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; height: 82px; color: white; background: rgba(11,11,13,.96); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; width: 300px; min-width: 0; height: 66px; align-items: center; gap: 12px; overflow: hidden; }
.brand img { width: 76px; height: 64px; flex: 0 0 76px; object-fit: cover; object-position: left 7%; filter: grayscale(1) brightness(0) invert(1); }
.brand-name { display: grid; color: white; line-height: 1; text-transform: uppercase; }
.brand-name b { font-family: var(--display); font-size: 1.08rem; letter-spacing: .075em; white-space: nowrap; }
.brand-name small { margin-top: 5px; font-size: .54rem; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; padding: 28px 0 24px; font-size: .84rem; font-weight: 700; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--ease); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav .nav-cta { padding: 14px 20px; background: var(--red); }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 0; color: white; border: 1px solid rgba(255,255,255,.25); background: transparent; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 22px; height: 2px; margin: 5px auto; content: ""; background: currentColor; transition: transform var(--ease); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  color: white;
  background: var(--ink) url("../images/hero-construction.png") center/cover no-repeat;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(6,7,9,.93) 0%, rgba(6,7,9,.76) 31%, rgba(6,7,9,.16) 66%, rgba(6,7,9,.05) 100%); }
.hero::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; z-index: 0; width: 70px; background: var(--burgundy); clip-path: polygon(0 0,100% 0,0 28%,0 100%); }
.hero > .container { position: relative; z-index: 1; min-height: calc(100svh - 82px); display: flex; align-items: center; padding-top: 54px; padding-bottom: 146px; }
.hero-copy { width: 100%; max-width: 640px; min-width: 0; }
.hero h1 { max-width: 620px; font-size: clamp(3.5rem, 5.4vw, 4.75rem); line-height: 1.02; text-wrap: balance; }
.hero p { max-width: 570px; margin: 28px 0 36px; color: #eef0f2; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.proof-rail { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; color: white; background: rgba(11,11,13,.96); border-top: 1px solid rgba(255,255,255,.12); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-width: 0; min-height: 104px; display: flex; align-items: center; gap: 16px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.proof-item > div:last-child { min-width: 0; }
.proof-item:last-child { border-right: 0; }
.proof-icon { width: 34px; height: 34px; flex: 0 0 34px; color: var(--red); }
.proof-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.proof-item strong { display: block; font-family: var(--display); font-size: 1.45rem; line-height: 1; }
.proof-item span { display: block; color: #b8bbc0; font-size: .78rem; line-height: 1.45; }

/* Shared visual sections */
.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px max(40px, 7vw); }
.split-copy .lead { max-width: 540px; }
.split-media { min-height: 600px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-link { min-height: 240px; padding: 38px; text-align: left; background: white; transition: color var(--ease), background var(--ease), transform var(--ease); }
.service-link:hover { color: white; background: var(--burgundy); }
.service-link svg { width: 46px; height: 46px; margin: 0 0 28px; color: var(--red); fill: none; stroke: currentColor; stroke-width: 1.7; }
.service-link:hover svg { color: white; }
.service-link h3 { font-size: 1.35rem; line-height: 1.2; }
.service-link p { max-width: 300px; margin: 12px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.service-link:hover p { color: #eadde0; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-card { position: relative; aspect-ratio: 4 / 3; min-height: 0; overflow: hidden; color: white; background: var(--ink); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(.88) contrast(1.04); transition: transform 500ms ease, filter 500ms ease; }
.project-card:hover img { transform: scale(1.045); }
.project-card::after { content: ""; position: absolute; inset: 36% 0 0; background: linear-gradient(transparent, rgba(7,7,9,.96)); }
.project-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 28px; }
.project-copy span { color: #f1a0a7; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-copy h3 { margin-top: 8px; font-size: 1.65rem; }
.project-copy p { margin: 8px 0 0; color: #d2d4d8; font-size: .8rem; }
.center-action { margin-top: 36px; text-align: center; }
.why-band { position: relative; overflow: hidden; color: white; background: var(--ink); }
.why-band::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 180px; background: var(--burgundy); clip-path: polygon(0 0,100% 0,42% 100%,0 100%); }
.why-band .container { position: relative; padding-top: 70px; padding-bottom: 70px; }
.why-band h2 { max-width: 900px; margin: 0 auto 48px; font-size: clamp(1.9rem, 3vw, 2.8rem); text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-item { padding: 10px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.22); }
.why-item:last-child { border-right: 0; }
.why-item strong { display: block; margin-bottom: 4px; color: var(--red); font-family: var(--display); font-size: 2rem; }
.why-item span { font-weight: 700; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.leader-card { position: relative; min-height: 170px; display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 26px; padding: 32px; background: white; }
.leader-number { display: grid; place-items: center; width: 86px; height: 86px; color: white; background: var(--burgundy); font-family: var(--display); font-size: 1.45rem; font-weight: 800; }
.leader-info { padding: 0; }
.leader-info h3 { font-size: 1.4rem; }
.leader-info p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; }
.cta-band { position: relative; overflow: hidden; color: white; background: linear-gradient(90deg, var(--burgundy-dark), var(--burgundy) 65%, var(--red)); }
.cta-band::after { content: ""; position: absolute; top: 0; right: 5%; width: 170px; height: 100%; background: rgba(255,255,255,.08); transform: skewX(-35deg); }
.cta-inner { position: relative; z-index: 1; min-height: 180px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.cta-inner p { margin: 8px 0 0; color: #f2dfe3; }

/* Interior pages */
.page-hero { position: relative; min-height: 500px; display: grid; align-items: end; color: white; background: var(--ink); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--page-image, url("../images/civil-engineering.webp")) center/cover no-repeat; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,8,10,.93), rgba(8,8,10,.65) 48%, rgba(8,8,10,.22)); }
.page-hero .container { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 78px; }
.page-hero h1 { max-width: 850px; font-size: clamp(3rem, 5vw, 4.75rem); line-height: 1.03; }
.page-hero p { max-width: 650px; margin-top: 24px; color: #e3e5e8; font-size: 1.2rem; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 22px; color: #d6b7bd; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-hero { --page-image: url("../images/online/construction-site-premium.webp"); }
.services-hero { --page-image: url("../images/build-construct.webp"); }
.projects-hero { --page-image: url("../images/projects/p32-03.webp"); }
.contact-hero { --page-image: url("../images/plan-manage.webp"); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-grid .media-frame { min-height: 520px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.stat { padding: 24px 18px 0 0; }
.stat strong { display: block; color: var(--burgundy); font-family: var(--display); font-size: 2.4rem; line-height: 1; }
.stat span { color: var(--muted); font-size: .78rem; }
.vision-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 12px; }
.vision-panel { min-height: 320px; padding: 52px; color: white; background: var(--burgundy); }
.vision-panel:nth-child(2) { background: var(--ink); }
.vision-panel h3 { margin-bottom: 24px; font-size: 1.9rem; }
.vision-panel p { color: #e3d4d7; font-size: 1.1rem; }
.values-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-item { padding: 36px 34px 18px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item b { display: block; margin-bottom: 16px; color: var(--red); font-family: var(--display); font-size: 2rem; }
.value-item p { color: var(--muted); font-size: .92rem; }
.leadership-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.leader-row { min-height: 230px; display: grid; grid-template-columns: 115px 1fr; gap: 26px; padding: 34px; background: white; }
.leader-monogram { display: grid; place-items: center; width: 115px; height: 115px; color: white; background: var(--burgundy); font-family: var(--display); font-size: 2.5rem; font-weight: 800; }
.leader-row h3 { font-size: 1.7rem; }
.leader-role { margin: 7px 0 14px; color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.leader-row p:last-child { color: var(--muted); font-size: .88rem; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-detail { min-height: 305px; padding: 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color var(--ease), background var(--ease); }
.service-detail:hover { color: white; background: var(--burgundy); }
.service-number { color: var(--red); font-family: var(--display); font-size: 1.4rem; }
.service-detail h3 { margin: 25px 0 18px; font-size: 1.65rem; }
.service-detail p { max-width: 520px; color: var(--muted); }
.service-detail:hover p { color: #e7d9dc; }
.capability-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.16); }
.capability { padding: 28px; background: var(--ink); }
.capability b { display: block; margin-bottom: 8px; color: var(--red); font-family: var(--display); font-size: 1.5rem; }
.capability span { color: #c6c8cc; font-size: .84rem; }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 38px; }
.filter-btn { min-height: 44px; padding: 0 18px; border: 1px solid var(--line); color: #34373c; background: white; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.filter-btn:hover, .filter-btn.active, .filter-btn[aria-pressed="true"] { color: white; border-color: var(--burgundy); background: var(--burgundy); }
.projects-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.projects-page-grid .project-card { min-height: 0; }
.projects-page-grid .project-card img { min-height: 0; }
.project-card.is-hidden { display: none; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; }
.contact-details { padding-right: 20px; }
.contact-block { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-block:first-of-type { margin-top: 30px; border-top: 1px solid var(--line); }
.contact-block b { display: block; margin-bottom: 7px; color: var(--red); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-block a:hover { color: var(--red); }
.contact-form { padding: 46px; background: var(--mist); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #cfd2d6; border-radius: 0; color: var(--ink); background: white; outline: 0; }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(90,15,32,.1); }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .78rem; }
.location-panel { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 430px; background: var(--ink); }
.location-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; color: white; }
.location-copy h2 { margin-bottom: 20px; font-size: clamp(2rem, 3vw, 2.8rem); }
.location-copy p { color: #c8cbd0; }
.location-copy .btn { align-self: flex-start; margin-top: 12px; }
.location-map { min-height: 430px; border: 0; }
.location-map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: grayscale(.15) contrast(1.03); }

/* Footer */
.site-footer { color: #d5d7da; background: #0a0a0c; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1.1fr; gap: 48px; padding: 72px 0 56px; }
.footer-brand img { width: 220px; height: 120px; object-fit: contain; object-position: left center; filter: grayscale(1) brightness(0) invert(1); }
.footer-brand p { max-width: 330px; color: #aeb1b6; font-size: .85rem; }
.footer-col h3 { margin: 12px 0 22px; color: white; font-family: var(--body); font-size: .86rem; letter-spacing: .04em; }
.footer-links { display: grid; gap: 9px; color: #aeb1b6; font-size: .82rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); color: #777b82; font-size: .73rem; }
.footer-meta { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.footer-credit { color: #777b82; }
.footer-credit a { color: #aeb1b6; font-weight: 700; transition: color var(--ease); }
.footer-credit a:hover { color: var(--red); }

.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 180; display: grid; gap: 10px; }
.float-btn { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); color: white; background: var(--ink); box-shadow: 0 16px 35px rgba(0,0,0,.24); transition: transform var(--ease), opacity var(--ease), background var(--ease); }
.float-btn:hover { transform: translateY(-3px); }
.float-btn.whatsapp { background: #25d366; border-color: #25d366; }
.float-btn.whatsapp svg { width: 25px; height: 25px; fill: currentColor; }
.float-btn.back-top { opacity: 0; pointer-events: none; font-size: 1.3rem; font-weight: 900; }
.float-btn.back-top.is-visible { opacity: 1; pointer-events: auto; }
.float-btn.back-top:hover { background: var(--red); }

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

@media (max-width: 1024px) {
  .main-nav { gap: 20px; }
  .nav-cta { display: none; }
  .proof-grid, .services-grid, .project-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .split, .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-media { min-height: 520px; order: -1; }
  .leadership-list { grid-template-columns: 1fr; }
  .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
  .location-panel { grid-template-columns: 1fr; }
  .location-copy { padding: 48px 40px; }
  .location-map, .location-map iframe { min-height: 380px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .site-header, .nav-wrap { height: 72px; }
  .nav-wrap { gap: 10px; }
  .brand { width: 230px; flex: 0 1 230px; height: 58px; gap: 8px; }
  .brand img { width: 58px; height: 56px; flex-basis: 58px; }
  .brand-name b { font-size: .78rem; }
  .brand-name small { font-size: .36rem; }
  .nav-toggle { display: block; }
  .nav-toggle { flex: 0 0 48px; position: relative; z-index: 220; }
  .main-nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 22px; background: rgba(10,10,12,.99); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity 220ms ease, visibility 0s linear 220ms; }
  .main-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
  .main-nav a, .main-nav .nav-cta { display: block; padding: 17px 12px; border-bottom: 1px solid rgba(255,255,255,.1); background: transparent; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; background-position: 61% center; }
  .hero::before { background: linear-gradient(90deg, rgba(6,7,9,.94), rgba(6,7,9,.67)); }
  .hero > .container { min-height: 665px; align-items: flex-start; padding-top: 105px; padding-bottom: 66px; }
  .hero-copy, .hero h1, .hero p { width: 100%; max-width: 100%; }
  .hero h1 { font-size: clamp(2.75rem, 11.5vw, 3.55rem); line-height: 1.07; }
  .hero p { font-size: 1rem; overflow-wrap: break-word; }
  .hero-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .proof-rail { position: relative; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 78px; padding: 14px; gap: 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .proof-item:last-child { border-bottom: 0; }
  .proof-icon { font-size: 1.45rem; }
  .proof-item strong { font-size: 1.1rem; }
  .proof-item span { font-size: .68rem; overflow-wrap: anywhere; }
  .split-copy { padding: 58px 24px; }
  .split-media { min-height: 360px; }
  .services-grid, .project-grid, .why-grid, .leadership-grid, .vision-grid, .values-list, .service-detail-grid, .capability-strip, .projects-page-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-link { min-height: 190px; display: grid; grid-template-columns: 54px 1fr; align-items: start; gap: 0 18px; text-align: left; }
  .service-link svg { margin: 0; }
  .service-link p { grid-column: 2; }
  .project-card, .project-card img, .projects-page-grid .project-card, .projects-page-grid .project-card img { min-height: 0; }
  .why-band::before { width: 80px; opacity: .5; }
  .why-item { padding: 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .why-item:last-child { border-bottom: 0; }
  .cta-inner { min-height: 250px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .page-hero { min-height: 450px; }
  .page-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .intro-grid { gap: 42px; }
  .intro-grid .media-frame { min-height: 370px; }
  .vision-panel, .service-detail, .contact-form { padding: 34px 26px; }
  .values-list { border-left: 1px solid var(--line); }
  .value-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .leader-row { grid-template-columns: 82px 1fr; padding: 24px; gap: 18px; }
  .leader-monogram { width: 82px; height: 82px; font-size: 2rem; }
  .leader-card { grid-template-columns: 68px 1fr; min-height: 145px; gap: 18px; padding: 24px 20px; }
  .leader-number { width: 68px; height: 68px; font-size: 1.1rem; }
  .location-copy { padding: 42px 24px; }
  .location-map, .location-map iframe { min-height: 330px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-actions { right: 14px; bottom: 14px; }
  .float-btn { width: 48px; height: 48px; }
}

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