:root {
  --text: #161a1f;
  --muted: #626a73;
  --line: #e2e6ea;
  --surface: #f5f7f9;
  --surface-strong: #eef3f6;
  --dark: #111820;
  --dark-soft: #182331;
  --accent: #f07818;
  --accent-dark: #c85f0d;
  --accent-blue: #1687c7;
  --accent-blue-dark: #0c5d8d;
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(15, 25, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

body.has-lightbox {
  overflow: hidden;
}

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

main,
section,
header,
footer {
  min-width: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(22, 135, 199, 0.42);
  outline-offset: 3px;
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  position: absolute;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  width: 100%;
  max-width: 100vw;
}

.brand img {
  width: 204px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-blue-dark);
  border-color: var(--accent);
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  background: var(--accent-blue);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background:
    linear-gradient(var(--text), var(--text)) center 13px / 20px 2px no-repeat,
    linear-gradient(var(--text), var(--text)) center 21px / 20px 2px no-repeat,
    linear-gradient(var(--text), var(--text)) center 29px / 20px 2px no-repeat,
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: none;
}

.menu-toggle[aria-expanded="true"] {
  background:
    linear-gradient(45deg, transparent 45%, var(--text) 46%, var(--text) 54%, transparent 55%) center / 24px 24px no-repeat,
    linear-gradient(-45deg, transparent 45%, var(--text) 46%, var(--text) 54%, transparent 55%) center / 24px 24px no-repeat,
    #fff;
  border-color: rgba(22, 135, 199, 0.42);
}

.hero {
  position: relative;
  min-height: min(710px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero > img,
.hero > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.78), rgba(5, 12, 20, 0.42) 52%, rgba(5, 12, 20, 0.10)),
    linear-gradient(0deg, rgba(5, 12, 20, 0.22), rgba(5, 12, 20, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.02;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  font-weight: 900;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.trust-strip {
  width: min(var(--max), calc(100vw - 36px));
  margin: -52px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 114px;
  padding: 24px;
  background: #fff;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 120px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.framed-media {
  position: relative;
}

.framed-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--surface-strong);
  z-index: -1;
}

.section-media img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-heading h2,
.contact h2,
.area h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.section-copy p,
.section-heading p,
.area p,
.contact-info p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.text-link {
  color: var(--accent-blue-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.services,
.why,
.projects,
.contact {
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid .service-card,
.why-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid #ebeff2;
  border-radius: var(--radius);
}

.service-grid .service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-grid .service-card:hover,
.service-grid .service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(22, 135, 199, 0.34);
  box-shadow: 0 12px 34px rgba(15, 25, 34, 0.10);
}

.service-number {
  color: var(--accent-blue);
  font-weight: 900;
}

.service-grid h3,
.why-grid h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.service-grid p,
.why-grid p {
  margin: 0;
  color: var(--muted);
}

.why {
  background: linear-gradient(#fff, #fff) padding-box;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-grid article {
  background: var(--dark);
  color: #fff;
  border-color: transparent;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.project-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.project-preview picture,
.project-preview img {
  width: 100%;
  height: 360px;
}

.project-preview img {
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface);
}

.project-preview picture:first-child,
.project-preview picture:first-child img {
  height: 430px;
}

.area {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-block: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area p {
  margin: 0;
}

.area-content {
  display: grid;
  gap: 22px;
}

.area-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-locations li {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 11px;
  color: var(--accent-blue-dark);
  font-weight: 900;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area-note {
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 6vw, 72px);
}

address {
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

address a {
  color: var(--accent-blue-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid #ebeff2;
  border-radius: var(--radius);
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  border: 1px solid #cfd6dc;
  border-radius: var(--radius);
  background: #fff;
}

textarea {
  resize: vertical;
}

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

.form-note {
  color: var(--accent-blue-dark);
  font-weight: 900;
}

.page-hero {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: 96px 0 48px;
}

.service-hero {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 132px) 0 clamp(54px, 8vw, 82px);
}

.service-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.service-hero .service-button-secondary {
  color: var(--accent-blue-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.service-detail h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
}

.service-detail aside {
  align-self: start;
  padding: 28px;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
}

.service-detail aside h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.service-detail aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-process,
.service-faq {
  border-top: 1px solid var(--line);
}

.service-process h2,
.service-faq h2 {
  max-width: 780px;
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 180px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid #ebeff2;
  border-radius: var(--radius);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 22px;
  color: var(--accent-blue);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.process-list span {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-text-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 10px;
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.service-text-link:hover,
.service-text-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 54px;
  border-top: 1px solid var(--line);
}

.service-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.page-hero p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.gallery-grid {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: 0 0 100px;
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  break-inside: avoid;
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(5, 12, 20, 0.86);
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox img {
  max-height: min(78vh, 900px);
  width: auto;
  max-width: min(92vw, 1160px);
  object-fit: contain;
  background: #fff;
}

.lightbox p {
  max-width: min(92vw, 980px);
  margin: 16px 0 0;
  color: #fff;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  width: 52px;
  height: 64px;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.legal-page {
  width: min(900px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 84px 0 96px;
}

.legal-page h1,
.not-found h1 {
  margin: 0 0 34px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-page h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-page p {
  color: var(--muted);
}

.not-found {
  width: min(760px, calc(100vw - 36px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
}

.not-found img {
  width: 220px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--dark);
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer p {
  margin: 0;
}

.site-version {
  justify-self: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.site-footer > p:last-child {
  justify-self: end;
}

.mobile-call {
  display: none;
}

body.has-lightbox .mobile-call {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    padding-inline: 18px;
  }

  .brand img {
    width: 172px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    justify-self: end;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 6px;
    margin: 0 -18px -12px;
    padding: 12px 18px 8px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(15, 25, 34, 0.08);
  }

  .site-nav.is-open a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible {
    background: var(--surface);
  }

  .trust-strip,
  .intro,
  .contact,
  .area {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    width: 100%;
    box-shadow: none;
  }

  .trust-strip div {
    min-height: auto;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-preview {
    grid-template-columns: 1fr;
  }

  .project-preview img,
  .project-preview picture,
  .project-preview picture:first-child,
  .project-preview picture:first-child img {
    height: 320px;
  }

  .service-detail,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-bottom: 84px;
  }

  .site-version,
  .site-footer > p:last-child {
    justify-self: start;
  }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 16px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    color: #fff;
    font-weight: 900;
    background: var(--accent);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(200, 95, 13, 0.34);
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 78px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1,
  .service-hero h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: break-word;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .split-heading,
  .site-footer nav {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .page-hero p:last-child,
  .service-hero p:not(.eyebrow),
  .section-heading p,
  .section-copy p,
  .area p,
  .contact-info p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-grid,
  .why-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .framed-media::before {
    display: none;
  }

  .gallery-grid {
    columns: 1;
  }

  .contact-form {
    padding: 20px;
  }

  .lightbox {
    padding-inline: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 48px;
    height: 48px;
    font-size: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }
}
