:root {
  --ink: #17212b;
  --muted: #5f6c77;
  --paper: #fbfcfd;
  --line: #dce4ea;
  --blue: #1552d4;
  --teal: #078a86;
  --amber: #dd9d20;
  --coral: #d8584a;
  --soft-blue: #eaf1ff;
  --soft-teal: #e3f7f4;
  --green: #4f7d54;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 252, 253, 0.92);
  border-bottom: 1px solid rgba(220, 228, 234, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #31404d;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.nav-cta {
  padding: 10px 16px !important;
  background: var(--blue);
  border-radius: 8px;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - 74px);
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 64px) 44px;
  background:
    linear-gradient(135deg, rgba(21, 82, 212, 0.12), rgba(79, 125, 84, 0.13) 42%, rgba(221, 157, 32, 0.1)),
    #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

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

.hero-lede {
  max-width: 650px;
  color: #354554;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(21, 82, 212, 0.22);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(220, 228, 234, 0.85);
  border-radius: 8px;
}

.hero-stats dt {
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-service-panel {
  position: absolute;
  right: clamp(12px, 3vw, 26px);
  bottom: clamp(12px, 3vw, 26px);
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  width: min(440px, calc(100% - 24px));
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 228, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 33, 43, 0.18);
}

.hero-service-panel img {
  width: 112px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-service-panel strong,
.hero-service-panel span {
  display: block;
}

.hero-service-panel span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.intro p:last-child {
  color: #d9e3ec;
  font-size: 18px;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px);
  background: #fff;
}

.location-band img,
.feature-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-band p:last-child,
.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(23, 33, 43, 0.06);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: #3c4a56;
  list-style: none;
  font-size: 14px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.service-card p,
.process p,
.commitment-copy p,
.contact-copy p,
.site-footer {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  background: var(--soft-blue);
  border-radius: 8px;
  color: var(--blue);
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon.amber {
  background: #fff4d8;
  color: #9f6f08;
}

.icon.teal {
  background: var(--soft-teal);
  color: var(--teal);
}

.icon.coral {
  background: #ffe9e6;
  color: var(--coral);
}

.process {
  background: #f2f6f8;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  background: #fff;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 10px 12px;
  background: #f2f6f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #263440;
  font-size: 14px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.commitments,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.commitment-list {
  display: grid;
  gap: 14px;
}

.commitment-list div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.commitment-list strong {
  color: var(--blue);
}

.commitment-list span {
  color: #41505e;
}

.contact-section {
  background: #fff;
}

.contact-methods a,
.contact-methods span {
  padding: 12px 14px;
  background: #f4f7fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(21, 82, 212, 0.25);
  outline-offset: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.hidden-field {
  display: none;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(21, 82, 212, 0.12), rgba(79, 125, 84, 0.13)),
    #fff;
}

.thanks-panel {
  width: min(780px, 100%);
  padding: clamp(24px, 5vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-panel .brand {
  margin-bottom: 42px;
}

.thanks-panel h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.thanks-panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.credits {
  width: 100%;
  font-size: 12px;
}

@media (max-width: 960px) {
  .hero,
  .intro,
  .location-band,
  .split-feature,
  .commitments,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 460px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .brand small {
    display: none;
  }

  .hero-stats,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 380px;
  }

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

  .hero-service-panel img {
    display: none;
  }

  .location-band img,
  .feature-image img {
    min-height: 260px;
  }

  .hero-actions,
  .contact-methods {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .commitment-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
