:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-2: #edf1ec;
  --text: #202523;
  --muted: #5e6862;
  --line: #d7ddd7;
  --green: #315d43;
  --green-dark: #1f3f2d;
  --clay: #b35c33;
  --clay-dark: #8f4422;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 37, 35, 0.14);
  --radius: 8px;
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

body.is-quiz-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

section[id],
main[id] {
  scroll-margin-top: 88px;
}

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
input,
select,
textarea,
summary {
  touch-action: manipulation;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-dark);
  padding: 10px 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(179, 92, 51, 0.5);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 12px 28px;
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 251, 248, 0.96);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(32, 37, 35, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.brand__mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.brand__text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand__text strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand__text span {
  color: currentColor;
  font-size: 12px;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.header-phone,
.header-action,
.nav-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.header-phone:hover,
.header-action:hover,
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .header-phone:hover,
.site-header.is-scrolled .header-action:hover,
.site-header.is-scrolled .nav-toggle:hover {
  background: var(--surface-2);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-action__short {
  display: none;
}

.header-phone,
.header-action {
  border: 1px solid currentColor;
}

.header-phone {
  gap: 8px;
  white-space: nowrap;
}

.header-phone svg {
  display: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(20, 25, 21, 0.78) 0%, rgba(20, 25, 21, 0.58) 38%, rgba(20, 25, 21, 0.08) 78%),
    linear-gradient(180deg, rgba(20, 25, 21, 0.42) 0%, rgba(20, 25, 21, 0) 38%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 72px auto 0;
  padding: 48px 0;
  transform: translateX(calc((min(1180px, 100vw - 40px) - min(760px, 100vw - 40px)) / -2));
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc18d;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(52px, 5.8vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  background: var(--clay);
  color: var(--white);
}

.button--primary:hover {
  background: var(--clay-dark);
}

.button--quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--green-dark);
}

.button--quiet:hover {
  background: #edf1ec;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button--light {
  background: var(--white);
  color: var(--green-dark);
}

.button--light:hover {
  background: #edf1ec;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 34px;
}

.hero__badges span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(26, 33, 28, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 0 16px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--green-dark);
  color: var(--white);
  padding: 42px 0;
}

.intro-band .section-label {
  color: #ffc18d;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 46px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.intro-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.intro-grid--compact {
  align-items: center;
}

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

.proof-list article {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.proof-list strong {
  font-size: 22px;
  line-height: 1.05;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.78);
}

.intro-copy p:last-child,
.section-head p:last-child,
.project-card p:last-child,
.contact-layout p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 88px 0;
}

.section--muted {
  background: var(--surface-2);
}

.section--muted .section-label {
  color: var(--clay-dark);
}

.kit-section {
  border-top: 1px solid rgba(49, 93, 67, 0.12);
  border-bottom: 1px solid rgba(179, 92, 51, 0.22);
  background:
    linear-gradient(180deg, #edf3ec 0%, #f5efe7 100%);
}

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

.section-head .button {
  margin-top: 8px;
}

.section-head p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(32, 37, 35, 0.07);
}

.project-card img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
}

.project-card--featured img {
  height: clamp(250px, 28vw, 360px);
}

