:root {
  --ink: #111416;
  --steel: #2f3a42;
  --muted: #65717a;
  --line: #d9dedf;
  --paper: #f6f3ec;
  --white: #ffffff;
  --signal: #f4bd21;
  --signal-dark: #c88d08;
  --blue: #1c6d8c;
  --green: #315b46;
  --shadow: 0 24px 80px rgba(17, 20, 22, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f7f4ee 0%, #edf1f2 44%, #f6f3ec 100%);
  color: var(--ink);
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 243, 236, 0.93);
  border-bottom: 1px solid rgba(17, 20, 22, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: var(--ink);
}

.brand svg path {
  fill: var(--signal);
}

.brand span {
  display: grid;
  line-height: 1;
}

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

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 900;
}

.header-call {
  padding: 0 16px;
  background: linear-gradient(135deg, #111416, #26343b);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(17, 20, 22, 0.2);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.92) 0%, rgba(17, 20, 22, 0.68) 38%, rgba(17, 20, 22, 0.1) 100%),
    linear-gradient(180deg, rgba(17, 20, 22, 0.2) 0%, rgba(17, 20, 22, 0.02) 45%, rgba(17, 20, 22, 0.76) 100%),
    linear-gradient(135deg, rgba(244, 189, 33, 0.18) 0%, rgba(28, 109, 140, 0.16) 52%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding: clamp(90px, 12vw, 150px) 0 190px clamp(18px, 6vw, 76px);
  color: var(--white);
}

.kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  gap: 12px;
  min-height: 54px;
  padding: 0 12px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.header-call:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #ffd85a 0%, #f4bd21 45%, #d89508 100%);
  border-color: var(--signal);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(244, 189, 33, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.button-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(17, 20, 22, 0.14);
  font-size: 18px;
  line-height: 1;
}

.button.secondary .button-mark {
  background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  left: clamp(18px, 4vw, 56px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-panel span,
.contact-lines span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.intro,
.services,
.process,
.location,
.contact {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 247, 0.94)),
    linear-gradient(90deg, rgba(244, 189, 33, 0.12), transparent 48%);
}

.intro h2,
.section-heading h2,
.image-band h2,
.location h2,
.contact h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro > p,
.image-band p,
.location p,
.contact-copy p,
.process li span,
.service-grid p {
  color: var(--steel);
  font-size: 17px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.services {
  background:
    linear-gradient(180deg, #e9edf0 0%, #f4f6f6 100%);
}

.services .section-label,
.process .section-label,
.location .section-label,
.contact .section-label {
  color: var(--signal-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 20, 22, 0.06);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  min-height: 560px;
  background:
    linear-gradient(135deg, #101416 0%, #16262d 52%, #263e3a 100%);
  color: var(--white);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-band div {
  align-self: center;
  padding: clamp(34px, 6vw, 76px);
}

.image-band p {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  background:
    linear-gradient(180deg, #f6f3ec 0%, #ecefee 100%);
}

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

.process li {
  counter-increment: step;
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 20, 22, 0.06);
}

.process li::before {
  content: "0" counter(step);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.process strong {
  font-size: 23px;
  line-height: 1.14;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #edf5f6 100%);
}

.location p {
  margin: 22px 0;
}

.text-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  background: #dce4e5;
  box-shadow: var(--shadow);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.03);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(17, 20, 22, 0.78) 100%),
    linear-gradient(135deg, rgba(244, 189, 33, 0.12), transparent 42%);
}

.map-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.78);
  backdrop-filter: blur(16px);
}

.map-caption span {
  color: var(--signal);
  font-weight: 900;
}

.map-caption strong {
  display: block;
  margin: 10px 0;
  font-size: 28px;
  line-height: 1;
}

.map-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
  background:
    linear-gradient(135deg, #101416 0%, #17333d 55%, #315b46 100%);
  color: var(--white);
}

.contact-copy p {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  border-color: rgba(244, 189, 33, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.contact-card span,
.contact-panel span {
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.08;
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

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

.contact-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.contact-panel li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--signal);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

footer div {
  display: grid;
}

footer strong {
  color: var(--white);
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-right: 18px;
  }

  .hero-panel,
  .intro,
  .image-band,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -130px 18px 38px;
  }

  .service-grid,
  .process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-lines {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand svg {
    width: 36px;
    height: 36px;
  }

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

  .header-call {
    min-height: 40px;
    padding: 0 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: 100%;
    padding: 74px 16px 170px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-panel,
  .service-grid,
  .process ol {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: 92px;
  }

  .intro,
  .services,
  .process,
  .location,
  .contact {
    padding: 52px 16px;
  }

  .intro h2,
  .section-heading h2,
  .image-band h2,
  .location h2,
  .contact h2 {
    font-size: 34px;
  }

  .image-band img {
    min-height: 300px;
  }

  .image-band div {
    padding: 36px 16px 44px;
  }

  .map-card {
    min-height: 360px;
  }

  .map-caption strong {
    font-size: 24px;
  }

  .contact-lines {
    font-size: 18px;
  }
}
