:root {
  --navy-950: #0B2D4D;
  --navy-900: #12395e;
  --navy-700: #1d527f;
  --green-800: #2E7D32;
  --green-600: #3fa447;
  --green-500: #58bd62;
  --mint-100: #eef8f2;
  --mint-50: #F4FAF5;
  --white: #ffffff;
  --ink: #0B2D4D;
  --muted: #5f7181;
  --line: #dfeae3;
  --shadow-soft: 0 16px 38px rgba(11, 45, 77, 0.1);
  --shadow-lift: 0 24px 58px rgba(11, 45, 77, 0.15);
  --radius: 8px;
  --container: 1200px;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--mint-50);
  font-family: "Inter", "Poppins", "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 232, 223, 0.8);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 260ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.has-shadow {
  box-shadow: 0 10px 28px rgba(11, 45, 77, 0.07);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  min-height: var(--header-height);
  padding-block: 12px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(226px, 48vw, 260px);
  min-width: 0;
  overflow: visible;
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 92px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  justify-self: end;
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav,
.header-contact {
  display: none;
}

.site-nav.is-open,
.header-contact.is-open {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0 18px;
}

.site-nav a,
.header-phone {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 620;
}

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

.site-nav a:hover,
.header-phone:hover {
  color: var(--green-800);
}

.header-phone svg,
.contact-card svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), #164b76);
  box-shadow: 0 12px 26px rgba(11, 45, 77, 0.18);
}

.button-ghost {
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(11, 45, 77, 0.06);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 18px 34px rgba(6, 30, 58, 0.18);
}

.button-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 13px;
}

.section-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 86px;
  background:
    radial-gradient(circle at 78% 18%, rgba(88, 189, 98, 0.1), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--mint-50) 55%, #edf7ef 100%);
}

.hero-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-content {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 560px;
  color: var(--navy-950);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.05;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(29px, 4.5vw, 43px);
  font-weight: 780;
  line-height: 1.12;
}

h3 {
  color: var(--navy-950);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.15;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 16px;
  color: var(--navy-900);
  font-size: clamp(18px, 2.5vw, 21px);
  line-height: 1.55;
  font-weight: 560;
}

.hero-text {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 610px;
}

.hero-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(217, 232, 223, 0.9);
  border-radius: var(--radius);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 560;
  box-shadow: 0 10px 22px rgba(6, 30, 58, 0.06);
}

.hero-benefits svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: var(--green-800);
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-photo-card {
  overflow: visible;
  background: transparent;
}

.hero-photo-card img {
  width: 100%;
  height: clamp(500px, 68vh, 680px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(11, 45, 77, 0.13));
}

.hero-proof {
  display: flex;
  width: 100%;
  max-width: 610px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: var(--radius);
  color: var(--green-800);
  text-align: center;
  background: linear-gradient(135deg, rgba(238, 248, 242, 0.98), rgba(222, 244, 226, 0.96));
  box-shadow: 0 10px 22px rgba(6, 30, 58, 0.06);
}

.hero-proof svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.hero-proof strong {
  color: var(--green-800);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

.owner-caption {
  margin: -2px 0 0;
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.service-card,
.price-card,
.benefit-card,
.contact-card,
.contact-form,
.promise-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover,
.price-card:hover,
.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 148, 57, 0.55);
  box-shadow: var(--shadow-lift);
}

.service-icon,
.price-top svg,
.benefit-card svg,
.panel-icon,
.action-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
}

.service-icon svg,
.price-top svg,
.benefit-card svg,
.panel-icon svg,
.action-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card ul {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 450;
  line-height: 1.5;
}

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

.work-gallery {
  background: var(--mint-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-card:nth-child(1) img {
  object-position: 62% 58%;
}

.gallery-card:nth-child(2) img {
  object-position: center 58%;
}

.gallery-card:nth-child(3) img {
  object-position: center 58%;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(11, 45, 77, 0), rgba(11, 45, 77, 0.62));
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
}

.pricing {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), #123c44 62%, var(--green-800));
}

.pricing .section-heading h2,
.pricing .section-heading p:not(.eyebrow),
.pricing .eyebrow {
  color: var(--white);
}

.pricing .section-heading p:not(.eyebrow) {
  opacity: 0.78;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.price-card {
  display: grid;
  gap: 22px;
  min-height: 210px;
  padding: 24px;
}

.price-top {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green-800);
  font-size: 18px;
  font-weight: 950;
}

.price-top svg {
  flex: 0 0 54px;
}

.price-card p {
  margin: 0;
  color: var(--navy-950);
}

