:root {
  --forest-950: #0b1e1a;
  --forest-900: #102822;
  --forest-800: #173a32;
  --forest-700: #225044;
  --forest-600: #2c6756;
  --forest-100: #dfeae4;
  --forest-50: #eef4f0;
  --ink: #17201d;
  --muted: #67716c;
  --line: #d9ddd8;
  --paper: #f7f3eb;
  --paper-2: #fffdf8;
  --white: #ffffff;
  --wood-700: #9a5b36;
  --wood-500: #d69350;
  --wood-400: #e7ae70;
  --accent: #f1a84e;
  --accent-hover: #e69939;
  --accent-soft: #fff0d8;
  --success: #2c7b5d;
  --danger: #b9433f;
  --shadow-sm: 0 8px 30px rgba(12, 36, 30, 0.08);
  --shadow-md: 0 20px 60px rgba(12, 36, 30, 0.14);
  --shadow-lg: 0 34px 100px rgba(12, 36, 30, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

::selection {
  color: var(--forest-950);
  background: #ffd89f;
}

:focus-visible {
  outline: 3px solid #f0a347;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.section {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
}

.section--dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-950);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--forest-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.section--dark .eyebrow,
.section-heading--light .eyebrow {
  color: #e6b674;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 520px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.section-heading code {
  padding: .13em .36em;
  color: var(--forest-800);
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 6px;
  font-size: .9em;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform .22s var(--ease), background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button .icon {
  width: 20px;
  height: 20px;
  transition: transform .22s var(--ease);
}

.button:hover .icon {
  transform: translateX(3px);
}

.button--small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: .9rem;
}

.button--large {
  min-height: 60px;
  padding: 18px 27px;
  border-radius: 16px;
  font-size: 1rem;
}

.button--wide {
  width: 100%;
}

.button--accent {
  color: var(--forest-950);
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(217, 132, 42, .22);
}

.button--accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 16px 34px rgba(217, 132, 42, .28);
}

.button--dark {
  color: var(--white);
  background: var(--forest-900);
}

.button--dark:hover {
  background: var(--forest-700);
  box-shadow: 0 14px 30px rgba(13, 43, 35, .2);
}

.button--ghost {
  color: var(--forest-950);
  background: rgba(255, 255, 255, .7);
  border-color: rgba(23, 58, 50, .18);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: var(--white);
  border-color: rgba(23, 58, 50, .35);
}

.text-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  color: var(--forest-700);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.text-button .icon {
  width: 18px;
  height: 18px;
  transition: transform .2s var(--ease);
}

.text-button:hover .icon {
  transform: translateX(4px);
}

.topbar {
  position: relative;
  z-index: 102;
  color: rgba(255, 255, 255, .88);
  background: var(--forest-950);
  font-size: .79rem;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar__note {
  color: rgba(255, 255, 255, .58);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #6bd39a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(107, 211, 154, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, .87);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(130%);
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, .94);
  border-color: rgba(23, 58, 50, .1);
  box-shadow: 0 12px 40px rgba(13, 38, 31, .08);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  width: 232px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #39443f;
  font-size: .92rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .94rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone .icon {
  color: var(--forest-600);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--forest-950);
  background: var(--white);
  border: 1px solid rgba(23, 58, 50, .13);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: rgba(255, 253, 248, .98);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.mobile-nav {
  display: grid;
  gap: 4px;
  padding-block: 20px 26px;
}

.mobile-nav > a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(23, 58, 50, .08);
  font-weight: 750;
}

.mobile-nav__phone {
  color: var(--forest-700);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) 0 50px;
  background:
    radial-gradient(circle at 72% 20%, rgba(231, 174, 112, .23), transparent 27%),
    radial-gradient(circle at 12% 85%, rgba(44, 103, 86, .1), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, #f1ece2 100%);
}

.hero::before {
  position: absolute;
  top: 8%;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(49, 104, 88, .08);
  border-radius: 50%;
  content: "";
  filter: blur(8px);
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.hero__content {
  padding: 15px 0 45px;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--forest-700);
  font-style: italic;
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: -2px;
  bottom: 1px;
  left: 0;
  height: 11px;
  z-index: -1;
  background: var(--accent);
  border-radius: 99px;
  content: "";
  opacity: .35;
  transform: rotate(-1.5deg);
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: #53605a;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  list-style: none;
  color: #3e4b45;
  font-size: .93rem;
  font-weight: 700;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__proof .icon {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: var(--white);
  background: var(--forest-600);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .68);
  border-radius: 42px;
  box-shadow: 0 32px 90px rgba(13, 47, 37, .2);
  transform: rotate(1.2deg);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: rgba(255, 253, 248, .91);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(12, 38, 31, .18);
  backdrop-filter: blur(14px);
}

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

