:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --navy: #0c2340;
  --navy-2: #12365f;
  --gold: #c9912e;
  --gold-dark: #9f6f1d;
  --green: #118a54;
  --shadow: 0 18px 48px rgba(15, 35, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 227, 234, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 318px;
}

.brand img {
  width: 300px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  border: 0;
  border-radius: 4px;
  background: transparent;
  padding: 0;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 2px;
}

.brand > span {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #263244;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  padding: 26px 0 24px;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 0;
  line-height: 1;
}

.menu-toggle::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 25, 45, 0.88) 0%, rgba(8, 25, 45, 0.68) 42%, rgba(8, 25, 45, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 25, 45, 0.16), rgba(8, 25, 45, 0.35));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 78px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f2c36f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

h4 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.lead {
  color: #d9e2ee;
  font-size: 20px;
  line-height: 1.6;
  max-width: 660px;
}

.section-lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #111827;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(201, 145, 46, 0.28);
}

.btn-primary:hover {
  background: #d6a143;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -66px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.stat {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.proof-band {
  padding-top: 108px;
}

.section-dark {
  color: #dbe7f4;
  background: var(--navy);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark .section-lead,
.section-dark p {
  color: #c7d5e7;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 58px;
  align-items: center;
}

.split-top {
  align-items: start;
}

.image-frame {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.image-frame.tall img {
  height: 560px;
}

.kicker-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.kicker-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
}

.kicker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.proof-card,
.credential-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 35, 64, 0.07);
}

.proof-card span,
.credential-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: #f3e6cf;
  font-size: 13px;
  font-weight: 850;
}

.proof-card h3,
.credential-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.proof-card p,
.credential-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.08);
}

.case-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.case-card-body {
  padding: 26px;
}

.case-card h3 {
  margin: 14px 0 18px;
}

.case-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.case-details p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.case-details strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.testimonial-card {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 35, 64, 0.07);
}

.testimonial-card h3 {
  position: relative;
  margin-bottom: 16px;
  font-size: 22px;
}

.testimonial-card h3::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.testimonial-card p {
  color: var(--muted);
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
  color: var(--navy);
  font-size: 14px;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0 0 22px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.55;
}

.testimonial-card blockquote::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.testimonial-card figcaption {
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.credential-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(15, 35, 64, 0.07);
}

.card-body {
  padding: 26px;
}

.service-card {
  min-height: 248px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--navy);
  background: #f3e6cf;
  font-weight: 850;
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef3f8;
  font-size: 12px;
  font-weight: 800;
}

.pill.gold {
  color: #583a06;
  background: #f5dfb9;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.process-step {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.process-step span {
  display: block;
  margin-bottom: 16px;
  color: #f2c36f;
  font-size: 13px;
  font-weight: 850;
}

.cta {
  padding: 58px;
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(12, 35, 64, 0.96), rgba(18, 54, 95, 0.94)),
    url("generated-hero-streetscape.jpg") center / cover;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 720px;
  color: #dbe7f4;
}

.page-hero {
  padding: 78px 0 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.96), rgba(12, 35, 64, 0.72)),
    url("generated-hero-streetscape.jpg") center / cover;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p {
  max-width: 720px;
  color: #dbe7f4;
  font-size: 19px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: #f2c36f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 750;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(201, 145, 46, 0.2);
  border-color: var(--gold);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.map-frame {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.image-button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(6, 17, 31, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  cursor: pointer;
}

.article {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: start;
}

.article img {
  width: 100%;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer {
  color: #c8d2de;
  background: #081827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 58px 0;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer p,
.site-footer li {
  color: #c8d2de;
  font-size: 14px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9fb0c2;
  font-size: 13px;
}

.hidden {
  display: none !important;
}

.sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  min-width: 172px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(17, 138, 84, 0.35);
}

.sticky-whatsapp span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.9;
}

.sticky-whatsapp strong {
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.1;
}

.sticky-whatsapp:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 30px rgba(15, 35, 64, 0.12);
  }

  .site-header.is-open .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #eef2f6;
  }

  .hero {
    min-height: 620px;
  }

  .stats-grid,
  .card-grid,
  .card-grid.two,
  .case-grid,
  .testimonial-grid,
  .proof-grid,
  .credential-grid,
  .process,
  .footer-grid,
  .contact-grid,
  .section-heading-row,
  .split {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(255px, 62vw);
    max-height: 64px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand span {
    font-size: 11px;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 25, 45, 0.88), rgba(8, 25, 45, 0.7)),
      linear-gradient(90deg, rgba(8, 25, 45, 0.3), rgba(8, 25, 45, 0.3));
  }

  .hero-content {
    padding: 58px 0 92px;
  }

  .lead,
  .section-lead,
  .page-hero p {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .stats-strip {
    margin-top: -46px;
  }

  .image-frame img,
  .image-frame.tall img,
  .project-card img {
    height: 290px;
  }

  .cta {
    padding: 34px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .proof-band {
    padding-top: 82px;
  }

  .proof-card,
  .credential-card,
  .testimonial-card,
  .case-card-body {
    padding: 22px;
  }

  .sticky-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 150px;
    padding: 12px 16px;
  }
}
