:root {
  --green: #18382a;
  --green-2: #24523d;
  --accent: #dfff54;
  --accent-2: #c9ed3f;
  --cream: #f3f1e9;
  --paper: #fbfaf6;
  --ink: #17201a;
  --muted: #6e756f;
  --line: rgba(23, 32, 26, .13);
  --radius: 24px;
  --shadow: 0 18px 60px rgba(16, 37, 27, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.header.is-scrolled,
.header.is-open {
  background: rgba(251, 250, 246, .96);
  color: var(--ink);
  box-shadow: 0 4px 28px rgba(17, 36, 27, .09);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 34px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.logo__mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 11px;
  transform: rotate(45deg);
}

.logo__mark::before,
.logo__mark::after,
.logo__mark span {
  position: absolute;
  display: block;
  width: 2px;
  height: 20px;
  background: var(--accent);
  content: "";
}

.logo__mark::before {
  transform: translateX(-7px);
}

.logo__mark::after {
  transform: translateX(7px);
}

.logo__mark span:first-child {
  height: 26px;
  transform: rotate(90deg);
}

.logo__mark span:last-child {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.logo__text {
  display: flex;
  line-height: 1.05;
  flex-direction: column;
  text-transform: uppercase;
}

.logo__text strong {
  font-size: 12px;
  letter-spacing: .06em;
}

.logo__text small {
  margin-top: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--accent);
  content: "";
  transition: width .2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header__contacts {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1.2;
}

.header__contacts a {
  font-size: 16px;
  font-weight: 800;
}

.work-status {
  margin-bottom: 4px;
  font-size: 10px;
  opacity: .76;
}

.work-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(223, 255, 84, .14);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: .2s;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--green);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 18, .93) 0%, rgba(10, 26, 18, .78) 33%, rgba(10, 26, 18, .17) 67%, rgba(10, 26, 18, .15) 100%),
    linear-gradient(0deg, rgba(8, 20, 14, .65), transparent 38%),
    url("assets/hero.webp") 50% 50% / cover no-repeat;
  transform: scale(1.01);
}

.hero__backdrop::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.11) .55px, transparent .55px);
  background-size: 4px 4px;
  content: "";
  opacity: .22;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 720px;
  padding-top: 130px;
  align-items: center;
  justify-content: space-between;
}

.hero__content {
  width: min(660px, 64%);
  padding-bottom: 80px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255,255,255,.7);
}

