:root {
  --bg: #fbf7f1;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --surface-warm: #f4e9dc;
  --text: #4d372c;
  --text-strong: #2f1f18;
  --muted: #796b61;
  --line: #eadfd2;
  --accent: #ddb98f;
  --accent-strong: #a87449;
  --sage: #7f8f82;
  --sage-soft: #eef2ea;
  --shadow: 0 18px 48px rgba(68, 46, 32, 0.12);
  --shadow-soft: 0 10px 28px rgba(68, 46, 32, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --page-gutter: clamp(28px, 4vw, 72px);
  --shell: calc(100% - var(--page-gutter) * 2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(127, 143, 130, 0.08), transparent 24%, transparent 76%, rgba(221, 185, 143, 0.12)),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

h1,
h2 {
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 650px;
  font-size: 62px;
}

h2 {
  font-size: 38px;
}

h3 {
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 800;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 70px;
  padding: 10px var(--page-gutter);
  border-bottom: 1px solid rgba(234, 223, 210, 0.9);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 8px 28px rgba(68, 46, 32, 0.06);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 9px;
  color: var(--text-strong);
}

.logo-header {
  display: inline-flex;
  width: 192px;
  min-width: 176px;
  align-items: center;
}

.logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent-strong);
}

.logo-mark svg {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: grid;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.95;
  white-space: nowrap;
}

.logo-text small {
  margin-top: 6px;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 34px);
  color: #5b4539;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
}

.phone-link strong,
.phone-link small {
  display: block;
}

.phone-link strong {
  font-size: 19px;
  line-height: 1.05;
  white-space: nowrap;
}

.phone-link small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.phone-icon {
  color: var(--accent-strong);
  font-size: 27px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(168, 116, 73, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #edcba3, #dfb27f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 18px rgba(168, 116, 73, 0.15);
  color: #2f1f18;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  border-color: rgba(168, 116, 73, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 14px 22px rgba(168, 116, 73, 0.19);
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 15px;
}

.btn-primary {
  width: max-content;
}

.btn-outline {
  background: #fffaf4;
  box-shadow: none;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: clip;
  isolation: isolate;
  border-bottom: 1px solid rgba(234, 223, 210, 0.9);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  filter: saturate(1.05) contrast(1.06) brightness(1.01);
  object-fit: cover;
  object-position: 68% center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.96) 0%, rgba(251, 247, 241, 0.82) 29%, rgba(251, 247, 241, 0.16) 52%, rgba(251, 247, 241, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(251, 247, 241, 0.14) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 115px;
  background: linear-gradient(180deg, transparent, rgba(251, 247, 241, 0.94));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(340px, 390px);
  gap: clamp(56px, 8vw, 150px);
  align-items: center;
  min-height: 680px;
  padding-block: 58px 86px;
}

.hero-copy {
  max-width: 720px;
}

.lead {
  max-width: 470px;
  margin-top: 22px;
  color: #5a463b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: 38px minmax(90px, 1fr);
  align-items: center;
  gap: 11px;
  max-width: 184px;
  color: #493327;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-points span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(168, 116, 73, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-strong);
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(89, 61, 42, 0.1);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.soft-note {
  display: inline-grid;
  grid-template-columns: 22px minmax(0, 185px);
  align-items: center;
  gap: 8px;
  color: #665348;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.soft-note svg {
  color: var(--accent-strong);
  font-size: 22px;
}

.request-form {
  position: relative;
  display: grid;
  gap: 13px;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-form {
  align-self: center;
  padding: 32px;
}

.request-form h2 {
  font-size: 30px;
}

.request-form p {
  color: #5b463b;
  font-weight: 700;
}

.request-form label:not(.consent) span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.request-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-strong);
  outline: 0;
  padding: 0 16px;
  box-shadow: inset 0 2px 6px rgba(75, 48, 36, 0.04);
}

.request-form input:not([type="checkbox"]):focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(221, 185, 143, 0.2);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: #6e5c50;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent-strong);
}

