:root {
  --ink: #1e2522;
  --muted: #5c6661;
  --paper: #f8f3ea;
  --white: #ffffff;
  --line: #ded8ca;
  --field: #fbfaf6;
  --green: #28463b;
  --green-2: #183028;
  --clay: #a95736;
  --clay-dark: #874128;
  --shadow: 0 12px 28px rgba(24, 48, 40, 0.1);
}

* {
  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;
}

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

a {
  color: inherit;
}

.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, 54px);
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.brand strong {
  font-size: 1.05rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-phone {
  color: var(--green);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  padding: 9px 12px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 92px clamp(18px, 6vw, 78px) 58px;
  background-image: var(--hero-image, url("assets/interior-placeholder.jpg?v=photos2"));
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 30, 27, 0.88), rgba(20, 30, 27, 0.62) 58%, rgba(20, 30, 27, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b28d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 840px;
  font-size: clamp(2.2rem, 5.4vw, 4.45rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-note {
  max-width: 690px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 4px solid #f0b28d;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--clay-dark);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin: 46px 0 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.proof-strip div {
  padding: 16px;
  background: rgba(24, 48, 40, 0.64);
}

.proof-strip dt {
  font-weight: 800;
  font-size: 1.35rem;
}

.proof-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.estimate-band,
.section {
  padding: 74px clamp(18px, 5vw, 70px);
}

.estimate-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(300px, 1.22fr);
  gap: 42px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.estimate-form {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid #cfc7b9;
  border-radius: 6px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(169, 87, 54, 0.2);
  border-color: var(--clay);
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-footer {
  margin-top: 18px;
}

.form-note {
  flex: 1 1 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.split-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.service-grid article,
.process-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article {
  display: flex;
  align-items: center;
  min-height: 82px;
  overflow: hidden;
}

.service-card {
  width: 100%;
  min-height: 82px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 800;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  background: #fff8ef;
}

.service-card:focus-visible {
  outline: 3px solid rgba(169, 87, 54, 0.24);
  outline-offset: -3px;
}

.service-card span {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--clay);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

.service-detail p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-detail ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-detail li + li {
  margin-top: 8px;
}

.visual-proof,
.process {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-row,
.moshe-card {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.image-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.moshe-card {
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  align-items: stretch;
}

.moshe-card-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.moshe-card-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.moshe-card-copy .quote-copy {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
}

.review-placeholder-heading span,
.review-placeholder-heading strong {
  display: block;
}

.review-placeholder-heading span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-placeholder-heading strong {
  margin-top: 8px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.review-slots {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.review-slots article {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-slots span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.review-slots p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.reviews-archive {
  margin-top: 24px;
}

.reviews-archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.reviews-archive-heading h3 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.reviews-note {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.customer-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.customer-review {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.review-card-top strong {
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.review-card-top span {
  flex: 0 0 auto;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.customer-review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.customer-review small {
  margin-top: auto;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-lines {
  height: 40px;
  margin-top: 10px;
  background:
    linear-gradient(var(--line), var(--line)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 0 16px / 92% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 0 32px / 72% 1px no-repeat;
  opacity: 0.8;
}

figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 26px 22px 22px;
  counter-increment: process;
}

.process-list li::before {
  content: counter(process);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 700;
}

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

.process-list span {
  margin-top: 8px;
  color: var(--muted);
}

.seo-hooks {
  background: var(--paper);
}

.gallery-section {
  background: var(--paper);
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.town-list li {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.82);
  background: #1b2c26;
}

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

.site-footer a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 6px;
}

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

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: 620px;
  }

  .estimate-band {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .image-row,
  .customer-review-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .moshe-card,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail .button {
    width: fit-content;
  }

  .reviews-archive-heading {
    display: grid;
    align-items: start;
  }

  .reviews-note {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    max-width: 190px;
  }

  .hero {
    min-height: 650px;
    padding: 72px 18px 44px;
  }

  .hero-overlay {
    background: rgba(20, 30, 27, 0.78);
  }

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

  .proof-strip,
  .form-grid,
  .service-grid,
  .image-row,
  .customer-review-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-detail .button {
    width: 100%;
  }

  .estimate-band,
  .section {
    padding: 54px 18px;
  }

  .estimate-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