.float-card span,
.float-card small {
  color: var(--muted);
  font-size: .75rem;
}

.float-card strong {
  color: var(--forest-950);
  font-size: 1.04rem;
}

.float-card--price {
  right: -22px;
  bottom: 38px;
  display: block;
  min-width: 195px;
}

.float-card--price strong {
  margin: 3px 0 1px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.float-card--time {
  top: 28px;
  left: -25px;
}

.float-card--time .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--forest-800);
  background: var(--accent-soft);
  border-radius: 12px;
}

.float-card--badge {
  top: 42%;
  right: -38px;
}

.float-card--badge img {
  width: 48px;
  height: 48px;
}

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(23, 58, 50, .1);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.trust-row article {
  display: flex;
  min-height: 105px;
  align-items: center;
  gap: 14px;
  padding: 23px;
  border-right: 1px solid rgba(23, 58, 50, .09);
}

.trust-row article:last-child {
  border-right: 0;
}

.trust-row .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--forest-700);
  background: var(--forest-50);
  border-radius: 13px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: .93rem;
}

.trust-row span {
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.4;
}

.catalog {
  background: var(--paper-2);
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 58, 50, .1);
  border-radius: 28px;
  box-shadow: 0 14px 44px rgba(12, 36, 30, .07);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.product-card:hover {
  border-color: rgba(23, 58, 50, .22);
  box-shadow: 0 24px 70px rgba(12, 36, 30, .13);
  transform: translateY(-7px);
}

.product-card--featured {
  border-color: rgba(226, 151, 67, .72);
  box-shadow: 0 20px 65px rgba(201, 124, 45, .14);
}

.product-card__visual {
  position: relative;
  overflow: hidden;
  background: var(--forest-50);
}

.product-card__visual img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.product-card:hover .product-card__visual img {
  transform: scale(1.025);
}

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 11px;
  color: var(--forest-950);
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(12, 36, 30, .1);
  font-size: .72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-card__tag--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.product-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.product-card__title h3 {
  margin: 0;
  font-size: 1.9rem;
}

.product-card__series {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.price {
  flex: 0 0 auto;
  color: var(--forest-800);
  font-size: 1.08rem;
  font-weight: 900;
  white-space: nowrap;
}

.spec-list,
.check-list {
  margin: 0;
  list-style: none;
}

.spec-list {
  display: grid;
  gap: 11px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4c5852;
  font-size: .91rem;
}

.spec-list .icon {
  width: 19px;
  height: 19px;
  color: var(--wood-700);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 20px 0 24px;
  color: #39473f;
  font-size: .88rem;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  position: absolute;
  top: .26em;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 50%;
  content: "✓";
  color: var(--forest-700);
  font-size: .66rem;
  font-weight: 900;
  line-height: 14px;
  text-align: center;
}

.product-card__actions {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.product-card__actions .text-button {
  justify-content: center;
  font-size: .87rem;
}

.comparison {
  margin-top: 54px;
  padding: 28px;
  background: #f4f7f4;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.comparison__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 24px;
}

.comparison__heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.comparison__heading > span {
  color: var(--muted);
  font-size: .8rem;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(23, 58, 50, .1);
  border-radius: 16px;
  scrollbar-width: thin;
}

.table-scroll table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.table-scroll th,
.table-scroll td {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(23, 58, 50, .09);
  text-align: left;
}

.table-scroll thead th {
  color: var(--white);
  background: var(--forest-800);
  font-size: .84rem;
}

.table-scroll tbody th {
  color: var(--ink);
  background: #faf9f5;
  font-size: .86rem;
}

.table-scroll td {
  color: #4b5752;
  font-size: .88rem;
}

.table-scroll tbody tr:last-child th,
.table-scroll tbody tr:last-child td {
  border-bottom: 0;
}

.configurator {
  overflow: hidden;
}

.configurator__glow {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(226, 151, 67, .2), transparent 66%);
  pointer-events: none;
}

.configurator::before {
  position: absolute;
  bottom: -280px;
  left: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(61, 124, 103, .24), transparent 66%);
  content: "";
  pointer-events: none;
}