.project-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.project-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e7efe8;
  color: var(--green-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.project-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-card .button {
  justify-self: start;
  align-self: flex-start;
  margin-top: auto;
}

.project-card dl {
  display: grid;
  gap: 1px;
  margin: 20px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.project-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  background: #f6f8f5;
}

.project-card dt {
  color: var(--muted);
}

.project-card dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.kit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.section-head--sticky {
  position: sticky;
  top: 104px;
}

.kit-section .section-head--sticky {
  position: static;
}

.kit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.kit-item {
  min-height: 148px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  height: 100%;
  padding: 16px;
}

.kit-section .kit-item {
  border-color: rgba(49, 93, 67, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(32, 37, 35, 0.055);
}

.kit-item__icon {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(49, 93, 67, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0)),
    #e7efe8;
  color: var(--green);
  box-shadow: inset 0 -10px 20px rgba(49, 93, 67, 0.08);
}

.kit-item:nth-child(2n) .kit-item__icon {
  border-color: rgba(179, 92, 51, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    #f5e9df;
  color: var(--clay-dark);
}

.kit-item__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.kit-item h3 {
  min-height: 2.3em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.15;
}

.kit-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.kit-action {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  justify-self: start;
}

.kit-action:hover {
  background: var(--green-dark);
}

.price-section {
  background:
    linear-gradient(180deg, rgba(179, 92, 51, 0.065), rgba(251, 251, 248, 0) 44%),
    var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
}

.price-layout {
  display: grid;
  gap: 24px;
}

.price-layout .section-head {
  max-width: 760px;
  margin-bottom: 0;
}

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

.price-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.price-card--primary {
  border-color: rgba(49, 93, 67, 0.22);
  background: #f0f6f0;
}

.price-card span {
  color: var(--clay-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--green-dark);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.price-note p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.quiz-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.lead-form {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.quiz-wizard {
  display: grid;
  gap: 22px;
}

.quiz-progress {
  display: grid;
  gap: 14px;
}

.step-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-counter span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-counter strong {
  font-size: 20px;
  line-height: 1.2;
}

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

.progress-dots button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f8f5;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.progress-dots button:disabled {
  cursor: default;
  opacity: 0.54;
}

.progress-dots button.is-active,
.progress-dots button.is-done {
  border-color: rgba(49, 93, 67, 0.34);
  background: #e7efe8;
  color: var(--green-dark);
}

.progress-dots button.is-active {
  box-shadow: 0 0 0 3px rgba(49, 93, 67, 0.12);
}

.quiz-progressbar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1ec;
}

.quiz-progressbar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--clay);
  transition: width 180ms ease;
}

.quiz-step {
  display: grid;
  gap: 16px;
  margin: 0;
  border: 0;
  padding: 0;
}

.quiz-step[hidden] {
  display: none;
}

.quiz-step legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 850;
}

.quiz-step legend span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e7efe8;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.quiz-step__hint {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 15px;
}

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

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

.choice-grid--media {
  align-items: stretch;
}

.choice-card,
.choice-pill,
.area-grid button {
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.choice-card:hover,
.choice-pill:hover,
.area-grid button:hover {
  transform: translateY(-1px);
}

.choice-card {
  display: grid;
  grid-template-rows: 132px 1fr;
  overflow: hidden;
  min-height: 226px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  color: var(--text);
  padding: 0;
  text-align: left;
}

.choice-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
}

.choice-card span {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 14px;
}

.choice-card strong {
  font-size: 18px;
  line-height: 1.12;
}

.choice-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.choice-pill {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  color: var(--text);
  padding: 10px 12px;
  font-weight: 800;
}

.choice-card.is-selected,
.choice-pill.is-selected,
.area-grid button.is-selected {
  border-color: var(--green);
  background: #e7efe8;
  box-shadow: 0 0 0 3px rgba(49, 93, 67, 0.12);
}

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

.area-grid button {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  color: var(--text);
  padding: 10px;
}

.area-grid strong {
  font-size: 26px;
  line-height: 1;
}

.area-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.option-grid label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  padding: 12px 14px;
  color: var(--text);
}

.option-grid input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

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

.form-grid--compact {
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.lead-form .option-grid label {
  display: flex;
  color: var(--text);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  color: var(--text);
  padding: 14px 15px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.lead-form .option-grid input {
  width: 18px;
  height: 18px;
  border: 0;
  padding: 0;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49, 93, 67, 0.12);
}

.lead-form input[aria-invalid="true"] {
  border-color: var(--clay-dark);
  box-shadow: 0 0 0 3px rgba(179, 92, 51, 0.14);
}

.form-note {
  margin-top: 16px;
}

.required-mark {
  color: var(--clay-dark);
}

.field-hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.callback-timer {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(49, 93, 67, 0.18);
  border-radius: var(--radius);
  background: #eef4ee;
  color: var(--green-dark);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
}

.callback-timer__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 5px rgba(179, 92, 51, 0.12);
}