.form-status {
  min-height: 18px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.calculator-card,
.strip-card,
.feature-gallery,
.benefits,
.process-section,
.commerce-grid,
.faq-card,
.bottom-request,
.contact-map {
  margin-top: 20px;
}

.calculator-card {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(330px, 1.05fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: stretch;
  margin-top: -54px;
  padding: 30px;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.calc-intro {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.calc-intro h2,
.section-copy h2,
.benefits h2,
.process-card h2,
.timing-card h2,
.price-card h2,
.promo-card h2,
.review-card h2,
.faq-card h2,
.contact-card h2 {
  margin-top: 6px;
}

.calc-intro p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.question-box p,
.bottom-request p:not(.eyebrow),
.price-note {
  margin-top: 12px;
  color: #665247;
  font-weight: 700;
}

.calc-tip {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff9f2;
  color: #5f4c40;
  font-size: 13px;
  font-weight: 800;
}

.calc-tip span {
  color: var(--accent-strong);
  font-size: 26px;
}

.calc-panel {
  display: grid;
  align-content: center;
  gap: 14px;
}

.calc-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.calc-progress strong {
  color: var(--text-strong);
  font-size: 15px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e7dc;
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--accent));
  transition: width 0.2s ease;
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.calc-option {
  min-height: 48px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: #574236;
  font-weight: 800;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.calc-option.is-active,
.calc-option:hover {
  border-color: var(--accent);
  background: #fff9f2;
  box-shadow: 0 0 0 4px rgba(221, 185, 143, 0.14);
}

.calc-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff9f2;
  color: #5b4639;
  font-weight: 800;
}

.calc-summary strong {
  color: var(--text-strong);
  font-size: 24px;
}

.range-row {
  display: grid;
  gap: 8px;
  color: #5b4639;
  font-size: 14px;
  font-weight: 800;
}

.range-row[hidden] {
  display: none;
}

.range-row input {
  width: 100%;
  accent-color: var(--accent-strong);
}

.calc-actions {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 10px;
}

.calc-actions .btn {
  width: 100%;
}

.calc-preview {
  position: relative;
  min-height: 224px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eee6dd;
}

.calc-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.2s ease;
}

.calc-preview figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: min(82%, 270px);
  padding: 13px 16px;
  border: 1px solid rgba(234, 223, 210, 0.95);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 26px rgba(63, 42, 29, 0.14);
  color: #4c3428;
  font-weight: 800;
}

.calc-preview figcaption small {
  color: var(--muted);
}

.calc-preview figcaption strong {
  color: #2b1b14;
  font-size: 22px;
}

.strip-card {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(560px, 1fr) 140px;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.section-copy.compact h2 {
  font-size: 30px;
}

.texture-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(92px, 1fr));
  gap: 14px;
  align-items: start;
}

.texture-list article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  text-align: center;
}

.texture-swatch {
  position: relative;
  display: block;
  width: 82px;
  height: 66px;
  overflow: hidden;
  border: 1px solid rgba(75, 48, 36, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(71, 48, 34, 0.1);
}

.texture-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(180deg, transparent 68%, rgba(54, 36, 25, 0.09));
  pointer-events: none;
}

.texture-matte {
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 255, 255, 0.92), transparent 30%),
    repeating-linear-gradient(0deg, rgba(142, 142, 134, 0.06) 0 1px, transparent 1px 5px),
    #f5f4ef;
}