.configurator-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 26px;
  align-items: start;
}

.config-panel,
.estimate {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
}

.config-panel {
  display: grid;
  gap: 0;
  padding: 8px 30px;
}

.config-panel fieldset {
  min-width: 0;
  margin: 0;
  padding: 26px 0 30px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.config-panel fieldset:last-child {
  border-bottom: 0;
}

.config-panel legend {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.config-panel legend > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--forest-950);
  background: var(--accent);
  border-radius: 50%;
  font-size: .76rem;
}

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

.model-option {
  position: relative;
  min-width: 0;
}

.model-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.model-option span {
  display: block;
  height: 100%;
  padding: 15px;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.model-option span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .28);
}

.model-option strong,
.model-option small,
.model-option em {
  display: block;
}

.model-option strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: .93rem;
}

.model-option small {
  color: rgba(255, 255, 255, .52);
  font-size: .73rem;
}

.model-option em {
  margin-top: 11px;
  color: #f2bf79;
  font-size: .82rem;
  font-style: normal;
  font-weight: 800;
}

.model-option input:checked + span {
  color: var(--white);
  background: rgba(241, 168, 78, .14);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.model-option input:focus-visible + span,
.segmented input:focus-visible + span,
.option-item input:focus-visible + span,
.contact-choice input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.segmented label {
  position: relative;
}

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

.segmented span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 13px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 700;
  text-align: center;
}

.segmented input:checked + span {
  color: var(--forest-950);
  background: var(--accent);
  border-color: var(--accent);
}

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

.option-item {
  position: relative;
}

.option-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-item > span {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}

.option-item__check {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 7px;
}

.option-item__check::after {
  content: "✓";
  font-size: .8rem;
  font-weight: 900;
}

.option-item__text strong,
.option-item__text small {
  display: block;
}

.option-item__text strong {
  color: var(--white);
  font-size: .84rem;
}

.option-item__text small {
  margin-top: 1px;
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
}

.option-item__price {
  color: #f2bf79;
  font-size: .76rem;
  font-weight: 800;
  white-space: nowrap;
}

.option-item input:checked + span {
  background: rgba(241, 168, 78, .1);
  border-color: rgba(241, 168, 78, .75);
}

.option-item input:checked + span .option-item__check {
  color: var(--forest-950);
  background: var(--accent);
  border-color: var(--accent);
}

.range-field__top,
.range-field__marks {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.range-field__top {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: .84rem;
}

.range-field output {
  min-width: 78px;
  padding: 6px 10px;
  color: var(--forest-950);
  background: var(--accent);
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.range-field input[type="range"] {
  width: 100%;
  height: 8px;
  margin: 6px 0 12px;
  appearance: none;
  background: linear-gradient(90deg, var(--accent) var(--range-progress, 6.66%), rgba(255, 255, 255, .14) var(--range-progress, 6.66%));
  border-radius: 99px;
  cursor: pointer;
}

.range-field input[type="range"]::-webkit-slider-thumb {
  width: 25px;
  height: 25px;
  appearance: none;
  background: var(--white);
  border: 5px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .24);
}

.range-field input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 5px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .24);
}

.range-field__marks {
  color: rgba(255, 255, 255, .4);
  font-size: .66rem;
}

.field-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .46);
  font-size: .75rem;
}

.estimate {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  padding: 25px;
  background: #fffdf8;
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
}

.estimate__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .72rem;
}