.callback-timer strong {
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  line-height: 1;
}

.quiz-controls {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 2px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-weight: 750;
}

.mobile-action-bubble {
  display: none;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms;
}

.quiz-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 21, 0.52);
  backdrop-filter: blur(14px);
}

.quiz-sheet {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 251, 248, 0.98)),
    var(--surface);
  box-shadow:
    0 30px 90px rgba(20, 25, 21, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 22px;
  transform: scale(0.97) translateY(18px);
  transition: transform 220ms ease;
}

.quiz-modal.is-open .quiz-sheet {
  transform: scale(1) translateY(0);
}

.sheet-handle {
  width: 46px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #cfd8d0;
}

.sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
}

.sheet-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.quiz-card {
  display: grid;
  gap: 18px;
}

.quiz-card__top {
  display: grid;
  gap: 12px;
  padding-right: 0;
}

.quiz-sheet .step-counter {
  padding-right: 62px;
}

.quiz-sheet .lead-form {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.quiz-sheet .lead-form[hidden],
.quiz-success[hidden] {
  display: none;
}

.quiz-sheet .quiz-step {
  min-height: 390px;
  align-content: start;
}

.selection-note {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f8f5;
  color: var(--green-dark);
  padding: 12px 14px;
  font-weight: 800;
}

.quiz-success {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 390px;
  padding: 10px 0 4px;
}

.quiz-success h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.quiz-success p:not(.section-label) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.success-phone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f8f5;
  color: var(--green-dark) !important;
  padding: 12px 14px;
  font-size: 17px !important;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #e7efe8;
  color: var(--green-dark);
}

.success-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.steps span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.steps p {
  color: var(--muted);
}

.build-layout {
  display: grid;
  gap: 26px;
}

.build-section {
  background:
    linear-gradient(180deg, rgba(179, 92, 51, 0.06), rgba(251, 251, 248, 0) 40%),
    var(--surface);
}

.build-card {
  display: grid;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.build-image {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 2084 / 754;
  background: #e7efe8;
  object-fit: contain;
  object-position: center;
}

.build-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}

.build-card::after {
  display: none;
}

.build-steps li {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
  box-shadow: 0 10px 26px rgba(32, 37, 35, 0.055);
  backdrop-filter: none;
}

.build-steps li:last-child {
  border-right: 1px solid var(--line);
}

.build-steps span {
  margin: 18px 18px 18px;
}

.build-step__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
}

.build-steps h3 {
  min-height: 2.4em;
  margin: 0;
  padding: 0 18px;
  font-size: 21px;
}

.build-steps p {
  margin: 0;
  padding: 8px 18px 20px;
}

.build-action {
  justify-self: start;
}

.anchor-target {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.production-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.production-head h2 {
  margin-bottom: 0;
}

.production-head p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.production-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 18px;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(32, 37, 35, 0.07);
}

.media-card img {
  width: 100%;
  height: clamp(230px, 30vw, 380px);
  object-fit: cover;
}

.production-media {
  position: relative;
  min-height: 0;
}

.production-media img {
  height: clamp(280px, 28vw, 360px);
  min-height: 0;
}

.production-media__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(31, 63, 45, 0.9);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.media-card > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.media-card h3,
.media-card p {
  margin-bottom: 0;
}

.media-card p,
.trust-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.trust-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.trust-copy h2 {
  margin-bottom: 0;
}

.production-copy {
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(32, 37, 35, 0.06);
}

.production-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

.production-copy > p:not(.section-label) {
  margin: 0;
}

.production-copy .button {
  justify-self: start;
}

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

.production-copy .trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.production-copy .trust-grid div {
  min-height: auto;
  padding: 14px;
}

.production-copy .trust-grid span {
  font-size: 13px;
  line-height: 1.35;
}