.price-card strong {
  display: block;
  font-size: clamp(36px, 9vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-card p span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
}

.price-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-card dl div {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.price-card dt,
.price-card dd {
  margin: 0;
}

.price-card dt {
  color: var(--muted);
}

.price-card dd {
  color: var(--navy-950);
  font-weight: 950;
}

.note-box {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.note-box svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  fill: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.note-box p {
  margin: 0;
}

.benefits {
  background: var(--mint-50);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.benefit-card svg {
  width: 50px;
  height: 50px;
  padding: 12px;
  fill: currentColor;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

.promise {
  background: var(--white);
}

.promise-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.promise-image {
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.promise-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.promise-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: 30px;
  background: linear-gradient(180deg, var(--white), var(--mint-100));
}

.promise-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.promise-panel .button {
  width: fit-content;
  margin-top: 4px;
}

.action {
  background: var(--white);
}

.action-banner {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--navy-950));
  box-shadow: 0 22px 52px rgba(11, 45, 77, 0.16);
}

.action-icon {
  color: var(--green-800);
  background: var(--white);
}

.action-banner .eyebrow,
.action-banner h2,
.action-banner p {
  color: var(--white);
}

.action-banner p {
  margin: 8px 0 0;
  opacity: 0.86;
}

.contact {
  background:
    linear-gradient(180deg, rgba(238, 248, 242, 0.96), rgba(247, 251, 248, 0.96)),
    url("window-squeegee.png") 58% center / cover no-repeat;
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-content h2 {
  margin-bottom: 16px;
}

.contact-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 22px;
  font-style: normal;
}

.contact-card strong {
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.25;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--green-800);
  font-weight: 650;
}

.contact-card span {
  color: var(--muted);
  font-weight: 450;
}

.contact-card .contact-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  line-height: 1.5;
}

.contact-card .contact-address svg {
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--green-800);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: #fbfefc;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 148, 57, 0.68);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(70, 180, 90, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--green-800);
}