.estimate__head p {
  margin: 0;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.estimate__status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.estimate__status .status-dot {
  width: 6px;
  height: 6px;
}

.estimate__model {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 15px;
  align-items: center;
  padding: 12px;
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 16px;
}

.estimate__model img {
  width: 122px;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 11px;
}

.estimate__model span,
.estimate__model strong {
  display: block;
}

.estimate__model span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.estimate__model strong {
  margin-top: 2px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.estimate__lines {
  display: grid;
  gap: 11px;
  margin: 22px 0;
}

.estimate__lines > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.estimate__lines dt,
.estimate__lines dd {
  margin: 0;
  font-size: .84rem;
}

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

.estimate__lines dd {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.estimate__total {
  padding: 20px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .68);
  background: var(--forest-900);
  border-radius: 17px;
}

.estimate__total span,
.estimate__total strong,
.estimate__total small {
  display: block;
}

.estimate__total span {
  font-size: .78rem;
}

.estimate__total strong {
  margin: 4px 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
}

.estimate__total small {
  color: rgba(255, 255, 255, .42);
  font-size: .67rem;
}

.estimate__print {
  width: 100%;
  padding: 10px;
  color: var(--forest-700);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
}

.estimate__privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding-top: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .71rem;
}

.estimate__privacy .icon {
  color: var(--forest-600);
}

.included {
  overflow: hidden;
  background: #f4eee4;
}

.included__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}

.included__visual {
  position: relative;
}

.included__visual > img {
  width: 100%;
  border: 7px solid rgba(255, 255, 255, .62);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.visual-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: var(--forest-950);
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: .75rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.visual-label span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--forest-950);
  background: var(--accent);
  border-radius: 8px;
  font-size: .65rem;
}

.visual-label--one {
  right: -24px;
  bottom: 23%;
}

.visual-label--two {
  bottom: 8%;
  left: -22px;
}

.visual-label--three {
  top: 15%;
  right: -12px;
}

.included__content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.included-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.included-list .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--wood-700);
  background: #fff8ed;
  border: 1px solid #ead7bb;
  border-radius: 13px;
}

.included-list h3 {
  margin: 0 0 5px;
  font-family: inherit;
  font-size: .96rem;
  letter-spacing: 0;
}

.included-list p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.5;
}

.production {
  background: var(--paper-2);
}

.production__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.production__image {
  position: relative;
}

.production__image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow-md);
}

.production__stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  color: var(--white);
  background: var(--forest-800);
  border: 5px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: rotate(-7deg);
}

.production__stamp strong,
.production__stamp span {
  display: block;
}

.production__stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.production__stamp span {
  color: rgba(255, 255, 255, .68);
  font-size: .68rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 25px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 0 0 29px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--forest-950);
  background: var(--accent);
  border: 7px solid var(--paper-2);
  border-radius: 50%;
  font-size: .71rem;
  font-weight: 900;
}

.timeline h3 {
  margin: 1px 0 5px;
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0;
}

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

.quality-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  overflow: hidden;
  background: var(--forest-900);
  border-radius: 24px;
}

.quality-cards article {
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.quality-cards article:last-child {
  border-right: 0;
}

.quality-cards strong,
.quality-cards span {
  display: block;
}

.quality-cards strong {
  margin-bottom: 5px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.quality-cards span {
  color: rgba(255, 255, 255, .56);
  font-size: .78rem;
}

.gallery {
  background: #eaf0eb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  background: var(--forest-900);
  border: 0;
  border-radius: 22px;
  cursor: zoom-in;
}

.gallery-item--large {
  grid-row: 1 / span 2;
}

.gallery-item--wide {
  grid-column: 2 / span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), opacity .3s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 21, 16, .72));
  content: "";
}

.gallery-item:hover img {
  opacity: .94;
  transform: scale(1.035);
}

.gallery-item > span {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
}

.gallery-item > span .icon {
  width: 20px;
  height: 20px;
}

.delivery {
  background: var(--paper-2);
}

.delivery__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.delivery__content > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.delivery-steps {
  display: grid;
  gap: 18px;
  margin: 31px 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}

.delivery-steps li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--forest-950);
  background: var(--accent);
  border-radius: 14px;
  font-weight: 900;
}

.delivery-steps strong {
  display: block;
  margin-bottom: 2px;
}

.delivery-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.region-chips span {
  padding: 8px 11px;
  color: var(--forest-700);
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 750;
}

.delivery__visual {
  position: relative;
}

.delivery__visual > img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.delivery__note {
  position: absolute;
  right: -20px;
  bottom: 25px;
  display: flex;
  max-width: 270px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  background: rgba(255, 253, 248, .93);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 17px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.delivery__note .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--forest-700);
  background: var(--forest-50);
  border-radius: 13px;
}

.delivery__note span,
.delivery__note strong {
  display: block;
}

.delivery__note span {
  color: var(--muted);
  font-size: .74rem;
}

.delivery__note strong {
  color: var(--ink);
  font-size: .88rem;
}

