:root {
  --ink: #172323;
  --muted: #5b6867;
  --line: #dfe8e3;
  --fresh: #6aa58d;
  --fresh-deep: #275d55;
  --sun: #f6c96d;
  --sky: #dcebf0;
  --cream: #fbfaf6;
  --white: #ffffff;
  --navy: #20384c;
  --shadow: 0 24px 70px rgba(22, 37, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.91);
  border-bottom: 1px solid rgba(223, 232, 227, 0.78);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 205px;
  height: 92px;
  object-fit: contain;
  border-radius: 5px;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--fresh-deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
}

.header-cta,
.button.primary {
  background: var(--fresh-deep);
  color: var(--white);
}

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

.button.secondary.light {
  color: var(--fresh-deep);
  border-color: var(--fresh-deep);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 76px) 64px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 36, 38, 0.78), rgba(18, 36, 38, 0.46) 42%, rgba(18, 36, 38, 0.06) 78%),
    linear-gradient(0deg, rgba(18, 36, 38, 0.32), rgba(18, 36, 38, 0.03) 32%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--fresh-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

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

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

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

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 76px);
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
}

.intro-grid h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.intro-grid p,
.section-heading p,
.area-panel p,
.pricing-band p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

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

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

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

.service-card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
}

.icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--sky);
  color: var(--navy);
  font-weight: 800;
}

.service-card p,
.steps p,
.promise-panel li,
.pricing-list span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(64px, 10vw, 112px) clamp(20px, 6vw, 76px);
  background: var(--fresh-deep);
  color: var(--white);
}

.split-section .section-kicker {
  color: var(--sun);
}

.area-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.promise-panel {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.promise-panel ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.process {
  background: #eef6f3;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.steps div {
  padding: 28px;
  background: var(--white);
}

.steps span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--fresh);
  font-weight: 850;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(62px, 9vw, 100px) clamp(20px, 6vw, 76px);
  background: var(--navy);
  color: var(--white);
}

.pricing-band .section-kicker {
  color: var(--sun);
}

.pricing-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

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

.pricing-list div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-list span {
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 6vw, 74px);
  padding: clamp(64px, 10vw, 118px) clamp(20px, 6vw, 76px);
  background: var(--cream);
}

.contact-copy {
  align-self: center;
}

.phone-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--fresh-deep);
  font-size: 1.4rem;
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(32, 56, 76, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

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

input[type="hidden"] {
  display: none;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.success {
  color: var(--fresh-deep);
}

.form-status.error {
  color: #9a2f2b;
}

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: #172323;
}

.site-footer strong {
  color: var(--white);
}

.footer-logo {
  width: 190px;
  max-width: 54vw;
  height: auto;
  border-radius: 6px;
  background: var(--white);
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 150px clamp(20px, 6vw, 76px) 72px;
  background:
    linear-gradient(90deg, rgba(23, 35, 35, 0.78), rgba(23, 35, 35, 0.34)),
    url("assets/hero-living-room.png") center / cover;
}

.thank-you-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.thank-you-panel p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.15rem;
}

@media (max-width: 930px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .trust-strip,
  .intro-grid,
  .service-grid,
  .split-section,
  .steps,
  .pricing-band,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .icon,
  .steps span {
    margin-bottom: 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    width: 112px;
    height: 64px;
    object-fit: contain;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 118px 18px 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 36, 38, 0.82), rgba(18, 36, 38, 0.58)),
      linear-gradient(0deg, rgba(18, 36, 38, 0.32), rgba(18, 36, 38, 0));
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  h1 {
    font-size: 3.05rem;
  }

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

  .trust-strip div,
  .section,
  .split-section,
  .pricing-band,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .promise-panel,
  .contact-form {
    padding: 20px;
  }

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

  .site-footer {
    display: grid;
  }
}
