:root {
  --navy: #114e74;
  --navy-2: #1c5c84;
  --orange: #ef7d11;
  --steel: #7f9eb0;
  --sand: #e7b27a;
  --ink: #1f2933;
  --muted: #5e6b75;
  --bg: #f5f1ea;
  --panel: #fbfaf7;
  --line: #d5c8b8;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(17, 78, 116, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  color: var(--orange);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.h1, h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.02; margin: 0 0 1rem; }
.h2, h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); line-height: 1.08; margin: 0 0 .9rem; }
.h3, h3 { font-size: 1.25rem; margin: 0 0 .65rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.lead { font-size: 1.1rem; max-width: 64ch; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid rgba(17, 78, 116, 0.18); }
.badge-row, .pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 .9rem;
  border-radius: 999px; background: var(--navy); color: var(--white); font-size: .88rem; font-weight: 700;
}
.pill.alt { background: var(--orange); }
.topbar {
  background: var(--navy); color: var(--white); font-size: .95rem;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: .7rem 0; flex-wrap: wrap; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 250, 247, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(213, 200, 184, 0.7);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; }
.brand img { width: 170px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-weight: 700; color: var(--ink); }
.nav-links a.active, .nav-links a:hover { color: var(--navy); }
.mobile-toggle { display: none; border: 0; background: transparent; font-size: 1.35rem; color: var(--navy); }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(239, 125, 17, .15), transparent 24%),
    linear-gradient(135deg, rgba(17, 78, 116, .97), rgba(28, 92, 132, .96));
  color: var(--white);
}
.hero .container {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding-top: 92px; padding-bottom: 92px;
}
.hero p { color: rgba(255,255,255,.84); }
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr));
}
.metric {
  border-radius: 18px; background: rgba(255,255,255,.08); padding: 20px; min-height: 120px;
}
.metric strong { display: block; font-size: 1.7rem; line-height: 1; margin-bottom: .45rem; }
.alt-hero {
  background:
    linear-gradient(135deg, rgba(17, 78, 116, 0.06), rgba(239, 125, 17, 0.08)),
    var(--bg);
  border-bottom: 1px solid rgba(213,200,184,.7);
}
.alt-hero .container { padding: 84px 0 62px; }
.grid-2 { display: grid; gap: 28px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card.soft { box-shadow: none; }
.icon-box {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(17, 78, 116, 0.08); color: var(--navy); font-size: 1.45rem; margin-bottom: 1rem;
}
.accent-panel {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-radius: 24px;
  padding: 36px;
}
.accent-panel p { color: rgba(255,255,255,.84); }
.check-list { display: grid; gap: 10px; padding: 0; list-style: none; margin: 1rem 0 0; }
.check-list li { position: relative; padding-left: 24px; color: var(--muted); }
.check-list li::before { content: "•"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.process-step {
  position: relative; padding-top: 14px;
}
.process-step::before {
  content: attr(data-step);
  position: absolute; top: -10px; left: 0;
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--orange); color: var(--white); font-weight: 700;
}
.process-step .card { padding-top: 48px; }
.showcase {
  aspect-ratio: 1.2 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17,78,116,.95), rgba(28,92,132,.92));
  position: relative;
  box-shadow: var(--shadow);
}
.showcase.orange { background: linear-gradient(135deg, rgba(239,125,17,.9), rgba(17,78,116,.95)); }
.showcase .mock {
  position: absolute; inset: auto 18px 18px 18px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18); border-radius: 20px; padding: 18px;
}
.showcase .tag { position: absolute; top: 18px; left: 18px; }
.project-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.project-card .visual {
  height: 220px; border-radius: 18px; margin-bottom: 18px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, rgba(17,78,116,.96), rgba(127,158,176,.9));
}
.project-card .visual::after {
  content: ""; position: absolute; inset: auto 16px 16px 16px; height: 56px;
  border-radius: 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
}
.kpi {
  display: grid; gap: 6px;
}
.kpi strong { font-size: 2rem; color: var(--navy); }
.quote {
  border-left: 4px solid var(--orange); padding-left: 18px; font-size: 1.05rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 8px; }