.reviews {
  background: #f0e8db;
}

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

.review-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 27px;
  background: var(--paper-2);
  border: 1px solid rgba(86, 61, 40, .12);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #df9140;
  font-size: .9rem;
  letter-spacing: .08em;
}

.demo-label {
  padding: 6px 8px;
  color: var(--wood-700);
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-card > p {
  margin: 31px 0 34px;
  color: #3f4a45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.6;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--forest-800);
  border-radius: 50%;
  font-size: .77rem;
  font-weight: 900;
}

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

.review-card footer strong {
  font-size: .85rem;
}

.review-card footer span {
  color: var(--muted);
  font-size: .72rem;
}

.faq {
  background: var(--paper-2);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq__intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq__contact {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin-top: 32px;
  padding: 21px;
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 17px;
}

.faq__contact > span {
  color: var(--muted);
  font-size: .73rem;
}

.faq__contact > a {
  color: var(--forest-800);
  font-size: 1.15rem;
  font-weight: 900;
}

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

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

.accordion summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary .icon {
  width: 24px;
  height: 24px;
  padding: 5px;
  color: var(--forest-700);
  background: var(--forest-50);
  border-radius: 50%;
  transition: transform .25s var(--ease);
}

.accordion details[open] summary .icon {
  transform: rotate(180deg);
}

.accordion details > div {
  overflow: hidden;
}

.accordion details p {
  max-width: 750px;
  padding: 0 52px 25px 0;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.final-cta {
  overflow: hidden;
  color: rgba(255, 255, 255, .7);
  background:
    radial-gradient(circle at 80% 15%, rgba(232, 167, 92, .18), transparent 28%),
    var(--forest-900);
}

.final-cta::before {
  position: absolute;
  bottom: -230px;
  left: -130px;
  width: 520px;
  height: 520px;
  background: rgba(50, 119, 98, .22);
  border-radius: 50%;
  content: "";
  filter: blur(30px);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, .72fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.05rem;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-points a {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
}

.contact-points .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--forest-950);
  background: var(--accent);
  border-radius: 12px;
}

.contact-points small,
.contact-points strong {
  display: block;
}

.contact-points small {
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
}

.contact-points strong {
  color: var(--white);
  font-size: .9rem;
}

.lead-form {
  padding: 28px;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  color: var(--muted);
  font-size: .76rem;
}

.form-head strong {
  color: var(--forest-700);
  font-size: .78rem;
}

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

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

.field > span,
.contact-choice legend {
  display: block;
  margin-bottom: 7px;
  color: #4c5852;
  font-size: .74rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd7d2;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa39f;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: #fffefb;
  border-color: var(--forest-600);
  box-shadow: 0 0 0 4px rgba(44, 103, 86, .1);
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(185, 67, 63, .08);
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: var(--danger);
  font-size: .68rem;
}

.contact-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 16px;
  padding: 0;
  border: 0;
}

.contact-choice legend {
  width: 100%;
}

.contact-choice label {
  position: relative;
}

.contact-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-choice label span {
  display: block;
  min-width: 86px;
  padding: 9px 12px;
  color: var(--muted);
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 10px;
  cursor: pointer;
  font-size: .73rem;
  font-weight: 750;
  text-align: center;
}

.contact-choice input:checked + span {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 14px 0 15px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

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

.consent a {
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.lead-form.is-loading button[type="submit"] {
  pointer-events: none;
  opacity: .68;
}

.site-footer {
  color: rgba(255, 255, 255, .64);
  background: var(--forest-950);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.45fr .7fr .75fr .9fr;
  gap: 36px;
  padding: 58px 0 42px;
}

.footer__brand img {
  width: 220px;
  padding: 8px;
  background: var(--paper-2);
  border-radius: 12px;
}

.footer__brand p {
  max-width: 380px;
  margin: 20px 0 0;
  font-size: .76rem;
  line-height: 1.65;
}

.footer__nav,
.footer__contacts {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer__nav strong,
.footer__contacts strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: .84rem;
}

.footer__nav a,
.footer__contacts a,
.footer__contacts span {
  font-size: .75rem;
}

.footer__nav a:hover,
.footer__contacts a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .68rem;
}

.mobile-cta {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 15, .72);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  background: var(--paper-2);
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .36);
}

