:root {
  --ink: #171a1d;
  --ink-soft: #33383d;
  --paper: #f7f8f5;
  --white: #ffffff;
  --steel: #2e5e6f;
  --green: #48a868;
  --amber: #d99a27;
  --coral: #c85a41;
  --line: #dfe4df;
  --shadow: 0 18px 50px rgba(23, 26, 29, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(46, 94, 111, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 94, 111, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.brand-name {
  display: block;
  font-weight: 800;
  line-height: 1.05;
}

.brand-meta {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.nav-cta {
  background: var(--green) !important;
  color: var(--ink) !important;
}

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

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: calc(74svh - 72px);
  max-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 26, 29, 0.88), rgba(23, 26, 29, 0.50) 48%, rgba(23, 26, 29, 0.18)),
    linear-gradient(0deg, rgba(23, 26, 29, 0.42), rgba(23, 26, 29, 0.05) 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d8efe0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(72, 168, 104, 0.35);
  outline-offset: 2px;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.94rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: 84px 0;
}

.section.compact {
  padding: 56px 0;
}

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-heading h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-head p,
.page-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.service-grid,
.plan-grid,
.standards-grid,
.gallery-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.service-card,
.plan-card,
.standard-card,
.gallery-card,
.quote-panel,
.contact-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 26, 29, 0.07);
}

.service-card {
  min-height: 292px;
  padding: 26px;
}

.plan-card {
  position: relative;
  min-height: 430px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: rgba(72, 168, 104, 0.74);
  box-shadow: 0 16px 42px rgba(72, 168, 104, 0.16);
}

.plan-card.featured::before {
  content: "Recommended";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-eyebrow {
  margin: 0 0 12px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 4px;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: inline-block;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.plan-card .check-list {
  flex: 1;
}

.plan-note,
.scope-note {
  margin: 18px 0 0;
  padding: 14px;
  border-left: 4px solid var(--steel);
  border-radius: 0 6px 6px 0;
  background: #f2f5f1;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf8f0;
  color: var(--steel);
  font-weight: 900;
}

.service-card h3,
.standard-card h3,
.contact-card h3 {
  margin-top: 22px;
  font-size: 1.25rem;
}

.service-card p,
.standard-card p,
.gallery-card p,
.contact-card p,
.faq-card p {
  color: var(--ink-soft);
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 24px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 38px;
  align-items: center;
}

.image-band figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.scope-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 26, 29, 0.07);
}

.scope-card h3 {
  font-size: 1.2rem;
}

.matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 26, 29, 0.07);
}

.plan-matrix {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.plan-matrix th,
.plan-matrix td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.plan-matrix th {
  background: #f2f5f1;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.plan-matrix tr:last-child td {
  border-bottom: 0;
}

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

.standard-card {
  min-height: 170px;
  padding: 26px;
  border-left: 5px solid var(--amber);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  counter-increment: step;
  padding: 24px;
  border-top: 4px solid var(--green);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(23, 26, 29, 0.07);
}

.process-step::before {
  content: "0" counter(step);
  color: var(--steel);
  font-weight: 900;
}

.process-step h3 {
  margin-top: 10px;
  font-size: 1.08rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.cta-band {
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-inner p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 74px 0 42px;
  background: var(--ink);
  color: var(--white);
}

.page-heading {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-heading p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: #d8efe0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.quote-panel {
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd3ce;
  border-radius: 6px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--steel);
  outline: 3px solid rgba(72, 168, 104, 0.18);
}

.required-note,
.quote-status {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.show-required input:required:invalid,
.show-required select:required:invalid,
.show-required textarea:required:invalid {
  border-color: var(--coral);
}

.side-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.side-list li:last-child {
  border-bottom: 0;
}

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

.side-list span {
  color: var(--ink-soft);
}

.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  outline: none;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card div {
  padding: 20px;
}

.gallery-card h3 {
  font-size: 1.1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 4px;
  background: #edf8f0;
  color: #1d5f36;
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 26, 29, 0.06);
}

summary {
  min-height: 64px;
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

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

.contact-card {
  padding: 24px;
}

.contact-card a {
  color: var(--steel);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(4, auto);
  gap: 30px;
  align-items: start;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-title {
  margin: 0 0 8px;
  font-weight: 900;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .trust-strip,
  .service-grid,
  .plan-grid,
  .standards-grid,
  .process,
  .gallery-grid,
  .contact-grid,
  .quote-layout,
  .faq-grid,
  .image-band,
  .split-panel,
  .section-head,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .quote-layout,
  .faq-grid {
    gap: 18px;
  }

  .footer-grid {
    gap: 20px;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-meta {
    display: none;
  }

  .hero {
    min-height: calc(72svh - 72px);
  }

  .hero img {
    object-position: 62% 50%;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 54px 0 44px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-strip,
  .wrap,
  .page-heading {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 52px 0 34px;
  }

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

  .button {
    width: 100%;
  }
}
