:root {
  --al-primary: #0b3550;
  --al-secondary: #0f5879;
  --al-accent: #c99b62;
  --al-accent-light: #f5eadb;
  --al-dark: #102632;
  --al-text: #344957;
  --al-muted: #6d7f89;
  --al-line: #dfe8ee;
  --al-bg: #f4f8fb;
  --al-white: #ffffff;
  --al-yellow: #f6b91e;
  --shadow-sm: 0 10px 30px rgba(10, 49, 73, .08);
  --shadow-lg: 0 24px 70px rgba(5, 36, 55, .16);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--al-text);
  background: var(--al-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; image-rendering: auto; }
a { color: var(--al-secondary); text-decoration: none; transition: .25s ease; }
a:hover { color: var(--al-accent); }
h1,h2,h3,h4,h5,h6 { color: var(--al-primary); line-height: 1.14; margin: 0 0 18px; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 18px; }
button,input,textarea,select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), 860px); }
.section { padding: 102px 0; }
.section-muted { background: var(--al-bg); }
.screen-reader-text { position: absolute!important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link:focus { clip: auto!important; height: auto; width: auto; top: 10px; left: 10px; z-index: 99999; background: #fff; padding: 12px 18px; }
.al-icon { width: 23px; height: 23px; display: inline-block; vertical-align: middle; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--al-secondary); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--al-accent); }
.eyebrow.light { color: rgba(255,255,255,.9); }
.eyebrow.light::before { background: var(--al-accent); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 26px; border: 0; border-radius: 999px; font-weight: 800; font-size: .91rem; letter-spacing: .01em; transition: transform .25s, box-shadow .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--al-primary); color: #fff; box-shadow: 0 14px 32px rgba(11,53,80,.22); }
.button-primary:hover { color: #fff; background: var(--al-secondary); }
.button-gold { background: var(--al-accent); color: var(--al-primary); box-shadow: 0 14px 30px rgba(201,155,98,.24); }
.button-gold:hover { background: #ddb477; color: var(--al-primary); }
.button-outline { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.button-outline:hover { background: #fff; color: var(--al-primary); }
.button-small { min-height: 42px; padding: 0 20px; font-size: .83rem; }
.button-full { width: 100%; }

/* Header */
.site-header { position: relative; z-index: 1000; }
.topbar { background: var(--al-primary); color: rgba(255,255,255,.84); font-size: .79rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.topbar-left span { display: flex; align-items: center; gap: 8px; }
.topbar-left .al-icon { width: 16px; height: 16px; color: var(--al-accent); }
.topbar-right { display: flex; gap: 22px; }
.topbar a { color: rgba(255,255,255,.9); }
.nav-shell { background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(11,53,80,.08); transition: box-shadow .25s; }
.site-header.is-scrolled .nav-shell { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 12px 35px rgba(7,42,64,.12); animation: navDown .25s ease; }
@keyframes navDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav-inner { min-height: 90px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 255px; max-width: 255px; display: block; }
.brand img { width: auto; max-height: 78px; object-fit: contain; }
.primary-nav { flex: 1; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; gap: 30px; }
.primary-nav li { position: relative; }
.primary-nav a { color: var(--al-primary); font-size: .9rem; font-weight: 750; }
.primary-nav a::after { content: ""; position: absolute; height: 2px; left: 0; bottom: -10px; width: 0; background: var(--al-accent); transition: width .2s; }
.primary-nav a:hover::after,.primary-nav .current-menu-item > a::after { width: 100%; }
.header-contact-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-call { display: flex; align-items: center; gap: 10px; background: var(--al-primary); color: #fff; padding: 12px 18px; border-radius: 999px; white-space: nowrap; }
.header-call:hover { color: #fff; background: var(--al-secondary); }
.header-call span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.12); }
.header-call .al-icon { width: 17px; height: 17px; }
.header-call strong { font-size: .8rem; }
.header-whatsapp { display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 17px; border-radius: 999px; color: #fff; background: #16a34a; box-shadow: 0 10px 25px rgba(22,163,74,.22); white-space: nowrap; font-weight: 850; }
.header-whatsapp:hover { color: #fff; background: #12853d; transform: translateY(-1px); }
.header-whatsapp span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.15); }
.al-contact-icon { width: 20px; height: 20px; display: block; }
.header-whatsapp .al-contact-icon { width: 21px; height: 21px; }
.header-whatsapp strong { font-size: .78rem; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 8px; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 6px 0; background: var(--al-primary); transition: .25s; }

/* Hero */
.hero { position: relative; min-height: 720px; overflow: hidden; color: #fff; background: var(--al-primary); isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-image); background-size: cover; background-position: center; z-index: -3; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(201,155,98,.16) 0 1px, transparent 2px); background-size: 32px 32px; opacity: .38; z-index: -1; }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5,39,61,.97) 0%, rgba(8,55,82,.92) 52%, rgba(9,60,83,.7) 100%); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; padding-top: 30px; padding-bottom: 30px; }
.hero-copy h1 { color: #fff; max-width: 760px; text-wrap: balance; }
.hero-copy h1::first-line { color: #fff; }
.hero-copy p { max-width: 690px; font-size: 1.12rem; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; gap: 14px; margin: 32px 0 40px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 560px; border-top: 1px solid rgba(255,255,255,.17); padding-top: 28px; }
.hero-stats div { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.15); padding-right: 26px; margin-right: 26px; }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { color: #fff; font-size: 1.65rem; line-height: 1; }
.hero-stats span { color: rgba(255,255,255,.65); font-size: .75rem; margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { display: flex; justify-content: flex-end; }
.hero-logo-card { width: min(100%, 460px); min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.45); border-radius: 38px; padding: 38px; box-shadow: var(--shadow-lg); position: relative; }
.hero-logo-card::before,.hero-logo-card::after { content: ""; position: absolute; border-radius: 50%; background: rgba(201,155,98,.15); }
.hero-logo-card::before { width: 120px; height: 120px; right: -35px; top: -35px; }
.hero-logo-card::after { width: 80px; height: 80px; left: -20px; bottom: 50px; background: rgba(15,88,121,.1); }
.hero-logo-card img { max-height: 310px; width: auto; object-fit: contain; position: relative; z-index: 1; }
.hero-badges { width: 100%; display: flex; justify-content: center; gap: 10px; margin-top: 20px; position: relative; z-index: 1; }
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: var(--al-bg); color: var(--al-primary); font-size: .7rem; font-weight: 800; }
.hero-badges .al-icon { width: 15px; height: 15px; color: var(--al-accent); }

.quick-contact-bar { position: relative; margin-top: -34px; z-index: 6; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
.quick-contact-grid > div { min-height: 112px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 13px; align-content: center; padding: 22px 25px; border-right: 1px solid var(--al-line); }
.quick-contact-grid > div:last-child { border-right: 0; }
.quick-contact-grid > div > span:first-child { grid-row: 1/3; width: 42px; height: 42px; display: grid; place-items: center; background: var(--al-accent-light); border-radius: 50%; color: var(--al-primary); }
.quick-contact-grid .al-icon { width: 20px; height: 20px; }
.quick-contact-grid strong { color: var(--al-primary); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.quick-contact-grid a,.quick-contact-grid > div > span:last-child { font-size: .82rem; color: var(--al-muted); overflow-wrap: anywhere; }

/* Headings */
.section-heading { margin-bottom: 46px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { max-width: 530px; color: var(--al-muted); }
.split-heading { display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; }
.centered { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.centered .eyebrow { justify-content: center; }
.centered h2,.centered p { margin-left: auto; margin-right: auto; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.service-card { min-height: 285px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--al-line); border-radius: 20px; padding: 28px; box-shadow: 0 8px 20px rgba(12,54,79,.04); position: relative; overflow: hidden; }
.service-card::after { content: ""; width: 90px; height: 90px; border-radius: 50%; position: absolute; right: -45px; top: -45px; background: var(--al-accent-light); transition: transform .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: rgba(201,155,98,.45); }
.service-card:hover::after { transform: scale(1.4); }
.icon-box { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: #e8f2f7; color: var(--al-secondary); margin-bottom: 24px; }
.icon-box.dark { background: var(--al-primary); color: #fff; }
.service-card h3 { font-size: 1.03rem; text-transform: uppercase; letter-spacing: .01em; }
.service-card p { color: var(--al-muted); font-size: .9rem; }
.service-card > a { margin-top: auto; color: var(--al-secondary); font-size: .83rem; font-weight: 800; }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.about-image { position: relative; min-height: 590px; }
.about-image > img { width: 82%; height: 590px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.about-image::after { content: ""; position: absolute; z-index: -1; right: 0; top: 50px; width: 70%; height: 80%; border: 2px solid var(--al-accent); border-radius: 28px; }
.experience-badge { position: absolute; right: 0; bottom: 38px; width: 215px; min-height: 142px; display: flex; flex-direction: column; justify-content: center; background: var(--al-primary); color: #fff; padding: 24px; border-radius: 20px; box-shadow: var(--shadow-lg); }
.experience-badge strong { font-size: 2.4rem; line-height: 1; }
.experience-badge span { font-size: .75rem; margin-top: 10px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.about-copy > p { font-size: 1.02rem; color: var(--al-muted); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; margin: 28px 0 34px; }
.check-grid span { color: var(--al-primary); font-weight: 700; font-size: .88rem; }

/* Manpower */
.manpower-section { color: #fff; background: linear-gradient(135deg, var(--al-primary), #0c5678); position: relative; overflow: hidden; }
.manpower-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 30px 30px; opacity: .35; }
.manpower-section .container { position: relative; }
.manpower-section h2 { color: #fff; }
.manpower-section .section-heading p { color: rgba(255,255,255,.68); }
.trade-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.trade-card { min-height: 105px; display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; padding: 18px; backdrop-filter: blur(8px); }
.trade-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.trade-number { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--al-accent); color: var(--al-primary); font-weight: 900; }
.trade-card h3 { color: #fff; font-size: .9rem; margin: 0 0 3px; }
.trade-card small { color: var(--al-accent); font-weight: 750; }
.manpower-cta { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 26px; }
.manpower-cta p { margin: 0; color: rgba(255,255,255,.8); }

/* Maintenance */
.maintenance-shell { border: 1px solid rgba(201,155,98,.65); border-radius: 28px; padding: 48px; background: #fffaf1; box-shadow: var(--shadow-sm); }
.maintenance-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px 60px; align-items: end; margin-bottom: 30px; }
.maintenance-heading .pill { grid-column: 1/-1; justify-self: start; background: var(--al-yellow); color: var(--al-primary); border-radius: 999px; padding: 7px 14px; font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.maintenance-heading h2 { font-size: clamp(1.8rem,3vw,2.55rem); margin: 0; }
.maintenance-heading p { color: var(--al-muted); font-size: .9rem; }
.maintenance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.maintenance-card { background: var(--al-yellow); border-radius: 16px; padding: 24px; min-height: 255px; display: flex; flex-direction: column; color: var(--al-primary); }
.maintenance-card h3 { font-size: .95rem; text-transform: uppercase; margin-top: 8px; }
.maintenance-card p { font-size: .82rem; opacity: .8; }
.maintenance-card a { margin-top: auto; color: var(--al-primary); font-weight: 800; font-size: .78rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.why-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 34px; }
.why-cards > div { background: #fff; border: 1px solid var(--al-line); border-radius: 16px; padding: 23px; }
.why-cards > div > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--al-secondary); background: #e8f2f7; margin-bottom: 16px; }
.why-cards h3 { font-size: .92rem; margin-bottom: 8px; }
.why-cards p { color: var(--al-muted); font-size: .81rem; margin: 0; }
.company-card { background: linear-gradient(145deg, var(--al-secondary), var(--al-primary)); color: #fff; border-radius: 28px; padding: 42px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.company-card::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; background: rgba(255,255,255,.07); right: -35px; top: -45px; }
.company-card-year { font-size: 3.5rem; line-height: 1; font-weight: 900; position: relative; z-index: 1; }
.company-card-year small { display: block; font-size: .68rem; letter-spacing: .16em; margin-top: 10px; color: var(--al-accent); }
.company-card dl { margin: 36px 0; position: relative; z-index: 1; }
.company-card dl > div { display: grid; grid-template-columns: 115px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.company-card dt { color: rgba(255,255,255,.58); font-size: .76rem; }
.company-card dd { margin: 0; font-size: .82rem; font-weight: 700; }

/* Projects */
.project-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.project-filters button { border: 1px solid var(--al-line); background: #fff; color: var(--al-primary); padding: 9px 17px; border-radius: 999px; font-size: .78rem; font-weight: 800; }
.project-filters button.active,.project-filters button:hover { background: var(--al-primary); color: #fff; border-color: var(--al-primary); }
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.project-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--al-line); box-shadow: 0 8px 26px rgba(8,48,72,.06); }
.project-card[hidden] { display: none; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.project-image { display: block; aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--al-bg); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-image img { transform: scale(1.04); }
.status-badge { position: absolute; left: 16px; top: 16px; padding: 7px 12px; border-radius: 999px; color: #fff; font-size: .68rem; text-transform: uppercase; font-weight: 900; letter-spacing: .06em; background: var(--al-secondary); }
.status-badge.ongoing { background: #c7831d; }
.status-badge.completed { background: #16855a; }
.project-content { padding: 24px; }
.project-content > span { color: var(--al-accent); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.project-content h3,.project-content h2 { font-size: 1.13rem; margin: 8px 0 12px; }
.project-content h3 a,.project-content h2 a { color: var(--al-primary); }
.project-content p { color: var(--al-muted); font-size: .83rem; }
.text-link { font-size: .8rem; font-weight: 800; }

/* Clients */
.clients-section { background: #fbfcfd; border-top: 1px solid var(--al-line); }
.client-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.client-card { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--al-line); border-radius: 16px; text-align: center; }
.client-card:hover { border-color: var(--al-accent); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.client-card img { max-height: 66px; width: auto; object-fit: contain; }
.client-monogram { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,var(--al-primary),var(--al-secondary)); color: #fff; font-weight: 900; }
.client-card strong { color: var(--al-primary); font-size: .72rem; line-height: 1.3; }

/* Quote */
.quote-section { background: linear-gradient(135deg, var(--al-primary), #0b5576); color: #fff; position: relative; overflow: hidden; }
.quote-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(201,155,98,.16), transparent 35%); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; position: relative; }
.quote-copy h2 { color: #fff; }
.quote-copy > p { color: rgba(255,255,255,.72); }
.contact-cards { display: grid; gap: 12px; margin-top: 35px; }
.contact-cards > * { display: flex; flex-direction: column; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 17px 20px; }
.contact-cards span { font-size: .69rem; color: var(--al-accent); text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.contact-cards strong { margin-top: 5px; font-size: .86rem; }
.quote-form-card { background: #fff; color: var(--al-text); border-radius: 28px; padding: 42px; box-shadow: var(--shadow-lg); }
.quote-form-card h3 { font-size: 1.45rem; }
.quote-form-card label { display: block; color: var(--al-primary); font-size: .78rem; font-weight: 800; margin-bottom: 15px; }
.quote-form-card label small { color: var(--al-muted); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form-card input,.quote-form-card textarea,.quote-form-card select { width: 100%; margin-top: 7px; border: 1px solid var(--al-line); background: #f8fafc; border-radius: 10px; padding: 12px 13px; color: var(--al-text); outline: none; }
.quote-form-card input:focus,.quote-form-card textarea:focus,.quote-form-card select:focus { border-color: var(--al-secondary); box-shadow: 0 0 0 3px rgba(15,88,121,.08); }
.quote-form-card input[type="file"] { background: #fff; }
.honeypot { position: absolute!important; left: -9999px!important; }
.form-message { padding: 13px 15px; border-radius: 10px; margin-bottom: 18px; font-size: .85rem; }
.form-message.success { background: #e6f7ef; color: #126842; }
.form-message.error { background: #fff0f0; color: #a33a3a; }

/* Footer */
.footer-main { background: #092e45; color: rgba(255,255,255,.68); padding: 72px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .9fr 1.1fr; gap: 60px; }
.footer-logo img { max-width: 270px; max-height: 110px; object-fit: contain; filter: drop-shadow(0 2px 0 rgba(255,255,255,.25)); background: rgba(255,255,255,.97); border-radius: 10px; padding: 7px; }
.footer-brand p { max-width: 420px; font-size: .84rem; margin: 22px 0; }
.site-footer h3 { color: #fff; font-size: .94rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-menu,.footer-list,.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-menu li,.footer-list li,.footer-contact li { margin-bottom: 10px; }
.footer-menu a,.footer-list a,.footer-contact a { color: rgba(255,255,255,.68); font-size: .81rem; }
.footer-menu a:hover,.footer-list a:hover,.footer-contact a:hover { color: var(--al-accent); }
.footer-contact li { font-size: .8rem; overflow-wrap: anywhere; }
.footer-bottom { background: #06283d; border-top: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.52); }
.footer-bottom-inner { min-height: 62px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-bottom p { margin: 0; font-size: .72rem; }
.zendip-credit a { color: var(--al-accent); font-weight: 800; }
.floating-whatsapp { position: fixed; z-index: 999; right: 24px; bottom: 24px; width: 62px; height: 62px; border: 4px solid #fff; border-radius: 50%; display: grid; place-items: center; background: #16a34a; color: #fff; box-shadow: 0 16px 38px rgba(5,74,39,.34); }
.floating-whatsapp .al-contact-icon { width: 36px; height: 36px; }
.floating-whatsapp:hover { color: #fff; transform: translateY(-4px); }

/* Inner pages */
.inner-hero { min-height: 310px; display: flex; align-items: center; color: #fff; background: linear-gradient(135deg, rgba(8,48,72,.98), rgba(12,88,120,.92)), url('../images/hero-blueprint.jpg') center/cover; }
.inner-hero h1 { color: #fff; font-size: clamp(2.5rem,5vw,4.6rem); max-width: 950px; }
.content-area { min-height: 60vh; }
.entry-shell { padding-top: 80px; padding-bottom: 90px; }
.entry-content { font-size: 1rem; }
.entry-content > * { max-width: 100%; }
.entry-content h2,.entry-content h3 { margin-top: 1.5em; }
.entry-featured { width: 100%; border-radius: 20px; margin-bottom: 34px; box-shadow: var(--shadow-sm); }
.full-width-entry { width: 100%; }
.content-card { border-bottom: 1px solid var(--al-line); padding: 28px 0; }
.page-header { padding-top: 80px; }
.project-single-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 55px; }
.project-sidebar { position: sticky; top: 120px; align-self: start; background: var(--al-bg); border: 1px solid var(--al-line); border-radius: 20px; padding: 28px; }
.project-sidebar dl > div { padding: 12px 0; border-bottom: 1px solid var(--al-line); }
.project-sidebar dt { color: var(--al-muted); font-size: .72rem; text-transform: uppercase; font-weight: 800; }
.project-sidebar dd { margin: 4px 0 0; color: var(--al-primary); font-weight: 700; font-size: .88rem; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 0; background: var(--al-bg); }
.error-code { color: var(--al-accent); font-size: clamp(7rem,18vw,15rem); line-height: .8; font-weight: 900; opacity: .35; }
.error-page h1 { margin-top: 20px; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1120px) {
  .header-contact-actions { display: none; }
  .primary-nav ul { gap: 20px; }
  .hero-grid { gap: 40px; }
  .service-grid { grid-template-columns: repeat(3,1fr); }
  .trade-grid { grid-template-columns: repeat(3,1fr); }
  .client-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-inner { min-height: 78px; justify-content: space-between; }
  .brand { flex-basis: 220px; max-width: 220px; }
  .brand img { max-height: 65px; }
  .menu-toggle { display: block; order: 3; }
  .primary-nav { position: fixed; z-index: 1001; top: 0; right: 0; width: min(86vw,380px); height: 100vh; background: #fff; padding: 110px 30px 30px; transform: translateX(100%); transition: transform .3s ease; box-shadow: -20px 0 60px rgba(4,32,49,.2); }
  .primary-nav.is-open { transform: none; }
  .primary-nav ul { display: block; }
  .primary-nav li { border-bottom: 1px solid var(--al-line); }
  .primary-nav a { display: block; padding: 15px 0; font-size: 1rem; }
  .primary-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] { position: fixed; z-index: 1002; right: 24px; top: 24px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero,.hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 90px; }
  .hero-copy { text-align: center; }
  .hero-copy p,.hero-stats { margin-left: auto; margin-right: auto; }
  .hero-actions,.hero-visual { justify-content: center; }
  .hero-logo-card { min-height: 380px; max-width: 520px; }
  .quick-contact-grid { grid-template-columns: repeat(2,1fr); }
  .quick-contact-grid > div:nth-child(2) { border-right: 0; }
  .quick-contact-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--al-line); }
  .split-heading { display: block; }
  .split-heading > p,.project-filters { margin-top: 20px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid,.why-grid,.quote-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-image { max-width: 650px; }
  .trade-grid { grid-template-columns: repeat(2,1fr); }
  .maintenance-heading { grid-template-columns: 1fr; }
  .maintenance-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid { grid-template-columns: repeat(2,1fr); }
  .client-grid { grid-template-columns: repeat(3,1fr); }
  .project-single-grid { grid-template-columns: 1fr; }
  .project-sidebar { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .brand { max-width: 185px; flex-basis: 185px; }
  .hero-grid { padding-top: 68px; padding-bottom: 74px; }
  .hero-copy h1 { font-size: clamp(2.65rem,13vw,4.1rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero-stats div { padding-right: 9px; margin-right: 9px; }
  .hero-stats strong { font-size: 1.35rem; }
  .hero-stats span { font-size: .58rem; }
  .hero-logo-card { min-height: 315px; padding: 28px; border-radius: 24px; }
  .hero-logo-card img { max-height: 225px; }
  .hero-badges { flex-direction: column; align-items: center; }
  .quick-contact-bar { margin-top: 0; }
  .quick-contact-grid { border-radius: 0; width: calc(100% + 28px); margin-left: -14px; }
  .quick-contact-grid > div { padding: 18px 14px; min-height: 94px; grid-template-columns: 36px 1fr; }
  .quick-contact-grid > div > span:first-child { width: 36px; height: 36px; }
  .quick-contact-grid a,.quick-contact-grid > div > span:last-child { font-size: .7rem; }
  .service-grid,.trade-grid,.maintenance-grid,.project-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .about-image { min-height: 440px; }
  .about-image > img { height: 440px; width: 88%; }
  .experience-badge { width: 180px; min-height: 120px; right: 0; bottom: 15px; }
  .check-grid,.why-cards,.form-row { grid-template-columns: 1fr; }
  .manpower-cta { flex-direction: column; text-align: center; }
  .maintenance-shell { padding: 28px 18px; }
  .client-grid { grid-template-columns: repeat(2,1fr); }
  .client-card { min-height: 128px; padding: 12px; }
  .quote-form-card { padding: 27px 18px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom-inner { padding: 18px 0; flex-direction: column; text-align: center; }
  .floating-whatsapp { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .inner-hero { min-height: 250px; }
}

/* ==========================================================
   V2 PHOTOGRAPHIC HOMEPAGE
   ========================================================== */
.hero-v2 {
  min-height: 650px;
  background: linear-gradient(135deg, #082f49 0%, #0a4d6e 100%);
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(201,155,98,.22), transparent 23%),
    radial-gradient(circle at 92% 88%, rgba(255,255,255,.09), transparent 25%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  z-index: -1;
}
.hero-v2::after { display: none; }
.hero-v2-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 58px;
  padding-top: 58px;
  padding-bottom: 75px;
}
.hero-v2-copy h1 { color: #fff; font-size: clamp(3.3rem,6vw,6rem); max-width: 650px; }
.hero-v2-copy h1::first-line { color: #fff; }
.hero-v2-copy p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 640px; }
.hero-v2-copy .hero-actions { margin: 30px 0 32px; }
.hero-trust-line { display: flex; flex-wrap: wrap; gap: 13px 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust-line span { display: inline-flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 750; color: rgba(255,255,255,.78); }
.hero-trust-line .al-icon { width: 18px; height: 18px; color: var(--al-accent); }
.hero-v2-photo { min-height: 500px; border-radius: 34px; overflow: hidden; position: relative; box-shadow: 0 35px 90px rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.2); }
.hero-v2-photo > img { width: 100%; height: 500px; object-fit: cover; object-position: center; }
.hero-v2-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,34,53,.86) 100%); pointer-events: none; }
.hero-photo-brand { position: absolute; z-index: 2; top: 22px; left: 22px; width: 190px; min-height: 82px; display: grid; place-items: center; padding: 8px 12px; background: rgba(255,255,255,.96); border-radius: 16px; box-shadow: var(--shadow-sm); }
.hero-photo-brand img { max-height: 67px; width: auto; object-fit: contain; }
.hero-photo-tag { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff; }
.hero-photo-tag strong { font-size: 1.12rem; }
.hero-photo-tag span { font-size: .76rem; color: rgba(255,255,255,.72); text-align: right; }

.trust-stats-wrap { position: relative; z-index: 10; margin-top: -43px; }
.trust-stats { min-height: 116px; display: grid; grid-template-columns: repeat(3,1fr); background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.trust-stats > div { display: flex; align-items: center; gap: 17px; padding: 22px 30px; border-right: 1px solid var(--al-line); }
.trust-stats > div:last-child { border-right: 0; }
.trust-stats .stat-icon { flex: 0 0 50px; width: 50px; height: 50px; display: grid; place-items: center; color: var(--al-primary); background: var(--al-accent-light); border-radius: 15px; }
.trust-stats .al-icon { width: 24px; height: 24px; }
.trust-stats p { display: flex; flex-direction: column; margin: 0; }
.trust-stats strong { color: var(--al-primary); font-size: 1.15rem; line-height: 1.2; }
.trust-stats small { color: var(--al-muted); font-size: .73rem; margin-top: 5px; }

.services-photo-section { padding-top: 92px; }
.featured-service-grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 15px; }
.featured-service-card { min-width: 0; background: #fff; border: 1px solid var(--al-line); border-radius: 17px; overflow: hidden; box-shadow: 0 7px 24px rgba(8,48,72,.055); }
.featured-service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: rgba(201,155,98,.55); }
.featured-service-image { display: block; aspect-ratio: 1.28/1; overflow: hidden; background: var(--al-bg); }
.featured-service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.featured-service-card:hover .featured-service-image img { transform: scale(1.055); }
.featured-service-body { padding: 17px 15px 20px; position: relative; }
.mini-icon { width: 35px; height: 35px; display: grid; place-items: center; margin-top: -36px; margin-bottom: 12px; border-radius: 11px; color: var(--al-primary); background: var(--al-accent); box-shadow: 0 7px 18px rgba(8,48,72,.16); position: relative; z-index: 2; }
.mini-icon .al-icon { width: 17px; height: 17px; }
.featured-service-body h3 { font-size: .82rem; line-height: 1.25; margin-bottom: 9px; }
.featured-service-body h3 a { color: var(--al-primary); }
.featured-service-body p { color: var(--al-muted); font-size: .69rem; line-height: 1.55; margin: 0; }

.manpower-v2-section { padding-top: 20px; }
.manpower-v2-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 0; background: linear-gradient(135deg,#083450,#0a5578); color: #fff; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.manpower-photo { min-height: 510px; position: relative; overflow: hidden; }
.manpower-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(4,34,53,.9)); }
.manpower-photo > img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; object-position: center; }
.manpower-photo-caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: flex; flex-direction: column; color: #fff; }
.manpower-photo-caption strong { font-size: 1.12rem; }
.manpower-photo-caption span { color: var(--al-accent); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.manpower-v2-content { padding: 52px 48px; }
.manpower-v2-content h2 { color: #fff; font-size: clamp(2rem,3vw,3rem); }
.manpower-v2-content > p { color: rgba(255,255,255,.7); }
.trade-list-v2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 20px; margin: 29px 0 34px; border-top: 1px solid rgba(255,255,255,.12); }
.trade-chip { display: flex; align-items: center; gap: 9px; min-height: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
.trade-chip > span { flex: 0 0 23px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: var(--al-primary); background: var(--al-accent); font-size: .69rem; font-weight: 900; }
.trade-chip p { display: flex; flex-direction: column; margin: 0; }
.trade-chip strong { color: #fff; font-size: .76rem; line-height: 1.3; }
.trade-chip small { color: var(--al-accent); font-size: .61rem; margin-top: 2px; }

.core-capabilities { padding-top: 84px; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.capability-card { min-height: 215px; border-radius: 17px; overflow: hidden; box-shadow: 0 8px 26px rgba(8,48,72,.08); }
.capability-card a { display: block; height: 100%; min-height: 215px; position: relative; overflow: hidden; color: #fff; }
.capability-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.capability-card:hover img { transform: scale(1.06); }
.capability-shade { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 38%,rgba(4,31,48,.95)); }
.capability-card h3 { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; color: #fff; font-size: .94rem; margin: 0; }
.capability-card:nth-child(1),.capability-card:nth-child(2) { grid-column: span 2; min-height: 260px; }
.capability-card:nth-child(1) a,.capability-card:nth-child(2) a { min-height: 260px; }

.about-v2-grid { display: grid; grid-template-columns: 1.07fr .93fr; gap: 72px; align-items: center; }
.about-v2-copy > p { color: var(--al-muted); font-size: 1.02rem; }
.why-v2-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 30px 0 34px; }
.why-v2-grid > div { background: #fff; border: 1px solid var(--al-line); border-radius: 16px; padding: 20px; }
.why-v2-grid > div > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--al-secondary); background: #e8f2f7; border-radius: 12px; margin-bottom: 15px; }
.why-v2-grid .al-icon { width: 20px; height: 20px; }
.why-v2-grid h3 { font-size: .9rem; margin-bottom: 7px; }
.why-v2-grid p { color: var(--al-muted); font-size: .77rem; margin: 0; }
.about-v2-visual { min-height: 610px; position: relative; }
.about-v2-visual > img { width: 100%; height: 570px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.company-fact-card { position: absolute; left: -34px; right: 34px; bottom: 0; padding: 25px 30px; background: linear-gradient(135deg,var(--al-primary),var(--al-secondary)); color: #fff; border-radius: 19px; box-shadow: var(--shadow-lg); }
.company-fact-card strong { font-size: 2.3rem; line-height: 1; }
.company-fact-card span { display: block; color: var(--al-accent); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; margin: 7px 0 10px; }
.company-fact-card p { margin: 0; font-size: .72rem; color: rgba(255,255,255,.72); }

.maintenance-photo-section { background: #fffaf1; }
.maintenance-title-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; margin-bottom: 34px; }
.maintenance-title-row .pill { display: inline-flex; padding: 7px 13px; color: var(--al-primary); background: var(--al-yellow); border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .08em; margin-bottom: 13px; }
.maintenance-title-row h2 { margin: 0; }
.maintenance-title-row > p { color: var(--al-muted); font-size: .89rem; }
.maintenance-photo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.maintenance-photo-card { background: #fff; border: 1px solid rgba(201,155,98,.42); border-radius: 18px; overflow: hidden; box-shadow: 0 8px 25px rgba(8,48,72,.055); }
.maintenance-photo-card > img { width: 100%; height: 185px; object-fit: cover; }
.maintenance-photo-card > div { padding: 22px; }
.maintenance-photo-card > div > span { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--al-primary); border-radius: 11px; margin-bottom: 15px; }
.maintenance-photo-card .al-icon { width: 19px; height: 19px; }
.maintenance-photo-card h3 { font-size: .91rem; }
.maintenance-photo-card p { color: var(--al-muted); font-size: .78rem; }
.maintenance-photo-card a { color: var(--al-primary); font-size: .76rem; font-weight: 850; }

.projects-v2-section { background: #fff; }
.project-grid-v2 { grid-template-columns: repeat(3,1fr); }
.project-grid-v2 .project-image { aspect-ratio: 16/10; }

.clients-v2-section { padding-top: 10px; padding-bottom: 86px; background: #fff; }
.clients-v2-shell { display: grid; grid-template-columns: 230px 1fr; gap: 20px; align-items: stretch; padding: 18px; background: var(--al-primary); border-radius: 20px; box-shadow: var(--shadow-sm); }
.clients-v2-title { display: flex; flex-direction: column; justify-content: center; padding: 14px 20px; color: #fff; }
.clients-v2-title span { color: var(--al-accent); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.clients-v2-title h2 { color: #fff; font-size: 1.35rem; margin: 5px 0 0; }
.client-logo-track { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.client-logo-card { min-height: 100px; display: grid; place-items: center; padding: 12px; background: #fff; border-radius: 12px; overflow: hidden; }
.client-logo-card img { max-width: 100%; max-height: 76px; width: auto; object-fit: contain; filter: saturate(.85); }
.client-logo-card strong { color: var(--al-primary); text-align: center; font-size: .74rem; }

.quote-v2-section { background: #eff4f7; }
.quote-v2-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.contact-v2-card { position: relative; overflow: hidden; min-height: 690px; padding: 44px; color: #fff; background: linear-gradient(145deg,#072f49,#0a597d); border-radius: 26px; box-shadow: var(--shadow-lg); }
.contact-v2-card h2 { color: #fff; font-size: clamp(2rem,3.5vw,3.2rem); }
.contact-v2-card > p { color: rgba(255,255,255,.72); max-width: 520px; }
.contact-v2-list { display: grid; gap: 11px; margin: 30px 0; position: relative; z-index: 2; }
.contact-v2-list > * { display: flex; flex-direction: column; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; padding: 14px 17px; }
.contact-v2-list span { color: var(--al-accent); font-size: .64rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.contact-v2-list strong { margin-top: 4px; font-size: .8rem; overflow-wrap: anywhere; }
.contact-building { position: absolute; left: 44px; right: 44px; bottom: 38px; width: calc(100% - 88px); height: 205px; object-fit: cover; border-radius: 17px; box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.quote-v2-section .quote-form-card { height: 100%; padding: 43px; border-radius: 26px; }
.quote-v2-section .quote-form-card h3 { font-size: 1.65rem; }

@media (max-width: 1180px) {
  .featured-service-grid { grid-template-columns: repeat(4,1fr); }
  .capability-grid { grid-template-columns: repeat(3,1fr); }
  .capability-card:nth-child(1),.capability-card:nth-child(2) { grid-column: span 1; min-height: 215px; }
  .capability-card:nth-child(1) a,.capability-card:nth-child(2) a { min-height: 215px; }
  .client-logo-track { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  .hero-v2,.hero-v2-grid { min-height: auto; }
  .hero-v2-grid { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 86px; }
  .hero-v2-copy { text-align: left; }
  .hero-v2-copy p { margin-left: 0; margin-right: 0; }
  .hero-v2-copy .hero-actions { justify-content: flex-start; }
  .hero-v2-photo { min-height: 420px; }
  .hero-v2-photo > img { height: 420px; }
  .trust-stats { grid-template-columns: 1fr; }
  .trust-stats > div { border-right: 0; border-bottom: 1px solid var(--al-line); }
  .trust-stats > div:last-child { border-bottom: 0; }
  .featured-service-grid { grid-template-columns: repeat(2,1fr); }
  .manpower-v2-shell { grid-template-columns: 1fr; }
  .manpower-photo,.manpower-photo > img { min-height: 380px; height: 380px; }
  .trade-list-v2 { grid-template-columns: repeat(2,1fr); }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .about-v2-grid { grid-template-columns: 1fr; }
  .about-v2-visual { max-width: 680px; min-height: 590px; }
  .company-fact-card { left: 20px; right: 20px; }
  .maintenance-title-row { grid-template-columns: 1fr; gap: 16px; }
  .maintenance-photo-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid-v2 { grid-template-columns: repeat(2,1fr); }
  .clients-v2-shell { grid-template-columns: 1fr; }
  .clients-v2-title { text-align: center; }
  .client-logo-track { grid-template-columns: repeat(3,1fr); }
  .quote-v2-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-v2-grid { padding-top: 58px; padding-bottom: 72px; }
  .hero-v2-copy h1 { font-size: clamp(3rem,15vw,4.45rem); }
  .hero-v2-copy .hero-actions { flex-direction: column; }
  .hero-v2-copy .hero-actions .button { width: 100%; }
  .hero-trust-line { flex-direction: column; }
  .hero-v2-photo { min-height: 330px; border-radius: 22px; }
  .hero-v2-photo > img { height: 330px; }
  .hero-photo-brand { width: 145px; top: 14px; left: 14px; }
  .hero-photo-tag { left: 17px; right: 17px; bottom: 17px; flex-direction: column; align-items: flex-start; }
  .hero-photo-tag span { text-align: left; }
  .trust-stats-wrap { margin-top: -28px; }
  .featured-service-grid,.capability-grid,.maintenance-photo-grid,.project-grid-v2 { grid-template-columns: 1fr; }
  .featured-service-image { aspect-ratio: 16/9; }
  .manpower-v2-content { padding: 34px 22px; }
  .trade-list-v2 { grid-template-columns: 1fr; }
  .why-v2-grid { grid-template-columns: 1fr; }
  .about-v2-visual { min-height: 500px; }
  .about-v2-visual > img { height: 460px; }
  .company-fact-card { left: 12px; right: 12px; padding: 20px; }
  .client-logo-track { grid-template-columns: repeat(2,1fr); }
  .contact-v2-card { min-height: 720px; padding: 28px 20px; }
  .contact-building { left: 20px; right: 20px; width: calc(100% - 40px); bottom: 22px; height: 190px; }
  .quote-v2-section .quote-form-card { padding: 28px 18px; }
}

/* Final photo clarity pass */
.hero-v2-photo > img,.featured-service-image img,.manpower-photo > img,.capability-card img,.project-image img,.about-v2-visual img { backface-visibility: hidden; transform: translateZ(0); }
.featured-service-image,.project-image,.capability-card { background: #e9f0f4; }
