:root {
  --ink: #10283f;
  --text: #223445;
  --muted: #64727d;
  --paper: #f5f9f9;
  --surface: #ffffff;
  --teal: #087f83;
  --teal-dark: #05656a;
  --copper: #c46b32;
  --copper-soft: #fff0e7;
  --line: #dce8eb;
  --shadow: 0 22px 55px rgba(11, 37, 54, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 235, 0.85);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), #12a9a2);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 127, 131, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--text);
  font-weight: 700;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
  border-color: var(--copper);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.header-call svg,
.btn svg,
.contact-options svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 78svh, 790px);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(245, 249, 249, 0.96) 0%, rgba(245, 249, 249, 0.86) 35%, rgba(245, 249, 249, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
}

.hero-content {
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 54ch;
  margin: 22px 0 0;
  color: #314656;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 32px rgba(8, 127, 131, 0.26);
}

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

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 40, 63, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-metrics li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 35px rgba(16, 40, 63, 0.11);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
  color: white;
}

.service-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  text-align: center;
}

.service-strip a:hover,
.service-strip a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.strip-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--copper);
}

.strip-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 120px) 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.service-card,
.review-grid figure,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(16, 40, 63, 0.08);
}

.service-card {
  min-height: 240px;
  padding: 28px;
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.why-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(74px, 9vw, 120px) clamp(18px, 6vw, 82px);
  background: linear-gradient(135deg, var(--ink), #164861 60%, #0b777a);
  color: white;
}

.why-content {
  max-width: 650px;
}

.why-content .eyebrow {
  color: #9ce5df;
}

.why-content h2 {
  color: white;
}

.why-content p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.why-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.why-list strong,
.why-list span {
  display: block;
}

.why-list strong {
  font-size: 1.05rem;
}

.why-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.reviews {
  padding-bottom: clamp(70px, 8vw, 110px);
}

.review-grid figure {
  min-height: 230px;
  margin: 0;
  padding: 28px;
}

.review-grid blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.review-grid figcaption {
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: clamp(74px, 9vw, 120px) clamp(18px, 6vw, 82px);
  background: #eaf5f5;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-options svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfefe;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 131, 0.14);
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 82px);
  background: #091c2d;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: white;
  font-weight: 900;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 18px clamp(18px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    margin-left: clamp(18px, 5vw, 42px);
  }

  .service-strip,
  .service-grid,
  .review-grid,
  .why-band,
  .contact-band {
    grid-template-columns: 1fr 1fr;
  }

  .why-band,
  .contact-band {
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .hero {
    align-items: end;
    min-height: 78svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(245, 249, 249, 0.22) 0%, rgba(245, 249, 249, 0.92) 48%, rgba(245, 249, 249, 0.98) 100%),
      linear-gradient(90deg, rgba(245, 249, 249, 0.78), rgba(245, 249, 249, 0.25));
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 120px 0 34px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

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

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

  .hero-metrics li {
    padding: 15px;
  }

  .service-strip,
  .service-grid,
  .review-grid,
  .why-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .service-strip a {
    justify-content: flex-start;
    min-height: 72px;
    text-align: left;
  }

  .section {
    width: min(100% - 32px, 1160px);
  }

  .service-card,
  .review-grid figure {
    min-height: auto;
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}
