:root {
  --ink: #101418;
  --ink-soft: #384047;
  --muted: #6d747c;
  --line: #dfe3e7;
  --paper: #f7f8f6;
  --white: #ffffff;
  --amber: #d68b22;
  --amber-dark: #a56413;
  --blue: #1e536b;
  --green: #2f6b53;
  --shadow: 0 18px 48px rgba(16, 20, 24, 0.18);
  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;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(16, 20, 24, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

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

.brand small {
  margin-top: 4px;
  font-size: 12px;
  color: currentColor;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.82), rgba(16, 20, 24, 0.46) 46%, rgba(16, 20, 24, 0.16)),
    linear-gradient(0deg, rgba(16, 20, 24, 0.54), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: 138px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 510px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
}

.button-primary:hover {
  background: #e49a32;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.phone-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 4px 4px 8px 4px;
  transform: rotate(45deg);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(16, 20, 24, 0.22);
  font-size: 13px;
  font-weight: 750;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-strip a {
  display: grid;
  gap: 7px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip strong {
  font-size: 18px;
}

.quick-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading.compact {
  display: block;
  max-width: 620px;
}

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

.service-card {
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-number {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.steps p,
.coverage p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.coverage {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: center;
  padding-top: 82px;
}

.coverage-panel {
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.coverage-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
}

.coverage-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 18px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  padding-top: 42px;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

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

input:focus,
textarea:focus {
  outline: 3px solid rgba(214, 139, 34, 0.24);
  border-color: var(--amber);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.footer a {
  color: rgba(255, 255, 255, 0.74);
}

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

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 68px 12px auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: grid;
    gap: 4px;
  }

  .nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .nav a:hover {
    background: var(--paper);
  }

  .hero {
    min-height: 91svh;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 20, 24, 0.88), rgba(16, 20, 24, 0.58) 56%, rgba(16, 20, 24, 0.2)),
      linear-gradient(0deg, rgba(16, 20, 24, 0.62), transparent 44%);
  }

  h1 {
    font-size: 48px;
  }

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

  .hero-actions .button {
    flex: 1 1 170px;
  }

  .quick-strip,
  .section-heading,
  .service-grid,
  .process,
  .coverage,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 18px;
  }

  .quick-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .process {
    gap: 24px;
  }

  .coverage {
    gap: 24px;
    padding-top: 62px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .signal-row span {
    flex: 1 1 130px;
    text-align: center;
  }

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

  .service-number {
    margin-bottom: 34px;
  }

  .steps li {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .steps li > span {
    width: 38px;
    height: 38px;
  }
}
