:root {
  --ink: #101827;
  --muted: #607086;
  --line: #d8e3ef;
  --paper: #f8fbff;
  --mist: #eaf4ff;
  --forest: #08285f;
  --teal: #0075ff;
  --gold: #33d4ff;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(20, 33, 31, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 249, .92);
  border-bottom: 1px solid rgba(220, 230, 225, .8);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid #0b7cff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 117, 255, .12);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--forest);
  background: var(--mist);
}

.header-cta {
  padding: 11px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #003b91, #008cff);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 76px);
  background-position: center;
  background-size: cover;
}

.home-hero {
  background-image: url("vkp-sofa-cleaning-hero.webp");
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 42, .9), rgba(5, 31, 72, .58) 54%, rgba(0, 75, 170, .18));
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}

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

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

h1 {
  margin-bottom: 18px;
  max-width: 900px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 900;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, #005be8, #00a3ff);
  box-shadow: 0 14px 30px rgba(0, 117, 255, .26);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 52px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span,
.section p,
.service-card p,
.detail-list p,
.values p {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.split,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.split > p,
.service-area > p {
  font-size: 19px;
}

.service-grid,
.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 0;
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.service-proof div {
  padding: 24px clamp(16px, 3vw, 34px);
  background: var(--white);
}

.service-proof strong,
.service-proof span {
  display: block;
}

.service-proof span {
  color: var(--muted);
  font-size: 14px;
}

.services-showcase {
  background: var(--paper);
}

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

.premium-service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.premium-service-card img {
  height: 230px;
  object-fit: cover;
}

.premium-service-card div {
  padding: 22px;
}

.premium-service-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-weight: 900;
}

.premium-service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card,
.values article,
.contact-panel,
.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  height: 250px;
}

.service-card h3,
.service-card p {
  padding: 0 22px;
}

.service-card h3 {
  padding-top: 22px;
}

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

.cta-band {
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(135deg, #061c45, #063d93);
}

.cta-band .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: clamp(76px, 10vw, 130px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 100vmax rgba(20, 33, 31, .58);
  clip-path: inset(0 -100vmax);
}

.services-hero {
  background-image: url("vkp-carpet-service.webp");
}

.about-hero {
  background-image: url("vkp-sofa-cleaning-hero.webp");
}

.contact-hero {
  background-image: url("vkp-mattress-cleaning.webp");
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 68px);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.detail-list article {
  padding: clamp(26px, 5vw, 48px);
  background: var(--paper);
}

.detail-list span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.values article {
  padding: 28px;
}

.results-section {
  background: #eef6ff;
}

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

.section-heading p:last-child {
  max-width: 740px;
  font-size: 18px;
}

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

.result-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.result-card img {
  height: 280px;
  object-fit: cover;
}

.result-card div {
  padding: 22px;
}

.result-card h3 {
  margin-bottom: 8px;
}

.result-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.transformation-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #071631;
  color: var(--white);
}

.transformation-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.transformation-media img {
  min-height: 390px;
  object-fit: cover;
}

.transformation-copy p {
  color: rgba(255, 255, 255, .78);
}

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

.result-list li {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.result-list span {
  color: rgba(255, 255, 255, .72);
}

.process-section,
.faq-section {
  background: var(--white);
}

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

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

.process-grid article,
.faq-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, #005be8, #00a3ff);
  border-radius: 50%;
}

.process-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.contact-panel,
.quote-form {
  padding: clamp(22px, 4vw, 34px);
}

.contact-panel p,
.contact-panel a,
.contact-panel span {
  display: block;
}

.contact-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  scroll-margin-top: 92px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, .76);
  background: #060d1d;
}

.site-footer > div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
}

.site-footer strong,
.site-footer a {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 680px;
  }

  .trust-strip,
  .service-proof,
  .service-grid,
  .values,
  .results-grid,
  .premium-service-grid,
  .transformation-section,
  .process-grid,
  .faq-grid,
  .split,
  .service-area,
  .detail-list,
  .contact-layout,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .site-footer,
  .cta-band {
    display: grid;
  }

  .site-footer > div:last-child {
    text-align: left;
  }

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