:root {
  --ink: #1f211d;
  --muted: #686d61;
  --paper: #f8f6ee;
  --surface: #fffdf7;
  --line: #ded8c9;
  --gold: #f2bd33;
  --gold-dark: #b87900;
  --charcoal: #2d302b;
  --green: #687b54;
  --shadow: 0 24px 60px rgba(50, 43, 25, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(248, 246, 238, 0.9);
  border-bottom: 1px solid rgba(222, 216, 201, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #1f211d;
  background: var(--gold);
  border: 1px solid #d9a51e;
  border-radius: 50%;
  font-weight: 900;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 15px;
}

.main-nav a,
.site-footer a,
.contact-strip a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.main-nav a:hover,
.site-footer a:hover,
.contact-strip a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.header-phone {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(32px, 6vw, 84px) clamp(18px, 4vw, 56px) 42px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 690px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 10vw, 132px);
  max-width: 760px;
}

.hero-title {
  max-width: 640px;
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: 0.9;
}

.nowrap {
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 74px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.lead {
  max-width: 620px;
  color: var(--charcoal);
  font-size: clamp(19px, 2.1vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #191a16;
  background: var(--gold);
  border-color: #d9a51e;
  box-shadow: 0 12px 28px rgba(184, 121, 0, 0.18);
}

.button.ghost {
  background: var(--surface);
  border-color: var(--line);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.hero-points li {
  padding: 16px;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  font-size: 22px;
}

.hero-points span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 0 92px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 33, 29, 0.46), rgba(31, 33, 29, 0.02) 55%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(240px, calc(100% - 44px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card span,
.price-card strong,
.price-card small {
  display: block;
}

.price-card span,
.price-card small {
  color: var(--muted);
}

.price-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
}

section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-split,
.guarantee {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}

.section-split p:last-child,
.guarantee p:last-child {
  color: var(--charcoal);
  font-size: clamp(19px, 2vw, 25px);
}

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

.benefits,
.reviews,
.legal-page {
  background: var(--surface);
}

.benefit-grid,
.review-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article,
.review-grid article,
.contact-page-grid article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-grid article {
  min-height: 280px;
}

.benefit-grid p,
.review-grid p,
.material-list p,
.step-list p,
.faq-list p,
.legal-content p,
.contact-page-grid p {
  color: var(--muted);
}

.card-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--green);
  font-weight: 900;
}

.materials {
  color: #f4efe0;
  background: var(--charcoal);
}

.materials .eyebrow {
  color: var(--gold);
}

.material-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(248, 246, 238, 0.24);
  border-radius: var(--radius);
  background: rgba(248, 246, 238, 0.18);
}

.material-list div {
  padding: clamp(22px, 4vw, 42px);
  background: #30342e;
}

.material-list p {
  color: #d7d0c0;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-list li {
  position: relative;
  padding: 34px 24px 28px;
  border-right: 1px solid var(--line);
}

.step-list li:last-child {
  border-right: 0;
}

.step-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.guarantee {
  color: #f4efe0;
  background: linear-gradient(120deg, #2d302b 0%, #485338 100%);
  min-height: 520px;
}

.guarantee .eyebrow,
.guarantee p:last-child {
  color: #f4efe0;
}

.reviews {
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -10px 0 24px;
}

.review-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 6px max(70px, calc((100vw - (min(42vw, 560px) * 2) - 22px) / 2)) 34px;
}

.review-card {
  display: flex;
  flex: 0 0 clamp(380px, 42vw, 560px);
  min-height: 282px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: #fffdf7;
  border: 3px solid #cfc4ad;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(48, 43, 30, 0.1);
  scroll-snap-align: center;
  scroll-margin-inline: 24px;
}

.review-card p {
  color: #4c5147;
  font-size: 20px;
}

.review-card strong {
  display: block;
  margin-top: 28px;
  padding-top: 16px;
  color: var(--ink);
  border-top: 1px solid #ded5c4;
  font-size: 18px;
}

.review-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid #d9a51e;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(50, 43, 25, 0.16);
}

.review-button:hover {
  background: #f6ca55;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 940px;
}

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

summary {
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 22px 22px;
}

.request {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 6vw, 80px);
  background:
    linear-gradient(rgba(248, 246, 238, 0.92), rgba(248, 246, 238, 0.92)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(104, 123, 84, 0.12) 16px 17px);
}

.request-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-strip a {
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(242, 189, 51, 0.36);
  border-color: var(--gold-dark);
}

textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #f4efe0;
  background: #1f211d;
}

.site-footer p,
.site-footer address {
  color: #cfc8b8;
  font-style: normal;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.page-main,
.legal-page {
  min-height: 68vh;
}

.page-hero {
  padding-bottom: 28px;
}

.page-hero p {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.page-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
}

.contact-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 18px;
}

.legal-content {
  max-width: 920px;
  padding-top: 0;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 42px);
}

@media (max-width: 980px) {
  .hero,
  .section-split,
  .guarantee,
  .request {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 460px;
    border-radius: var(--radius);
  }

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

  .step-list,
  .material-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .step-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-list li:last-child {
    border-bottom: 0;
  }

  .main-nav {
    display: none;
  }
}

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

  .header-phone {
    padding: 8px 10px;
    font-size: 13px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-title {
    font-size: clamp(46px, 15vw, 58px);
  }

  .hero-points,
  .benefit-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .review-track {
    gap: 14px;
    padding: 4px max(18px, calc((100vw - min(82vw, 320px)) / 2)) 30px;
  }

  .review-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 258px;
    padding: 22px;
  }

  .review-card p {
    font-size: 18px;
  }

  .review-button {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .review-controls {
    margin: -4px 0 18px;
  }

  .hero-media {
    min-height: 340px;
  }

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