.consent-label a {
  color: var(--green-800);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.is-success {
  color: var(--green-800);
}

.form-note.is-error {
  color: #a72e2e;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--navy-950), #082f32 58%, var(--green-800));
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-logo {
  display: block;
  width: min(300px, 78vw);
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-brand-block p {
  max-width: 430px;
  margin: 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-weight: 650;
}

.footer-contact > a,
.footer-contact > .contact-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
}

.footer-contact > .contact-address {
  align-items: flex-start;
  width: fit-content;
}

.footer-contact svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  fill: #9bd889;
}

.footer-contact > .contact-address {
  color: rgba(255, 255, 255, 0.76);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 620px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-benefits,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 840px) {
  :root {
    --header-height: 116px;
  }

  .section {
    padding: 88px 0;
  }

  .section-hero {
    padding: 70px 0 90px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-height);
    padding-block: 12px;
    gap: 16px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .header-contact {
    display: flex;
    align-items: center;
  }

  .site-nav {
    justify-content: center;
    gap: 6px;
  }

  .site-nav a {
    padding: 8px 10px;
    border-radius: var(--radius);
    font-size: 15px;
  }

  .site-nav a:hover {
    background: var(--mint-100);
  }

  .header-contact {
    justify-content: flex-end;
    gap: 9px;
    align-items: center;
  }

  .header-phone span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
    gap: 52px;
  }

  .hero-content {
    align-self: center;
  }

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

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

  .price-card dl div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
  }

  .promise-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .action-banner {
    grid-template-columns: auto 1fr auto;
    padding: 34px 38px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.5fr) minmax(230px, 0.7fr);
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .brand {
    width: 252px;
  }

  .site-nav a {
    padding: 8px 12px;
    font-size: 16px;
  }

  .header-phone {
    font-size: 15px;
  }

  .header-phone span {
    display: inline;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.84fr);
    gap: 70px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card,
  .gallery-card img {
    min-height: 360px;
  }

  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-card-large {
    grid-column: span 2;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  :root {
    --header-height: 108px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    width: min(220px, 64vw);
  }

  .brand img {
    max-height: 84px;
  }

  .button {
    width: 100%;
  }

  .hero-photo-card img {
    height: min(72vh, 560px);
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 92px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 72px 0;
    scroll-margin-top: calc(var(--header-height) + 18px);
  }

  .section-hero {
    padding: 54px 0 72px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--header-height);
    padding-block: 8px;
    gap: 10px;
  }

  .brand {
    width: min(240px, 58vw);
  }

  .brand img {
    max-height: 76px;
    object-fit: contain;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-contact {
    display: none;
  }

  .site-nav.is-open,
  .header-contact.is-open {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .site-nav.is-open {
    margin-top: 8px;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
  }

  .header-contact.is-open {
    padding: 0 0 14px;
  }

  .site-nav a,
  .header-phone,
  .header-contact .button {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 16px;
  }

  .site-nav a {
    background: rgba(244, 250, 245, 0.82);
  }

  .header-phone span {
    display: inline;
  }

  .header-contact .button {
    justify-content: center;
  }

  body.menu-open .site-header {
    max-height: 100vh;
    overflow-y: auto;
  }

  h1 {
    max-width: 660px;
    font-size: clamp(40px, 6.5vw, 50px);
  }

  h2 {
    font-size: clamp(30px, 5vw, 40px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-lead,
  .hero-text {
    max-width: 680px;
  }

  .hero-media {
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
  }

  .hero-photo-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .hero-proof {
    justify-self: stretch;
  }

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

  .service-card,
  .price-card,
  .benefit-card {
    min-width: 0;
  }

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

  .promise-image,
  .promise-image img {
    min-height: 360px;
  }

  .promise-panel {
    justify-items: start;
  }

  .action-banner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .action-banner .button,
  .promise-panel .button {
    width: fit-content;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 86px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .section-hero {
    padding: 48px 0 64px;
  }

  .brand {
    width: min(225px, 64vw);
  }

  .brand img {
    max-height: 70px;
  }

  h1 {
    font-size: clamp(38px, 8.5vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  h3 {
    font-size: 21px;
  }

  p,
  li,
  .service-card li,
  .price-card dt,
  .price-card dd,
  .contact-card span,
  .contact-card a {
    font-size: 16px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-text {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

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

  .hero-benefits span {
    min-height: 48px;
    font-size: 15px;
  }

  .service-card {
    height: auto;
    padding: 24px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 300px;
  }

  .price-card {
    min-height: auto;
  }

  .price-card strong {
    font-size: clamp(36px, 10vw, 46px);
  }

  .price-card dl div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .note-box {
    grid-template-columns: 1fr;
  }

  .promise-image,
  .promise-image img {
    min-height: 320px;
  }

  .promise-panel,
  .action-banner {
    text-align: left;
  }

  .action-banner .button,
  .promise-panel .button {
    width: 100%;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .site-footer {
    padding: 44px 0;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .section-hero {
    padding: 42px 0 58px;
  }

  .header-inner {
    min-height: var(--header-height);
    padding-block: 8px;
  }

  .brand {
    width: min(210px, 68vw);
  }

  .brand img {
    max-height: 64px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav a,
  .header-phone,
  .header-contact .button {
    min-height: 50px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 38px);
  }

  h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  .hero-grid {
    gap: 34px;
  }

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

  .service-grid,
  .pricing-grid,
  .gallery-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-auto-rows: auto;
  }

  .hero-media {
    max-width: 100%;
  }

  .hero-photo-card img {
    width: 100%;
    height: auto;
  }

  .hero-proof {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .service-card,
  .price-card,
  .benefit-card,
  .promise-panel,
  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 260px;
  }

  .price-top {
    align-items: flex-start;
  }

  .price-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .promise-image,
  .promise-image img {
    min-height: 280px;
  }

  .action-banner {
    padding: 24px;
  }

  .contact-card a {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-logo {
    width: min(260px, 82vw);
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand {
    width: min(196px, 66vw);
  }

  .brand img {
    max-height: 60px;
  }

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

  .service-card,
  .price-card,
  .benefit-card,
  .promise-panel,
  .contact-card,
  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .section-hero {
    padding: 38px 0 50px;
  }

  .brand {
    width: min(226px, 70vw);
  }

  .brand img {
    max-height: 69px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-content {
    order: 1;
  }

  .hero-media {
    order: 2;
    margin-top: 0;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-benefits span {
    align-items: flex-start;
    min-height: 58px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .hero-photo-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }
}

@media (min-width: 1080px) {
  :root {
    --header-height: 128px;
  }

  .header-inner {
    align-items: center;
    padding-block: 8px;
  }

  .brand {
    width: 315px;
    align-items: center;
  }

  .brand img {
    width: auto;
    height: auto;
    max-height: 110px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 90px;
  }

  .header-inner {
    align-items: center;
    padding-block: 6px;
  }

  .brand {
    width: min(250px, 72vw);
    align-items: center;
  }

  .brand img {
    width: auto;
    height: auto;
    max-height: 76px;
    object-fit: contain;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 110px;
    align-items: center;
    padding-block: 4px;
  }

  .brand {
    flex: 0 0 315px;
    width: auto;
    align-items: center;
  }

  .brand img {
    width: 315px;
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .brand {
    width: auto;
    flex: 0 1 200px;
  }

  .brand img {
    width: 200px;
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
  }
}
