:root {
  --teal: #0aa5a0;
  --teal-dark: #087f7b;
  --dark: #1e2a32;
  --ink: #233038;
  --muted: #5c6b76;
  --light: #f3f7f7;
  --line: #e3e9ec;
  --gold: #f2a93b;
  --shadow: 0 16px 38px rgba(30, 42, 50, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

h1,
h2,
.step-label,
.footer-brand {
  font-family: Oswald, Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 46px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(30, 42, 50, 0.06);
}

.brand,
nav a,
.header-phone,
footer a,
.contact-box a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--teal-dark);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
}

/* Buttons */

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.button.large {
  min-height: 54px;
  padding: 0 30px;
  font-size: 14px;
}

.primary {
  color: #ffffff;
  background: var(--teal);
}

.primary:hover {
  background: var(--teal-dark);
}

.secondary {
  color: var(--teal-dark);
  background: #ffffff;
  border: 2px solid var(--teal);
}

.secondary:hover {
  color: #ffffff;
  background: var(--teal);
}

.ghost {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.ghost:hover {
  color: var(--dark);
  background: #ffffff;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 74vh, 760px);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 28, 34, 0.62), rgba(18, 28, 34, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(860px, calc(100% - 40px));
  padding: 90px 0;
  color: #ffffff;
}

.hero-eyebrow {
  margin: 0;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

/* Sections */

.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

.section.alt {
  background: var(--light);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(30px, 5vw, 48px);
}

.section-heading.centered {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  text-align: center;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--teal);
}

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

.tagline {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

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

.section h2,
.section h3 {
  color: var(--ink);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.about-copy p {
  font-size: 16px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.checks {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 600;
}

.checks li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
}

.checks li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* Services */

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

.service-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.service-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-grid article > div {
  padding: 20px;
}

.service-grid p {
  margin-bottom: 0;
  font-size: 14.5px;
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  text-align: center;
}

.process-grid li {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.process-grid img {
  width: min(210px, 62%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 14px;
  border: 5px solid var(--light);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.step-label {
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 5px;
}

.step-label::before {
  counter-increment: step;
  content: counter(step) ". ";
}

.process-grid h3 {
  margin-bottom: 2px;
}

.process-grid p {
  max-width: 320px;
  margin-bottom: 0;
  font-size: 15px;
}

/* Difference */

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

.difference-grid > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.diff-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(10, 165, 160, 0.12);
  border-radius: 50%;
}

.diff-icon svg {
  width: 26px;
  height: 26px;
}

.difference-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Reviews */

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

.badge-grid article {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 26px 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
}

.badge-grid strong {
  color: var(--ink);
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.badge-grid p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 26px;
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
}

.quote-grid p {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.quote-grid cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.centered-cta {
  margin-top: 30px;
  text-align: center;
}

/* CTA band */

.cta-band {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 20px;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.04);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 34, 0.72);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  justify-items: center;
  max-width: 760px;
}

.cta-inner h2 {
  color: #ffffff;
}

/* Areas */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 20px;
  color: var(--teal-dark);
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
}

/* Request */

.request-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 4vw, 44px);
}

.request-copy .kicker {
  margin-bottom: 10px;
}

.request-copy h2 {
  margin-bottom: 14px;
}

.request-copy h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  background: var(--teal);
}

.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-box a {
  color: var(--teal-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

fieldset {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

legend {
  padding: 0 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px;
  color: var(--ink);
  background: var(--light);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: -1px;
}

textarea {
  resize: vertical;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  overflow-wrap: anywhere;
  color: var(--teal-dark);
  background: rgba(10, 165, 160, 0.10);
  border: 1px solid var(--teal);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
}

.form-status[hidden] {
  display: none;
}

.full,
form .button {
  grid-column: 1 / -1;
}

button.button {
  border: 0;
  cursor: pointer;
}

/* Footer */

footer {
  color: #b8c4cb;
  background: var(--dark);
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(26px, 4vw, 48px);
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 64px) 0 34px;
}

.footer-grid > div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-brand {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
}

.footer-grid h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 20px 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  text-align: center;
}

/* Mobile sticky */

.mobile-sticky {
  display: none;
}

/* Responsive */

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  nav {
    display: none;
  }

  .about-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 8px 14px;
  }

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

  .header-phone {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-inner {
    padding: 70px 0;
  }

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

  .service-grid,
  .badge-grid,
  fieldset,
  form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: var(--shadow);
  }

  .mobile-sticky a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--teal);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-sticky a:first-child {
    color: var(--teal-dark);
    background: var(--light);
    border: 1px solid var(--line);
  }
}
