/* Concept 04 "Quote first": lead-capture layout with an enquiry form in the hero. */
:root {
  --ink: #2b2723;
  --muted: #6e675e;
  --rust: #c4552e;
  --rust-dark: #97401f;
  --warm: #faf6f0;
  --warm-deep: #f1e9dd;
  --line: #e2d9cc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Keep anchor targets clear of the fixed review bar */
[id] {
  scroll-margin-top: 64px;
}

body {
  margin: 0;
  padding-top: 52px;
  color: var(--ink);
  background: var(--warm);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

figure {
  margin: 0;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.kicker {
  margin: 0 0 16px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid var(--rust);
  border-radius: 10px;
  color: #ffffff;
  background: var(--rust);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 40px);
}

.header img {
  width: 140px;
}

.header nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.86rem;
  font-weight: 600;
}

.header nav a:hover {
  color: var(--rust);
}

.header__phone {
  font-size: 0.92rem;
  font-weight: 700;
}

/* Hero: pitch + quote form */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px) clamp(50px, 7vw, 90px);
}

.hero__pitch h1 {
  max-width: 520px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.hero__pitch em {
  color: var(--rust);
  font-style: italic;
}

.hero__copy {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__ticks {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero__ticks li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  font-size: 0.94rem;
  font-weight: 500;
}

.hero__ticks li::before {
  position: absolute;
  left: 0;
  color: var(--rust);
  content: "✓";
  font-weight: 700;
}

.hero__alt {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__alt a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgb(80 55 30 / 12%);
}

.quote-card h2 {
  font-size: 1.6rem;
}

.quote-card > p {
  margin: -6px 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.quote-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-card input,
.quote-card textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  outline: 0;
  font: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

.quote-card input:focus,
.quote-card textarea:focus {
  border-color: var(--rust);
}

.quote-card .button {
  margin-top: 6px;
}

/* Client band */
.clients {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.clients span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clients strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Steps */
.steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 90px) clamp(20px, 4vw, 40px);
}

.steps h2,
.ranges h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.steps__grid > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.steps__grid b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--rust);
  font-size: 0.9rem;
}

.steps__grid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 1rem;
}

.steps__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Ranges */
.ranges {
  padding: clamp(50px, 6vw, 80px) clamp(20px, 4vw, 40px);
  background: var(--warm-deep);
}

.ranges h2,
.ranges__grid {
  max-width: 1200px;
  margin: 0 auto;
}

.ranges__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ranges__grid a {
  padding: 14px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  transition: color 160ms ease, background 160ms ease;
}

.ranges__grid a:hover {
  color: var(--warm);
  background: var(--ink);
}

/* Products */
.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 90px) clamp(20px, 4vw, 40px);
}

.products__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.products__heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.products__heading a {
  color: var(--rust);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.products__grid figure {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  transition: border-color 160ms ease;
}

.products__grid article:hover figure {
  border-color: var(--rust);
}

.products__grid figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products__grid h3 {
  margin: 14px 2px 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.products__grid article > p {
  margin: 6px 2px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.products__grid article strong {
  color: var(--ink);
}

/* Closing band + footer */
.band {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--ink);
  color: var(--warm);
  text-align: center;
}

.band h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}

.band__phone {
  font-size: 0.9rem;
  font-weight: 600;
}

.band__phone:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  padding: 36px 24px;
  font-size: 0.78rem;
  text-align: center;
}

.footer img {
  width: 110px;
}

.footer p {
  margin: 0;
}

.footer small {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 540px) {
  .header nav {
    display: none;
  }

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

  .band__actions {
    flex-direction: column;
  }
}