.modal__dialog h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.modal__subtitle {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .88rem;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  padding: 0;
  color: var(--forest-950);
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 13px;
  cursor: pointer;
}

.modal__close .icon {
  width: 22px;
  height: 22px;
}

.modal__config {
  padding: 13px 15px;
  margin-bottom: 17px;
  color: var(--forest-800);
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 13px;
  font-size: .76rem;
}

.lead-form--modal {
  padding: 0;
  box-shadow: none;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
  background: var(--forest-950);
  border: 6px solid rgba(255, 255, 255, .75);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.lightbox__dialog > img {
  width: 100%;
  max-height: calc(100vh - 52px);
  object-fit: contain;
}

.lightbox__close {
  color: var(--white);
  background: rgba(12, 36, 30, .76);
  border-color: rgba(255, 255, 255, .2);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  max-width: 390px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--forest-900);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.has-js .reveal--delay {
  transition-delay: .1s;
}

.has-js .reveal--delay-2 {
  transition-delay: .2s;
}

.has-js .reveal--delay-3 {
  transition-delay: .3s;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
  }

  .brand {
    width: 195px;
  }

  .desktop-nav {
    display: none;
  }

  .header__actions {
    margin-left: auto;
  }

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

  .hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr);
  }

  .float-card--badge {
    right: -10px;
  }

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

  .trust-row article:nth-child(2) {
    border-right: 0;
  }

  .trust-row article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(23, 58, 50, .09);
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
  }

  .product-card:last-child .product-card__visual img {
    height: 100%;
    aspect-ratio: auto;
  }

  .included__grid,
  .production__grid,
  .delivery__grid {
    gap: 50px;
  }

  .delivery__grid {
    grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  }

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