.texture-satin {
  background:
    linear-gradient(120deg, #fff 0 24%, #ece8df 25% 54%, #fbfaf7 55% 70%, #d9d3c9 100%);
}

.texture-beige {
  background:
    radial-gradient(circle at 35% 30%, #f7dfc0, transparent 42%),
    linear-gradient(145deg, #ead1b1, #c89b6b 72%, #ae7e55);
}

.texture-gray {
  background:
    repeating-linear-gradient(105deg, rgba(84, 88, 84, 0.12) 0 1px, transparent 1px 6px),
    linear-gradient(145deg, #e3e5e1, #b9bdb7);
}

.texture-gloss {
  background:
    linear-gradient(118deg, transparent 0 27%, rgba(255, 255, 255, 0.96) 28% 36%, transparent 37% 54%, rgba(255, 255, 255, 0.72) 55% 61%, transparent 62%),
    linear-gradient(145deg, #ffffff, #dfe4e2 63%, #b7bfbd);
}

.texture-fabric {
  background:
    repeating-linear-gradient(0deg, rgba(110, 87, 66, 0.12) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 6px),
    #d8c4ab;
}

.texture-list h3 {
  color: #5b4639;
  font-size: 12px;
  line-height: 1.2;
}

.outline-link {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff9f2;
  color: #5a3b2c;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.feature-gallery {
  display: grid;
  grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.lighting-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  color: #5d4538;
  font-size: 12px;
  font-weight: 800;
}

.lighting-icons span {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(168, 116, 73, 0.16);
  border-radius: var(--radius-sm);
  background: #fff9f2;
}

.lighting-icons svg {
  width: 30px;
  height: 30px;
  color: var(--accent-strong);
  stroke-width: 1.65;
}

.lighting-icons span:last-child {
  grid-column: 1 / -1;
}

.image-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.35fr;
  gap: 14px;
}

.image-row article,
.portfolio-grid img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #eee6dd;
}

.image-row img,
.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-row article:hover img,
.portfolio-grid img:hover {
  transform: scale(1.035);
}

.portfolio {
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.portfolio-grid img {
  aspect-ratio: 1.55;
}

.portfolio-grid img:nth-child(1),
.portfolio-grid img:nth-child(4) {
  grid-column: span 2;
}

.benefits {
  padding: 30px;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 22px;
  text-align: left;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1px 10px;
  align-items: start;
  min-height: 50px;
}

.benefit-grid span {
  display: grid;
  grid-row: 1 / span 2;
  align-self: start;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(168, 116, 73, 0.3);
  border-radius: 50%;
  background: #fff9f2;
  color: var(--accent-strong);
  font-size: 22px;
}

.benefit-grid h3 {
  padding-top: 1px;
  font-size: 14px;
  line-height: 1.25;
}

.benefit-grid p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(620px, 1.25fr) minmax(430px, 0.95fr);
  gap: 20px;
}

.process-card,
.timing-card,
.price-card,
.promo-card,
.review-card,
.faq-card,
.contact-card {
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-card {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  padding: 28px;
}

.process-copy ol {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-copy li {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  counter-increment: steps;
}

.process-copy li::before {
  content: counter(steps);
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--accent-strong);
  font-weight: 800;
}

.process-copy li strong,
.process-copy li span {
  grid-column: 2;
}

.process-copy li span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.process-card > img {
  align-self: center;
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
}

.timing-card {
  padding: 30px;
}

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

.timing-grid span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: #fff9f2;
  color: #5b473b;
  font-weight: 800;
}

.timing-grid strong {
  color: var(--muted);
  font-size: 12px;
}

.commerce-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(330px, 0.86fr) minmax(400px, 1.14fr);
  gap: 20px;
}

.price-card,
.promo-card,
.review-card {
  min-height: 300px;
  padding: 26px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 14px;
}

.price-list p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.price-list p:last-child {
  border-right: 0;
}

.price-list span,
.price-list small {
  color: var(--muted);
  font-weight: 700;
}

.price-list strong {
  color: var(--text-strong);
  font-size: 21px;
  line-height: 1.12;
}

.price-card .btn {
  margin-top: 18px;
}

.price-note {
  font-size: 12px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #fffaf5, #f5e9db);
}

.promo-card > img {
  position: absolute;
  right: -18px;
  bottom: -14px;
  width: 44%;
  max-width: 190px;
  opacity: 0.9;
}

.promo-card > div {
  position: relative;
  z-index: 1;
}

.promo-card p:not(.eyebrow) {
  max-width: 300px;
  margin-top: 12px;
  color: #51382d;
  font-weight: 800;
}

.promo-card small {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.countdown span {
  display: grid;
  justify-items: center;
  min-width: 45px;
  color: #4d372c;
  font-size: 11px;
  font-weight: 800;
}

.countdown strong {
  display: grid;
  min-width: 42px;
  min-height: 38px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-strong);
  font-size: 23px;
  box-shadow: inset 0 0 0 1px rgba(234, 223, 210, 0.8);
}

.review-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf9;
}

.review-body img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

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

.review-body span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.review-body p {
  margin-top: 8px;
  color: #5b4639;
  font-size: 13px;
  font-weight: 700;
}

.stars {
  margin-top: 8px;
  color: #eda51e;
  font-size: 20px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-strong);
  font-weight: 800;
}

.faq-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  padding: 26px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-top: 20px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff9f2;
}

summary {
  position: relative;
  min-height: 48px;
  padding: 14px 42px 14px 16px;
  color: #543d31;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #5b3426;
  border-bottom: 2px solid #5b3426;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

details p {
  margin: -4px 16px 16px;
  color: var(--muted);
  font-weight: 700;
}

.question-box {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(110deg, #fff9f2, #eef2ea);
}

.bottom-request {
  background: transparent;
}

.request-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(500px, 1.28fr) 180px;
  gap: 28px;
  align-items: center;
  min-height: 196px;
  overflow: hidden;
  padding: 28px 34px;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.95), rgba(255, 253, 249, 0.82) 64%, rgba(255, 253, 249, 0.48)),
    var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.inline-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 17px;
  box-shadow: var(--shadow-soft);
}