label { font-weight: 700; color: var(--ink); }
input, textarea, select {
  width: 100%; border: 1px solid rgba(17,78,116,.15); border-radius: 14px; background: var(--white);
  padding: 14px 16px; font: inherit; color: var(--ink);
}
textarea { min-height: 160px; resize: vertical; }
.footer {
  background: var(--navy); color: var(--white); margin-top: 40px;
}
.footer .container { padding: 54px 0 26px; }
.footer-grid { display: grid; gap: 24px; grid-template-columns: 1.2fr .8fr .8fr; }
.footer p, .footer a { color: rgba(255,255,255,.82); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 18px; font-size: .94rem;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.logo-badge {
  background: rgba(255,255,255,.08); border-radius: 18px; padding: 14px; width: 200px;
}
.small-note { font-size: .92rem; }
.map-box {
  min-height: 100%; background: linear-gradient(135deg, rgba(17,78,116,.08), rgba(239,125,17,.1));
  border: 1px dashed rgba(17,78,116,.18); border-radius: var(--radius); padding: 24px;
}
@media (max-width: 980px) {
  .hero .container, .grid-2, .grid-3, .grid-4, .project-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--panel);
    border-bottom: 1px solid rgba(213, 200, 184, .7); padding: 18px 1rem 24px; flex-direction: column; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .brand img { width: 150px; }
}

/* Real-image page system */
.hero.hero-image {
  background:
    linear-gradient(90deg, rgba(10,54,86,.88) 0%, rgba(10,54,86,.78) 38%, rgba(10,54,86,.22) 100%),
    url('../img/hero-construction-team.jpg') center/cover no-repeat;
}
.alt-hero.alt-hero-image {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10,54,86,.88) 0%, rgba(10,54,86,.78) 38%, rgba(10,54,86,.22) 100%),
    url('../img/about-hero-team.jpg') center/cover no-repeat;
}
.alt-hero.alt-hero-image .lead,
.alt-hero.alt-hero-image h1,
.alt-hero.alt-hero-image .eyebrow { color: var(--white); }
.alt-hero.alt-hero-image .container { padding: 96px 0 76px; }
.section-dark {
  background: linear-gradient(135deg, #0b4d78 0%, #093a60 100%);
  color: var(--white);
}
.section-dark p, .section-dark h2, .section-dark h3, .section-dark li, .section-dark .lead { color: var(--white); }
.photo-frame,
.image-panel,
.project-photo-card,
.service-photo-card,
.brand-photo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img,
.image-panel img,
.project-photo-card img,
.service-photo-card img,
.brand-photo-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.photo-frame img { aspect-ratio: 16/10; }
.service-photo-card img { aspect-ratio: 4/3; }
.service-photo-card .content,
.project-photo-card .content,
.brand-photo-card .content,
.image-panel .content { padding: 18px 18px 20px; }
.project-gallery {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 1.4rem;
}
.project-photo-card .meta {
  color: var(--muted);
  font-size: .95rem;
}
.brand-photo-card.dark {
  background: linear-gradient(135deg, rgba(17,78,116,.96), rgba(28,92,132,.94));
  border-color: rgba(255,255,255,.08);
}
.brand-photo-card.orange {
  background: linear-gradient(135deg, rgba(239,125,17,.96), rgba(200,98,8,.96));
  border-color: rgba(255,255,255,.08);
}
.brand-photo-card.dark .content h3,
.brand-photo-card.dark .content p,
.brand-photo-card.orange .content h3,
.brand-photo-card.orange .content p {
  color: var(--white);
}
.brand-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.12);
}
.brand-overlay .logo-badge {
  background: rgba(255,255,255,.96);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  width: auto;
}
.brand-overlay .logo-badge img {
  width: 170px;
  max-width: none;
}
.contact-photo {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.contact-photo .overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  background: rgba(10,54,86,.86);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
}
.contact-photo .overlay p { color: rgba(255,255,255,.88); }
.image-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.image-checks li { position: relative; padding-left: 22px; color: rgba(255,255,255,.88); }
.image-checks li::before { content: "•"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
@media (max-width: 980px) {
  .project-gallery { grid-template-columns: 1fr; }
}