@media (max-width: 920px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 700px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

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

  .hero__content {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero__visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .float-card--time {
    left: 18px;
  }

  .float-card--price {
    right: 18px;
  }

  .float-card--badge {
    right: 8%;
  }

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

  .estimate {
    position: static;
  }

  .included__grid,
  .production__grid,
  .delivery__grid,
  .faq__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .included__visual,
  .production__image,
  .delivery__visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .faq__intro {
    position: static;
  }

  .faq__intro > p:not(.eyebrow) {
    max-width: 660px;
  }

  .faq__contact {
    max-width: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 230px 270px;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

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

  .review-card {
    min-height: 0;
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__contacts {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

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

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .topbar__inner {
    min-height: 31px;
    justify-content: center;
  }

  .topbar__note {
    display: none !important;
  }

  .topbar p {
    font-size: .7rem;
  }

  .header__inner {
    gap: 12px;
  }

  .brand {
    width: 175px;
  }

  .header__actions {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero {
    padding: 38px 0 30px;
  }

  .hero__lead {
    font-size: 1.04rem;
  }

  .hero__buttons {
    display: grid;
  }

  .hero__buttons .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: .8rem;
  }

  .hero-image-wrap {
    border-width: 4px;
    border-radius: 25px;
    transform: none;
  }

  .float-card {
    padding: 11px 12px;
    border-radius: 13px;
  }

  .float-card--time {
    top: 12px;
    left: 10px;
  }

  .float-card--time .icon {
    width: 33px;
    height: 33px;
  }

  .float-card--price {
    right: 10px;
    bottom: 12px;
    min-width: 155px;
  }

  .float-card--price strong {
    font-size: 1.15rem;
  }

  .float-card--badge {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .trust-row article,
  .trust-row article:nth-child(2) {
    min-height: 88px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 58, 50, .09);
  }

  .trust-row article:last-child {
    border-bottom: 0;
  }

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

  .product-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .product-card:last-child .product-card__visual img {
    height: auto;
    aspect-ratio: 1.56;
  }

  .product-card__body {
    padding: 21px;
  }

  .product-card__title {
    flex-direction: column;
    gap: 8px;
  }

  .comparison {
    padding: 20px;
  }

  .comparison__heading {
    display: block;
  }

  .comparison__heading > span {
    display: block;
    margin-top: 8px;
  }

  .config-panel {
    padding: 4px 18px;
  }

  .model-options,
  .segmented,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .model-option span {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 12px;
  }

  .model-option small {
    grid-column: 1;
  }

  .model-option em {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
  }

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

  .estimate {
    padding: 20px;
  }

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

  .estimate__model {
    grid-template-columns: 100px 1fr;
  }

  .estimate__model img {
    width: 100px;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .visual-label--one {
    right: 7px;
  }

  .visual-label--two {
    left: 7px;
  }

  .visual-label--three {
    right: 7px;
  }

  .visual-label {
    font-size: .64rem;
  }

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

  .quality-cards article:nth-child(2) {
    border-right: 0;
  }

  .quality-cards article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: auto;
  }

  .delivery__note {
    right: 10px;
    bottom: 10px;
  }

  .accordion summary {
    min-height: 68px;
    padding: 19px 0;
    font-size: .9rem;
  }

  .accordion details p {
    padding-right: 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    padding: 21px;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-choice label {
    flex: 1;
  }

  .contact-choice label span {
    min-width: 0;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__contacts {
    grid-column: 1 / -1;
  }

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

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(255, 253, 248, .94);
    border-top: 1px solid rgba(23, 58, 50, .12);
    box-shadow: 0 -10px 30px rgba(12, 36, 30, .1);
    backdrop-filter: blur(16px);
  }

  .mobile-cta > a {
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--forest-800);
    border-radius: 13px;
  }

  .mobile-cta .button {
    min-height: 52px;
  }

  .modal {
    padding: 10px;
    align-items: end;
  }

  .modal__dialog {
    width: 100%;
    max-height: calc(100vh - 10px);
    padding: 26px 20px 20px;
    border-radius: 24px 24px 12px 12px;
  }

  .lightbox {
    align-items: center;
  }

  .lightbox__dialog {
    width: calc(100vw - 20px);
  }

  .toast {
    right: 12px;
    bottom: 82px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 155px;
  }

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

  .float-card--time {
    display: none;
  }

  .product-card__tag {
    top: 11px;
    left: 11px;
  }

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

  .quality-cards {
    grid-template-columns: 1fr;
  }

  .quality-cards article,
  .quality-cards article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .quality-cards article:last-child {
    border-bottom: 0;
  }

  .contact-points a {
    width: 100%;
  }

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

  .footer__brand,
  .footer__contacts {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .hero,
  .catalog,
  .included,
  .production,
  .gallery,
  .delivery,
  .reviews,
  .faq,
  .final-cta,
  .site-footer,
  .mobile-cta,
  .modal,
  .toast,
  .section-heading,
  .config-panel,
  .estimate__print,
  .estimate__privacy,
  .estimate > .button {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
  }

  .configurator {
    display: block;
    min-height: 0;
    padding: 0;
    background: #fff;
  }

  .configurator .container {
    width: 100%;
  }

  .configurator-grid {
    display: block;
  }

  .estimate {
    display: block;
    position: static;
    width: 100%;
    max-width: 680px;
    margin: 40px auto;
    color: #111;
    border: 1px solid #bbb;
    box-shadow: none;
  }
}

/* Внутренние страницы */
.inner-page {
  min-height: 100vh;
  background: var(--paper-2);
}

.inner-header {
  padding: 22px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.inner-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inner-header .brand {
  display: block;
}

.inner-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest-700);
  font-weight: 800;
}

.legal-page {
  padding: 70px 0 110px;
}

.legal-page__content {
  max-width: 840px;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.legal-page h2 {
  margin: 42px 0 14px;
  font-family: inherit;
  font-size: 1.35rem;
  letter-spacing: -.015em;
}

.legal-page p,
.legal-page li {
  color: #4d5953;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-note {
  padding: 18px 20px;
  margin: 28px 0;
  color: var(--wood-700);
  background: var(--accent-soft);
  border: 1px solid #efd5ae;
  border-radius: 14px;
  font-size: .88rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 75% 22%, rgba(231, 174, 112, .28), transparent 25%),
    linear-gradient(180deg, #fbf8f2, #eee7dc);
  text-align: center;
}

.error-page__box {
  width: min(100%, 680px);
  padding: clamp(30px, 7vw, 70px);
  background: rgba(255, 253, 248, .88);
  border: 1px solid rgba(23, 58, 50, .1);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.error-page__code {
  display: block;
  color: var(--forest-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
}

.error-page h1 {
  margin: 28px 0 14px;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

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

@media (max-width: 720px) {
  .inner-header__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page {
    padding: 48px 0 90px;
  }
}
