:root {
  --navy: #071d3b;
  --blue: #0b376b;
  --sky: #dfeeff;
  --gold: #c99a3d;
  --ink: #17233a;
  --muted: #66758a;
  --line: #d9e3ee;
  --paper: #ffffff;
  --wash: #f5f9fe;
  --mint: #dff3ec;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 230px;
  height: 68px;
  border-radius: var(--radius);
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #31415a;
  font-size: 14px;
  font-weight: 700;
}

.header-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: max-content;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.header-contact a {
  border-bottom: 1px solid transparent;
}

.header-contact a:hover {
  border-color: #9ec9f4;
}

.section,
.section-band,
.intro {
  padding: 84px clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(110deg, rgba(245, 249, 254, 0.96), rgba(255, 255, 255, 0.76)),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 930px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  color: var(--navy);
  font-size: 22px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
}

.hero-actions,
.form-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.button.primary {
  background: var(--blue);
  color: white;
}

.button.ghost {
  border-color: #a8c7e8;
  background: white;
  color: var(--blue);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin-top: 34px;
}

.trust-row span {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #31415a;
}

.trust-row strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 30px;
}

.hero-media {
  justify-self: center;
  width: min(460px, 100%);
}

.service-promise {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(158, 201, 244, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(7, 29, 59, 0.18);
}

.hero-logo {
  width: 100%;
  border-radius: 12px;
}

.promise-list {
  display: grid;
  gap: 10px;
}

.promise-list span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--navy);
  font-weight: 850;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.intro p:last-child {
  margin: 28px 0 0;
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 26px 20px;
  background: white;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.comparison-grid,
.testimonial-grid,
.why-grid,
.process-grid,
.first-clean-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.comparison-card,
figure,
.values > div,
.map-card,
.quote-form,
.phone-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.service-card,
.comparison-card,
figure {
  overflow: hidden;
}

.service-card img,
.before-after {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.service-card img {
  object-fit: cover;
}

.service-card h3,
.service-card p,
.comparison-card h3,
.comparison-card p {
  padding-inline: 20px;
}

.service-card h3,
.comparison-card h3 {
  margin-top: 20px;
  margin-bottom: 8px;
}

.service-card p {
  padding-bottom: 6px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 20px 22px 38px;
  color: #43546b;
  line-height: 1.45;
}

.comparison-card p {
  padding-bottom: 20px;
}

.soft {
  background: var(--wash);
}

.first-clean-section {
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

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

.first-clean-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 26px;
}

.first-clean-grid h3 {
  margin-bottom: 10px;
}

.airbnb-focus {
  background: var(--navy);
}

.airbnb-focus .eyebrow,
.airbnb-focus h2,
.airbnb-focus h3 {
  color: white;
}

.airbnb-focus p {
  color: #c8d8eb;
}

.checklist-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.78fr);
  gap: 20px;
}

.checklist-panel,
.host-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #edf6ff;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.host-card span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e5f3ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-section {
  background: #fbfcfd;
}

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

.why-grid article,
.process-grid div,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
}

.why-grid article span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 800;
}

.process-section {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

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

.process-grid strong {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 20px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.values {
  display: grid;
  gap: 14px;
}

.values > div {
  padding: 22px;
}

.values h3,
figure blockquote,
figure figcaption {
  margin: 0;
}

figure {
  padding: 26px;
}

figure blockquote {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
}

figure figcaption {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.quote-note-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}

.quote-note-box span {
  display: block;
  color: #bcd7f5;
  font-weight: 800;
}

.quote-note-box strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 38px;
}

.quote-note-box p {
  margin: 12px 0 0;
  color: #dce9f8;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #31415a;
  font-size: 14px;
  font-weight: 850;
}

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

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #f6f9fc;
  color: #59697e;
  font-size: 13px;
  line-height: 1.5;
}

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

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.city-list span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: #24524a;
  font-size: 14px;
  font-weight: 850;
}

.map-card {
  padding: 18px;
  background: #f8fbff;
}

.map-card svg {
  width: 100%;
  min-height: 310px;
}

.map-region {
  fill: #dcecff;
  stroke: #8bbce9;
  stroke-width: 3;
}

.map-road {
  fill: none;
  stroke: #d5b26d;
  stroke-width: 7;
  stroke-linecap: round;
  opacity: 0.8;
}

.pin circle {
  fill: var(--blue);
  stroke: white;
  stroke-width: 3;
}

.pin text {
  fill: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.faq-section {
  background: #fbfcfd;
}

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

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-grid details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--blue);
}

.contact-band h2,
.contact-band p,
.contact-band .eyebrow {
  color: white;
}

.contact-band p {
  opacity: 0.84;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #5f6f83;
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .intro,
  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .comparison-grid,
  .testimonial-grid,
  .why-grid,
  .process-grid,
  .first-clean-grid,
  .proof-strip,
  .checklist-layout,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 12px;
  }

  .brand,
  .brand img {
    width: 220px;
    min-width: 220px;
  }

  nav {
    gap: 10px 14px;
    font-size: 13px;
  }

  .header-contact {
    justify-items: start;
    min-width: 0;
  }

  .section,
  .section-band,
  .intro {
    padding-block: 56px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .trust-row,
  .service-grid,
  .comparison-grid,
  .testimonial-grid,
  .quote-form,
  .why-grid,
  .process-grid,
  .first-clean-grid,
  .proof-strip,
  .checklist-layout,
  .check-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: min(300px, 92%);
  }

  .quote-form .full {
    grid-column: auto;
  }

  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }
}