.inline-form .consent {
  grid-column: 1 / 2;
}

.inline-form .btn {
  width: 100%;
}

.inline-form .form-status {
  grid-column: 1 / -1;
}

.request-decor {
  width: 170px;
  opacity: 0.9;
}

.contact-map {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(600px, 1.18fr);
  gap: 20px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.contact-card address {
  display: grid;
  gap: 7px;
  font-style: normal;
  font-weight: 800;
}

.contact-card address span {
  color: var(--muted);
  font-size: 13px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(75, 48, 36, 0.22);
  border-radius: 50%;
  background: #fffdf9;
  color: #4d362b;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-wrap {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 210, 0.94);
  border-radius: var(--radius);
  background: #eef2ea;
  box-shadow: var(--shadow-soft);
}

.map-wrap::before {
  content: none;
}

.map-static {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(127, 143, 130, 0.1), rgba(221, 185, 143, 0.08)),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(127, 143, 130, 0.09) 42px 43px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(168, 116, 73, 0.08) 42px 43px);
}

.map-road,
.map-label,
.map-building,
.map-pin {
  position: absolute;
  pointer-events: none;
}

.map-road {
  border: 1px solid rgba(176, 151, 118, 0.38);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 0 0 6px rgba(231, 219, 203, 0.45);
}

.map-road-main {
  top: 51%;
  right: -8%;
  left: -8%;
  height: 54px;
  transform: rotate(-8deg);
}

.map-road-cross {
  top: -16%;
  left: 54%;
  width: 60px;
  height: 135%;
  transform: rotate(16deg);
}

.map-road-side {
  top: 17%;
  right: 9%;
  width: 44px;
  height: 82%;
  transform: rotate(-22deg);
}

.map-label {
  padding: 5px 9px;
  border: 1px solid rgba(168, 116, 73, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: #735340;
  font-size: 12px;
  font-weight: 900;
}

.map-label-main {
  top: 47%;
  left: 35%;
  transform: rotate(-8deg);
}

.map-label-cross {
  top: 23%;
  left: 58%;
  transform: rotate(16deg);
}

.map-building {
  top: 40%;
  left: 53.5%;
  display: grid;
  width: 52px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(168, 116, 73, 0.62);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--text-strong);
  font-weight: 900;
}

.map-pin {
  top: calc(40% - 21px);
  left: calc(53.5% + 26px);
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 4px solid #a87449;
  border-radius: 50% 50% 50% 0;
  background: #fffdf9;
  box-shadow: 0 12px 20px rgba(82, 52, 34, 0.24);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #a87449;
}

.map-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #eef2ea;
}

.map-fallback {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: 320px;
  padding: 16px 18px;
  border: 1px solid rgba(234, 223, 210, 0.95);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-soft);
}