.trust-grid div {
  min-width: 0;
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.trust-grid strong {
  color: var(--green-dark);
  line-height: 1.15;
  overflow-wrap: break-word;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: break-word;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 272px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(32, 37, 35, 0.06);
}

.review-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-card__top div {
  display: grid;
  gap: 3px;
}

.review-card__top strong {
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.1;
}

.review-card__top span:not(.review-rating) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.review-rating {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f5e9df;
  color: var(--clay-dark);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.review-source {
  align-self: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.faq-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(49, 93, 67, 0.045), rgba(251, 251, 248, 0) 46%),
    var(--bg);
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

summary {
  cursor: pointer;
  padding: 19px 0;
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin-bottom: 20px;
  color: var(--muted);
}

.contact-section {
  padding: 70px 0;
  background: var(--green-dark);
  color: var(--white);
}

.contact-section .section-label {
  color: #ffc18d;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 40px;
  align-items: center;
}

.contact-layout p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact-actions {
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-actions p {
  width: 100%;
  margin-bottom: 0;
  font-size: 15px;
}

.contact-actions--buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-actions--buttons .button {
  min-height: 50px;
  padding: 0 14px;
}

.contact-calc {
  grid-column: 1 / -1;
}

.contact-actions--buttons .contact-note {
  grid-column: 1 / -1;
  padding-top: 4px;
  font-size: 15px;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  background: #171b19;
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p {
  margin-bottom: 0;
  font-size: 14px;
}

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

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.is-menu-open {
    background: rgba(251, 251, 248, 0.98);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(32, 37, 35, 0.08);
  }

  .site-header.is-menu-open .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 10px;
    color: var(--text);
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .main-nav a {
    background: #f6f8f5;
  }

  .hero__content {
    transform: none;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }

  .project-grid,
  .trust-layout,
  .steps,
  .reviews-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .production-media img {
    height: clamp(310px, 36vw, 380px);
  }

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

  .build-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .build-steps li,
  .build-steps li:last-child {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
}

@media (max-width: 760px) {
  section[id],
  main[id] {
    scroll-margin-top: 76px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 66px;
    gap: 8px;
    padding: 10px 14px;
  }

  .brand__text span {
    display: none;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-phone {
    width: 40px;
    min-height: 38px;
    padding: 0;
  }

  .header-phone__text {
    display: none;
  }

  .header-phone svg {
    display: block;
  }

  .header-action__full {
    display: none;
  }

  .header-action__short {
    display: inline;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .nav-toggle {
    width: 40px;
    min-height: 38px;
  }

  .hero {
    min-height: min(760px, 100svh);
    align-items: end;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(20, 25, 21, 0.82) 0%, rgba(20, 25, 21, 0.6) 54%, rgba(20, 25, 21, 0.24) 100%),
      linear-gradient(90deg, rgba(20, 25, 21, 0.38), rgba(20, 25, 21, 0.12));
  }

  .hero__content {
    width: min(100% - 24px, 760px);
    margin-top: 66px;
    padding: 92px 0 24px;
  }

  h1 {
    max-width: min(100%, 360px);
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.08;
  }

  .hero__lead {
    max-width: 32ch;
    margin-bottom: 20px;
    font-size: 17px;
  }

  .intro-grid,
  .kit-layout,
  .trust-layout,
  .faq-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .intro-band {
    padding: 34px 0;
  }

  .intro-grid {
    gap: 22px;
  }

  .intro-copy,
  .media-card p,
  .section-head p:not(.section-label),
  .contact-layout p,
  .trust-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .kit-action {
    width: 100%;
  }

  .kit-item h3 {
    min-height: 0;
  }

  .faq-layout {
    gap: 14px;
  }

  .faq-layout .section-head {
    margin-bottom: 0;
  }

  .project-grid,
  .proof-list,
  .kit-list,
  .price-grid,
  .steps,
  .trust-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    display: grid;
    grid-auto-columns: minmax(282px, 86%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 0 12px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .hero__actions .button {
    width: 100%;
  }

  .project-grid {
    gap: 14px;
  }

  .project-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .project-card img,
  .project-card--featured img {
    height: clamp(198px, 56vw, 250px);
  }

  .project-card__body {
    padding: 18px;
  }

  .project-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .proof-list article {
    min-height: auto;
    padding: 16px;
  }

  .proof-list strong {
    font-size: 20px;
  }

  .project-card dl {
    margin-top: 16px;
  }

  .kit-list {
    gap: 8px;
  }

  .kit-item {
    min-height: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
  }

  .kit-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .kit-item__icon svg {
    width: 24px;
    height: 24px;
  }

  .kit-item h3 {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .kit-item p {
    font-size: 14px;
    line-height: 1.35;
  }

  .price-layout {
    gap: 18px;
  }

  .price-grid {
    gap: 10px;
  }

  .price-card {
    gap: 9px;
    padding: 16px;
  }

  .price-card span {
    font-size: 12px;
  }

  .price-card strong {
    font-size: 31px;
  }

  .price-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .price-note {
    display: none;
  }

  .section-head--sticky {
    position: static;
  }

  .lead-form {
    margin-top: 20px;
    padding-top: 20px;
  }

  .quiz-wizard {
    gap: 18px;
  }

  .quiz-modal {
    align-items: end;
    justify-items: center;
    padding: 0;
  }

  .quiz-sheet {
    width: 100%;
    max-height: calc(100dvh - 18px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 26px 26px 0 0;
    padding: 12px 14px calc(18px + env(safe-area-inset-bottom));
    transform: translateY(100%);
  }

  .quiz-modal.is-open .quiz-sheet {
    transform: translateY(0);
  }

  .quiz-card {
    gap: 14px;
  }

  .quiz-card__top {
    gap: 10px;
    padding-right: 0;
  }

  .quiz-sheet .step-counter {
    min-height: 48px;
    padding-right: 58px;
  }

  .quiz-sheet .quiz-step {
    min-height: auto;
  }

  .step-counter {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .step-counter strong {
    font-size: 18px;
  }

  .progress-dots {
    gap: 7px;
  }

  .progress-dots button {
    min-height: 44px;
  }

  .quiz-step {
    gap: 13px;
  }

  .quiz-step legend {
    align-items: flex-start;
    font-size: 22px;
  }

  .quiz-step__hint {
    font-size: 14px;
  }

  .callback-timer {
    grid-template-columns: 9px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.25;
  }

  .callback-timer__dot {
    width: 9px;
    height: 9px;
  }

  .callback-timer strong {
    font-size: 16px;
  }

  .choice-grid--media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .choice-card {
    grid-template-rows: 112px 1fr;
    min-height: 202px;
  }

  .choice-card img {
    height: 112px;
  }

  .choice-card span {
    padding: 12px;
  }

  .choice-card strong {
    font-size: 16px;
  }

  .choice-card small {
    font-size: 12px;
    line-height: 1.28;
  }

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

  .area-grid button {
    min-height: 68px;
    padding: 8px 6px;
  }

  .area-grid strong {
    font-size: 22px;
  }

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

  .trust-layout {
    gap: 22px;
  }

  .production-head {
    margin-bottom: 22px;
  }

  .production-head p:not(.section-label) {
    font-size: 16px;
  }

  .production-layout {
    gap: 16px;
  }

  .media-card img {
    height: clamp(205px, 58vw, 280px);
  }

  .production-media img {
    height: clamp(250px, 68vw, 320px);
    min-height: 0;
  }

  .production-media__badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 11px 12px;
  }

  .media-card > div {
    padding: 18px;
  }

  .trust-copy {
    gap: 14px;
  }

  .production-copy {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
    padding: 18px 0 0;
    box-shadow: none;
  }

  .production-copy h3 {
    font-size: 26px;
    line-height: 1.08;
  }

  .production-copy .button {
    width: 100%;
  }

  .trust-grid {
    gap: 10px;
  }

  .production-copy .trust-grid {
    grid-template-columns: 1fr;
  }

  .production-copy .trust-grid span {
    font-size: 14px;
  }

  .trust-grid div {
    min-height: auto;
    padding: 16px;
  }

  .quiz-controls {
    grid-template-columns: 1fr;
  }

  .quiz-controls .button--quiet {
    order: 2;
  }

  .steps li {
    min-height: auto;
    padding: 18px;
  }

  .steps span {
    margin-bottom: 16px;
  }

  .build-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(32, 37, 35, 0.07);
  }

  .build-card::after {
    display: none;
  }

  .build-image {
    display: block;
    height: auto;
    aspect-ratio: 2084 / 754;
    object-fit: contain;
    background: #e7efe8;
  }

  .build-steps {
    position: static;
    z-index: auto;
    gap: 0;
    padding: 0;
  }

  .build-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 5px 12px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: var(--surface);
    padding: 16px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .build-step__image {
    display: none;
  }

  .build-steps span {
    grid-row: span 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    background: #f5e9df;
    color: var(--clay-dark);
  }

  .build-steps h3 {
    min-height: 0;
    margin-bottom: 0;
    padding: 0;
    font-size: 18px;
  }

  .build-steps p {
    margin-bottom: 0;
    padding: 0;
  }

  .build-action {
    width: 100%;
  }

  .review-card {
    min-height: auto;
    gap: 14px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .review-card__image {
    border-radius: 6px;
  }

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

  .faq-list {
    gap: 10px;
  }

  details {
    padding: 0 16px;
  }

  summary {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: 17px;
    line-height: 1.25;
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-layout {
    gap: 22px;
  }

  .contact-actions {
    padding: 18px;
  }

  .contact-actions--buttons .contact-note {
    display: none;
  }

  .mobile-action-bubble {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    gap: 8px;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    background: rgba(251, 251, 248, 0.96);
    padding: 8px;
    box-shadow:
      0 18px 48px rgba(20, 25, 21, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(140%);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0s linear 220ms;
    visibility: hidden;
  }

  .mobile-action-bubble.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }

  body.is-quiz-open .mobile-action-bubble {
    display: none;
  }

  .mobile-action-bubble__primary,
  .mobile-action-bubble__phone {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    touch-action: manipulation;
  }

  .mobile-action-bubble__primary {
    min-width: 0;
    border-radius: 999px;
    background: var(--clay);
    color: var(--white);
    padding: 0 18px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 8px 20px rgba(143, 68, 34, 0.22);
  }

  .mobile-action-bubble__primary:active,
  .mobile-action-bubble__phone:active {
    transform: scale(0.97);
  }

  .mobile-action-bubble__phone {
    width: 56px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(31, 63, 45, 0.2);
  }

  .mobile-action-bubble__phone svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
  }

  .site-footer {
    padding-bottom: calc(26px + 76px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .site-header.is-menu-open .main-nav {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 34px;
  }

  .brand__text strong {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    padding: 0 10px;
    font-size: 13px;
  }

  .header-actions {
    gap: 5px;
  }

  .choice-grid--media {
    grid-template-columns: 1fr;
  }

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

  .choice-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 112px;
  }

  .choice-card img {
    width: 112px;
    height: 100%;
  }

  .choice-card span {
    padding: 10px;
  }

  .choice-card strong {
    font-size: 16px;
  }

  .choice-card small {
    font-size: 12px;
  }

  .choice-pill {
    min-height: 44px;
    padding: 8px 7px;
    font-size: 13px;
  }

  .media-card img {
    height: 210px;
  }

  .production-media img {
    height: 250px;
  }
}

@media (max-width: 900px) and (max-height: 500px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    width: min(100% - 32px, 720px);
    margin-top: 72px;
    padding: 28px 0 24px;
  }

  h1 {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: 42px;
    line-height: 1.02;
  }

  .hero__lead {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: 17px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 360px) {
  .container,
  .hero__content {
    width: min(100% - 20px, 1180px);
  }

  .brand {
    gap: 0;
  }

  .brand__text {
    display: none;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 28px;
  }

  .choice-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .choice-card img {
    width: 100px;
  }

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

  .area-grid button {
    min-height: 58px;
    padding: 7px 4px;
  }

  .area-grid strong {
    font-size: 20px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 12px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