.eyebrow::before,
.section-kicker::before {
  width: 25px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.eyebrow span {
  color: var(--accent);
}

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

h1 {
  max-width: 680px;
  margin: 25px 0 22px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: .93;
  letter-spacing: -.055em;
}

h1 em,
h2 em {
  color: var(--accent-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__lead {
  max-width: 550px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.8);
  font-size: 19px;
}

.hero__price {
  display: flex;
  margin-bottom: 31px;
  align-items: flex-end;
  gap: 15px;
}

.hero__price span {
  padding-bottom: 7px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__price strong {
  color: var(--accent);
  font-size: 31px;
  line-height: 1;
}

.hero__price small {
  color: #fff;
  font-size: 14px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 60px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button--accent {
  color: #173023;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(205, 239, 64, .16);
}

.button--accent:hover {
  background: #ebff8d;
  box-shadow: 0 13px 36px rgba(205, 239, 64, .25);
}

.button--ghost {
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.button--ghost:disabled {
  cursor: default;
  opacity: .4;
  transform: none;
}

.button--light {
  color: var(--green);
  background: #fff;
}

.play-button {
  display: flex;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: none;
  cursor: pointer;
  text-align: left;
}

.play-button__icon {
  display: grid;
  width: 48px;
  height: 48px;
  padding-left: 3px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  place-items: center;
  color: var(--accent);
  font-size: 10px;
  transition: background .2s ease;
}

.play-button:hover .play-button__icon {
  color: var(--green);
  background: var(--accent);
}

.play-button b,
.play-button small {
  display: block;
}

.play-button b {
  font-size: 12px;
}

.play-button small {
  margin-top: 3px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.hero__note {
  display: flex;
  max-width: 200px;
  margin: 90px 20px 0 0;
  align-items: center;
  gap: 13px;
  transform: rotate(-3deg);
}

.hero__note-icon {
  display: grid;
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  place-items: center;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 26px;
  font-style: italic;
}

.hero__note p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.hero__note strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.hero__stats {
  position: relative;
  z-index: 3;
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--ink);
  background: var(--paper);
}

.hero__stats article {
  display: flex;
  min-height: 140px;
  padding: 30px 35px;
  align-items: flex-start;
  gap: 18px;
}

.hero__stats article + article {
  border-left: 1px solid var(--line);
}

.hero__stats > article > span {
  color: #9da39e;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.hero__stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

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

.section {
  padding: 120px 0;
}

.section-heading {
  display: flex;
  margin-bottom: 58px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.materials__copy h2,
.faq__title h2,
.contacts__panel h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.045em;
}

.section-heading p {
  max-width: 410px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
}

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

.benefit-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.benefit-card > span:not(.temperature) {
  display: block;
  margin: 48px 0 8px;
  color: #91a06e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.benefit-card--dark {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--green);
}

.benefit-card--dark p {
  color: rgba(255,255,255,.6);
}

.benefit-card--dark a {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.temperature {
  margin: 5px 0 45px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 58px;
  font-style: italic;
  line-height: 1;
}

.icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #eef2e5;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon--wind::before {
  top: 17px;
  left: 13px;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 6px 9px 0 var(--green), -4px 18px 0 var(--green);
}

.icon--wind::after {
  top: 11px;
  right: 9px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--green);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(35deg);
}

.icon--drop::before {
  top: 12px;
  left: 18px;
  width: 17px;
  height: 25px;
  border: 2px solid var(--green);
  border-radius: 50% 50% 55% 55%;
  transform: rotate(45deg);
}

.icon--sun::before {
  top: 16px;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.icon--sun::after {
  inset: 7px;
  border: 2px dotted var(--green);
  border-radius: 50%;
}

.calculator-section {
  color: #fff;
  background: var(--green);
}

.calculator {
  display: grid;
  align-items: center;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
}

.calculator__copy .section-kicker,
.works .section-kicker {
  color: var(--accent);
}

.calculator__copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(45px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.045em;
}

.calculator__copy h2 em {
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 400;
}

.calculator__copy > p {
  max-width: 420px;
  color: rgba(255,255,255,.63);
}

.check-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 30px;
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  place-items: center;
  color: var(--green);
  background: var(--accent);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.calculator__card {
  min-height: 545px;
  padding: 38px;
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 80px rgba(4, 15, 9, .22);
}

.calculator__top {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 11px;
}

.progress {
  height: 4px;
  flex: 1;
  overflow: hidden;
  border-radius: 9px;
  background: #edf0ec;
}

.progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-2);
  transition: width .25s ease;
}

.calc-step {
  display: none;
  min-height: 333px;
  margin: 0;
  padding: 0;
  border: 0;
}

.calc-step.is-active {
  display: block;
  animation: fadeUp .35s ease;
}

.calc-step legend {
  width: 100%;
  margin-bottom: 26px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.type-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.type-options label {
  cursor: pointer;
}

.type-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-options label > span {
  display: block;
  height: 155px;
  border: 2px solid transparent;
  border-radius: 14px;
  background-color: var(--cream);
  background-position: center;
  background-size: cover;
  transition: border .2s ease, transform .2s ease;
}

.type-options label:hover > span {
  transform: translateY(-3px);
}

.type-options input:checked + span {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(201, 237, 63, .18);
}

.type-options b {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}

.type-option__visual--gazebo {
  background-image: linear-gradient(rgba(11,32,20,.05), rgba(11,32,20,.08)), url("assets/gazebo.webp");
}

.type-option__visual--veranda {
  background-image: linear-gradient(rgba(11,32,20,.05), rgba(11,32,20,.08)), url("assets/hero.webp");
}

.type-option__visual--terrace {
  background-image: linear-gradient(rgba(11,32,20,.05), rgba(11,32,20,.08)), url("assets/cafe.webp");
}

.range-value {
  margin: 40px 0 20px;
  color: var(--green);
  font-size: 23px;
  text-align: center;
}

.range-value strong {
  font-size: 62px;
  letter-spacing: -.06em;
}

.range {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  outline: 0;
  accent-color: var(--accent-2);
  background: #e9ece8;
  cursor: pointer;
}

.range-labels {
  display: flex;
  margin-top: 7px;
  justify-content: space-between;
  color: #9ba09b;
  font-size: 10px;
}

.calc-hint {
  max-width: 430px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: #fafaf8;
  transition: border .2s, box-shadow .2s;
}

.field input:focus {
  border-color: #9eb72e;
  box-shadow: 0 0 0 3px rgba(201, 237, 63, .2);
}

.estimate {
  display: flex;
  margin-top: 23px;
  padding: 16px 20px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  background: #f1f4e9;
}

.estimate span {
  color: var(--muted);
  font-size: 11px;
}

.estimate strong {
  color: var(--green);
  font-size: 19px;
}

.calculator__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.calc-submit {
  display: none;
}

.privacy {
  margin: 12px 0 0;
  color: #9da19d;
  font-size: 9px;
  text-align: right;
}

.works {
  color: #fff;
  background: #10241a;
}

.section-heading--light p {
  color: rgba(255,255,255,.58);
}

.works-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, 305px);
  gap: 15px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.work-card--large {
  grid-row: 1 / 3;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 18, 12, .78), transparent 55%);
  content: "";
}

.work-card__overlay {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
}

.work-card__overlay span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.work-card__overlay h3 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.work-card--large .work-card__overlay h3 {
  font-size: 32px;
}

.works__footer {
  display: flex;
  margin-top: 35px;
  align-items: center;
  justify-content: space-between;
}

.works__footer p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.works__footer strong {
  color: #fff;
}

.materials {
  background: var(--cream);
}

.materials__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.materials__photo {
  position: relative;
}

.materials__photo img {
  min-height: 590px;
  border-radius: 20px;
  object-fit: cover;
}

.materials__badge {
  position: absolute;
  right: -25px;
  bottom: 35px;
  display: flex;
  width: 150px;
  height: 150px;
  border: 7px solid var(--cream);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--green);
  background: var(--accent);
}

.materials__badge strong {
  font-size: 25px;
}

.materials__badge span {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.materials__copy > p {
  max-width: 500px;
  margin: 25px 0 35px;
  color: var(--muted);
}

.material-list article {
  display: flex;
  padding: 20px 0;
  gap: 23px;
  border-top: 1px solid var(--line);
}

.material-list article > span {
  color: #9da39e;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.material-list h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

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

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.timeline::before {
  position: absolute;
  top: 87px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline article {
  position: relative;
  z-index: 1;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.timeline__num {
  color: #a5aaa6;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.timeline__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 30px 0 45px;
  border-radius: 50%;
  place-items: center;
  color: var(--green);
  background: var(--accent);
  font-size: 21px;
  font-weight: 700;
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

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

.process-cta {
  display: flex;
  margin-top: 16px;
  padding: 37px 42px;
  border-radius: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  color: #fff;
  background: var(--green);
}

.process-cta > div {
  max-width: 720px;
}

.process-cta > div > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-cta h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.process-cta .button {
  flex: 0 0 auto;
}

.review-section {
  padding: 90px 0;
  background: var(--accent);
}

.review-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
}

.review-score {
  display: flex;
  padding-right: 60px;
  border-right: 1px solid rgba(24,56,42,.2);
  align-items: flex-start;
  flex-direction: column;
}

.review-score > strong {
  font-size: 79px;
  line-height: 1;
  letter-spacing: -.07em;
}

.stars {
  margin: 13px 0 5px;
  color: var(--green);
  font-size: 18px;
  letter-spacing: .17em;
}

.review-score > span {
  color: rgba(24,56,42,.68);
  font-size: 11px;
}

.review-score a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
}

.review-quote {
  position: relative;
  margin: 0;
}

.quote-mark {
  position: absolute;
  top: -32px;
  left: -18px;
  color: rgba(24,56,42,.13);
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
}

.review-quote > p {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 0 35px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  line-height: 1.38;
}

.review-quote footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.review-quote footer strong,
.review-quote footer small {
  display: block;
}

.review-quote footer strong {
  font-size: 13px;
}

.review-quote footer small {
  color: rgba(24,56,42,.65);
  font-size: 10px;
}

.faq__grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 110px;
}

.faq__title > p {
  max-width: 320px;
  margin: 25px 0 15px;
  color: var(--muted);
  font-size: 13px;
}

.faq__title > a {
  color: var(--green);
  font-size: 19px;
  font-weight: 800;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  padding: 26px 0;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #edf0e8;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 14px;
  left: 8px;
  width: 14px;
  height: 2px;
  background: var(--green);
  content: "";
  transition: transform .2s ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 680px;
  margin: -6px 0 28px;
  padding-right: 50px;
  color: var(--muted);
  font-size: 13px;
}

.contacts {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.25fr .75fr;
  color: #fff;
  background: var(--green);
}

.contacts__map {
  min-height: 650px;
  background: #d8ddd7;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
  filter: saturate(.75) contrast(.95);
}

.contacts__panel {
  display: flex;
  padding: 75px 10vw 70px 70px;
  flex-direction: column;
}

.contacts__panel .section-kicker {
  color: var(--accent);
}

.contacts__panel h2 {
  margin-bottom: 42px;
}

.contact-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}

.contact-item > span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-size: 15px;
}

.contacts__panel .button {
  width: 100%;
  margin-top: auto;
}

.footer {
  padding: 55px 0 25px;
  color: #fff;
  background: #0b1912;
}

.footer__top {
  display: flex;
  padding-bottom: 45px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.footer__top p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  text-align: center;
}

.footer__phone {
  font-size: 18px;
  font-weight: 800;
}

.footer__bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  color: rgba(255,255,255,.35);
  font-size: 9px;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 8, .78);
  backdrop-filter: blur(7px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(490px, 100%);
  padding: 45px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
  transform: translateY(15px);
  transition: transform .25s ease;
}