.map-fallback span,
.map-fallback small {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-fallback strong {
  color: var(--text-strong);
}

.footer {
  margin-top: 20px;
  padding: 34px 0 20px;
  background: #2f241f;
  color: #efe7dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(160px, 0.85fr) minmax(220px, 0.95fr) minmax(220px, 0.95fr);
  gap: 34px;
}

.footer .logo {
  color: #fff7ef;
}

.footer .logo-text small {
  color: #cdb8a4;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 14px;
  color: #cdb8a4;
  font-weight: 700;
}

.footer h3 {
  color: #fff7ef;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer a,
.footer span {
  color: #d7c7b6;
  font-size: 13px;
  font-weight: 700;
}

.footer a:hover {
  color: #fff7ef;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 239, 0.13);
}

.footer-bottom span:last-child {
  max-width: 560px;
  text-align: right;
}

@media (max-width: 1320px) and (min-width: 1121px) {
  :root {
    --page-gutter: clamp(24px, 3vw, 42px);
  }

  .site-header {
    gap: 18px;
  }

  .logo {
    grid-template-columns: 38px auto;
    gap: 7px;
  }

  .logo-header {
    width: 176px;
    min-width: 160px;
  }

  .logo-mark,
  .logo-mark svg {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 22px;
  }

  .main-nav {
    gap: clamp(12px, 1.4vw, 18px);
    font-size: 14px;
  }

  .header-actions {
    gap: 10px;
  }

  .phone-link {
    gap: 7px;
  }

  .phone-icon {
    font-size: 23px;
  }

  .phone-link strong {
    font-size: 17px;
  }

  .phone-link small {
    font-size: 12px;
  }

  .btn-small {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .strip-card {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) 118px;
    gap: 14px;
    padding-inline: 24px;
  }

  .process-section {
    grid-template-columns: minmax(520px, 1.2fr) minmax(360px, 0.9fr);
  }

  .commerce-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(275px, 0.86fr) minmax(320px, 1.05fr);
    gap: 16px;
  }

  .price-card,
  .promo-card,
  .review-card {
    padding: 22px;
  }

  .review-body {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .review-body img {
    width: 76px;
    height: 76px;
  }

  .request-grid {
    grid-template-columns: minmax(270px, 0.9fr) minmax(430px, 1.25fr) 140px;
    gap: 18px;
    padding-inline: 28px;
  }

  .request-decor {
    width: 138px;
  }

  .contact-map {
    grid-template-columns: minmax(330px, 0.85fr) minmax(520px, 1.15fr);
  }

  .footer-grid {
    grid-template-columns: minmax(280px, 1.2fr) minmax(140px, 0.7fr) minmax(180px, 0.9fr) minmax(180px, 0.9fr);
  }

  .texture-list {
    grid-template-columns: repeat(6, minmax(68px, 1fr));
    gap: 10px;
  }

  .texture-swatch {
    width: 64px;
    height: 64px;
  }

  .outline-link {
    padding-inline: 10px;
    font-size: 12px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero-grid,
  .calculator-card,
  .process-section,
  .commerce-grid,
  .faq-card,
  .request-grid,
  .contact-map {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

  .calculator-card {
    margin-top: -28px;
  }

  .calc-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .strip-card,
  .feature-gallery,
  .portfolio {
    grid-template-columns: 1fr;
  }

  .outline-link {
    min-height: 52px;
  }

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

  .inline-form {
    max-width: 760px;
  }

  .request-decor {
    position: absolute;
    right: 22px;
    bottom: -26px;
    opacity: 0.42;
  }

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

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 29px;
    line-height: 1.08;
  }

  .site-header {
    min-height: 66px;
    gap: 12px;
    padding-inline: 12px;
  }

  .logo {
    grid-template-columns: 34px auto;
    gap: 7px;
  }

  .logo-header {
    width: 150px;
    min-width: 140px;
  }

  .logo-mark,
  .logo-mark svg {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-text small {
    font-size: 7px;
  }

  .phone-link span:last-child,
  .header-actions .btn {
    display: none;
  }

  .phone-icon {
    font-size: 24px;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0.98) 0%, rgba(251, 247, 241, 0.88) 54%, rgba(251, 247, 241, 0.44) 100%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.96), rgba(251, 247, 241, 0.26));
  }

  .hero-grid {
    min-height: 0;
    gap: 24px;
    padding-block: 40px 52px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-points li {
    max-width: none;
  }

  .hero-cta {
    display: grid;
    gap: 14px;
    margin-top: 30px;
  }

  .btn,
  .btn-primary {
    width: 100%;
  }

  .hero-form,
  .calculator-card,
  .strip-card,
  .feature-gallery,
  .benefits,
  .timing-card,
  .price-card,
  .promo-card,
  .review-card,
  .faq-card,
  .request-grid,
  .contact-card {
    padding: 22px;
  }

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

  .calc-actions,
  .inline-form,
  .timing-grid,
  .price-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .texture-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .texture-list article {
    flex: 0 0 92px;
    scroll-snap-align: start;
  }

  .image-row,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .image-row article,
  .portfolio-grid img {
    min-height: 190px;
  }

  .portfolio-grid img:nth-child(1),
  .portfolio-grid img:nth-child(4) {
    grid-column: auto;
  }

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

  .process-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .process-card > img {
    min-height: 230px;
  }

  .price-list p {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-list p:last-child {
    border-bottom: 0;
  }

  .promo-card > img {
    width: 48%;
    opacity: 0.42;
  }

  .request-decor {
    display: none;
  }

  .inline-form .consent {
    grid-column: auto;
  }

  .map-wrap {
    min-height: 300px;
  }

  .map-fallback {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: min(100% - 24px, 366px);
  }

  .shell {
    margin-left: 12px;
    margin-right: auto;
  }

  .calc-options {
    grid-template-columns: 1fr;
  }
}
