:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #5d625d;
  --soft: #f4f1ea;
  --paper: #fffdf8;
  --line: #ded8cc;
  --sage: #7b8b71;
  --sage-dark: #42533f;
  --clay: #b86f43;
  --clay-dark: #814627;
  --charcoal: #242321;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(31, 28, 22, 0.14);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(222, 216, 204, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-links,
.hero-actions,
.hero-badges,
.proof-grid,
.choice-row,
.choice-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 50%;
  font-weight: 800;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.text-link {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--ink);
  border-color: currentColor;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: var(--clay-dark);
  box-shadow: 0 12px 30px rgba(129, 70, 39, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.6);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  background: #6f3c23;
}

.btn-secondary:hover {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-bg::before {
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  content: "";
  background: linear-gradient(90deg, rgba(20, 19, 16, 0.9), rgba(20, 19, 16, 0.62) 44%, rgba(20, 19, 16, 0.18));
  z-index: 2;
}

.hero-render {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 130px 0 150px;
}

.eyebrow,
.card-kicker,
.price-pill {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f1d3bb;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4.5rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-badges {
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-badges li {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-inputs,
.hero-arrow {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-inputs {
  right: 7%;
  top: 18%;
  width: 320px;
  height: 250px;
}

.input-sheet,
.before-panel {
  position: absolute;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.input-plan {
  width: 170px;
  height: 120px;
  left: 0;
  top: 26px;
  transform: rotate(-8deg);
}

.input-sketch {
  width: 150px;
  height: 108px;
  right: 8px;
  top: 0;
  transform: rotate(7deg);
}

.input-photo {
  width: 144px;
  height: 96px;
  left: 74px;
  bottom: 6px;
  transform: rotate(4deg);
}

.input-sheet span,
.before-panel span {
  position: absolute;
  display: block;
  background: rgba(66, 83, 63, 0.35);
}

.input-plan span:nth-child(1),
.mock-plan span:nth-child(1) {
  left: 18%;
  top: 18%;
  width: 58%;
  height: 1px;
}

.input-plan span:nth-child(2),
.mock-plan span:nth-child(2) {
  left: 18%;
  top: 18%;
  width: 1px;
  height: 62%;
}

.input-plan span:nth-child(3),
.mock-plan span:nth-child(3) {
  left: 52%;
  top: 18%;
  width: 1px;
  height: 62%;
}

.input-plan span:nth-child(4),
.mock-plan span:nth-child(4) {
  left: 18%;
  top: 80%;
  width: 58%;
  height: 1px;
}

.input-sketch span,
.mock-sketch span {
  height: 2px;
  transform: rotate(-12deg);
}

.input-sketch span:nth-child(1),
.mock-sketch span:nth-child(1) {
  left: 22%;
  top: 30%;
  width: 52%;
}

.input-sketch span:nth-child(2),
.mock-sketch span:nth-child(2) {
  left: 18%;
  top: 54%;
  width: 64%;
}

.input-sketch span:nth-child(3),
.mock-sketch span:nth-child(3) {
  left: 28%;
  top: 72%;
  width: 42%;
}

.input-photo span,
.mock-photo span {
  inset: 15%;
  background: linear-gradient(135deg, rgba(123, 139, 113, 0.4), rgba(184, 111, 67, 0.36));
}

.hero-arrow {
  right: 12%;
  bottom: 28%;
  padding: 11px 14px;
  color: var(--ink);
  background: #f3d8bf;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.proof-strip {
  position: relative;
  z-index: 4;
  padding: 22px 0;
  background: var(--charcoal);
  color: var(--white);
}

.proof-grid {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-tint {
  background: var(--soft);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark .card-kicker {
  color: #f1d3bb;
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 40px;
  align-items: end;
}

.section-heading p {
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid,
.before-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

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

.card-grid.four,
.before-grid,
.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.service-card,
.before-card,
.pricing-card,
.quote-form,
.quote-callout,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.info-card,
.pricing-card {
  padding: 28px;
}

.info-card p,
.service-card p,
.before-card p,
.pricing-card p,
.quote-copy p,
.faq-list p,
.final-cta p {
  color: var(--muted);
}

.service-card,
.before-card {
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(37, 34, 28, 0.08);
}

.service-card img,
.after-panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card > div,
.before-card h3 {
  padding: 22px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  color: var(--clay-dark);
  background: #f5e1d0;
  border-radius: 999px;
}

.text-link {
  justify-self: end;
  color: var(--clay-dark);
  font-weight: 800;
}

.before-card {
  background: var(--white);
}

.before-panel,
.after-panel {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.before-panel {
  border: 0;
  border-radius: 0;
  background: #f5f0e6;
  box-shadow: none;
}

.after-panel {
  border-top: 1px solid var(--line);
}

.mock-cabinet span:nth-child(1) {
  left: 12%;
  top: 22%;
  width: 76%;
  height: 1px;
}

.mock-cabinet span:nth-child(2) {
  left: 12%;
  top: 44%;
  width: 76%;
  height: 1px;
}

.mock-cabinet span:nth-child(3) {
  left: 12%;
  top: 66%;
  width: 76%;
  height: 1px;
}

.mock-cabinet span:nth-child(4) {
  left: 50%;
  top: 15%;
  width: 1px;
  height: 70%;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.pricing-card.featured {
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
}

.pricing-card.featured p,
.pricing-card.featured li {
  color: var(--muted);
}

.pricing-card h3 {
  font-size: 1.45rem;
}

.pricing-card ul,
.not-included ul {
  padding-left: 20px;
  margin: 0;
}

.pricing-card li + li,
.not-included li + li {
  margin-top: 8px;
}

.not-included {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.not-included ul {
  columns: 2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 50%;
  font-weight: 800;
}

.quote-section {
  background: #efe6d8;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 100px;
}

.quote-callout {
  margin-top: 24px;
  padding: 18px;
  color: var(--sage-dark);
  font-weight: 800;
}

.quote-form {
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.form-grid label,
.form-grid fieldset {
  min-width: 0;
}

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

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8bb;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
  min-height: 140px;
  padding: 12px;
}

fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid #d8d0c2;
  border-radius: var(--radius);
}

.choice-row,
.choice-grid {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

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

.choice-row label,
.choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  background: #f8f4ec;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.choice-row input,
.choice-grid input {
  width: auto;
  min-height: auto;
}

.file-field input {
  min-height: auto;
  padding: 14px;
  background: #f8f4ec;
}

.quote-form button {
  margin-top: 22px;
  width: 100%;
}

.form-confirmation {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: #355236;
  background: #e6f1e3;
  border: 1px solid #b8d4b6;
  border-radius: var(--radius);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  padding: 86px 0 110px;
  background: var(--sage-dark);
  color: var(--white);
}

.final-cta .shell {
  max-width: 860px;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.mobile-sticky-cta {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(184, 111, 67, 0.48);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inputs {
    opacity: 0.58;
    right: -20px;
  }

  .card-grid.four,
  .before-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-heading.split,
  .quote-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg::before {
    background: linear-gradient(180deg, rgba(20, 19, 16, 0.84), rgba(20, 19, 16, 0.58) 50%, rgba(20, 19, 16, 0.28));
  }

  .hero-content {
    padding: 98px 0 126px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

  .hero-inputs,
  .hero-arrow {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .card-grid.three,
  .card-grid.four,
  .before-grid,
  .pricing-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .not-included ul {
    columns: 1;
  }

  .quote-form {
    padding: 20px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 12;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    color: var(--white);
    background: var(--charcoal);
    border-radius: 6px;
    font-weight: 800;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    display: none;
  }

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

  h1 {
    font-size: 2.3rem;
  }
}
