:root {
    --navy: #0d4e73;
    --navy-dark: #082d46;
    --red: #c73036;
    --gold: #e8b62d;
    --ink: #12212d;
    --muted: #667681;
    --paper: #ffffff;
    --soft: #f3f6f7;
    --line: #dfe6e9;
    --success: #2e8b61;
    --radius: 6px;
    --shadow: 0 20px 55px rgba(13, 47, 68, .12);
    --heading: Arial, Helvetica, sans-serif;
    --body: Arial, Helvetica, sans-serif;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .55em; color: var(--ink); font-family: var(--heading); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.85rem, 6.4vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.2em; }
.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section { padding: 105px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--red); font-size: .76rem; font-weight: 800; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 3px; background: currentColor; content: ''; }
.lead { color: #344752; font-size: clamp(1.12rem, 2vw, 1.38rem); line-height: 1.6; }
.skip-link { position: fixed; z-index: 10000; top: 10px; left: 10px; padding: 10px 15px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.preview-bar { position: relative; z-index: 1001; padding: 7px 20px; color: #fff; background: var(--red); text-align: center; font-size: .84rem; font-weight: 700; }
.preview-bar a { margin-left: 14px; color: #fff; text-decoration: underline; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Header */
.site-header { position: relative; z-index: 1000; width: 100%; color: var(--ink); background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(13,78,115,.1); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { position: sticky; top: 0; box-shadow: 0 12px 35px rgba(8,45,70,.1); }
.topbar { color: #fff; background: var(--navy-dark); font-size: .78rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 24px; }
.topbar a:hover { color: var(--gold); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { min-width: 250px; display: inline-flex; align-items: center; gap: 13px; }
.brand img { width: 66px; height: 66px; border-radius: 6px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--navy-dark); font-family: var(--heading); font-size: 1.13rem; letter-spacing: -.02em; text-transform: uppercase; }
.brand-text small { margin-top: 6px; color: var(--muted); font-size: .66rem; letter-spacing: .06em; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 33px); font-size: .84rem; font-weight: 750; }
.primary-nav > a { position: relative; padding: 32px 0; }
.primary-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 23px; left: 0; height: 3px; background: var(--red); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.primary-nav > a:hover::after, .primary-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-cta { padding: 13px 20px; color: #fff; background: var(--red); border-radius: var(--radius); }
.primary-nav .nav-cta:hover { background: var(--navy); }
.nav-toggle { width: 45px; height: 45px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; }
.nav-toggle span { width: 21px; height: 2px; background: var(--ink); transition: .2s; }

/* Buttons */
.button { min-height: 52px; padding: 13px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: var(--radius); cursor: pointer; font-size: .84rem; font-weight: 800; line-height: 1.1; transition: transform .2s, background .2s, color .2s, border .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); }
.button-primary:hover { background: var(--navy-dark); }
.button-secondary { color: #fff; background: var(--navy); }
.button-secondary:hover { background: var(--red); }
.button-ghost { color: var(--navy-dark); border-color: rgba(13,78,115,.32); background: rgba(255,255,255,.65); }
.button-ghost:hover { border-color: var(--navy); }
.button-light { color: var(--navy-dark); background: #fff; }
.button-block { width: 100%; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--navy); font-size: .86rem; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.text-link-large { margin-top: 16px; font-size: .95rem; }

/* Hero */
.home-hero { position: relative; background: linear-gradient(115deg, #eef4f6 0%, #fff 70%); overflow: hidden; }
.home-hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(13,78,115,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13,78,115,.045) 1px, transparent 1px); background-size: 52px 52px; content: ''; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-grid { position: relative; min-height: 720px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 60px; padding-top: 74px; padding-bottom: 74px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 780px; color: var(--navy-dark); }
.hero-copy > p { max-width: 670px; color: #536772; font-size: 1.12rem; }
.hero-actions { margin: 32px 0 42px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { padding-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { color: var(--navy); font-family: var(--heading); font-size: 1.55rem; }
.hero-proof span { color: var(--muted); font-size: .72rem; line-height: 1.4; }
.hero-visual { position: relative; align-self: stretch; min-height: 570px; }
.hero-visual > img { position: absolute; top: 0; right: calc((100vw - min(var(--container), calc(100vw - 44px))) / -2); width: calc(100% + (100vw - min(var(--container), calc(100vw - 44px))) / 2); height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.hero-visual::after { position: absolute; inset: 25px -20px -25px 30px; z-index: -1; border: 4px solid var(--gold); content: ''; }
.hero-float-card { position: absolute; z-index: 2; bottom: 35px; left: -42px; width: 240px; padding: 22px; color: #fff; background: var(--navy-dark); box-shadow: var(--shadow); }
.hero-float-card span, .hero-float-card strong { display: block; }
.hero-float-card span { margin-bottom: 5px; color: var(--gold); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-float-card strong { line-height: 1.35; }
.hero-shape { position: absolute; z-index: 3; top: -20px; left: -26px; width: 80px; height: 120px; border-top: 16px solid var(--red); border-left: 16px solid var(--red); }
.trust-strip { color: #fff; background: var(--navy-dark); }
.trust-grid { min-height: 86px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; text-align: center; }
.trust-grid span { padding: 8px 12px; color: rgba(255,255,255,.73); border-right: 1px solid rgba(255,255,255,.13); font-size: .76rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.trust-grid span:last-child { border: 0; }

/* General sections */
.split-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.split-grid-reverse { grid-template-columns: 1.05fr .95fr; }
.section-image { position: relative; }
.section-image > img { width: 100%; min-height: 570px; object-fit: cover; }
.section-image::before { position: absolute; z-index: -1; top: -22px; left: -22px; width: 62%; height: 56%; background: var(--gold); content: ''; }
.image-stat { position: absolute; right: -38px; bottom: 35px; width: 210px; padding: 23px; color: #fff; background: var(--red); box-shadow: var(--shadow); }
.image-stat strong { display: block; font-size: 2rem; line-height: 1; }
.image-stat span { display: block; margin-top: 8px; font-size: .74rem; line-height: 1.5; }
.section-copy { max-width: 670px; }
.check-list { margin: 28px 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; top: .28em; left: 0; width: 18px; height: 18px; color: #fff; background: var(--success); border-radius: 50%; content: '✓'; font-size: .72rem; font-weight: bold; line-height: 18px; text-align: center; }
.section-heading { margin-bottom: 48px; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); }
.services-section { background: var(--soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 290px; padding: 32px; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .25s, box-shadow .25s, border .25s; }
.service-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: var(--red); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.service-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-number { position: absolute; top: 20px; right: 24px; color: #d9e0e3; font-size: .75rem; font-weight: 800; }
.service-icon { width: 54px; height: 54px; margin-bottom: 28px; display: grid; place-items: center; color: #fff; background: var(--navy); border-radius: 4px; font-size: 1.55rem; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.center-action { margin-top: 38px; text-align: center; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card { min-width: 0; background: #fff; border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-image { position: relative; height: 270px; display: block; overflow: hidden; background: var(--navy-dark); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card:hover .project-image img { transform: scale(1.045); }
.status-badge { display: inline-flex; padding: 8px 12px; color: #fff; border-radius: 2px; font-size: .66rem; font-weight: 850; letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.project-image .status-badge { position: absolute; top: 16px; left: 16px; }
.status-ongoing { background: #df7d1d; }.status-completed { background: var(--success); }.status-upcoming { background: var(--navy); }.status-other { background: #6e5a8d; }
.project-progress { position: absolute; right: 0; bottom: 0; left: 0; height: 5px; background: rgba(255,255,255,.3); }
.project-progress i { display: block; height: 100%; background: var(--gold); }
.project-card-body { padding: 25px; }
.project-meta { margin-bottom: 12px; display: flex; justify-content: space-between; gap: 15px; color: var(--red); font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.project-meta span:last-child { color: var(--muted); text-align: right; }
.project-card h3 { margin-bottom: 12px; font-size: 1.27rem; }
.project-card h3 a:hover { color: var(--red); }
.project-card p { color: var(--muted); font-size: .88rem; }
.process-section { color: #fff; background: var(--navy-dark); }
.process-section h2, .process-section h3 { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { padding: 34px; border-top: 1px solid rgba(255,255,255,.22); border-right: 1px solid rgba(255,255,255,.15); }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { display: block; margin-bottom: 48px; color: var(--gold); font-size: .76rem; font-weight: 800; }
.process-grid article p { color: rgba(255,255,255,.67); font-size: .88rem; }

/* Page heroes */
.page-hero { position: relative; color: #fff; background: var(--navy-dark); overflow: hidden; }
.page-hero::after { position: absolute; top: -180px; right: -100px; width: 560px; height: 560px; border: 100px solid rgba(255,255,255,.035); border-radius: 50%; content: ''; }
.page-hero-grid { position: relative; z-index: 1; min-height: 400px; padding-top: 70px; padding-bottom: 70px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.page-hero h1 { max-width: 900px; color: #fff; font-size: clamp(2.75rem, 6vw, 5.2rem); }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero-mark { color: transparent; font-family: var(--heading); font-size: clamp(6rem, 18vw, 13rem); font-weight: 900; line-height: 1; -webkit-text-stroke: 2px rgba(255,255,255,.16); }
.prose-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.prose-aside h2 { position: sticky; top: 150px; }
.prose-content p { color: #53636c; font-size: 1.05rem; }
.prose-content .lead { color: var(--ink); font-size: 1.35rem; }
.values-section { background: var(--soft); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { min-height: 350px; padding: 40px; background: #fff; border-top: 5px solid var(--navy); }
.value-card:nth-child(2) { border-color: var(--red); }.value-card:nth-child(3) { border-color: var(--gold); }
.value-card > span { color: #b6c0c5; font-size: .76rem; font-weight: 800; }
.value-card h2 { margin-top: 70px; font-size: 2rem; }
.value-card p { color: var(--muted); }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.leader-card { padding: 34px; display: flex; align-items: center; gap: 26px; border: 1px solid var(--line); }
.leader-initials { flex: 0 0 95px; height: 95px; display: grid; place-items: center; color: #fff; background: var(--navy); font-family: var(--heading); font-size: 1.8rem; font-weight: 800; }
.leader-card p { margin: -4px 0 4px; color: var(--red); font-weight: 800; }
.leader-card span { color: var(--muted); font-size: .9rem; }
.equipment-section { background: #f0f4f5; }
.equipment-list { display: flex; flex-wrap: wrap; gap: 8px; }
.equipment-list span { padding: 7px 11px; color: var(--navy-dark); background: #fff; border: 1px solid var(--line); font-size: .78rem; font-weight: 750; }
.equipment-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); background: var(--navy-dark); }
.equipment-stat-grid div { min-height: 190px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.12); }
.equipment-stat-grid strong { color: var(--gold); font-family: var(--heading); font-size: 2.3rem; }
.equipment-stat-grid span { color: rgba(255,255,255,.7); }
.services-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-detail-card { min-height: 330px; padding: 34px; border: 1px solid var(--line); }
.service-detail-top { margin-bottom: 38px; display: flex; justify-content: space-between; align-items: start; color: #aab6bc; font-size: .75rem; font-weight: bold; }
.service-detail-top .service-icon { margin: 0; }
.service-detail-card p { color: var(--muted); }
.capability-banner { color: #fff; background: var(--navy); }
.capability-banner h2 { color: #fff; }
.capability-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 90px; }
.capability-grid p, .capability-grid li { color: rgba(255,255,255,.76); }
.capability-grid .eyebrow { color: var(--gold); }

/* Projects archive and details */
.project-filter-section { padding: 35px 0 0; background: var(--soft); border-bottom: 1px solid var(--line); }
.project-filter { padding: 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; align-items: end; gap: 13px; background: #fff; box-shadow: 0 10px 40px rgba(13,47,68,.08); }
.project-filter label { display: grid; gap: 6px; }
.project-filter label > span { color: var(--muted); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.project-filter input, .project-filter select { width: 100%; height: 48px; padding: 0 14px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 2px; outline: 0; }
.project-filter input:focus, .project-filter select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,78,115,.1); }
.status-tabs { margin-top: 25px; display: flex; gap: 30px; overflow-x: auto; }
.status-tabs a { padding: 14px 2px; border-bottom: 3px solid transparent; white-space: nowrap; font-size: .82rem; font-weight: 800; }
.status-tabs a.active, .status-tabs a:hover { color: var(--red); border-color: var(--red); }
.projects-archive { background: var(--soft); }
.results-heading { margin-bottom: 24px; display: flex; justify-content: space-between; }
.results-heading p { margin: 0; }.results-heading a { color: var(--red); font-weight: bold; }
.empty-state { padding: 80px 30px; text-align: center; background: var(--soft); border: 1px dashed #bdc9ce; }
.empty-state p { color: var(--muted); }
.project-detail-hero { position: relative; min-height: 650px; display: flex; align-items: end; color: #fff; overflow: hidden; }
.project-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-detail-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,25,38,.94), rgba(5,25,38,.08) 70%); }
.project-detail-title { position: relative; z-index: 2; padding-bottom: 65px; }
.project-detail-title h1 { max-width: 980px; margin: 18px 0 14px; color: #fff; font-size: clamp(2.6rem, 5.5vw, 5rem); }
.project-detail-title p { max-width: 750px; margin: 0; color: rgba(255,255,255,.75); font-size: 1.06rem; }
.project-facts { color: #fff; background: var(--navy-dark); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid > div { min-height: 130px; padding: 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.13); }
.facts-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.facts-grid span { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.facts-grid strong { margin-top: 6px; font-size: .95rem; line-height: 1.35; }
.project-content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 90px; align-items: start; }
.project-narrative h3 { margin-top: 42px; font-size: 1.5rem; }
.rich-text { color: #53636c; font-size: 1.05rem; }
.project-sidebar { position: sticky; top: 140px; padding: 28px; background: var(--soft); border: 1px solid var(--line); }
.progress-panel { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.progress-panel > div:first-child { display: flex; justify-content: space-between; align-items: end; }
.progress-panel span { color: var(--muted); font-size: .75rem; font-weight: 800; }
.progress-panel strong { color: var(--navy); font-size: 1.8rem; }
.progress-track { height: 8px; margin-top: 12px; background: #d4dfe3; border-radius: 20px; overflow: hidden; }
.progress-track i { display: block; height: 100%; background: var(--success); }
.project-sidebar dl { margin: 0 0 24px; }
.project-sidebar dl div { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.project-sidebar dt { color: var(--muted); font-size: .78rem; }.project-sidebar dd { margin: 0; font-weight: 800; text-align: right; }
.project-gallery-section { background: var(--soft); }
.project-photo-library { background: #fff; }.photo-library-toolbar { margin-bottom: 28px; padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--soft); border: 1px solid var(--line); }.photo-category-tabs { display: flex; flex-wrap: wrap; gap: 7px; }.photo-category-tabs button { padding: 9px 12px; color: var(--muted); background: #fff; border: 1px solid var(--line); cursor: pointer; font-size: .7rem; font-weight: 800; }.photo-category-tabs button.active,.photo-category-tabs button:hover { color: #fff; background: var(--navy); border-color: var(--navy); }.photo-library-toolbar>span { flex: 0 0 auto; color: var(--muted); font-size: .72rem; font-weight: 800; }.profile-photo-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 245px; gap: 13px; }.profile-photo-card { position: relative; padding: 0; background: var(--navy-dark); border: 0; cursor: zoom-in; overflow: hidden; text-align: left; }.profile-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s,opacity .3s; }.profile-photo-card:hover img { opacity: .78; transform: scale(1.035); }.profile-photo-card>span { position: absolute; right: 0; bottom: 0; left: 0; padding: 38px 16px 14px; display: flex; flex-direction: column; color: #fff; background: linear-gradient(transparent,rgba(3,14,22,.92)); }.profile-photo-card small { color: var(--gold); font-size: .58rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }.profile-photo-card strong { margin-top: 4px; font-size: .76rem; line-height: 1.35; }.profile-photo-card i { display: none; font-style: normal; font-size: .6rem; }.profile-photo-lead { grid-column: span 2; grid-row: span 2; }.profile-photo-lead strong { max-width: 560px; font-size: 1.35rem; }.profile-photo-lead i { display: block; margin-top: 8px; color: var(--gold); }.photo-library-more { margin-top: 32px; text-align: center; }
.project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.gallery-item { height: 280px; padding: 0; background: none; border: 0; cursor: zoom-in; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }.gallery-item:hover img { transform: scale(1.04); }
.project-hero-open { margin-top: 22px; padding: 12px 15px; display: inline-flex; align-items: center; gap: 12px; color: #fff; background: rgba(3,14,22,.56); border: 1px solid rgba(255,255,255,.55); cursor: pointer; font-size: .75rem; font-weight: 800; }
.project-hero-open span { width: 27px; height: 27px; display: grid; place-items: center; color: var(--navy-dark); background: #fff; border-radius: 50%; }
.lightbox { position: fixed; z-index: 5000; inset: 0; padding: 45px 95px; display: grid; place-items: center; background: rgba(3,14,22,.96); touch-action: pan-y; }
.lightbox figure { max-width: 1150px; max-height: 90vh; margin: 0; }.lightbox img { max-height: 82vh; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.38); }.lightbox figcaption { min-height: 36px; padding-top: 10px; color: #fff; text-align: center; }
.lightbox-close,.lightbox-nav { position: absolute; z-index: 2; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28); cursor: pointer; }
.lightbox-close { top: 20px; right: 25px; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 58px; height: 76px; font-size: 3rem; line-height: 1; transform: translateY(-50%); }
.lightbox-prev { left: 24px; }.lightbox-next { right: 24px; }.lightbox-counter { position: absolute; bottom: 22px; left: 25px; color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.profile-archive-section { background: var(--soft); }.profile-archive-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 250px; gap: 14px; }.profile-archive-item { position: relative; padding: 0; background: #fff; border: 0; cursor: zoom-in; overflow: hidden; }.profile-archive-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }.profile-archive-item:hover img { transform: scale(1.025); }.profile-archive-item span { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 12px; color: #fff; background: rgba(5,22,33,.82); font-size: .66rem; font-weight: 800; text-align: left; }.profile-archive-wide { grid-column: 1 / 3; }.profile-archive-tall { grid-row: span 2; }.profile-archive-logo img { padding: 24px; object-fit: contain; background: #f3f0e9; }

/* Contact */
.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.contact-details { position: sticky; top: 140px; }
.contact-details > p { color: var(--muted); }
.contact-cards { margin-top: 35px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-cards > div { padding: 22px; display: grid; background: #fff; }
.contact-cards span { margin-bottom: 5px; color: var(--red); font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-cards a { color: var(--navy); font-weight: 800; }.contact-cards p { margin: 0; }
.contact-form { padding: clamp(28px, 5vw, 52px); background: #fff; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 30px; }.form-heading p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid label { display: grid; gap: 7px; }.form-grid .full { grid-column: 1 / -1; }
.form-grid label > span { font-size: .75rem; font-weight: 800; }
.form-grid input, .form-grid textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fafcfc; border: 1px solid var(--line); border-radius: 2px; outline: 0; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { background: #fff; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,78,115,.1); }
.contact-form .button { margin-top: 24px; }
.honeypot { position: absolute; left: -10000px; }
.flash-wrap { padding-top: 20px; }
.alert { padding: 14px 18px; border-left: 4px solid; font-weight: 700; }.alert-success { color: #175c3e; background: #e2f4eb; border-color: #2d9465; }.alert-error { color: #88292c; background: #fbe5e6; border-color: #c73036; }

/* Templates */
.template-showcase-section { background: var(--soft); }
.template-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.template-showcase-card { background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 35px rgba(13,47,68,.06); overflow: hidden; }
.template-showcase-card.is-current { outline: 3px solid var(--gold); }
.template-showcase-body { padding: 28px; }
.template-showcase-body > div:first-child { display: flex; justify-content: space-between; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.template-showcase-body h2 { margin: 12px 0; font-size: 1.8rem; }.template-showcase-body p { color: var(--muted); }
.current-pill { padding: 4px 8px; color: #fff; background: var(--success); border-radius: 20px; }
.template-tags { margin: 20px 0; display: flex; flex-wrap: wrap; gap: 7px; }
.template-tags span { padding: 5px 9px; background: var(--soft); border: 1px solid var(--line); border-radius: 20px; color: var(--muted); font-size: .7rem; }
.template-admin-note { margin-top: 35px; padding: 23px 28px; display: flex; align-items: center; gap: 18px; color: #fff; background: var(--navy-dark); }.template-admin-note span { color: rgba(255,255,255,.7); }.template-admin-note a { margin-left: auto; color: var(--gold); font-weight: bold; }
.template-mini-browser { height: 330px; padding: 15px; background: #dce5e9; }
.mini-top { height: 26px; padding: 0 10px; display: flex; align-items: center; gap: 5px; color: #777; background: #f7f8f9; border-radius: 5px 5px 0 0; font-size: 8px; }
.mini-top i { width: 6px; height: 6px; background: #aaa; border-radius: 50%; }.mini-top span { margin-left: 8px; }
.mini-nav { height: 38px; padding: 0 16px; display: flex; align-items: center; gap: 17px; background: #fff; }
.mini-nav b { margin-right: auto; font-size: 10px; }.mini-nav span { width: 25px; height: 3px; background: #cad1d5; }.mini-nav em { width: 38px; height: 14px; background: var(--red); }
.mini-hero { height: 190px; padding: 25px; display: grid; grid-template-columns: 1fr .8fr; gap: 20px; background: #eef2f4; }
.mini-hero div { display: flex; flex-direction: column; gap: 7px; }.mini-hero small { width: 45px; height: 3px; background: var(--red); }.mini-hero strong { width: 90%; height: 12px; background: #16384e; }.mini-hero strong:nth-child(3) { width: 65%; }.mini-hero p { width: 80%; height: 18px; margin: 0; background: #ced8dc; }.mini-hero button { width: 60px; height: 18px; margin-top: 5px; background: var(--red); border: 0; }.mini-hero figure { margin: 0; background: linear-gradient(140deg,#2a6686,#0a334c); }
.mini-cards { height: 60px; padding: 10px 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: #fff; }.mini-cards i { background: #e3e8ea; border-top: 3px solid var(--navy); }
.template-preview-2 .template-mini-browser, .template-preview-2.template-mini-browser { background:#2c3339 }.template-preview-2 .mini-nav, .template-preview-2.mini-nav { color:#fff;background:#151b20 }.template-preview-2 .mini-nav span{background:#5c6268}.template-preview-2 .mini-nav em,.template-preview-2 .mini-hero button,.template-preview-2 .mini-hero small{background:#ef8f29}.template-preview-2 .mini-hero{background:#20272d}.template-preview-2 .mini-hero strong{background:#fff}.template-preview-2 .mini-hero p{background:#56616a}.template-preview-2 .mini-cards{background:#151b20}.template-preview-2 .mini-cards i{background:#2d353c;border-color:#ef8f29}
.template-preview-3 .template-mini-browser, .template-preview-3.template-mini-browser { background:#eee }.template-preview-3 .mini-nav em,.template-preview-3 .mini-hero button,.template-preview-3 .mini-hero small{background:#b22228}.template-preview-3 .mini-hero{background:#fff}.template-preview-3 .mini-hero figure{border-radius:0;background:#d4d5d5}.template-preview-3 .mini-cards i{background:#fff;border:1px solid #bbb;border-top:1px solid #bbb}
.template-preview-4 .template-mini-browser, .template-preview-4.template-mini-browser { background:#dbe9df }.template-preview-4 .mini-nav,.template-preview-4 .mini-top{border-radius:10px}.template-preview-4 .mini-nav em,.template-preview-4 .mini-hero button,.template-preview-4 .mini-hero small{background:#d56a47;border-radius:8px}.template-preview-4 .mini-hero{margin-top:5px;background:#e7f1e9;border-radius:12px}.template-preview-4 .mini-hero strong{background:#184c38}.template-preview-4 .mini-hero figure,.template-preview-4 .mini-cards i{border-radius:10px;background:#7fac89}.template-preview-4 .mini-cards{background:transparent}
.template-preview-5 .template-mini-browser, .template-preview-5.template-mini-browser { background:#14283d }.template-preview-5 .mini-nav{color:#fff;background:#0b1d2e}.template-preview-5 .mini-nav span{background:#526172}.template-preview-5 .mini-nav em,.template-preview-5 .mini-hero button,.template-preview-5 .mini-hero small{background:#c9a34c}.template-preview-5 .mini-hero{background:#f8f2e7}.template-preview-5 .mini-hero strong{background:#14283d}.template-preview-5 .mini-hero figure{background:linear-gradient(140deg,#c9a34c,#14283d)}.template-preview-5 .mini-cards{background:#0b1d2e}.template-preview-5 .mini-cards i{background:#14283d;border-color:#c9a34c}
.template-preview-6 .template-mini-browser, .template-preview-6.template-mini-browser{background:linear-gradient(140deg,#07152f,#1277ee,#08c4dc)}.template-preview-6 .mini-top,.template-preview-6 .mini-nav{color:#fff;background:rgba(255,255,255,.17);backdrop-filter:blur(8px)}.template-preview-6 .mini-nav span{background:rgba(255,255,255,.55)}.template-preview-6 .mini-nav em,.template-preview-6 .mini-hero button,.template-preview-6 .mini-hero small{background:#65efff;border-radius:8px}.template-preview-6 .mini-hero{margin-top:5px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.28);border-radius:12px}.template-preview-6 .mini-hero strong{background:#fff;border-radius:5px}.template-preview-6 .mini-hero p{background:rgba(255,255,255,.45);border-radius:4px}.template-preview-6 .mini-hero figure{background:linear-gradient(145deg,rgba(255,255,255,.65),rgba(0,194,255,.18));border:1px solid rgba(255,255,255,.6);border-radius:14px}.template-preview-6 .mini-cards{background:transparent}.template-preview-6 .mini-cards i{background:rgba(255,255,255,.23);border:1px solid rgba(255,255,255,.42);border-radius:8px}
.template-preview-7 .template-mini-browser, .template-preview-7.template-mini-browser{background:#ff6a00}.template-preview-7 .mini-top{background:#fff3dc}.template-preview-7 .mini-nav{color:#fff;background:#171717}.template-preview-7 .mini-nav span{background:#777}.template-preview-7 .mini-nav em{background:#ff6a00}.template-preview-7 .mini-hero{background:repeating-linear-gradient(135deg,#fff4df 0,#fff4df 24px,#ffd9b7 24px,#ffd9b7 48px)}.template-preview-7 .mini-hero strong{background:#171717}.template-preview-7 .mini-hero small,.template-preview-7 .mini-hero button{background:#ff6a00}.template-preview-7 .mini-hero figure{background:#ff6a00;clip-path:polygon(18% 0,100% 0,82% 100%,0 100%)}.template-preview-7 .mini-cards{background:#fff4df}.template-preview-7 .mini-cards i{background:#fff;border:2px solid #171717;box-shadow:3px 3px 0 #ff6a00}
.template-preview-8 .template-mini-browser, .template-preview-8.template-mini-browser{background:#989892}.template-preview-8 .mini-top{color:#fff;background:#151515;border-radius:0}.template-preview-8 .mini-nav{color:#111;background:#c9c9c3;border:2px solid #111}.template-preview-8 .mini-nav span{background:#111}.template-preview-8 .mini-nav em,.template-preview-8 .mini-hero button,.template-preview-8 .mini-hero small{background:#e51b23}.template-preview-8 .mini-hero{background:#b8b8b1;border-inline:2px solid #111}.template-preview-8 .mini-hero strong{background:#111}.template-preview-8 .mini-hero p{background:#777}.template-preview-8 .mini-hero figure{background:#777;border:3px solid #111;box-shadow:5px 5px 0 #e51b23}.template-preview-8 .mini-cards{background:#c9c9c3;border:2px solid #111}.template-preview-8 .mini-cards i{background:#a5a5a0;border:2px solid #111;box-shadow:3px 3px 0 #111}
.template-preview-9 .template-mini-browser, .template-preview-9.template-mini-browser{background:#ead9ba}.template-preview-9 .mini-top{background:#fff8ea}.template-preview-9 .mini-nav{color:#fff;background:#244c39}.template-preview-9 .mini-nav span{background:#91a798}.template-preview-9 .mini-nav em,.template-preview-9 .mini-hero button,.template-preview-9 .mini-hero small{background:#b64c2e}.template-preview-9 .mini-hero{background:radial-gradient(circle at 15% 85%,#d8a94f 0 18%,transparent 19%),#f6ead5}.template-preview-9 .mini-hero strong{background:#244c39}.template-preview-9 .mini-hero figure{background:linear-gradient(150deg,#d49c42,#7c3e29);border-radius:60px 60px 8px 8px}.template-preview-9 .mini-cards{background:#f6ead5}.template-preview-9 .mini-cards i{background:#ddc7a1;border-top:3px solid #b64c2e;border-radius:22px 22px 4px 4px}

/* Footer */
.cta-band { color: #fff; background: var(--red); }
.cta-band-inner { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin: 0; color: #fff; }.cta-band .eyebrow { margin-bottom: 8px; color: rgba(255,255,255,.72); }
.site-footer { padding: 75px 0 25px; color: rgba(255,255,255,.68); background: #071f30; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.site-footer h3 { color: #fff; font-size: .83rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer a { margin: 7px 0; display: block; font-size: .83rem; }.site-footer a:hover { color: var(--gold); }
.footer-brand p { max-width: 330px; margin-top: 22px; font-size: .86rem; }
.brand-footer { min-width: 0; }.brand-footer .brand-text strong { color: #fff; }.brand-footer .brand-text small { color: rgba(255,255,255,.5); }.brand-footer img { width: 72px; height: 72px; }
.footer-contact p { font-size: .83rem; }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }.footer-bottom a { margin: 0; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: #25a866; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 8px 25px rgba(0,0,0,.2); font-size: .72rem; font-weight: 900; }

/* Template 2: Industrial Dark */
.template-2 { --navy:#2382b4;--navy-dark:#111820;--red:#ef8f29;--gold:#ef8f29;--ink:#eaf1f4;--muted:#9aabb4;--paper:#171f25;--soft:#202a31;--line:#34414a;--success:#41a873;--radius:0;--shadow:0 20px 55px rgba(0,0,0,.34); }
.template-2 .site-header { color:#fff;background:#111820;border-color:#303a41 }.template-2 .topbar{background:#ef8f29;color:#171f25}.template-2 .topbar a:hover{color:#fff}.template-2 .brand-text strong,.template-2 .primary-nav,.template-2 .nav-toggle{color:#fff}.template-2 .brand-text small{color:#aebbc2}.template-2 .nav-toggle span{background:#fff}.template-2 .primary-nav .nav-cta{background:#ef8f29;color:#111820}.template-2 .home-hero{background:#171f25}.template-2 .home-hero::before{background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px)}.template-2 .hero-copy h1,.template-2 .section h2,.template-2 .section h3{color:#fff}.template-2 .hero-copy>p,.template-2 .lead,.template-2 .section-copy p,.template-2 .prose-content p,.template-2 .rich-text{color:#aebbc2}.template-2 .hero-visual>img{filter:saturate(.75) contrast(1.05)}.template-2 .trust-strip{background:#ef8f29}.template-2 .trust-grid span{color:#111820;border-color:rgba(0,0,0,.2)}.template-2 .section-image::before{background:#2382b4}.template-2 .service-card,.template-2 .project-card,.template-2 .value-card,.template-2 .leader-card,.template-2 .service-detail-card,.template-2 .contact-form,.template-2 .contact-cards>div,.template-2 .template-showcase-card{background:#202a31}.template-2 .equipment-section,.template-2 .project-filter-section,.template-2 .projects-archive,.template-2 .contact-section,.template-2 .template-showcase-section{background:#111820}.template-2 .project-filter{background:#202a31}.template-2 .project-filter input,.template-2 .project-filter select,.template-2 .form-grid input,.template-2 .form-grid textarea{color:#fff;background:#171f25;border-color:#3c4b55}.template-2 .cta-band{background:#2382b4}.template-2 .site-footer{background:#080d11}.template-2 .page-hero{background:#0d1216}.template-2 .project-sidebar{background:#202a31}.template-2 .button-ghost{color:#fff;background:transparent;border-color:#60717b}.template-2 .equipment-list span{color:#fff;background:#202a31}.template-2 .template-tags span{background:#171f25}.template-2 .empty-state{background:#202a31;border-color:#46545d}

/* Template 3: Architectural Minimal */
.template-3 { --navy:#202326;--navy-dark:#111315;--red:#b3222b;--gold:#b3222b;--ink:#17191a;--muted:#6f7274;--paper:#fff;--soft:#f6f5f3;--line:#d8d6d2;--radius:0;--shadow:0 18px 50px rgba(0,0,0,.08);--heading:Georgia,'Times New Roman',serif; }
.template-3 .topbar{display:none}.template-3 .nav-wrap{min-height:104px}.template-3 .brand img{width:56px;height:56px;filter:grayscale(1)}.template-3 .brand-text strong{font-family:Georgia,serif;font-weight:500;letter-spacing:.02em;text-transform:none}.template-3 .brand-text small{text-transform:uppercase;letter-spacing:.14em}.template-3 .primary-nav{font-weight:600}.template-3 .primary-nav .nav-cta{background:transparent;color:var(--red);border:1px solid var(--red)}.template-3 .home-hero{background:#fff}.template-3 .home-hero::before{display:none}.template-3 .hero-grid{min-height:760px;grid-template-columns:.9fr 1.1fr;gap:90px}.template-3 .hero-copy h1{font-weight:400}.template-3 .hero-visual>img{right:0;width:100%;box-shadow:none;filter:grayscale(.5)}.template-3 .hero-visual::after{inset:-20px 25px 25px -20px;border:1px solid var(--ink)}.template-3 .hero-float-card{left:-55px;background:#fff;color:var(--ink);border:1px solid var(--line);box-shadow:none}.template-3 .hero-float-card span{color:var(--red)}.template-3 .hero-shape{display:none}.template-3 .trust-strip{color:var(--ink);background:#fff;border-block:1px solid var(--line)}.template-3 .trust-grid span{color:var(--ink);border-color:var(--line);font-weight:500}.template-3 .eyebrow::before{width:46px;height:1px}.template-3 .section-image::before{width:100%;height:100%;top:18px;left:18px;background:transparent;border:1px solid var(--ink)}.template-3 .image-stat{right:-20px;background:#fff;color:var(--ink);border:1px solid var(--ink);box-shadow:none}.template-3 .service-card,.template-3 .project-card,.template-3 .service-detail-card{border-width:1px;box-shadow:none}.template-3 .service-card:hover,.template-3 .project-card:hover{box-shadow:none}.template-3 .service-icon{color:var(--ink);background:transparent;border:1px solid var(--ink)}.template-3 .process-section{background:#111315}.template-3 .value-card{border-top-width:1px}.template-3 .cta-band{background:#b3222b}.template-3 .page-hero{background:#f4f2ee;color:var(--ink);border-bottom:1px solid var(--line)}.template-3 .page-hero h1{color:var(--ink);font-weight:400}.template-3 .page-hero p{color:var(--muted)}.template-3 .page-hero .eyebrow{color:var(--red)}.template-3 .page-hero-mark{-webkit-text-stroke-color:rgba(0,0,0,.13)}.template-3 .project-card h3,.template-3 .service-card h3{font-weight:500}.template-3 .site-footer{background:#151719}

/* Template 4: Sustainable Green */
.template-4 { --navy:#1e6248;--navy-dark:#123e30;--red:#d96b48;--gold:#e8b85d;--ink:#173229;--muted:#637b71;--paper:#fbfdfb;--soft:#eaf3ed;--line:#d4e4d9;--success:#2f875f;--radius:18px;--shadow:0 22px 55px rgba(30,98,72,.15);--container:1200px; }
.template-4 .site-header{background:rgba(251,253,251,.96);border:0}.template-4 .topbar{background:#1e6248}.template-4 .nav-wrap{min-height:96px}.template-4 .brand img{border-radius:16px}.template-4 .primary-nav .nav-cta{border-radius:30px}.template-4 .home-hero{margin:0 18px;background:#eaf3ed;border-radius:0 0 35px 35px}.template-4 .home-hero::before{display:none}.template-4 .hero-grid{min-height:700px}.template-4 .hero-copy h1{color:#123e30}.template-4 .hero-visual>img{right:0;width:100%;border-radius:160px 24px 160px 24px;box-shadow:var(--shadow)}.template-4 .hero-visual::after{display:none}.template-4 .hero-float-card{left:-30px;border-radius:18px;background:#fff;color:var(--ink)}.template-4 .hero-float-card span{color:var(--red)}.template-4 .hero-shape{top:20px;left:-5px;width:65px;height:65px;border:0;background:var(--gold);border-radius:50%}.template-4 .trust-strip{background:#fff}.template-4 .trust-grid span{color:var(--navy);border-color:var(--line)}.template-4 .section-image>img{border-radius:180px 20px 180px 20px}.template-4 .section-image::before{border-radius:180px 20px 180px 20px}.template-4 .image-stat{border-radius:18px}.template-4 .service-card,.template-4 .project-card,.template-4 .value-card,.template-4 .leader-card,.template-4 .service-detail-card,.template-4 .contact-form,.template-4 .project-filter,.template-4 .project-sidebar,.template-4 .template-showcase-card{border-radius:18px;overflow:hidden}.template-4 .service-icon,.template-4 .leader-initials{border-radius:14px}.template-4 .process-section{margin-inline:18px;border-radius:35px;background:#123e30}.template-4 .process-grid article{border-color:rgba(255,255,255,.1)}.template-4 .page-hero{margin:0 18px;background:#123e30;border-radius:0 0 35px 35px}.template-4 .equipment-stat-grid{border-radius:25px;overflow:hidden;background:#123e30}.template-4 .project-detail-hero{margin:0 18px;border-radius:0 0 35px 35px}.template-4 .cta-band{margin:0 18px;border-radius:35px 35px 0 0;background:#d96b48}.template-4 .site-footer{background:#0d2d23}.template-4 .whatsapp-float{border-radius:20px}

/* Template 5: Executive Gold */
.template-5 { --navy:#18314a;--navy-dark:#0b1e31;--red:#b38a36;--gold:#d3ad5a;--ink:#15283a;--muted:#6f7780;--paper:#fcfaf5;--soft:#f2ecdf;--line:#ded4c0;--success:#4e8668;--radius:2px;--shadow:0 22px 58px rgba(11,30,49,.18);--heading:Georgia,'Times New Roman',serif; }
.template-5 .topbar{background:#b38a36}.template-5 .site-header{background:#0b1e31;border:0;color:#fff}.template-5 .brand-text strong{color:#fff;font-family:Georgia,serif;font-weight:500;text-transform:none}.template-5 .brand-text small{color:#b7c0c8}.template-5 .primary-nav{color:#fff}.template-5 .primary-nav .nav-cta{color:#0b1e31;background:#d3ad5a}.template-5 .nav-toggle span{background:#fff}.template-5 .home-hero{background:#0b1e31}.template-5 .home-hero::before{background-image:linear-gradient(rgba(211,173,90,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(211,173,90,.06) 1px,transparent 1px)}.template-5 .hero-copy h1{color:#fff;font-weight:400}.template-5 .hero-copy>p{color:#b8c2ca}.template-5 .hero-proof{border-color:#384a5a}.template-5 .hero-proof strong{color:#d3ad5a}.template-5 .hero-proof span{color:#9facb7}.template-5 .button-ghost{color:#fff;border-color:#d3ad5a;background:transparent}.template-5 .hero-visual>img{filter:saturate(.8)}.template-5 .hero-visual::after{border-width:1px}.template-5 .hero-float-card{background:#fcfaf5;color:#15283a;border-top:4px solid #d3ad5a}.template-5 .hero-float-card span{color:#b38a36}.template-5 .trust-strip{background:#b38a36}.template-5 .trust-grid span{color:#0b1e31;border-color:rgba(11,30,49,.25)}.template-5 .eyebrow{color:#b38a36}.template-5 .eyebrow::before{height:1px}.template-5 .section-image::before{background:#d3ad5a}.template-5 .image-stat{background:#18314a}.template-5 .service-card,.template-5 .project-card,.template-5 .value-card,.template-5 .service-detail-card{background:#fcfaf5}.template-5 .service-icon{background:#18314a}.template-5 .process-section{background:#0b1e31}.template-5 .page-hero{background:#0b1e31}.template-5 .project-filter-section,.template-5 .projects-archive,.template-5 .contact-section,.template-5 .template-showcase-section{background:#f2ecdf}.template-5 .project-sidebar{background:#f2ecdf}.template-5 .cta-band{background:#b38a36}.template-5 .site-footer{background:#071521}.template-5 .site-footer h3{font-family:Arial,sans-serif}.template-5 .project-detail-title h1{font-weight:400}

/* Template 6: Skyline Glass */
.template-6{--navy:#1277ee;--navy-dark:#07152f;--red:#00bcdc;--gold:#65efff;--ink:#102749;--muted:#647996;--paper:#f6faff;--soft:#e8f3ff;--line:#cfe1f5;--success:#20a77a;--radius:22px;--shadow:0 24px 70px rgba(7,74,165,.2);--container:1220px}
.template-6 .site-header{color:#fff;background:rgba(7,21,47,.88);border-color:rgba(255,255,255,.13);backdrop-filter:blur(18px)}.template-6 .topbar{background:linear-gradient(90deg,#1277ee,#00bcdc)}.template-6 .brand-text strong,.template-6 .primary-nav{color:#fff}.template-6 .brand-text small{color:#a9c6e9}.template-6 .nav-toggle span{background:#fff}.template-6 .primary-nav .nav-cta{color:#07152f;background:#65efff;border-radius:40px}.template-6 .home-hero{color:#fff;background:radial-gradient(circle at 15% 12%,rgba(101,239,255,.33),transparent 28%),linear-gradient(125deg,#07152f 5%,#0a55b9 55%,#00bcdc)}.template-6 .home-hero::before{background-image:linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px);mask-image:linear-gradient(to right,black,transparent)}.template-6 .hero-copy h1{color:#fff;text-shadow:0 10px 35px rgba(1,19,54,.28)}.template-6 .hero-copy>p,.template-6 .hero-proof span{color:rgba(255,255,255,.75)}.template-6 .hero-proof{border-color:rgba(255,255,255,.25)}.template-6 .hero-proof strong{color:#65efff}.template-6 .button-primary{color:#07152f;background:#65efff;border-radius:40px}.template-6 .button-ghost{color:#fff;background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.4);border-radius:40px;backdrop-filter:blur(10px)}.template-6 .hero-visual>img{right:0;width:100%;border:1px solid rgba(255,255,255,.5);border-radius:40px;box-shadow:0 35px 100px rgba(0,15,53,.4)}.template-6 .hero-visual::after{inset:20px -18px -18px 20px;border:1px solid rgba(101,239,255,.7);border-radius:40px}.template-6 .hero-float-card{left:-28px;color:#fff;background:rgba(7,21,47,.62);border:1px solid rgba(255,255,255,.3);border-radius:18px;backdrop-filter:blur(16px)}.template-6 .hero-float-card span{color:#65efff}.template-6 .hero-shape{width:78px;height:78px;border:0;background:linear-gradient(135deg,#65efff,#1277ee);border-radius:50%;box-shadow:0 0 50px rgba(101,239,255,.7)}.template-6 .trust-strip{background:#fff}.template-6 .trust-grid span{color:#1277ee;border-color:#d4e5f7}.template-6 .services-section,.template-6 .projects-archive,.template-6 .contact-section,.template-6 .template-showcase-section{background:linear-gradient(145deg,#edf6ff,#f9fcff)}.template-6 .service-card,.template-6 .project-card,.template-6 .service-detail-card,.template-6 .contact-form,.template-6 .template-showcase-card{border-color:rgba(18,119,238,.14);border-radius:22px;box-shadow:0 12px 38px rgba(18,91,174,.08);overflow:hidden}.template-6 .service-icon{background:linear-gradient(135deg,#1277ee,#00bcdc);border-radius:16px}.template-6 .process-section{background:linear-gradient(125deg,#07152f,#093c7e)}.template-6 .page-hero{background:radial-gradient(circle at 80% 10%,rgba(101,239,255,.3),transparent 30%),linear-gradient(120deg,#07152f,#1277ee)}.template-6 .project-sidebar,.template-6 .project-filter{background:rgba(255,255,255,.82);border-radius:22px;box-shadow:var(--shadow);backdrop-filter:blur(12px)}.template-6 .cta-band{background:linear-gradient(90deg,#1277ee,#00bcdc)}.template-6 .site-footer{background:#050f24}

/* Template 7: Safety Orange */
.template-7{--navy:#1b1d1f;--navy-dark:#101113;--red:#ff6500;--gold:#ffc400;--ink:#171717;--muted:#6f6558;--paper:#fff8eb;--soft:#f5e7d1;--line:#262626;--success:#227c52;--radius:0;--shadow:8px 8px 0 #171717;--heading:Arial Black,Arial,Helvetica,sans-serif}
.template-7 h1,.template-7 h2,.template-7 h3{text-transform:uppercase;letter-spacing:-.055em}.template-7 .topbar{color:#171717;background:#ff6500;font-weight:800}.template-7 .site-header{background:#fff8eb;border-bottom:3px solid #171717}.template-7 .brand img{border:2px solid #171717;border-radius:0}.template-7 .brand-text strong{color:#171717;font-family:Arial Black,Arial,sans-serif}.template-7 .primary-nav .nav-cta{color:#fff;background:#171717}.template-7 .primary-nav>a:not(.nav-cta)::after{height:5px;background:#ff6500}.template-7 .home-hero{background:repeating-linear-gradient(135deg,rgba(255,101,0,.07) 0,rgba(255,101,0,.07) 22px,transparent 22px,transparent 44px),#fff8eb}.template-7 .home-hero::before{display:none}.template-7 .hero-copy h1{color:#171717;text-transform:uppercase}.template-7 .eyebrow{color:#171717}.template-7 .eyebrow::before{width:40px;height:8px;background:#ff6500}.template-7 .button{font-family:Arial Black,Arial,sans-serif;text-transform:uppercase}.template-7 .button-primary{color:#fff;background:#171717}.template-7 .button-secondary{color:#171717;background:#ff6500}.template-7 .button-ghost{color:#171717;background:#fff;border:2px solid #171717}.template-7 .hero-visual>img{right:0;width:100%;clip-path:polygon(17% 0,100% 0,83% 100%,0 100%);filter:contrast(1.08) saturate(.9);box-shadow:none}.template-7 .hero-visual::after{display:none}.template-7 .hero-float-card{left:-5px;color:#fff;background:#171717;border-left:8px solid #ff6500;box-shadow:8px 8px 0 #ffc400}.template-7 .hero-float-card span{color:#ffc400}.template-7 .hero-shape{top:-10px;left:4px;width:90px;height:90px;border:14px solid #171717;background:#ff6500}.template-7 .trust-strip{background:#ff6500;border-block:3px solid #171717}.template-7 .trust-grid span{color:#171717;border-color:#171717;font-family:Arial Black,Arial,sans-serif}.template-7 .section-image>img{border:4px solid #171717}.template-7 .section-image::before{top:18px;left:18px;background:#ff6500}.template-7 .image-stat{color:#171717;background:#ffc400;border:3px solid #171717;box-shadow:7px 7px 0 #171717}.template-7 .service-card,.template-7 .project-card,.template-7 .service-detail-card,.template-7 .value-card,.template-7 .leader-card,.template-7 .contact-form,.template-7 .template-showcase-card{border:3px solid #171717;box-shadow:7px 7px 0 #ff6500}.template-7 .service-card:hover,.template-7 .project-card:hover{box-shadow:11px 11px 0 #171717}.template-7 .service-icon,.template-7 .leader-initials{color:#171717;background:#ff6500;border:2px solid #171717}.template-7 .process-section{background:#171717}.template-7 .page-hero{color:#171717;background:#ff6500;border-bottom:5px solid #171717}.template-7 .page-hero h1,.template-7 .page-hero p,.template-7 .page-hero .eyebrow{color:#171717}.template-7 .page-hero-mark{-webkit-text-stroke-color:rgba(0,0,0,.28)}.template-7 .project-filter{border:3px solid #171717;box-shadow:7px 7px 0 #ff6500}.template-7 .project-sidebar{background:#fff8eb;border:3px solid #171717;box-shadow:7px 7px 0 #ff6500}.template-7 .cta-band{color:#171717;background:#ff6500;border-top:4px solid #171717}.template-7 .cta-band h2{color:#171717}.template-7 .button-light{color:#fff;background:#171717}.template-7 .site-footer{background:#101113}

/* Template 8: Concrete Brutalist */
.template-8{--navy:#242424;--navy-dark:#111;--red:#e51b23;--gold:#a2a29c;--ink:#111;--muted:#51514e;--paper:#d4d4ce;--soft:#bebeb8;--line:#111;--success:#24704a;--radius:0;--shadow:9px 9px 0 #111;--heading:Arial Black,Arial,Helvetica,sans-serif;--body:Arial,Helvetica,sans-serif;--container:1240px}
.template-8 body{background:#d4d4ce}.template-8 h1,.template-8 h2,.template-8 h3{text-transform:uppercase;letter-spacing:-.06em}.template-8 .topbar{background:#111;border-bottom:2px solid #e51b23}.template-8 .site-header{background:#c4c4be;border-bottom:5px solid #111}.template-8 .nav-wrap{min-height:96px}.template-8 .brand img{filter:grayscale(1) contrast(1.2);border:3px solid #111;border-radius:0}.template-8 .brand-text strong{color:#111;font-family:Arial Black,Arial,sans-serif}.template-8 .primary-nav .nav-cta{background:#e51b23;border:3px solid #111}.template-8 .primary-nav>a:not(.nav-cta)::after{height:5px;background:#111}.template-8 .home-hero{background:linear-gradient(115deg,transparent 62%,rgba(0,0,0,.08) 62%),repeating-linear-gradient(0deg,rgba(0,0,0,.035) 0,rgba(0,0,0,.035) 1px,transparent 1px,transparent 7px),#d4d4ce;border-bottom:5px solid #111}.template-8 .home-hero::before{display:none}.template-8 .hero-copy h1{color:#111;font-size:clamp(3.1rem,7vw,6.6rem);line-height:.91}.template-8 .hero-copy>p{color:#333}.template-8 .eyebrow{padding:5px 9px;color:#fff;background:#e51b23}.template-8 .eyebrow::before{display:none}.template-8 .button{border:3px solid #111;font-family:Arial Black,Arial,sans-serif;text-transform:uppercase;box-shadow:4px 4px 0 #111}.template-8 .button-primary{background:#e51b23}.template-8 .button-secondary{background:#111}.template-8 .button-ghost{color:#111;background:#d4d4ce}.template-8 .hero-proof{border-top:4px solid #111}.template-8 .hero-proof strong{color:#111}.template-8 .hero-visual>img{right:0;width:100%;filter:grayscale(1) contrast(1.1);border:5px solid #111;box-shadow:12px 12px 0 #e51b23}.template-8 .hero-visual::after{display:none}.template-8 .hero-float-card{left:-15px;background:#111;border:4px solid #d4d4ce;box-shadow:7px 7px 0 #e51b23}.template-8 .hero-float-card span{color:#ff555b}.template-8 .hero-shape{top:-18px;left:-20px;width:90px;height:90px;border:0;background:#e51b23}.template-8 .trust-strip{background:#111;border-bottom:5px solid #e51b23}.template-8 .trust-grid span{color:#fff;border-color:#777;font-family:Arial Black,Arial,sans-serif}.template-8 .services-section,.template-8 .projects-archive,.template-8 .contact-section,.template-8 .template-showcase-section{background:#bebeb8}.template-8 .section-image>img{filter:grayscale(1);border:5px solid #111}.template-8 .section-image::before{top:15px;left:15px;background:#e51b23}.template-8 .image-stat{background:#111;border:4px solid #d4d4ce;box-shadow:7px 7px 0 #e51b23}.template-8 .service-card,.template-8 .project-card,.template-8 .value-card,.template-8 .leader-card,.template-8 .service-detail-card,.template-8 .contact-form,.template-8 .template-showcase-card{background:#d4d4ce;border:4px solid #111;box-shadow:8px 8px 0 #111}.template-8 .service-card:hover,.template-8 .project-card:hover{box-shadow:12px 12px 0 #e51b23}.template-8 .service-icon,.template-8 .leader-initials{background:#111;border-radius:0}.template-8 .project-image img{filter:grayscale(1)}.template-8 .process-section{background:#e51b23;border-block:5px solid #111}.template-8 .process-section .eyebrow{background:#111}.template-8 .page-hero{color:#111;background:#a6a6a0;border-bottom:6px solid #111}.template-8 .page-hero h1,.template-8 .page-hero p{color:#111}.template-8 .page-hero-mark{-webkit-text-stroke-color:rgba(0,0,0,.33)}.template-8 .project-filter{background:#d4d4ce;border:4px solid #111;box-shadow:8px 8px 0 #111}.template-8 .project-sidebar{background:#d4d4ce;border:4px solid #111;box-shadow:8px 8px 0 #111}.template-8 .cta-band{background:#111;border-top:6px solid #e51b23}.template-8 .site-footer{background:#080808;border-top:5px solid #e51b23}

/* Template 9: Heritage Earth */
.template-9{--navy:#315d47;--navy-dark:#19372b;--red:#b74f31;--gold:#d39a3d;--ink:#342b21;--muted:#756756;--paper:#fffaf0;--soft:#efe3cc;--line:#d8c3a0;--success:#397456;--radius:14px;--shadow:0 24px 60px rgba(72,47,26,.16);--heading:Georgia,'Times New Roman',serif;--container:1200px}
.template-9 .site-header{background:#fffaf0;border-color:#ddc9a8}.template-9 .topbar{background:#315d47}.template-9 .brand img{border-radius:50%}.template-9 .brand-text strong{color:#315d47;font-family:Georgia,serif;font-weight:500;text-transform:none}.template-9 .primary-nav .nav-cta{background:#b74f31;border-radius:30px}.template-9 .home-hero{background:radial-gradient(circle at 8% 90%,rgba(211,154,61,.35) 0 13%,transparent 13.5%),radial-gradient(circle at 86% 4%,rgba(49,93,71,.14) 0 19%,transparent 19.5%),#f4e7d1}.template-9 .home-hero::before{display:none}.template-9 .hero-copy h1{color:#19372b;font-weight:500}.template-9 .eyebrow{color:#b74f31}.template-9 .eyebrow::before{width:36px;height:2px}.template-9 .button{border-radius:30px}.template-9 .button-primary{background:#b74f31}.template-9 .button-secondary{background:#315d47}.template-9 .button-ghost{color:#315d47;background:rgba(255,250,240,.65);border-color:#315d47}.template-9 .hero-visual>img{right:0;width:100%;border-radius:260px 260px 24px 24px;box-shadow:var(--shadow)}.template-9 .hero-visual::after{inset:-18px 20px 20px -18px;border:2px solid #d39a3d;border-radius:280px 280px 24px 24px}.template-9 .hero-float-card{left:-20px;background:#b74f31;border-radius:60px 8px 60px 8px}.template-9 .hero-float-card span{color:#ffe0a2}.template-9 .hero-shape{top:10px;left:0;width:82px;height:82px;border:0;background:#d39a3d;border-radius:50%}.template-9 .trust-strip{background:#315d47}.template-9 .trust-grid span{color:#f8e8c8;border-color:rgba(255,255,255,.16)}.template-9 .section-image>img{border-radius:220px 220px 20px 20px}.template-9 .section-image::before{border-radius:240px 240px 20px 20px;background:#d39a3d}.template-9 .image-stat{background:#315d47;border-radius:55px 8px 55px 8px}.template-9 .service-card,.template-9 .service-detail-card{border-color:#d8c3a0;border-radius:90px 90px 14px 14px}.template-9 .service-icon{margin-inline:auto;background:#b74f31;border-radius:50%}.template-9 .service-card{text-align:center}.template-9 .project-card{border-radius:80px 80px 14px 14px;overflow:hidden}.template-9 .project-image{border-radius:78px 78px 0 0}.template-9 .value-card,.template-9 .leader-card,.template-9 .contact-form,.template-9 .template-showcase-card{background:#fffaf0;border-color:#d8c3a0;border-radius:24px}.template-9 .process-section{background:#19372b}.template-9 .page-hero{background:radial-gradient(circle at 85% 20%,rgba(211,154,61,.25) 0 18%,transparent 18.5%),#315d47;border-radius:0 0 35% 0}.template-9 .equipment-stat-grid{background:#315d47;border-radius:100px 20px 100px 20px;overflow:hidden}.template-9 .project-filter{background:#fffaf0;border-radius:25px}.template-9 .project-sidebar{background:#efe3cc;border-radius:28px}.template-9 .cta-band{background:#b74f31}.template-9 .site-footer{background:#19372b}.template-9 .whatsapp-float{border-radius:50%}

/* Separate navigation arrangements for templates 6-9 */
.sky-nav-shell{min-height:96px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:28px}.sky-brand{min-width:210px}.sky-brand img{width:58px;height:58px}.sky-primary-nav{justify-self:center}.sky-primary-nav>a{padding-block:36px}.sky-contact-chip{padding:9px 15px;display:flex;flex-direction:column;color:#fff;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);border-radius:14px;line-height:1.2}.sky-contact-chip span{color:#83eafa;font-size:.6rem;font-weight:800;text-transform:uppercase}.sky-contact-chip strong{margin-top:3px;font-size:.72rem}
.safety-brand-row{min-height:105px;display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:35px}.safety-brand{min-width:0}.safety-brand img{width:70px;height:70px}.safety-brand .brand-text small{display:block;margin:0 0 5px;color:#ff6500;font-family:Arial Black,Arial,sans-serif;letter-spacing:.12em;text-transform:uppercase}.safety-brand .brand-text strong{font-size:1.45rem}.safety-certifications,.safety-phone{padding-left:25px;display:flex;flex-direction:column;border-left:3px solid #171717;line-height:1.2}.safety-certifications span,.safety-phone span{color:#ff6500;font-size:.62rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.safety-certifications strong,.safety-phone strong{margin-top:5px;font-size:.78rem}.safety-nav-bar{color:#fff;background:#171717}.safety-nav-bar>.container{min-height:55px;display:flex;align-items:center;justify-content:space-between}.safety-primary-nav{gap:0}.safety-primary-nav>a{padding:19px 28px;color:#fff;border-inline-start:1px solid #444}.safety-primary-nav>a:last-child{border-inline-end:1px solid #444}.safety-primary-nav .nav-cta{margin:0;color:#171717;background:#ff6500}.safety-location{color:#ffc400;font-size:.7rem;font-family:Arial Black,Arial,sans-serif}
.brutal-marquee{height:29px;padding:4px 20px;display:flex;align-items:center;justify-content:space-around;color:#fff;background:#111;border-bottom:4px solid #e51b23;font:700 .64rem Arial,sans-serif;letter-spacing:.12em}.brutal-marquee span::before{margin-right:25px;color:#e51b23;content:'■'}.brutal-nav-grid{min-height:100px;display:grid;grid-template-columns:145px 1fr 145px;align-items:stretch}.brutal-brand{min-width:0;align-self:center}.brutal-brand img{width:62px;height:62px}.brutal-brand .brand-text strong{font-size:1.6rem}.brutal-primary-nav{align-self:stretch;justify-self:center}.brutal-primary-nav>a{padding:38px 24px;border-left:2px solid #111}.brutal-primary-nav>a:nth-last-child(2){border-right:2px solid #111}.brutal-primary-nav .nav-cta{display:none}.brutal-contact-block{padding:18px;display:flex;align-items:center;justify-content:center;color:#fff;background:#e51b23;border-inline:4px solid #111;font:900 .8rem/1.15 Arial Black,Arial,sans-serif}.brutal-header .nav-toggle{align-self:center;justify-self:end}
.heritage-utility{color:#f7e8cb;background:#315d47;font-size:.67rem}.heritage-utility>.container{min-height:31px;display:flex;align-items:center;justify-content:space-between}.heritage-brand-row{min-height:108px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:30px}.heritage-rule{height:1px;background:#d8c3a0}.heritage-brand{min-width:0;justify-content:center;text-align:center}.heritage-brand img{width:76px;height:76px}.heritage-brand .brand-text strong{font-size:1.25rem}.heritage-brand .brand-text small{display:block}.heritage-primary-nav{min-height:52px;justify-content:center;gap:40px;border-top:1px solid #d8c3a0}.heritage-primary-nav>a{padding:14px 0}.heritage-primary-nav .nav-cta{padding:8px 18px}

/* Template 6 - Skyline Glass separate homepage */
.sky-home-hero{position:relative;padding:72px 0 55px;color:#fff;background:radial-gradient(circle at 12% 18%,rgba(101,239,255,.3),transparent 26%),linear-gradient(125deg,#07152f 8%,#0757bd 58%,#02accd);overflow:hidden}.sky-home-hero::after{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);background-size:60px 60px;content:'';mask-image:linear-gradient(to bottom,black,transparent)}.sky-hero-stage{position:relative;z-index:1;display:grid;grid-template-columns:.9fr 1.1fr;align-items:center;gap:75px}.sky-hero-copy h1{color:#fff;font-size:clamp(3.4rem,6vw,6.4rem);line-height:.98}.sky-hero-copy>p{max-width:620px;color:rgba(255,255,255,.72);font-size:1.05rem}.sky-kicker{margin-bottom:25px;display:flex;align-items:center;gap:10px;color:#83efff;font-size:.68rem;font-weight:900;letter-spacing:.13em;text-transform:uppercase}.sky-kicker i{width:8px;height:8px;background:#83efff;border-radius:50%;box-shadow:0 0 20px #83efff}.sky-hero-actions{margin-top:32px;display:flex;gap:10px}.sky-hero-actions a{padding:14px 20px;border:1px solid rgba(255,255,255,.34);border-radius:30px;font-size:.78rem;font-weight:800}.sky-hero-actions a:first-child{color:#07152f;background:#65efff;border-color:#65efff}.sky-hero-actions a span{margin-left:30px}.sky-visual-deck{position:relative;min-height:570px}.sky-visual-deck figure{position:absolute;inset:20px 0 0 35px;margin:0;padding:11px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.35);border-radius:38px;backdrop-filter:blur(12px)}.sky-visual-deck figure img{width:100%;height:100%;object-fit:cover;border-radius:29px}.sky-orbit-card{position:absolute;right:-25px;bottom:40px;width:250px;padding:22px;color:#fff;background:rgba(7,21,47,.72);border:1px solid rgba(255,255,255,.3);border-radius:22px;backdrop-filter:blur(18px)}.sky-orbit-card span,.sky-orbit-card strong{display:block}.sky-orbit-card span{color:#65efff;font-size:.62rem;font-weight:800;text-transform:uppercase}.sky-orbit-card strong{margin:6px 0;font-size:1.05rem;line-height:1.3}.sky-orbit-card i{position:absolute;top:18px;right:18px;color:rgba(255,255,255,.35);font-style:normal}.sky-live-card{position:absolute;top:0;left:0;padding:10px 14px;display:flex;align-items:center;gap:8px;color:#07152f;background:#fff;border-radius:25px;font-size:.68rem;font-weight:800}.sky-live-card i{width:8px;height:8px;background:#20a77a;border-radius:50%}.sky-metric-dock{grid-column:1/-1;margin-top:5px;padding:18px 28px;display:grid;grid-template-columns:repeat(3,1fr);background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.25);border-radius:20px;backdrop-filter:blur(12px)}.sky-metric-dock div{display:flex;align-items:center;justify-content:space-between;padding-inline:25px;border-right:1px solid rgba(255,255,255,.2)}.sky-metric-dock div:last-child{border:0}.sky-metric-dock span{color:rgba(255,255,255,.62);font-size:.66rem;text-transform:uppercase}.sky-metric-dock strong{color:#fff;font-size:1.5rem}.sky-capability-section{padding:115px 0;background:#f6faff}.sky-capability-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:90px;align-items:start}.sky-section-intro{position:sticky;top:140px}.sky-section-intro>span,.sky-project-heading>span,.sky-story-grid>div>span{color:#1277ee;font-size:.68rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.sky-section-intro h2{margin-top:25px;color:#102749}.sky-section-intro p{color:#647996}.sky-section-intro>a{color:#1277ee;font-size:.78rem;font-weight:800}.sky-service-console{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.sky-service-console article{min-height:245px;padding:25px;display:grid;grid-template-columns:auto auto 1fr auto;align-items:start;gap:14px;background:#fff;border:1px solid #d6e7f8;border-radius:22px;box-shadow:0 15px 40px rgba(18,91,174,.07)}.sky-service-console article>span{color:#9ab1c9;font-size:.65rem}.sky-service-console article>i{width:38px;height:38px;display:grid;place-items:center;color:#fff;background:linear-gradient(135deg,#1277ee,#00bcdc);border-radius:12px;font-style:normal}.sky-service-console article h3{font-size:1.03rem}.sky-service-console article p{color:#647996;font-size:.76rem}.sky-service-console article>a{color:#1277ee}.sky-project-section{padding:115px 0;color:#fff;background:#07152f}.sky-project-heading{margin-bottom:42px;display:grid;grid-template-columns:auto 1fr auto;align-items:end;gap:35px}.sky-project-heading>span{color:#65efff}.sky-project-heading h2{margin:0;color:#fff}.sky-project-heading>a{color:#65efff;font-size:.75rem;font-weight:800}.sky-project-lab{display:grid;grid-template-columns:1.25fr .75fr;gap:16px}.sky-project-feature{position:relative;min-height:610px;border-radius:28px;overflow:hidden}.sky-project-feature>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.sky-project-feature::after{position:absolute;inset:0;background:linear-gradient(to top,rgba(3,13,34,.95),transparent 65%);content:''}.sky-project-feature>.status-badge{position:absolute;z-index:2;top:22px;left:22px}.sky-project-feature>div{position:absolute;z-index:2;right:35px;bottom:35px;left:35px}.sky-project-feature small{color:#65efff;text-transform:uppercase}.sky-project-feature h3{max-width:650px;margin:8px 0;color:#fff;font-size:2.1rem}.sky-project-feature p{max-width:600px;color:rgba(255,255,255,.68)}.sky-project-stack{display:grid;gap:14px}.sky-project-stack>a{padding:15px;display:grid;grid-template-columns:25px 110px 1fr auto;align-items:center;gap:14px;background:#0d264d;border:1px solid #24436b;border-radius:18px}.sky-project-stack img{width:110px;height:125px;object-fit:cover;border-radius:12px}.sky-project-stack>a>span{color:#65efff;font-size:.66rem}.sky-project-stack small{color:#65efff;font-size:.58rem;text-transform:uppercase}.sky-project-stack h3{margin:6px 0;color:#fff;font-size:.98rem}.sky-project-stack b{color:#65efff}.sky-story-section{padding:100px 0;background:#e8f3ff}.sky-story-grid{display:grid;grid-template-columns:1fr 1fr;gap:100px}.sky-story-grid h2{margin-top:18px}.sky-story-grid p{color:#526b88;font-size:1.2rem}.sky-story-grid>div>div{display:flex;gap:25px}.sky-story-grid a{color:#1277ee;font-size:.78rem;font-weight:800}.footer-cta-layout-6{margin:22px;border-radius:28px;background:linear-gradient(90deg,#1277ee,#00bcdc)}.footer-layout-6{background:#050f24}

/* Template 7 - Safety Orange separate homepage */
.safety-home-hero{background:#fff8eb;border-bottom:5px solid #171717}.safety-hero-grid{min-height:680px;display:grid;grid-template-columns:1.05fr .95fr}.safety-title-block{padding:75px 55px 55px 0;display:flex;justify-content:center;flex-direction:column}.safety-index{align-self:flex-start;padding:5px 9px;color:#fff;background:#171717;font:900 .64rem Arial Black,Arial,sans-serif}.safety-title-block>p{margin:25px 0 10px;color:#ff6500;font:900 .75rem Arial Black,Arial,sans-serif;text-transform:uppercase}.safety-title-block h1{font-size:clamp(3.7rem,7vw,7.2rem);line-height:.85}.safety-hero-buttons{margin-top:32px;display:flex;gap:12px}.safety-hero-buttons a{padding:15px 21px;color:#fff;background:#171717;border:3px solid #171717;font:900 .72rem Arial Black,Arial,sans-serif;text-transform:uppercase;box-shadow:5px 5px 0 #ff6500}.safety-hero-buttons a:last-child{color:#171717;background:#fff}.safety-image-block{position:relative;min-height:680px;border-inline:5px solid #171717}.safety-image-block>img{width:100%;height:100%;object-fit:cover;filter:contrast(1.05)}.safety-corner-label{position:absolute;top:0;right:0;padding:13px 18px;color:#171717;background:#ffc400;border-left:4px solid #171717;border-bottom:4px solid #171717;font:900 .7rem Arial Black,Arial,sans-serif;text-transform:uppercase}.safety-black-card{position:absolute;right:-4px;bottom:-4px;width:260px;padding:25px;display:flex;flex-direction:column;color:#fff;background:#171717;border:4px solid #171717}.safety-black-card strong{color:#ff6500;font-size:2.5rem}.safety-black-card span{font-size:.7rem;text-transform:uppercase}.safety-ticker{padding:10px 0;color:#171717;background:#ff6500;border-top:5px solid #171717;overflow:hidden}.safety-ticker>div{width:max-content;display:flex;align-items:center;gap:35px;animation:safetyTicker 22s linear infinite;font:900 1.1rem Arial Black,Arial,sans-serif}.safety-ticker i{font-style:normal}@keyframes safetyTicker{to{transform:translateX(-35%)}}.safety-work-section{padding:105px 0;background:#f5e7d1}.safety-heading{margin-bottom:45px;display:grid;grid-template-columns:1fr 360px;align-items:end;gap:40px}.safety-heading span,.safety-services-layout aside>span,.safety-company-copy>span{color:#ff6500;font:900 .68rem Arial Black,Arial,sans-serif;text-transform:uppercase}.safety-heading h2{margin:8px 0 0;font-size:3.8rem}.safety-heading>p{margin:0}.safety-project-ledger{border-top:4px solid #171717}.safety-project-row{min-height:175px;padding:18px 0;display:grid;grid-template-columns:55px 185px 1fr 90px;align-items:center;gap:25px;border-bottom:4px solid #171717}.safety-project-row>strong{font:900 1.5rem Arial Black,Arial,sans-serif}.safety-row-image{height:135px;overflow:hidden;clip-path:polygon(12% 0,100% 0,88% 100%,0 100%)}.safety-row-image img{width:100%;height:100%;object-fit:cover}.safety-project-row small{color:#ff6500;font-weight:900;text-transform:uppercase}.safety-project-row h3{margin:5px 0;font-size:1.45rem}.safety-project-row p{margin:0;color:#6f6558}.safety-project-row>span{font:900 .68rem Arial Black,Arial,sans-serif;text-transform:uppercase}.safety-project-row:hover{padding-inline:15px;background:#ff6500}.safety-all-projects{margin-top:25px;padding:15px 20px;display:flex;justify-content:space-between;color:#fff;background:#171717;font:900 .8rem Arial Black,Arial,sans-serif;text-transform:uppercase}.safety-services-section{padding:110px 0;background:#fff8eb}.safety-services-layout{display:grid;grid-template-columns:.7fr 1.3fr;gap:90px;align-items:start}.safety-services-layout aside{position:sticky;top:145px}.safety-services-layout aside h2{margin-top:18px;font-size:3.5rem}.safety-service-stack{border-top:4px solid #171717}.safety-service-stack article{padding:24px 0;display:grid;grid-template-columns:60px 1fr;gap:25px;border-bottom:4px solid #171717}.safety-service-stack article>span{width:55px;height:55px;display:grid;place-items:center;color:#171717;background:#ff6500;border:3px solid #171717;font-size:1.35rem}.safety-service-stack small{color:#ff6500;font-weight:900}.safety-service-stack h3{margin:4px 0;font-size:1.5rem}.safety-service-stack p{margin:0;color:#6f6558}.safety-company-band{padding:90px 0;color:#fff;background:#171717;border-block:8px solid #ff6500}.safety-company-band>.container{display:grid;grid-template-columns:180px 180px 1fr;gap:35px}.safety-company-band>div>div:not(.safety-company-copy){padding:25px;display:flex;flex-direction:column;border:3px solid #ff6500}.safety-company-band strong{color:#ffc400;font:900 2.6rem Arial Black,Arial,sans-serif}.safety-company-copy{padding-left:30px;border-left:2px solid #555}.safety-company-copy h2{margin:10px 0;color:#fff}.safety-company-copy p{color:#bbb}.safety-company-copy a{color:#ffc400;font-weight:900}.footer-cta-layout-7{color:#171717;background:#ff6500;border-top:5px solid #171717}.footer-cta-layout-7 h2{color:#171717}.footer-layout-7{border-top:5px solid #ff6500}

/* Template 8 - Concrete Brutalist separate homepage */
.brutal-home-hero{padding:65px 0 85px;background:repeating-linear-gradient(0deg,rgba(0,0,0,.035) 0,rgba(0,0,0,.035) 1px,transparent 1px,transparent 7px),#d4d4ce;border-bottom:6px solid #111}.brutal-hero-title>span{padding:5px 8px;color:#fff;background:#111;font-weight:900}.brutal-hero-title h1{margin:25px 0 45px;font-size:clamp(5rem,13.5vw,11rem);line-height:.75;letter-spacing:-.09em}.brutal-hero-collage{display:grid;grid-template-columns:1.25fr .65fr 80px;align-items:stretch}.brutal-hero-collage figure{min-height:540px;margin:0;border:5px solid #111;box-shadow:12px 12px 0 #e51b23}.brutal-hero-collage figure img{width:100%;height:calc(100% - 34px);object-fit:cover;filter:grayscale(1) contrast(1.1)}.brutal-hero-collage figcaption{height:34px;padding:7px;color:#fff;background:#111;font-weight:900;font-size:.65rem}.brutal-hero-collage article{padding:35px;display:flex;justify-content:center;flex-direction:column;background:#e51b23;border-block:5px solid #111;border-right:5px solid #111}.brutal-hero-collage article>span{font-weight:900}.brutal-hero-collage article h2{margin:40px 0 20px;font-size:2.35rem}.brutal-hero-collage article p{color:#2d1616}.brutal-hero-collage article a{margin-top:20px;padding:14px;color:#fff;background:#111;font-weight:900;text-align:center}.brutal-vertical-word{display:flex;align-items:center;justify-content:center;color:#fff;background:#111;font:900 .78rem Arial Black,Arial,sans-serif;letter-spacing:.13em;writing-mode:vertical-rl}.brutal-facts{background:#111;border-bottom:6px solid #e51b23}.brutal-facts>.container{display:grid;grid-template-columns:repeat(4,1fr)}.brutal-facts>div>div{min-height:140px;padding:22px;display:flex;flex-direction:column;color:#fff;border-left:2px solid #777}.brutal-facts>div>div:last-child{border-right:2px solid #777}.brutal-facts strong{color:#e51b23}.brutal-facts span{margin-top:auto;color:#aaa;font-size:.62rem}.brutal-facts b{font-size:1.25rem}.brutal-services-section{padding:100px 0;background:#bebeb8}.brutal-section-label{margin-bottom:35px;padding-block:10px;display:flex;justify-content:space-between;border-block:5px solid #111;font:900 1.1rem Arial Black,Arial,sans-serif}.brutal-service-list{border-top:3px solid #111}.brutal-service-list article{min-height:125px;display:grid;grid-template-columns:80px 1fr 1fr 70px;align-items:center;border-bottom:3px solid #111}.brutal-service-list article>strong{font-size:1.3rem}.brutal-service-list h2{margin:0;font-size:1.7rem}.brutal-service-list p{max-width:500px;margin:0;color:#444}.brutal-service-list i{width:58px;height:58px;display:grid;place-items:center;color:#fff;background:#111;font-style:normal;font-size:1.4rem}.brutal-service-list article:hover{padding-inline:18px;background:#e51b23}.brutal-text-button{margin-top:32px;padding:15px 20px;display:inline-flex;color:#fff;background:#111;border:3px solid #111;box-shadow:6px 6px 0 #e51b23;font-weight:900}.brutal-project-section{padding:100px 0;color:#fff;background:#111}.brutal-project-section .brutal-section-label{border-color:#777}.brutal-project-section .brutal-section-label strong{color:#e51b23}.brutal-project-wall{display:grid;grid-template-columns:1.35fr .65fr;grid-auto-rows:300px;gap:14px}.brutal-project-wall>a{position:relative;border:4px solid #d4d4ce;overflow:hidden}.brutal-project-wall>a.item-1{grid-row:span 2}.brutal-project-wall img{width:100%;height:100%;object-fit:cover;filter:grayscale(1)}.brutal-project-wall>a::after{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.94),transparent 65%);content:''}.brutal-project-wall>a>div{position:absolute;z-index:2;right:20px;bottom:18px;left:20px}.brutal-project-wall span{color:#ff5359;font-size:.62rem;font-weight:900}.brutal-project-wall h3{margin:5px 0;color:#fff;font-size:1.35rem}.brutal-project-wall .item-1 h3{font-size:2.4rem}.brutal-project-wall p{margin:0;color:#bbb}.brutal-project-wall>a:hover{box-shadow:8px 8px 0 #e51b23}.brutal-text-button.inverse{color:#111;background:#d4d4ce}.brutal-closing{padding:60px 0;background:#e51b23;border-block:6px solid #111}.brutal-closing>.container{display:flex;align-items:center;justify-content:space-between}.brutal-closing p{margin:0;font:900 clamp(1.5rem,4vw,3.5rem) Arial Black,Arial,sans-serif}.brutal-closing a{padding:14px;color:#fff;background:#111;font-weight:900}.footer-cta-layout-8{background:#111;border-top:6px solid #e51b23}.footer-layout-8{border-top:6px solid #e51b23}

/* Template 9 - Heritage Earth separate homepage */
.heritage-home-hero{padding:75px 0 100px;background:radial-gradient(circle at 7% 85%,rgba(211,154,61,.34) 0 12%,transparent 12.5%),radial-gradient(circle at 95% 8%,rgba(49,93,71,.15) 0 18%,transparent 18.5%),#f4e7d1;overflow:hidden}.heritage-hero-layout{position:relative;display:grid;grid-template-columns:1.08fr .82fr;align-items:center;gap:90px}.heritage-hero-copy h1{color:#19372b;font-size:clamp(3.5rem,6vw,6.2rem);font-weight:500}.heritage-hero-copy>p{max-width:620px;color:#756756;font-size:1.08rem}.heritage-kicker{display:block;margin-bottom:23px;color:#b74f31;font-size:.72rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.heritage-primary-button{padding:14px 23px;display:inline-flex;color:#fff;background:#b74f31;border-radius:30px;font-weight:800}.heritage-text-link{margin-left:22px;color:#315d47;font-weight:800}.heritage-hero-arch{position:relative;height:620px;margin:0;padding:13px;background:#fffaf0;border:2px solid #d39a3d;border-radius:280px 280px 25px 25px;box-shadow:0 28px 70px rgba(80,50,25,.18)}.heritage-hero-arch img{width:100%;height:100%;object-fit:cover;border-radius:268px 268px 17px 17px}.heritage-hero-arch figcaption{position:absolute;right:35px;bottom:28px;left:35px;padding:18px 22px;color:#fff;background:rgba(25,55,43,.9);border-radius:35px 8px 35px 8px}.heritage-hero-arch figcaption span,.heritage-hero-arch figcaption strong{display:block}.heritage-hero-arch figcaption span{color:#e8bd70;font-size:.65rem;text-transform:uppercase}.heritage-seal{position:absolute;right:calc(41% - 42px);bottom:45px;width:96px;height:96px;display:grid;place-items:center;color:#fff;background:#b74f31;border:5px solid #f4e7d1;border-radius:50%;text-align:center;line-height:1}.heritage-seal strong{font-family:Georgia,serif;font-size:1.4rem}.heritage-seal span{font-size:.55rem}.heritage-story{padding:110px 0;background:#fffaf0}.heritage-story-layout{display:grid;grid-template-columns:.8fr 1fr 220px;align-items:start;gap:75px}.heritage-story-layout>div>span,.heritage-centered-heading>span,.heritage-project-heading>span{color:#b74f31;font-size:.68rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.heritage-story-layout h2{margin-top:18px;color:#315d47}.heritage-story-layout p{color:#756756}.heritage-story-layout a{color:#315d47;font-weight:800}.heritage-story-stat{padding:35px 25px;display:flex;align-items:center;flex-direction:column;background:#efe3cc;border:1px solid #d8c3a0;border-radius:110px 110px 15px 15px;text-align:center}.heritage-story-stat strong{color:#b74f31;font:500 3.8rem Georgia,serif}.heritage-story-stat span{color:#756756!important;font-size:.7rem!important;letter-spacing:0!important;text-transform:none!important}.heritage-services-section{padding:110px 0;background:#efe3cc}.heritage-centered-heading{max-width:700px;margin:0 auto 60px;text-align:center}.heritage-centered-heading h2{margin-top:14px;color:#315d47}.heritage-service-garden{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}.heritage-service-garden article{min-height:330px;padding:36px 28px;display:flex;align-items:center;flex-direction:column;background:#fffaf0;border:1px solid #d8c3a0;border-radius:130px 130px 18px 18px;text-align:center}.heritage-service-garden article:nth-child(3n+2){margin-top:45px}.heritage-service-garden i{width:58px;height:58px;display:grid;place-items:center;color:#fff;background:#b74f31;border-radius:50%;font-style:normal;font-size:1.4rem}.heritage-service-garden article>span{margin-top:18px;color:#d39a3d;font-size:.65rem}.heritage-service-garden h3{margin-top:10px;color:#315d47}.heritage-service-garden p{color:#756756;font-size:.82rem}.heritage-center-action{margin-top:50px;text-align:center}.heritage-center-action a{padding:13px 23px;color:#fff;background:#315d47;border-radius:30px;font-weight:800}.heritage-projects-section{padding:110px 0;background:#fffaf0}.heritage-project-heading{margin-bottom:50px;display:grid;grid-template-columns:auto 1fr auto;align-items:end;gap:35px}.heritage-project-heading h2{max-width:720px;margin:0;color:#315d47}.heritage-project-heading a{color:#b74f31;font-weight:800}.heritage-project-arches{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}.heritage-project-arches>a>div{position:relative;height:430px;padding:9px;background:#efe3cc;border:1px solid #d8c3a0;border-radius:180px 180px 18px 18px}.heritage-project-arches img{width:100%;height:100%;object-fit:cover;border-radius:170px 170px 12px 12px}.heritage-project-arches>a>div>span{position:absolute;right:20px;bottom:18px;padding:7px 11px;color:#fff;background:#b74f31;border-radius:20px;font-size:.63rem;font-weight:800}.heritage-project-arches small{display:block;margin-top:18px;color:#b74f31;text-transform:uppercase}.heritage-project-arches h3{margin:7px 0;color:#315d47}.heritage-project-arches b{color:#756756;font-size:.74rem}.heritage-process{padding:75px 0;color:#fff;background:#315d47}.heritage-process>.container{display:grid;grid-template-columns:1fr 50px 1fr 50px 1fr 50px 1fr;align-items:center}.heritage-process>div>div{text-align:center}.heritage-process span{color:#d39a3d;font-size:.7rem}.heritage-process h3{margin:6px 0;color:#fff}.heritage-process p{margin:0;color:#c7d3cc;font-size:.75rem}.heritage-process i{height:1px;background:#789281}.footer-cta-layout-9{background:#b74f31}.footer-layout-9{background:#19372b}

.footer-layout-6 .footer-grid{grid-template-columns:1.7fr repeat(3,1fr)}.footer-layout-6 .brand-footer img{border-radius:18px}
.footer-layout-7 .footer-grid{grid-template-columns:2fr repeat(3,1fr);gap:0}.footer-layout-7 .footer-grid>div{padding:25px;border:2px solid #555}.footer-layout-7 .brand-footer img{border-radius:0}
.footer-layout-8 .footer-grid{grid-template-columns:repeat(4,1fr);gap:0}.footer-layout-8 .footer-grid>div{padding:30px;border:3px solid #777}.footer-layout-8 .brand-footer img{border-radius:0;filter:grayscale(1)}
.footer-layout-9 .footer-grid{max-width:900px;grid-template-columns:repeat(3,1fr)}.footer-layout-9 .footer-brand{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;text-align:left;border-bottom:1px solid #6c806f}.footer-layout-9 .brand-footer img{border-radius:50%}.footer-layout-9 .footer-brand p{margin:0}

@media (max-width: 1080px) {
    .primary-nav { gap: 17px; }.brand { min-width: 210px; }.brand-text small { display: none; }
    .hero-grid { gap: 42px; }.projects-grid { grid-template-columns: repeat(2, 1fr); }.services-grid,.services-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }.project-content-grid { gap: 50px; }.contact-grid { gap: 45px; }.profile-photo-grid{grid-template-columns:repeat(3,1fr)}
    .sky-contact-chip{display:none}.sky-nav-shell{grid-template-columns:auto 1fr}.sky-primary-nav{justify-self:end}.sky-primary-nav>a{padding-inline:0}.safety-certifications{display:none}.safety-brand-row{grid-template-columns:1fr auto}.safety-phone{display:flex}.safety-primary-nav>a{padding-inline:18px}.safety-location{display:none}.brutal-nav-grid{grid-template-columns:120px 1fr}.brutal-contact-block{display:none}.brutal-primary-nav>a{padding-inline:15px}.heritage-primary-nav{gap:25px}
    .sky-hero-stage{gap:40px}.sky-visual-deck{min-height:510px}.sky-capability-layout{gap:50px}.safety-title-block h1{font-size:5.5rem}.safety-services-layout{gap:50px}.heritage-hero-layout{gap:50px}.heritage-story-layout{grid-template-columns:.8fr 1fr}.heritage-story-stat{grid-column:1/-1;max-width:240px;justify-self:center}.heritage-project-arches>a>div{height:370px}
}

@media (max-width: 860px) {
    .topbar { display: none; }.nav-wrap { min-height: 78px; }.brand img { width: 54px; height: 54px; }.brand-text strong { font-size: .95rem; }
    .nav-toggle { display: flex; }.primary-nav { position: fixed; z-index: 998; top: 78px; right: 0; bottom: 0; width: min(86vw, 390px); padding: 25px; display: flex; align-items: stretch; flex-direction: column; gap: 0; color: var(--ink); background: var(--paper); box-shadow: -20px 30px 50px rgba(0,0,0,.18); transform: translateX(105%); transition: transform .28s ease; }
    .nav-open .primary-nav { transform: none; }.primary-nav > a { padding: 15px 4px; border-bottom: 1px solid var(--line); }.primary-nav > a:not(.nav-cta)::after { display: none; }.primary-nav .nav-cta { margin-top: 20px; color: #fff; text-align: center; }
    .template-2 .primary-nav,.template-5 .primary-nav{color:#fff;background:var(--paper)}.template-5 .primary-nav .nav-cta{color:#0b1e31}.template-6 .primary-nav{color:#102749;background:#f6faff}.template-6 .primary-nav .nav-cta{color:#07152f;background:#65efff}
    .hero-grid,.template-3 .hero-grid { min-height: 0; padding-top: 70px; grid-template-columns: 1fr; gap: 55px; }.hero-visual { min-height: 520px; }.hero-visual > img { right: 0; width: 100%; }.hero-float-card { left: 20px; }.trust-grid { grid-template-columns: repeat(3,1fr); padding: 18px 0; }.trust-grid span:nth-child(3) { border-right: 0; }
    .split-grid,.split-grid-reverse,.prose-grid,.capability-grid,.contact-grid { grid-template-columns: 1fr; gap: 55px; }.section-image { max-width: 650px; }.contact-details,.prose-aside h2 { position: static; }.values-grid { grid-template-columns: 1fr; }.value-card { min-height: 0; }.value-card h2 { margin-top: 35px; }
    .process-grid { grid-template-columns: repeat(2,1fr); }.process-grid article:nth-child(2) { border-right: 0; }
    .page-hero-grid { min-height: 340px; }.page-hero-mark { display: none; }.facts-grid { grid-template-columns: repeat(2,1fr); }.project-content-grid { grid-template-columns: 1fr; }.project-sidebar { position: static; }.project-filter { grid-template-columns: repeat(2,1fr); }.project-filter .button { align-self: end; }.contact-form { padding: 35px; }.profile-photo-grid{grid-template-columns:repeat(2,1fr)}.photo-library-toolbar{align-items:flex-start;flex-direction:column}
    .template-showcase-grid { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: repeat(2,1fr); }.footer-layout-6 .footer-grid,.footer-layout-7 .footer-grid,.footer-layout-8 .footer-grid,.footer-layout-9 .footer-grid{grid-template-columns:repeat(2,1fr)}.template-4 .home-hero,.template-4 .page-hero,.template-4 .project-detail-hero,.template-4 .cta-band,.template-4 .process-section{margin-inline:8px}
    .sky-nav-shell,.safety-brand-row,.brutal-nav-grid,.heritage-brand-row{min-height:78px;display:flex;justify-content:space-between}.sky-brand,.safety-brand,.brutal-brand,.heritage-brand{min-width:0}.sky-brand img,.safety-brand img,.brutal-brand img,.heritage-brand img{width:54px;height:54px}.sky-contact-chip,.safety-certifications,.safety-phone,.brutal-contact-block,.heritage-rule,.heritage-utility{display:none}.safety-nav-bar{height:0}.safety-nav-bar>.container{min-height:0}.safety-location{display:none}.brutal-marquee{display:none}.heritage-primary-nav{min-height:0;border:0}.sky-primary-nav,.safety-primary-nav,.brutal-primary-nav,.heritage-primary-nav{justify-self:auto}.brutal-primary-nav>a{border:0}.brutal-primary-nav .nav-cta{display:block}.safety-primary-nav>a{border:0}.heritage-primary-nav .nav-cta{padding:15px 4px}
    .sky-hero-stage,.sky-capability-layout,.sky-project-lab,.sky-story-grid{grid-template-columns:1fr}.sky-home-hero{padding-top:60px}.sky-visual-deck{min-height:520px}.sky-metric-dock{grid-column:auto}.sky-section-intro{position:static}.sky-project-feature{min-height:520px}.safety-hero-grid,.safety-heading,.safety-services-layout{grid-template-columns:1fr}.safety-title-block{padding:65px 0}.safety-image-block{min-height:520px;border:4px solid #171717}.safety-services-layout aside{position:static}.safety-company-band>.container{grid-template-columns:1fr 1fr}.safety-company-copy{grid-column:1/-1;padding:30px 0 0;border-left:0;border-top:2px solid #555}.brutal-hero-collage{grid-template-columns:1fr}.brutal-hero-collage article{border:5px solid #111;border-top:0}.brutal-vertical-word{display:none}.brutal-facts>.container{grid-template-columns:repeat(2,1fr)}.brutal-service-list article{grid-template-columns:60px 1fr 70px}.brutal-service-list p{grid-column:2/3;margin-top:8px}.brutal-service-list i{grid-column:3;grid-row:1/3}.brutal-project-wall{grid-template-columns:1fr 1fr}.heritage-hero-layout,.heritage-story-layout{grid-template-columns:1fr}.heritage-hero-copy{text-align:center}.heritage-hero-arch{max-width:570px;width:100%;justify-self:center}.heritage-seal{right:auto;bottom:570px;left:calc(50% - 48px)}.heritage-story-stat{grid-column:auto}.heritage-service-garden{grid-template-columns:repeat(2,1fr)}.heritage-service-garden article:nth-child(3n+2){margin-top:0}.heritage-project-heading{grid-template-columns:1fr}.heritage-project-arches{grid-template-columns:repeat(2,1fr)}.heritage-process>.container{grid-template-columns:repeat(2,1fr);gap:35px}.heritage-process i{display:none}
}

@media (max-width: 600px) {
    .container { width: min(100% - 28px, var(--container)); }.section { padding: 72px 0; } h1 { font-size: 2.65rem; } h2 { font-size: 2.1rem; }
    .brand { min-width: 0; }.brand-text strong { max-width: 145px; font-size: .84rem; }.nav-wrap { gap: 10px; }.primary-nav { top: 78px; }
    .hero-grid { padding-top: 55px; padding-bottom: 55px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-proof { grid-template-columns: 1fr; }.hero-proof div { padding: 8px 0; }.hero-visual { min-height: 390px; }.hero-float-card { right: 14px; bottom: 15px; left: 14px; width: auto; }.hero-shape { display: none; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }.trust-grid span:nth-child(3) { border-right: 1px solid rgba(255,255,255,.13); }.trust-grid span:nth-child(even) { border-right: 0; }
    .section-image > img { min-height: 440px; }.image-stat { right: 10px; bottom: 10px; }.section-heading { align-items: start; flex-direction: column; gap: 18px; }.services-grid,.services-detail-grid,.projects-grid,.leadership-grid { grid-template-columns: 1fr; }.project-image { height: 250px; }.process-grid { grid-template-columns: 1fr; }.process-grid article { border-right: 0; }
    .page-hero-grid { min-height: 310px; padding-top: 55px; padding-bottom: 55px; }.page-hero h1 { font-size: 2.7rem; }.equipment-stat-grid { grid-template-columns: 1fr; }.leader-card { align-items: flex-start; }.leader-initials { flex-basis: 70px; height: 70px; }.facts-grid { grid-template-columns: 1fr; }.facts-grid > div,.facts-grid > div:first-child { min-height: 100px; border-left:0;border-right:0;border-bottom:1px solid rgba(255,255,255,.13)}
    .project-detail-hero { min-height: 540px; }.project-filter { grid-template-columns: 1fr; }.status-tabs { gap: 20px; }.project-gallery { display:flex;grid-template-columns:none;overflow-x:auto;scroll-snap-type:x mandatory; }.gallery-item { min-width:86vw;height:260px;scroll-snap-align:center; }.lightbox { padding: 70px 12px 55px; }.lightbox-nav { top:auto; bottom:14px; width:48px; height:48px; transform:none; }.lightbox-prev { left:calc(50% - 57px); }.lightbox-next { right:calc(50% - 57px); }.lightbox-counter { bottom:29px; left:18px; }.lightbox-close { top:12px; right:12px; }.profile-archive-grid { display:flex;grid-template-columns:none;overflow-x:auto;scroll-snap-type:x mandatory; }.profile-archive-item,.profile-archive-wide,.profile-archive-tall,.profile-archive-logo { min-width:86vw;height:320px;grid-column:auto;grid-row:auto;scroll-snap-align:center; }.profile-photo-grid{grid-template-columns:1fr;grid-auto-rows:300px}.profile-photo-lead{grid-column:auto;grid-row:auto}.profile-photo-lead strong{font-size:1rem}.photo-category-tabs{flex-wrap:nowrap;width:100%;padding-bottom:5px;overflow-x:auto}.photo-category-tabs button{flex:0 0 auto}
    .form-grid { grid-template-columns: 1fr; }.contact-form { padding: 25px 18px; }.template-mini-browser { height: 255px; padding: 8px; }.mini-hero { height: 145px; padding: 16px; }.template-admin-note { align-items: flex-start; flex-direction: column; }.template-admin-note a { margin-left: 0; }
    .cta-band-inner { padding: 50px 0; align-items: flex-start; flex-direction: column; }.footer-grid,.footer-layout-6 .footer-grid,.footer-layout-7 .footer-grid,.footer-layout-8 .footer-grid,.footer-layout-9 .footer-grid { grid-template-columns: 1fr; }.footer-layout-9 .footer-brand{grid-column:auto;align-items:flex-start;flex-direction:column}.footer-bottom { align-items: flex-start; flex-direction: column; }.whatsapp-float { right: 14px; bottom: 14px; }.preview-bar a { display: block; margin: 2px 0 0; }
    .sky-hero-copy h1{font-size:3.1rem}.sky-hero-actions{flex-direction:column}.sky-hero-actions a{text-align:center}.sky-visual-deck{min-height:390px}.sky-visual-deck figure{inset:15px 0 0}.sky-orbit-card{right:8px;bottom:12px;width:220px}.sky-metric-dock{grid-template-columns:1fr;padding:10px 20px}.sky-metric-dock div{padding:12px 0;border-right:0;border-bottom:1px solid rgba(255,255,255,.2)}.sky-service-console{grid-template-columns:1fr}.sky-project-heading{grid-template-columns:1fr}.sky-project-feature{min-height:470px}.sky-project-feature>div{right:22px;bottom:22px;left:22px}.sky-project-feature h3{font-size:1.45rem}.sky-project-stack>a{grid-template-columns:25px 85px 1fr}.sky-project-stack img{width:85px;height:95px}.sky-project-stack b{display:none}.sky-story-grid{gap:35px}.footer-cta-layout-6{margin:8px}
    .safety-title-block h1{font-size:3.65rem}.safety-hero-buttons{align-items:stretch;flex-direction:column}.safety-hero-buttons a{text-align:center}.safety-image-block{min-height:420px}.safety-project-row{grid-template-columns:38px 95px 1fr;gap:12px}.safety-row-image{height:95px}.safety-project-row>span{display:none}.safety-project-row h3{font-size:1rem}.safety-project-row p{font-size:.7rem}.safety-heading h2,.safety-services-layout aside h2{font-size:2.6rem}.safety-company-band>.container{grid-template-columns:1fr}.safety-company-copy{grid-column:auto}.safety-ticker>div{font-size:.85rem}
    .brutal-hero-title h1{font-size:4.5rem}.brutal-hero-collage figure{min-height:380px}.brutal-hero-collage article{padding:25px}.brutal-hero-collage article h2{font-size:1.8rem}.brutal-facts>.container{grid-template-columns:1fr}.brutal-service-list article{padding:18px 0;grid-template-columns:45px 1fr}.brutal-service-list h2{font-size:1.2rem}.brutal-service-list p{grid-column:2}.brutal-service-list i{display:none}.brutal-project-wall{grid-template-columns:1fr;grid-auto-rows:300px}.brutal-project-wall>a.item-1{grid-row:span 1}.brutal-project-wall .item-1 h3{font-size:1.5rem}.brutal-closing>.container{align-items:flex-start;flex-direction:column;gap:25px}
    .heritage-hero-copy h1{font-size:3rem}.heritage-primary-button,.heritage-text-link{display:flex;justify-content:center;margin:10px 0}.heritage-hero-arch{height:480px}.heritage-seal{bottom:430px}.heritage-story-layout{gap:35px}.heritage-service-garden,.heritage-project-arches{grid-template-columns:1fr}.heritage-service-garden article{min-height:300px}.heritage-project-arches>a>div{height:400px}.heritage-process>.container{grid-template-columns:1fr}.heritage-project-heading{gap:14px}
}

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