:root {
  --bg: #f6f0e8;
  --bg-2: #efe5d6;
  --panel: #fff9f0;
  --line: #d8cbbb;
  --line-2: #bca990;
  --red: #b9552a;
  --red-2: #d97745;
  --paper: #162b29;
  --text: #4f5f59;
  --muted: #64736c;
  --cream: #fff8ee;
  --font-head: "Oswald", Impact, sans-serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

section {
  scroll-margin-top: 92px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: var(--red);
  color: var(--cream);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

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

.shell--narrow {
  max-width: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.96);
  backdrop-filter: blur(10px);
}

.nav,
.brand,
.nav-menu,
.hero-stats,
.section-actions,
.sticky-cta .shell {
  display: flex;
  align-items: center;
}

.nav {
  min-height: 74px;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  gap: 11px;
}

.brand__bar {
  display: block;
  width: 9px;
  height: 28px;
  background: var(--red);
  transform: skewX(-12deg);
}

.brand__name,
.brand__sub,
.nav-menu,
.skew-btn,
h1,
h2,
h3,
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
}

.brand__name {
  color: var(--paper);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand__sub {
  border-left: 1px solid var(--line);
  color: var(--red-2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  padding-left: 11px;
}

.nav-menu {
  gap: 24px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-menu a:not(.skew-btn):hover {
  color: var(--red-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.skew-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 30px;
  background: var(--red);
  color: var(--cream);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transform: skewX(-10deg);
}

.skew-btn span {
  transform: skewX(10deg);
}

.skew-btn:hover {
  background: var(--red-2);
}

.skew-btn--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--red);
}

.hero__wash {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  background: linear-gradient(135deg, rgba(185, 85, 42, 0.12), transparent 70%);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  padding: 58px 0 70px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  border: 1px solid rgba(185, 85, 42, 0.32);
  background: rgba(185, 85, 42, 0.1);
  color: #8b3f22;
  padding: 8px 15px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge span {
  width: 8px;
  height: 8px;
  background: var(--red-2);
}

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

h1,
h2,
h3 {
  color: var(--paper);
  font-weight: 700;
  line-height: 1;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(44px, 5.4vw, 60px);
}

h1 em {
  display: block;
  color: var(--red-2);
  font-style: normal;
}

h2 {
  font-size: clamp(34px, 4vw, 42px);
}

.hero__copy > p:not(.badge) {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-stats {
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  padding: 18px 26px 0 0;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.hero-stats strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checker {
  scroll-margin-top: 100px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 32px;
  box-shadow: 0 30px 60px rgba(36, 43, 39, 0.12);
}

.checker__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--red-2);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checker__top span:last-child {
  color: var(--muted);
}

.checker__bar {
  height: 4px;
  margin-bottom: 26px;
  background: var(--line);
  overflow: hidden;
}

.checker__bar span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--red);
  transition: width 180ms ease;
}

.checker h2 {
  margin-bottom: 18px;
  font-size: 27px;
}

.checker__options {
  display: grid;
  gap: 10px;
}

.option-btn {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--paper);
  cursor: pointer;
  padding: 14px 15px;
  text-align: left;
}

.option-btn:hover {
  border-color: var(--red-2);
}

.text-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  margin-top: 16px;
  padding: 6px 0;
}

.checker__result p {
  color: var(--text);
}

.checker__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fineprint {
  margin: 20px 0 0;
  color: #6d776f;
  font-size: 11.5px;
}

.status-strip {
  background: var(--red);
  color: var(--cream);
}

.status-strip .shell {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 16px;
  text-align: center;
  font-size: 14px;
}

.status-strip strong {
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.section--sand {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head--stack {
  display: block;
  max-width: 680px;
}

.section-head--center {
  display: block;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--red-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.card-grid {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

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

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

.info-card,
.status-card,
.step-card {
  background: var(--panel);
  padding: 30px;
}

.info-card {
  position: relative;
}

.info-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: var(--line);
}

.info-card--hot::before {
  background: var(--red);
}

.info-card span,
.step-card span {
  display: block;
  color: var(--red-2);
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
}

.info-card h3,
.status-card h3,
.step-card h3 {
  margin: 10px 0;
  font-size: 19px;
  font-weight: 700;
}

.info-card p,
.status-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.status-card > p:first-child {
  margin-bottom: 14px;
  color: var(--red-2);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  margin-top: 54px;
}

.timeline__item {
  position: relative;
  padding: 0 0 28px 32px;
  border-left: 2px solid var(--line);
}

.timeline__item::before {
  position: absolute;
  left: -8px;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--bg-2);
  content: "";
  background: var(--red);
}

.timeline__item strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
}

.timeline__item span {
  display: block;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
}

.warning__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.warning p:not(.eyebrow) {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
}

.image-frame {
  position: relative;
  margin-top: 28px;
}

.image-frame::before {
  position: absolute;
  inset: 10px -10px -10px 10px;
  content: "";
  background: var(--red);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(36, 43, 39, 0.16);
}

.sign-grid {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.sign-grid div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--panel);
  color: #263d39;
  padding: 22px 20px;
  font-size: 14.5px;
}

.sign-grid span {
  color: var(--red-2);
  font-weight: 800;
}

.section-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.section-actions a:not(.skew-btn) {
  color: var(--paper);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  padding: 22px 0;
  text-transform: uppercase;
}

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

summary::after {
  content: "+";
  color: var(--red-2);
  font-size: 26px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 24px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.contact__wash {
  position: absolute;
  inset: 0 0 0 auto;
  width: 40%;
  background: rgba(36, 43, 39, 0.08);
  transform: skewX(-12deg) translateX(40%);
}

.contact__grid {
  position: relative;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-block: 78px;
}

.contact .eyebrow {
  color: #fff0e2;
}

.contact h2 {
  max-width: 430px;
  color: var(--paper);
  font-size: clamp(40px, 4.6vw, 48px);
}

.contact p {
  max-width: 440px;
  color: var(--cream);
  font-size: 17px;
  line-height: 1.6;
}

.contact-phone {
  display: inline-block;
  margin-top: 10px;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
}

.review-form {
  display: grid;
  gap: 15px;
  background: var(--bg);
  padding: 36px;
}

.form-row {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--paper);
  padding: 14px;
}

textarea {
  resize: vertical;
}

.form-submit {
  border: 0;
  background: var(--red);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 17px;
  text-transform: uppercase;
}

.review-form p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 52px 0 92px;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.footer__grid > div:first-child {
  max-width: 360px;
}

.footer h2 {
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer__bottom {
  display: grid;
  gap: 34px;
  padding-top: 24px;
  grid-template-columns: 1fr 1fr;
}

.footer__bottom p {
  color: #6d776f;
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  border-top: 1px solid var(--red-2);
  background: #173f3a;
  color: var(--cream);
}

.sticky-cta .shell {
  min-height: 64px;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.sticky-cta strong {
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-block: 14px;
  }

  .nav-toggle {
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .brand {
    max-width: calc(100% - 58px);
    flex-wrap: wrap;
  }

  .hero__grid,
  .warning__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero__grid,
  .section,
  .contact__grid {
    padding-block: 58px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div + div {
    border-left: 0;
    padding: 18px 0 0;
  }

  .checker,
  .review-form {
    padding: 24px 20px;
  }

  .card-grid--two,
  .card-grid--three,
  .card-grid--four,
  .sign-grid,
  .form-row,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .skew-btn {
    width: 100%;
  }

  .sticky-cta .shell {
    padding: 12px 0;
  }
}