.modal.is-open .modal__dialog {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--green);
  background: #edf0e8;
  cursor: pointer;
  font-size: 24px;
}

.modal h2 {
  margin: 10px 0;
  font-size: 37px;
  letter-spacing: -.04em;
}

.modal__dialog > p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.request-form .button {
  width: 100%;
  margin-top: 6px;
}

.request-form small {
  display: block;
  margin-top: 12px;
  color: #949a95;
  font-size: 9px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 25px;
  bottom: 25px;
  display: flex;
  width: min(380px, calc(100% - 40px));
  padding: 18px;
  border-radius: 14px;
  align-items: center;
  gap: 13px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.toast > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: var(--green);
  background: var(--accent);
  font-weight: 900;
}

.toast strong,
.toast p {
  display: block;
  margin: 0;
}

.toast p {
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 11px;
  }

  .header__contacts {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .calculator {
    gap: 45px;
  }

  .benefit-card {
    padding: 23px;
  }

  .contacts__panel {
    padding-right: 45px;
    padding-left: 45px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    color: inherit;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px 30px 30px;
    align-items: stretch;
    flex-direction: column;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(15, 31, 22, .1);
  }

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

  .nav a {
    padding: 8px 0;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
  }

  .hero__backdrop {
    background:
      linear-gradient(0deg, rgba(8, 22, 14, .98) 0%, rgba(8, 22, 14, .82) 51%, rgba(8, 22, 14, .12) 100%),
      url("assets/hero.webp") 65% 0 / auto 57% no-repeat,
      var(--green);
  }

  .hero__inner {
    min-height: 790px;
    padding-top: 300px;
    align-items: center;
  }

  .hero__content {
    width: 100%;
    padding-bottom: 165px;
  }

  .hero__note {
    display: none;
  }

  h1 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__stats {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    width: auto;
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }

  .hero__stats article {
    min-height: 130px;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .works-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 480px 300px 300px;
  }

  .work-card--large {
    grid-row: auto;
  }

  .materials__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .materials__photo img {
    min-height: 480px;
  }

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

  .timeline::before {
    display: none;
  }

  .review-layout,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .review-score {
    padding: 0 0 35px;
    border-right: 0;
    border-bottom: 1px solid rgba(24,56,42,.2);
  }

  .review-score a {
    margin-top: 22px;
  }

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

  .contacts__map,
  .contacts__map iframe {
    min-height: 420px;
  }

  .contacts__panel {
    min-height: 560px;
    padding: 65px max(30px, calc((100vw - 680px) / 2));
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 58px;
  }

  .logo__mark {
    width: 34px;
    height: 34px;
  }

  .logo__text strong {
    font-size: 10px;
  }

  .logo__text small {
    font-size: 8px;
  }

  .hero__inner {
    min-height: 770px;
    padding-top: 270px;
  }

  .hero__content {
    padding-bottom: 150px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    margin-top: 18px;
    font-size: 50px;
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .hero__price {
    margin-bottom: 22px;
  }

  .hero__price strong {
    font-size: 27px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .play-button {
    align-self: center;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 245px);
  }

  .hero__stats article {
    min-height: 125px;
    padding: 25px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 35px;
    gap: 20px;
  }

  .section-heading h2,
  .materials__copy h2,
  .faq__title h2,
  .contacts__panel h2 {
    font-size: 40px;
  }

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

  .benefit-card {
    min-height: 270px;
  }

  .calculator__copy h2 {
    font-size: 43px;
  }

  .calculator__card {
    min-height: 560px;
    padding: 25px 18px;
    border-radius: 17px;
  }

  .calc-step {
    min-height: 360px;
  }

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

  .type-options label {
    display: grid;
    align-items: center;
    grid-template-columns: 100px 1fr;
    gap: 13px;
  }

  .type-options label > span {
    height: 86px;
  }

  .type-options b {
    margin: 0;
    text-align: left;
  }

  .estimate {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .calculator__actions .button {
    min-height: 52px;
    padding: 0 18px;
    gap: 14px;
  }

  .works-grid {
    grid-template-rows: 390px 270px 270px;
  }

  .work-card__overlay {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .work-card__overlay h3,
  .work-card--large .work-card__overlay h3 {
    font-size: 23px;
  }

  .works__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .materials__photo img {
    min-height: 390px;
  }

  .materials__badge {
    right: -7px;
    bottom: -30px;
    width: 120px;
    height: 120px;
  }

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

  .timeline article {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
  }

  .timeline__num {
    display: none;
  }

  .timeline__icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .timeline h3 {
    margin: 2px 0 3px;
  }

  .process-cta {
    padding: 30px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
  }

  .review-quote > p {
    font-size: 22px;
  }

  .accordion summary {
    gap: 18px;
    font-size: 15px;
  }

  .footer {
    padding-top: 45px;
  }

  .footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer__top p {
    text-align: left;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .modal__dialog {
    padding: 40px 22px 25px;
  }

  .modal h2 {
    font-size: 32px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 58px;
    padding: 5px;
    grid-template-columns: .8fr 1.2fr;
    gap: 5px;
    background: #fff;
    box-shadow: 0 -5px 24px rgba(17, 36, 26, .16);
  }

  .mobile-cta a,
  .mobile-cta button {
    display: grid;
    border: 0;
    border-radius: 7px;
    place-items: center;
    color: var(--green);
    background: #edf0e8;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-cta button {
    background: var(--accent);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
