@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/Onest-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/Onest-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/Onest-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/Golos-Text-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --surface-void: #0c0b0a;
  --surface-page-dark: #141414;
  --surface-elevated-dark: #1e1b18;
  --surface-technical-dark: #2a2622;
  --border-dark-hairline: rgba(246, 242, 234, 0.1);
  --border-dark: #3a3530;
  --border-dark-strong: #4a443c;
  --text-on-dark: #f6f2ea;
  --text-on-dark-secondary: #c9c1b6;
  --text-on-dark-muted: #8f8880;
  --color-orange: #fc8c0d;
  --color-orange-deep: #d9740a;
  --color-orange-pressed: #b65f06;
  --gradient-primary: linear-gradient(96deg, #d9740a 0%, #fc8c0d 54%, #ffb04a 100%);
  --gradient-primary-hover: linear-gradient(96deg, #c4680a 0%, #ee8309 54%, #f7a63c 100%);
  --gradient-primary-pressed: linear-gradient(96deg, #b65f06 0%, #d9740a 54%, #e2941f 100%);
  --gradient-line: linear-gradient(90deg, #d9740a 0%, #fc8c0d 45%, rgba(252, 140, 13, 0) 100%);
  --color-focus: #fc8c0d;
  --shadow-overlay: 0 16px 40px rgba(12, 11, 10, 0.55);
  --shell-max: 1680px;
  --shell-pad: clamp(20px, 3.34vw, 48px);
  color-scheme: dark;
}

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

html {
  background: var(--surface-page-dark);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface-page-dark);
  color: var(--text-on-dark);
  font-family: "Golos Text", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--color-orange);
  color: #141414;
  font-weight: 700;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: 80px;
  border-bottom: 1px solid var(--border-dark-hairline);
  background: rgba(20, 20, 20, 0.97);
  transition: height 180ms cubic-bezier(0.2, 0, 0, 1), background-color 180ms cubic-bezier(0.2, 0, 0, 1), border-color 180ms cubic-bezier(0.2, 0, 0, 1);
}

.site-header.is-scrolled {
  height: 80px;
  border-color: var(--border-dark);
  background: rgba(12, 11, 10, 0.985);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  column-gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 124px;
  width: 124px;
  min-height: 48px;
}

.brand-logo {
  display: block;
  width: 118px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  min-width: 0;
  gap: 2px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-trigger,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: var(--text-on-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 120ms ease;
}

.nav-trigger::after,
.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient-line);
  content: "";
  transition: transform 120ms ease;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-item.is-open > .nav-trigger {
  color: var(--text-on-dark);
}

.nav-trigger:hover::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-trigger svg {
  width: 10px;
  margin-left: 7px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
  transition: transform 180ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-item.is-open > .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-item.is-current::after {
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  background: var(--gradient-line);
  content: "";
}

.dropdown {
  position: absolute;
  z-index: 90;
  top: calc(100% - 1px);
  left: 0;
  display: grid;
  visibility: hidden;
  width: 330px;
  min-width: 330px;
  max-width: 360px;
  padding: 8px;
  transform: translateY(-4px);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  opacity: 0;
  background: var(--surface-elevated-dark);
  box-shadow: var(--shadow-overlay);
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 180ms;
}

.nav-item.is-open > .dropdown {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-active-line {
  position: absolute;
  top: -2px;
  left: 0;
  width: 96px;
  height: 2px;
  background: var(--gradient-line);
}

.dropdown-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  min-height: 54px;
  padding: 14px 14px 13px;
  border-bottom: 1px solid var(--border-dark-hairline);
  border-left: 3px solid transparent;
  color: var(--text-on-dark);
  line-height: 1.3;
  transition: color 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.dropdown-link:last-of-type {
  border-bottom: 0;
}

.dropdown-link-nested {
  min-height: 46px;
  padding-left: 28px;
  color: var(--text-on-dark-secondary);
}

.dropdown-link:hover,
.dropdown-link:focus-visible,
.dropdown-link.is-active {
  background: #241c13;
  border-left-color: var(--color-orange);
  color: var(--text-on-dark);
  outline: 0;
}

.dropdown-link.is-active::before {
  content: none;
}

.drop-copy {
  min-width: 0;
}

.drop-main {
  display: block;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.drop-meta {
  display: block;
  margin-top: 5px;
  color: var(--text-on-dark-muted);
  font-size: 12px;
  line-height: 1.3;
}

.drop-price {
  align-self: start;
  color: var(--text-on-dark-secondary);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-dark-hairline);
  color: var(--text-on-dark);
  font-size: 13px;
}

.dropdown-footer span {
  color: var(--color-orange);
}

.dropdown-label {
  padding: 10px 22px 6px;
  color: var(--text-on-dark-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.dropdown-divider {
  height: 1px;
  margin: 8px 22px;
  background: var(--border-dark-hairline);
}

.nav-more {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--border-dark-strong);
  border-radius: 6px;
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 120ms ease;
}

.header-phone:hover {
  border-color: var(--border-dark-strong);
}

.header-phone svg,
.button-phone svg {
  width: 19px;
  height: 19px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--color-orange);
  color: #141414;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
  transition: background-color 120ms ease, transform 120ms ease;
}

.header-cta:hover {
  background: var(--color-orange-deep);
}

.header-cta:active {
  transform: translateY(1px);
  background: var(--color-orange-pressed);
}

.header-cta:focus-visible,
.button-primary:focus-visible {
  outline-color: #f6f2ea;
}

.header-cta-short {
  display: none;
}

.burger,
.mobile-menu {
  display: none;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark-hairline);
  background: var(--surface-page-dark);
}

.hero-shell {
  padding-top: 88px;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto 1fr;
  gap: 0 24px;
  min-height: 760px;
}

.hero-kicker {
  grid-column: 1 / span 6;
  grid-row: 1;
  align-self: start;
  margin: 0 0 28px;
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
}

h1 {
  grid-column: 1 / span 6;
  grid-row: 2;
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-on-dark);
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(58px, 4.1vw, 72px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-transform: uppercase;
}

h1 span {
  white-space: nowrap;
}

h1 span:last-child {
  color: var(--color-orange);
}

.hero-lead {
  grid-column: 1 / span 6;
  grid-row: 3;
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--text-on-dark-secondary);
  font-size: clamp(19px, 1.15vw, 22px);
  line-height: 1.48;
}

.hero-commercial {
  grid-column: 1 / span 6;
  grid-row: 4;
  align-self: end;
  max-width: 720px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--border-dark);
}

.hero-media {
  grid-column: 7 / span 6;
  grid-row: 1 / span 4;
  display: grid;
  place-items: center;
  min-height: 760px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--surface-technical-dark);
  color: var(--text-on-dark-muted);
}

.hero-media span {
  padding: 0;
  color: var(--text-on-dark-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-price {
  max-width: 700px;
  color: var(--text-on-dark);
  font-family: "Onest", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.price-nowrap {
  white-space: nowrap;
}

.price-prefix,
.price-unit {
  font-size: clamp(26px, 1.65vw, 34px);
}

.price-value {
  color: var(--color-orange);
  font-size: clamp(60px, 3.8vw, 74px);
}

.price-tail {
  display: inline;
  color: var(--text-on-dark);
  font-family: "Onest", Arial, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-transform: none;
}

.price-basis {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-on-dark-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.primary-action-wrap {
  display: grid;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.button-primary {
  background: var(--gradient-primary);
  color: #141414;
  transition: background 180ms ease, transform 120ms ease;
}

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

.button-primary:active {
  transform: translateY(1px);
  background: var(--gradient-primary-pressed);
}

.button-phone {
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--text-on-dark);
  transition: border-color 120ms ease, background-color 120ms ease;
}

.button-phone:hover {
  border-color: var(--border-dark-strong);
  background: rgba(246, 242, 234, 0.04);
}

.hero-microcopy {
  color: var(--text-on-dark-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.proof-item {
  display: grid;
  grid-template-rows: 56px minmax(60px, auto) minmax(44px, auto);
  align-content: start;
  min-width: 0;
  margin: 0;
  padding: 34px 32px 32px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--border-dark);
}

.proof-icon {
  display: grid;
  place-items: start;
  width: 40px;
  height: 40px;
  color: var(--color-orange);
}

.proof-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.proof-item h2 {
  align-self: start;
  margin: 0;
  color: var(--text-on-dark);
  font-family: "Onest", Arial, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-number {
  color: var(--color-orange);
  font-size: 1.32em;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.proof-item p {
  align-self: start;
  margin: 4px 0 0;
  color: var(--text-on-dark-muted);
  font-size: 16px;
  line-height: 1.45;
}

.price-section {
  color-scheme: light;
  background: #faf8f4;
  color: #141414;
}

.price-section-shell {
  padding-top: 128px;
  padding-bottom: 120px;
}

.price-section-header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
  padding-bottom: 64px;
}

.price-section-header h2 {
  grid-column: 1 / span 7;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(62px, 4.35vw, 82px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.price-section-header p {
  grid-column: 9 / span 4;
  margin: 0 0 6px;
  color: #4a443c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.price-ledger {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-ledger thead th {
  padding: 0 0 16px;
  border-bottom: 1px solid #bdb5aa;
  color: #6e665c;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

.price-ledger thead th:first-child {
  width: 68%;
}

.price-ledger thead th:nth-child(2) {
  width: 10%;
}

.price-ledger thead th:last-child {
  width: 22%;
  text-align: right;
}

.ledger-row {
  border-bottom: 1px solid #d5cec4;
}

.ledger-row th,
.ledger-row td {
  padding-top: 34px;
  padding-bottom: 34px;
  vertical-align: middle;
}

.ledger-row th {
  padding-right: 32px;
  color: #141414;
  font-family: "Onest", Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-align: left;
}

.ledger-unit {
  color: #6e665c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.ledger-price {
  color: #141414;
  font-family: "Onest", Arial, sans-serif;
  font-size: 44px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.ledger-row-primary th,
.ledger-row-primary td {
  padding-top: 44px;
  padding-bottom: 44px;
}

.ledger-row-primary th {
  padding-left: 24px;
  border-left: 4px solid #fc8c0d;
  font-size: 30px;
}

.ledger-row-primary .ledger-price {
  font-size: clamp(62px, 4vw, 76px);
}

.ledger-row-reference th {
  color: #4a443c;
  font-size: 22px;
  font-weight: 500;
}

.ledger-row-reference .ledger-price {
  color: #4a443c;
  font-size: 34px;
  font-weight: 600;
}

.price-composition-note {
  max-width: 1180px;
  margin: 24px 0 0;
  padding: 26px 32px;
  border-left: 4px solid #fc8c0d;
  background: #f2eee7;
  color: #4a443c;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.58;
}

.price-details {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid #d5cec4;
}

.price-included {
  grid-column: 1 / span 7;
}

.price-factors {
  grid-column: 9 / span 4;
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid #d5cec4;
}

.price-details h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(38px, 2.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.price-factors h3 {
  font-size: clamp(34px, 2.2vw, 42px);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 48px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 32px;
  color: #4a443c;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.included-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 18px;
  height: 1px;
  background: #141414;
  content: "";
}

.price-factors > p {
  margin: 30px 0 0;
  color: #4a443c;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.price-factors .price-current-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #d5cec4;
  color: #6e665c;
  font-size: 15px;
  line-height: 1.55;
}

.price-calculator-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-top: 38px;
  padding: 0 28px;
  background: #fc8c0d;
  color: #141414;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 120ms ease, transform 120ms ease;
}

.price-calculator-cta:hover {
  background: #d9740a;
}

.price-calculator-cta:active {
  transform: translateY(1px);
  background: #b65f06;
}

.price-calculator-cta:focus-visible {
  outline-color: #141414;
}

.calculator-section {
  position: relative;
  overflow: hidden;
  background: #141414;
  color: #f6f2ea;
}

.calculator-section [hidden] {
  display: none !important;
}

.calculator-scroll-anchor {
  position: absolute;
  top: -80px;
  left: 0;
}

.calculator-shell {
  padding-top: 128px;
  padding-bottom: 120px;
}

.calculator-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
}

.calculator-heading h2 {
  grid-column: 1 / span 8;
  max-width: 1080px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(62px, 4.35vw, 82px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.calculator-heading p {
  grid-column: 9 / span 4;
  margin: 0 0 7px;
  color: #c9c1b6;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.calculator-inputs {
  grid-column: 1 / span 5;
  padding: 8px 36px 0 0;
}

.calculator-intro {
  max-width: 660px;
  margin: 0;
  color: #c9c1b6;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.calculator-tabs {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  border-bottom: 1px solid #3a3530;
}

.calculator-tab {
  position: relative;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8f8880;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.calculator-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(96deg, #d9740a 0%, #fc8c0d 54%, #ffb04a 100%);
  content: "";
  transition: transform 160ms ease;
}

.calculator-tab:hover,
.calculator-tab.is-active {
  color: #f6f2ea;
}

.calculator-tab.is-active::after {
  transform: scaleX(1);
}

.calculator-panel {
  margin-top: 42px;
}

.calculator-label {
  display: block;
  margin-bottom: 12px;
  color: #c9c1b6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.calculator-field {
  display: flex;
  align-items: center;
  min-height: 92px;
  border: 1px solid #4a443c;
  background: #100f0e;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.calculator-field:focus-within {
  border-color: #fc8c0d;
  background: #0c0b0a;
}

.calculator-field input {
  width: 100%;
  min-width: 0;
  height: 90px;
  padding: 0 10px 0 26px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f6f2ea;
  font-family: "Onest", Arial, sans-serif;
  font-size: 58px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.calculator-field input::placeholder {
  color: #4a443c;
  opacity: 1;
}

.calculator-field > span {
  flex: 0 0 auto;
  padding-right: 26px;
  color: #8f8880;
  font-family: "Onest", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.calculator-help {
  max-width: 590px;
  margin: 18px 0 0;
  color: #8f8880;
  font-size: 15px;
  line-height: 1.55;
}

.dimensions-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 18px;
}

.dimension-field {
  min-width: 0;
}

.dimension-field .calculator-field input {
  padding-left: 22px;
  font-size: 50px;
}

.dimension-field .calculator-field > span {
  padding-right: 18px;
  font-size: 19px;
}

.dimensions-sign {
  display: grid;
  place-items: center;
  width: 24px;
  height: 92px;
  color: #8f8880;
  font-family: "Onest", Arial, sans-serif;
  font-size: 26px;
}

.dimensions-total {
  display: block;
  min-height: 29px;
  margin-top: 18px;
  overflow-wrap: anywhere;
  color: #f6f2ea;
  font-family: "Onest", Arial, sans-serif;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1.4;
}

.project-fast-path {
  margin-top: 56px;
  padding: 34px 0 0;
  border-top: 1px solid #3a3530;
}

.project-fast-copy h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.project-fast-copy p {
  margin: 12px 0 0;
  color: #c9c1b6;
  font-size: 16px;
  line-height: 1.5;
}

.project-fast-copy .project-file-types {
  margin-top: 4px;
  color: #8f8880;
  font-size: 14px;
}

.project-fast-actions {
  margin-top: 24px;
}

.calculator-upload-button,
.calculator-text-action,
.calculator-primary-action,
.calculator-secondary-action,
.calculator-submit,
.calculator-retry,
.calculator-file-action {
  min-height: 56px;
  border-radius: 0;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
}

.calculator-upload-button,
.calculator-secondary-action,
.calculator-file-action {
  padding: 0 24px;
  border: 1px solid #4a443c;
  background: transparent;
  color: #f6f2ea;
  transition: border-color 120ms ease, background-color 120ms ease;
}

.calculator-upload-button:hover,
.calculator-secondary-action:hover,
.calculator-file-action:hover {
  border-color: #8f8880;
  background: rgba(246, 242, 234, 0.035);
}

.project-file-name {
  min-height: 21px;
  margin: 12px 0 0;
  overflow-wrap: anywhere;
  color: #c9c1b6;
  font-size: 14px;
  line-height: 1.5;
}

.calculator-file-error,
.calculator-field-error {
  color: #ffb4a2;
}

.calculator-file-error {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.unknown-area-path {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(246, 242, 234, 0.08);
}

.unknown-area-path p {
  margin: 0;
  color: #c9c1b6;
  font-size: 15px;
  line-height: 1.55;
}

.unknown-area-path strong {
  color: #f6f2ea;
}

.calculator-text-action {
  min-height: 48px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #fc8c0d;
  background: transparent;
  color: #f6f2ea;
  text-align: left;
}

.calculator-result {
  position: relative;
  grid-column: 6 / span 7;
  min-width: 0;
  padding: 52px 56px 56px 60px;
  overflow: hidden;
  background: #1e1b18;
}

.calculator-result::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #d9740a 0%, #fc8c0d 54%, #ffb04a 100%);
  content: "";
}

.calculator-result::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 4px;
  height: 1px;
  background: linear-gradient(90deg, rgba(252, 140, 13, 0.32), rgba(252, 140, 13, 0) 52%);
  content: "";
}

.calculator-result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.calculator-result-heading h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(36px, 2.35vw, 46px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.calculator-result-heading span,
.calculator-eyebrow {
  color: #8f8880;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.calculator-result-live {
  min-height: 184px;
  margin-top: 42px;
  padding: 0 0 38px;
  border-bottom: 1px solid #3a3530;
  transition: background-color 240ms ease;
}

.calculator-result.is-updated .calculator-result-live {
  background-color: rgba(252, 140, 13, 0.035);
}

.calculator-result-empty {
  padding-top: 8px;
}

.calculator-result-empty span {
  display: block;
  height: 58px;
  background: #2a2622;
}

.calculator-result-empty span:first-child {
  width: min(72%, 520px);
}

.calculator-result-empty span:last-child {
  width: min(42%, 310px);
  height: 18px;
  margin-top: 22px;
}

.calculator-total {
  margin: 0;
  color: #f6f2ea;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(66px, 5.4vw, 100px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
  white-space: nowrap;
}

.calculator-total > span {
  color: #fc8c0d;
  font-size: 0.36em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  vertical-align: 0.45em;
}

.calculator-formula {
  margin: 24px 0 0;
  color: #c9c1b6;
  font-family: "Onest", Arial, sans-serif;
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.4;
}

.calculator-honest-fallback,
.calculator-unknown-result {
  max-width: 760px;
  margin: 0;
  color: #c9c1b6;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.calculator-unknown-result strong {
  display: block;
  margin-bottom: 8px;
  color: #f6f2ea;
  font-family: "Onest", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.15;
}

.calculator-result-content {
  padding-top: 38px;
}

.calculator-basis {
  padding-left: 20px;
  border-left: 2px solid #fc8c0d;
}

.calculator-eyebrow {
  margin: 0;
}

.calculator-basis > p:last-child {
  margin: 12px 0 0;
  color: #f6f2ea;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.calculator-included {
  margin-top: 36px;
}

.calculator-included h4 {
  margin: 0;
  color: #f6f2ea;
  font-family: "Onest", Arial, sans-serif;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.calculator-included p,
.calculator-price-note,
.calculator-result-facts li,
.calculator-deadline > p:last-child {
  color: #c9c1b6;
  font-size: 16px;
  line-height: 1.65;
}

.calculator-included p {
  max-width: 830px;
  margin: 16px 0 0;
}

.calculator-price-note {
  margin: 28px 0 0;
  padding: 22px 24px;
  background: #2a2622;
}

.calculator-result-facts {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 36px;
  margin-top: 38px;
  padding-top: 36px;
  border-top: 1px solid #3a3530;
}

.calculator-result-facts ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.calculator-result-facts li {
  position: relative;
  padding-left: 22px;
}

.calculator-result-facts li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 1px;
  background: #fc8c0d;
  content: "";
}

.calculator-deadline {
  padding-left: 28px;
  border-left: 1px solid #3a3530;
}

.calculator-deadline > p:last-child {
  margin: 18px 0 0;
}

.calculator-deadline strong {
  color: #f6f2ea;
  font-family: "Onest", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.calculator-reference {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid #3a3530;
}

.calculator-reference > p:not(.calculator-eyebrow) {
  margin: 12px 0 0;
  color: #c9c1b6;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.calculator-reference > p:nth-child(2) {
  color: #f6f2ea;
  font-size: 17px;
  font-weight: 600;
}

.calculator-result-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
}

.calculator-primary-action,
.calculator-submit,
.calculator-retry {
  padding: 0 28px;
  border: 0;
  background: linear-gradient(96deg, #d9740a 0%, #fc8c0d 54%, #ffb04a 100%);
  color: #141414;
  transition: filter 140ms ease, transform 120ms ease;
}

.calculator-primary-action:hover,
.calculator-submit:hover,
.calculator-retry:hover {
  filter: brightness(0.94);
}

.calculator-primary-action:active,
.calculator-submit:active,
.calculator-retry:active {
  transform: translateY(1px);
}

.calculator-contact-form {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid #4a443c;
}

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

.calculator-contact-field {
  display: block;
}

.calculator-contact-field > span,
.calculator-form-file-label {
  display: block;
  margin-bottom: 10px;
  color: #c9c1b6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.calculator-contact-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid #4a443c;
  border-radius: 0;
  outline: 0;
  background: #100f0e;
  color: #f6f2ea;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 16px;
  transition: border-color 140ms ease;
}

.calculator-contact-field input:focus {
  border-color: #fc8c0d;
}

.calculator-contact-field input[aria-invalid="true"] {
  border-color: #d77d68;
}

.calculator-contact-field small,
.calculator-form-file small {
  display: block;
  margin-top: 8px;
  color: #8f8880;
  font-size: 13px;
  line-height: 1.45;
}

.calculator-contact-field .calculator-field-error {
  color: #ffb4a2;
}

.calculator-form-file {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 242, 234, 0.08);
}

.calculator-form-file-label {
  margin-bottom: 0;
}

.calculator-form-file small {
  margin-top: 5px;
}

.calculator-form-file .project-file-name {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.calculator-form-file .calculator-file-error {
  grid-column: 1 / -1;
  margin-top: 0;
}

.calculator-file-action {
  min-height: 48px;
}

.calculator-submit-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 22px;
  margin-top: 28px;
}

.calculator-form-status {
  margin: 0;
  color: #c9c1b6;
  font-size: 15px;
  line-height: 1.5;
}

.calculator-form-status.is-error {
  color: #ffb4a2;
}

.calculator-form-status a {
  color: #f6f2ea;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calculator-section button:disabled,
.calculator-section input:disabled {
  cursor: wait;
  opacity: 0.58;
}

.mobile-menu {
  position: fixed;
  z-index: 120;
  inset: 0;
  flex-direction: column;
  visibility: hidden;
  transform: translateX(100%);
  opacity: 0;
  background: var(--surface-elevated-dark);
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1), opacity 240ms cubic-bezier(0.2, 0, 0, 1), visibility 240ms;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 64px;
  border-bottom: 1px solid var(--border-dark-hairline);
}

.menu-close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  background: var(--surface-technical-dark);
  cursor: pointer;
}

.menu-close svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding-block: 12px;
}

.mobile-group {
  border-bottom: 1px solid var(--border-dark-hairline);
}

.mobile-group-toggle,
.mobile-direct-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border-dark-hairline);
  background: transparent;
  color: var(--text-on-dark);
  font-size: 18px;
  font-weight: 650;
  text-align: left;
}

.mobile-group-toggle {
  cursor: pointer;
}

.mobile-group-toggle svg {
  width: 12px;
  margin-right: 4px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.mobile-group-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-group-panel {
  display: grid;
  padding: 0 0 12px 16px;
}

.mobile-group-panel[hidden] {
  display: none;
}

.mobile-group-panel a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--text-on-dark-secondary);
  font-size: 16px;
}

.mobile-group-panel a[aria-current="page"] {
  color: var(--text-on-dark);
}

.mobile-group-panel a[aria-current="page"]::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -16px;
  width: 3px;
  background: var(--color-orange);
  content: "";
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-dark);
}

.button-flat {
  min-height: 52px;
  background: var(--color-orange);
  color: #141414;
}

@media (max-width: 1390px) {
  .header-inner {
    column-gap: 18px;
  }

  .nav-monolith,
  .nav-wide-only {
    display: none;
  }

  .nav-more {
    display: flex;
  }

  .nav-trigger,
  .nav-link {
    padding-inline: 8px;
  }

  .header-cta-full {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .header-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 1279px) {

  .hero-shell {
    padding-top: 56px;
  }

  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0 20px;
    min-height: 680px;
  }

  .hero-kicker,
  h1,
  .hero-lead,
  .hero-commercial {
    grid-column: 1 / span 6;
  }

  h1 {
    font-size: clamp(56px, 5vw, 64px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-media {
    grid-column: 7 / span 6;
    min-height: 680px;
  }

  .hero-commercial {
    padding-bottom: 40px;
  }

  .price-prefix,
  .price-unit {
    font-size: 27px;
  }

  .price-value {
    font-size: 58px;
  }

  .price-basis {
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .proof-item {
    padding-inline: 24px;
  }
}

@media (max-width: 1350px) and (min-width: 768px) {
  .hero-shell {
    padding-top: 48px;
  }

  .hero-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: auto auto auto 1fr;
    min-height: 0;
  }

  .hero-kicker {
    grid-column: 1 / span 8;
    grid-row: 1;
  }

  h1 {
    grid-column: 1 / span 8;
    grid-row: 2;
    max-width: 930px;
    font-size: clamp(54px, 6.4vw, 66px);
  }

  .hero-lead {
    grid-column: 1 / span 4;
    grid-row: 3;
    max-width: 450px;
    margin-top: 36px;
    padding-right: 12px;
  }

  .hero-commercial {
    grid-column: 1 / span 4;
    grid-row: 4;
    align-self: end;
    margin-top: 32px;
    padding-bottom: 42px;
  }

  .hero-media {
    grid-column: 5 / span 4;
    grid-row: 3 / span 2;
    min-height: 590px;
    margin-top: 36px;
  }

  .price-tail {
    display: block;
    margin-top: 8px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 1099px) and (min-width: 768px) {
  .proof-item {
    grid-template-rows: 56px minmax(84px, auto) minmax(44px, auto);
    padding-inline: 20px;
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .header-inner {
    column-gap: 10px;
  }

  .nav-houses {
    display: none;
  }

  .header-phone {
    padding-inline: 8px;
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .hero-kicker,
  h1,
  .hero-lead,
  .hero-media,
  .hero-commercial {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  h1 {
    max-width: 820px;
    font-size: clamp(50px, 7vw, 60px);
  }

  .hero-lead {
    max-width: 620px;
    margin-top: 32px;
    padding-right: 0;
  }

  .hero-media {
    min-height: 0;
    margin-top: 36px;
    aspect-ratio: 16 / 9;
  }

  .hero-commercial {
    max-width: 760px;
    margin-top: 0;
    padding: 40px 0 48px;
  }

}

@media (max-width: 767px) {
  .site-header,
  .site-header.is-scrolled {
    height: 64px;
    background: var(--surface-page-dark);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    column-gap: 8px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 4px;
    margin-left: auto;
  }

  .header-phone {
    justify-content: center;
    width: auto;
    min-height: 48px;
    padding: 0 8px;
    border: 0;
    font-size: 13px;
    letter-spacing: -0.015em;
  }

  .header-phone svg {
    display: none;
  }

  .burger {
    display: grid;
    grid-template-rows: repeat(3, 1px);
    align-content: center;
    width: 48px;
    height: 48px;
    gap: 6px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-on-dark);
  }

  .mobile-menu {
    display: flex;
  }

  .header-inner {
    width: 100%;
    padding-inline: 20px;
  }

  .brand {
    flex-basis: 94px;
    width: 94px;
  }

  .brand-logo {
    width: 92px;
  }

  .mobile-menu-top,
  .mobile-nav,
  .mobile-menu-actions {
    width: 100%;
    padding-inline: 16px;
  }

  .mobile-top-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-left: auto;
    padding: 0 12px;
    border: 1px solid var(--border-dark-hairline);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 750;
  }

  .hero-shell {
    padding-top: 28px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
    gap: 0;
  }

  .hero-kicker,
  h1,
  .hero-lead,
  .hero-media,
  .hero-commercial {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(26px, 8.2vw, 32px);
    letter-spacing: -0.065em;
    line-height: 0.94;
  }

  h1 span {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-media {
    min-height: 0;
    margin-top: 28px;
    aspect-ratio: 4 / 3;
  }

  .hero-commercial {
    margin-top: 32px;
    padding: 28px 0 40px;
  }

  .price-prefix,
  .price-unit {
    font-size: 25px;
  }

  .price-value {
    font-size: clamp(43px, 12.5vw, 49px);
  }

  .price-tail {
    display: block;
    margin-top: 9px;
    font-size: 17px;
  }

  .price-basis {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .primary-action-wrap {
    gap: 8px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 16px;
    font-size: 16px;
    white-space: normal;
  }

  .hero-microcopy {
    font-size: 13px;
    text-align: center;
  }

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

  .proof-item {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding: 22px 0 24px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--border-dark);
    border-left: 0;
  }

  .proof-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
  }

  .proof-item h2 {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    font-size: 18px;
  }

  .proof-item p {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    margin-top: 4px;
    font-size: 15px;
  }

  .mobile-menu-actions {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 370px) {
  .header-phone {
    padding-inline: 5px;
    font-size: 12px;
  }

  .header-inner,
  .mobile-menu-top,
  .mobile-nav,
  .mobile-menu-actions {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(26px, 8.2vw, 30px);
  }

  .price-prefix,
  .price-unit {
    font-size: 22px;
  }

  .price-value {
    font-size: 41px;
  }
}

@media (max-width: 1279px) {
  .price-section-shell {
    padding-top: 104px;
    padding-bottom: 96px;
  }

  .price-section-header {
    padding-bottom: 54px;
  }

  .price-section-header h2 {
    font-size: 58px;
  }

  .ledger-row th {
    font-size: 24px;
  }

  .ledger-row-primary th {
    font-size: 28px;
  }

  .ledger-row-primary .ledger-price {
    font-size: 60px;
  }

  .ledger-row-reference th {
    font-size: 21px;
  }

  .price-details {
    margin-top: 80px;
    padding-top: 56px;
  }
}

@media (max-width: 1099px) and (min-width: 768px) {
  .price-section-header,
  .price-details {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
  }

  .price-section-header h2 {
    grid-column: 1 / span 5;
    font-size: 52px;
  }

  .price-section-header p {
    grid-column: 6 / span 3;
  }

  .price-ledger thead th:first-child {
    width: 64%;
  }

  .price-ledger thead th:nth-child(2) {
    width: 10%;
  }

  .price-ledger thead th:last-child {
    width: 26%;
  }

  .ledger-row th,
  .ledger-row td {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ledger-row th {
    font-size: 22px;
  }

  .ledger-row-primary th,
  .ledger-row-primary td {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .ledger-row-primary th {
    font-size: 25px;
  }

  .ledger-row-primary .ledger-price {
    font-size: 52px;
  }

  .ledger-row-reference th {
    font-size: 19px;
  }

  .ledger-row-reference .ledger-price {
    font-size: 30px;
  }

  .price-composition-note {
    max-width: none;
    font-size: 17px;
  }

  .price-included {
    grid-column: 1 / span 5;
  }

  .price-factors {
    grid-column: 6 / span 3;
    padding-left: 24px;
  }

  .price-details h3 {
    font-size: 38px;
  }

  .price-factors h3 {
    font-size: 32px;
  }

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

  .price-factors > p {
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  .price-section-shell {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .price-section-header {
    display: block;
    padding-bottom: 40px;
  }

  .price-section-header h2 {
    font-size: 38px;
    line-height: 1;
  }

  .price-section-header p {
    margin-top: 20px;
    font-size: 16px;
  }

  .price-ledger,
  .price-ledger tbody {
    display: block;
    width: 100%;
  }

  .price-ledger thead {
    display: none;
  }

  .ledger-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 0 20px;
    width: 100%;
    padding: 26px 0;
  }

  .ledger-row th,
  .ledger-row td,
  .ledger-row-primary th,
  .ledger-row-primary td {
    padding: 0;
  }

  .ledger-row th {
    grid-column: 1 / -1;
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.32;
  }

  .ledger-row-primary {
    padding-left: 16px;
    box-shadow: inset 3px 0 #fc8c0d;
  }

  .ledger-row-primary th {
    border-left: 0;
    font-size: 21px;
  }

  .ledger-unit {
    grid-column: 1;
    font-size: 16px;
  }

  .ledger-price {
    grid-column: 2;
    font-size: 34px;
  }

  .ledger-row-primary .ledger-price {
    font-size: 40px;
  }

  .ledger-row-reference th {
    font-size: 19px;
  }

  .ledger-row-reference .ledger-price {
    font-size: 30px;
  }

  .price-composition-note {
    margin-top: 24px;
    padding: 20px 20px;
    font-size: 16px;
    line-height: 1.58;
  }

  .price-details {
    display: block;
    margin-top: 72px;
    padding-top: 48px;
  }

  .price-details h3,
  .price-factors h3 {
    font-size: 34px;
  }

  .included-list {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
  }

  .included-list li {
    padding-left: 28px;
    font-size: 17px;
  }

  .price-factors {
    margin-top: 64px;
    padding-top: 48px;
    padding-left: 0;
    border-top: 1px solid #d5cec4;
    border-left: 0;
  }

  .price-factors > p {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.62;
  }

  .price-factors .price-current-note {
    font-size: 15px;
  }

  .price-calculator-cta {
    width: 100%;
    min-height: 56px;
    margin-top: 32px;
    padding-inline: 18px;
  }

  .calculator-scroll-anchor {
    top: -64px;
  }
}

@media (max-width: 370px) {
  .price-section-header h2 {
    font-size: 34px;
  }

  .ledger-row-primary .ledger-price {
    font-size: 36px;
  }
}

@media (max-width: 1279px) {
  .calculator-shell {
    padding-top: 104px;
    padding-bottom: 96px;
  }

  .calculator-heading h2 {
    font-size: 58px;
  }

  .calculator-grid {
    margin-top: 68px;
  }

  .calculator-inputs {
    padding-right: 20px;
  }

  .calculator-result {
    padding: 46px 42px 50px 46px;
  }

  .calculator-total {
    font-size: clamp(60px, 5.25vw, 72px);
  }

  .calculator-result-facts {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.68fr);
    gap: 28px;
  }
}

@media (max-width: 1099px) and (min-width: 768px) {
  .calculator-heading {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
  }

  .calculator-heading h2 {
    grid-column: 1 / span 5;
    font-size: 52px;
  }

  .calculator-heading p {
    grid-column: 6 / span 3;
  }

  .calculator-grid {
    display: block;
    margin-top: 64px;
  }

  .calculator-inputs {
    max-width: 760px;
    padding-right: 0;
  }

  .calculator-result {
    margin-top: 72px;
    padding: 48px 48px 52px 52px;
  }

  .calculator-total {
    font-size: clamp(72px, 8.2vw, 86px);
  }
}

@media (max-width: 767px) {
  .calculator-shell {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .calculator-heading {
    display: block;
  }

  .calculator-heading h2 {
    font-size: 38px;
    line-height: 1;
  }

  .calculator-heading p {
    margin-top: 20px;
    font-size: 16px;
  }

  .calculator-grid {
    display: block;
    margin-top: 48px;
  }

  .calculator-inputs {
    padding-right: 0;
  }

  .calculator-intro {
    font-size: 17px;
    line-height: 1.62;
  }

  .calculator-tabs {
    gap: 30px;
    margin-top: 38px;
  }

  .calculator-tab {
    min-height: 50px;
    font-size: 16px;
  }

  .calculator-panel {
    margin-top: 34px;
  }

  .calculator-field {
    min-height: 80px;
  }

  .calculator-field input {
    height: 78px;
    padding-left: 20px;
    font-size: 48px;
  }

  .calculator-field > span {
    padding-right: 20px;
    font-size: 21px;
  }

  .dimensions-fields {
    gap: 10px;
  }

  .dimension-field .calculator-field input {
    padding-left: 14px;
    font-size: 40px;
  }

  .dimension-field .calculator-field > span {
    padding-right: 12px;
    font-size: 17px;
  }

  .dimensions-sign {
    width: 18px;
    height: 80px;
    font-size: 22px;
  }

  .dimensions-total {
    font-size: 18px;
  }

  .project-fast-path {
    margin-top: 46px;
    padding-top: 30px;
  }

  .project-fast-copy h3 {
    font-size: 26px;
  }

  .calculator-upload-button {
    width: 100%;
  }

  .calculator-text-action {
    width: 100%;
    min-height: 52px;
    padding: 10px 0;
  }

  .calculator-result {
    margin-top: 56px;
    padding: 36px 20px 42px 24px;
  }

  .calculator-result-heading {
    display: block;
  }

  .calculator-result-heading h3 {
    font-size: 32px;
  }

  .calculator-result-heading span {
    display: block;
    margin-top: 12px;
  }

  .calculator-result-live {
    min-height: 152px;
    margin-top: 32px;
    padding-bottom: 30px;
  }

  .calculator-result-empty span {
    height: 46px;
  }

  .calculator-total {
    font-size: clamp(46px, 13vw, 54px);
    letter-spacing: -0.07em;
  }

  .calculator-result.has-long-total .calculator-total {
    font-size: clamp(36px, 9.8vw, 44px);
  }

  .calculator-formula {
    margin-top: 18px;
    font-size: 17px;
  }

  .calculator-honest-fallback,
  .calculator-unknown-result {
    font-size: 17px;
    line-height: 1.58;
  }

  .calculator-unknown-result strong {
    font-size: 27px;
  }

  .calculator-result-content {
    padding-top: 30px;
  }

  .calculator-basis {
    padding-left: 16px;
  }

  .calculator-basis > p:last-child {
    font-size: 18px;
  }

  .calculator-included {
    margin-top: 32px;
  }

  .calculator-included h4 {
    font-size: 22px;
  }

  .calculator-included p,
  .calculator-price-note,
  .calculator-result-facts li,
  .calculator-deadline > p:last-child {
    font-size: 16px;
  }

  .calculator-price-note {
    padding: 20px;
  }

  .calculator-result-facts {
    display: block;
  }

  .calculator-deadline {
    margin-top: 32px;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid #3a3530;
    border-left: 0;
  }

  .calculator-reference {
    margin-top: 34px;
  }

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

  .calculator-primary-action,
  .calculator-secondary-action {
    width: 100%;
  }

  .calculator-contact-form {
    margin-top: 36px;
    padding-top: 32px;
  }

  .calculator-form-fields {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .calculator-form-file {
    display: block;
  }

  .calculator-file-action {
    width: 100%;
    margin-top: 16px;
  }

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

  .calculator-submit,
  .calculator-retry {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .calculator-heading h2 {
    font-size: 34px;
  }

  .calculator-total {
    font-size: 42px;
  }

  .calculator-result {
    padding-right: 16px;
    padding-left: 20px;
  }
}

.engineering-section {
  position: relative;
  overflow: hidden;
  background: #faf8f4;
  color: #141414;
}

.engineering-shell {
  padding-top: 136px;
  padding-bottom: 112px;
}

.engineering-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 0 32px;
  min-height: 690px;
}

.engineering-intro,
.engineering-closing,
.engineering-actions {
  grid-column: 1 / span 4;
}

.engineering-intro {
  grid-row: 1;
}

.engineering-kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  color: #6e665c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.engineering-kicker span {
  color: #141414;
  font-family: "Onest", Arial, sans-serif;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.engineering-intro h2 {
  max-width: 610px;
  margin: 30px 0 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(58px, 3.7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.engineering-body {
  max-width: 560px;
  margin: 38px 0 0;
  color: #4a443c;
  font-size: 19px;
  line-height: 1.65;
}

.engineering-factors {
  position: relative;
  grid-column: 5 / span 8;
  grid-row: 1 / span 3;
  align-self: stretch;
  margin: 0;
  padding: 0;
  border-top: 1px solid #141414;
  list-style: none;
}

.engineering-factors::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 104px;
  height: 3px;
  background: #fc8c0d;
  content: "";
}

.engineering-factors li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(90px, 0.28fr);
  align-items: center;
  gap: 24px;
  min-height: 138px;
  border-bottom: 1px solid #ddd5c8;
}

.engineering-factor-number {
  color: #fc8c0d;
  font-family: "Onest", Arial, sans-serif;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.engineering-factors h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(30px, 2vw, 39px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.engineering-factor-rule {
  display: block;
  height: 1px;
  background: #c4b9a6;
}

.engineering-closing {
  grid-row: 2;
  align-self: end;
  max-width: 560px;
  margin: 54px 0 0;
  padding-top: 28px;
  border-top: 1px solid #ddd5c8;
  color: #4a443c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.engineering-actions {
  display: flex;
  grid-row: 3;
  align-items: stretch;
  gap: 12px;
  margin-top: 28px;
}

.engineering-primary,
.engineering-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 0;
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}

.engineering-primary {
  border: 1px solid #fc8c0d;
  background: #fc8c0d;
  color: #141414;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.engineering-primary:hover {
  border-color: #d9740a;
  background: #d9740a;
}

.engineering-primary:active {
  transform: translateY(1px);
  border-color: #b65f06;
  background: #b65f06;
}

.engineering-secondary {
  border: 1px solid #b9afa1;
  background: transparent;
  color: #141414;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.engineering-secondary:hover {
  border-color: #6e665c;
  background: #f2eee7;
}

.engineering-secondary:active {
  transform: translateY(1px);
  background: #e5dfd4;
}

.engineering-primary:focus-visible {
  outline-color: #141414;
}

.engineering-secondary:focus-visible {
  outline: 2px solid #fc8c0d;
  outline-offset: 3px;
}

@media (max-width: 1439px) and (min-width: 1100px) {
  .engineering-grid {
    gap: 0 24px;
  }

  .engineering-intro,
  .engineering-closing,
  .engineering-actions {
    grid-column: 1 / span 5;
  }

  .engineering-factors {
    grid-column: 6 / span 7;
  }

  .engineering-intro h2 {
    font-size: 58px;
  }

  .engineering-factors li {
    grid-template-columns: 72px minmax(0, 1fr) 80px;
    gap: 18px;
    min-height: 132px;
  }

  .engineering-factors h3 {
    font-size: 30px;
  }

  .engineering-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 1099px) {
  .engineering-shell {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .engineering-grid {
    display: block;
    min-height: 0;
  }

  .engineering-intro {
    max-width: 820px;
  }

  .engineering-intro h2 {
    max-width: 760px;
    font-size: 58px;
  }

  .engineering-body {
    max-width: 720px;
  }

  .engineering-factors {
    margin-top: 68px;
  }

  .engineering-factors li {
    grid-template-columns: 76px minmax(0, 1fr) minmax(80px, 0.24fr);
    min-height: 116px;
  }

  .engineering-factors h3 {
    font-size: 31px;
  }

  .engineering-closing {
    max-width: 760px;
    margin-top: 56px;
  }

  .engineering-actions {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .engineering-shell {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .engineering-kicker {
    font-size: 12px;
  }

  .engineering-kicker span {
    font-size: 16px;
  }

  .engineering-intro h2 {
    margin-top: 24px;
    font-size: 40px;
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .engineering-body {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.62;
  }

  .engineering-factors {
    margin-top: 46px;
  }

  .engineering-factors::before {
    width: 72px;
  }

  .engineering-factors li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 23px 0 22px;
  }

  .engineering-factor-number {
    align-self: start;
    padding-top: 2px;
    font-size: 22px;
  }

  .engineering-factors h3 {
    font-size: 23px;
    letter-spacing: -0.035em;
    line-height: 1.15;
  }

  .engineering-factor-rule {
    display: none;
  }

  .engineering-closing {
    margin-top: 42px;
    padding-top: 26px;
    font-size: 16px;
  }

  .engineering-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .engineering-primary,
  .engineering-secondary {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 16px;
  }
}

@media (max-width: 370px) {
  .engineering-intro h2 {
    font-size: 36px;
  }

  .engineering-factors h3 {
    font-size: 21px;
  }
}

.slab-section {
  position: relative;
  overflow: hidden;
  background: #faf8f4;
  color: #141414;
  border-top: 1px solid #ddd5c8;
}

.slab-shell {
  padding-top: 96px;
  padding-bottom: 144px;
}

.slab-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 32px;
  align-items: start;
}

.slab-figure {
  grid-column: 1 / span 8;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  padding: 40px 40px 32px;
  background: #f2eee7;
}

.slab-figure-label {
  color: #6e665c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.slab-diagram {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.slab-top-edge {
  stroke: #fc8c0d;
  stroke-width: 5;
}

.slab-plane {
  stroke: #c4b9a6;
  stroke-width: 1;
}

.slab-plane-concrete {
  fill: #2a2622;
  stroke: #2a2622;
}

.slab-plane-armature {
  fill: #ddd5c8;
}

.slab-plane-waterproof {
  fill: #c4b9a6;
}

.slab-plane-subbase {
  fill: #e5dfd4;
}

.slab-plane-cushion {
  fill: #d1c8bb;
}

.slab-plane-geotextile {
  fill: #b9afa1;
}

.slab-plane-ground {
  fill: #b8aea0;
}

.slab-armature-line,
.slab-ground-line {
  stroke: #6e665c;
  stroke-width: 2;
}

.slab-hatch {
  stroke: #a39889;
  stroke-width: 2;
  opacity: 0.7;
}

.slab-figure-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.slab-legend {
  min-width: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #c4b9a6;
  list-style: none;
}

.slab-legend li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 66px;
  padding: 14px 0 13px;
  border-bottom: 1px solid #c4b9a6;
}

.slab-legend li > span {
  color: #fc8c0d;
  font-family: "Onest", Arial, sans-serif;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.slab-legend strong {
  display: block;
  color: #141414;
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.slab-legend small {
  display: block;
  margin-top: 5px;
  color: #6e665c;
  font-size: 14px;
  line-height: 1.35;
}

.slab-aside {
  grid-column: 9 / span 4;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 8px;
}

.slab-copy {
  min-width: 0;
}

.slab-kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  color: #6e665c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.slab-kicker span {
  color: #141414;
  font-family: "Onest", Arial, sans-serif;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.slab-copy h2 {
  max-width: 560px;
  margin: 30px 0 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(48px, 3.35vw, 66px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.slab-body {
  max-width: 560px;
  margin: 34px 0 0;
  color: #4a443c;
  font-size: 19px;
  line-height: 1.62;
}

.slab-note {
  align-self: start;
  max-width: 560px;
  margin: 64px 0 0;
  padding-top: 24px;
  border-top: 1px solid #c4b9a6;
  color: #4a443c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.slab-mobile-diagram {
  display: none;
}

@media (max-width: 1439px) and (min-width: 1200px) {
  .slab-layout {
    gap: 24px;
  }

  .slab-figure {
    padding: 32px 32px 28px;
  }

  .slab-figure-body {
    gap: 24px;
  }

  .slab-copy h2 {
    font-size: 52px;
  }

  .slab-body {
    font-size: 18px;
  }

  .slab-legend strong {
    font-size: 14px;
  }

  .slab-note {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .slab-shell {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .slab-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .slab-aside {
    display: contents;
  }

  .slab-copy {
    order: 1;
    padding-top: 0;
  }

  .slab-figure {
    order: 2;
    margin-top: 64px;
  }

  .slab-note {
    order: 3;
    margin-top: 48px;
  }

  .slab-copy h2 {
    max-width: 760px;
    font-size: 58px;
  }

  .slab-body {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .slab-shell {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .slab-copy h2 {
    margin-top: 24px;
    font-size: 40px;
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .slab-body {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.62;
  }

  .slab-figure {
    margin-top: 42px;
    padding: 24px 20px 16px;
  }

  .slab-figure-body {
    display: none;
  }

  .slab-mobile-diagram {
    display: grid;
    margin-top: 24px;
  }

  .slab-mobile-layer {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 74px;
    padding: 16px 0 15px;
    border-bottom: 1px solid #c4b9a6;
  }

  .slab-mobile-layer-primary {
    padding-top: 0;
  }

  .slab-mobile-plane {
    width: 20px;
    height: 54px;
    border-left: 4px solid #fc8c0d;
    background: #141414;
  }

  .slab-mobile-plane-armature {
    height: 26px;
    margin-top: 5px;
    border-left: 0;
    border-top: 3px solid #6e665c;
    border-bottom: 3px solid #6e665c;
    background: transparent;
  }

  .slab-mobile-plane-thin {
    height: 10px;
    margin-top: 8px;
    border-left: 0;
    background: #c4b9a6;
  }

  .slab-mobile-plane-subbase {
    height: 22px;
    margin-top: 5px;
    border-left: 0;
    background: #e5dfd4;
  }

  .slab-mobile-plane-cushion {
    height: 40px;
    margin-top: 5px;
    border-left: 0;
    background: #d1c8bb;
  }

  .slab-mobile-plane-ground {
    height: 48px;
    margin-top: 5px;
    border-left: 0;
    background: #b8aea0;
  }

  .slab-mobile-copy {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 4px;
    align-items: baseline;
  }

  .slab-mobile-number {
    grid-row: 1 / span 2;
    color: #fc8c0d;
    font-family: "Onest", Arial, sans-serif;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 1;
  }

  .slab-mobile-copy strong {
    color: #141414;
    font-family: "Onest", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
  }

  .slab-mobile-copy span:last-child {
    grid-column: 2;
    color: #6e665c;
    font-size: 15px;
    line-height: 1.4;
  }

  .slab-note {
    margin-top: 36px;
    padding-top: 24px;
    font-size: 16px;
  }
}

@media (max-width: 370px) {
  .slab-copy h2 {
    font-size: 36px;
  }

  .slab-mobile-copy strong {
    font-size: 16px;
  }
}

.process-section {
  overflow: hidden;
  background: #141414;
  color: #f6f2ea;
  border-top: 1px solid #141414;
}

.process-shell {
  padding-top: 132px;
  padding-bottom: 104px;
}

.process-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.process-heading h2 {
  grid-column: 1 / span 8;
  max-width: 1020px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(58px, 4.5vw, 86px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.process-sequence {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.9fr 1.42fr;
  min-height: 1120px;
  gap: 28px;
  margin: 88px 0 0;
  padding: 0;
  list-style: none;
}

.process-sequence::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  content: "";
}

.process-sequence::before {
  right: 0;
  height: 1px;
  background: #3a3530;
}

.process-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.process-marker {
  position: absolute;
  z-index: 2;
  top: calc(50% - 5px);
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #8f8880;
  background: #141414;
}

.process-stage-content {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-stage-01 .process-stage-content,
.process-stage-03 .process-stage-content {
  bottom: calc(50% + 38px);
}

.process-stage-02 .process-stage-content,
.process-stage-04 .process-stage-content {
  top: calc(50% + 38px);
}

.process-stage-copy {
  max-width: 390px;
}

.process-stage-number {
  display: block;
  margin-bottom: 16px;
  color: #8f8880;
  font-family: "Onest", Arial, sans-serif;
  font-size: 48px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.process-stage-copy h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.process-stage-copy p {
  max-width: 390px;
  margin: 16px 0 0;
  color: #c9c1b6;
  font-size: 16px;
  line-height: 1.55;
}

.process-media {
  min-width: 0;
  margin: 0;
}

.process-media-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid #3a3530;
  background: #2a2622;
}

.process-media-frame span {
  position: relative;
  z-index: 1;
  color: #8f8880;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-media figcaption {
  margin-top: 10px;
  color: #8f8880;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.process-stage-01 .process-media-frame {
  min-height: 220px;
}

.process-stage-02 .process-media-frame {
  min-height: 276px;
}

.process-stage-03 .process-media-frame {
  min-height: 258px;
}

.process-stage-04 .process-media-frame {
  min-height: 304px;
}

.process-closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding-top: 38px;
  border-top: 1px solid #3a3530;
}

.process-closing p {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.process-closing a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  background: #fc8c0d;
  color: #141414;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 160ms ease, transform 160ms ease;
}

.process-closing a:hover {
  background: #ff9c2b;
}

.process-closing a:active {
  transform: translateY(1px);
  background: #d9740a;
}

.process-closing a:focus-visible {
  outline: 3px solid #f6f2ea;
  outline-offset: 3px;
}

@media (max-width: 1439px) and (min-width: 1100px) {
  .process-shell {
    padding-top: 112px;
    padding-bottom: 100px;
  }

  .process-sequence {
    grid-template-columns: 0.9fr 1.15fr 0.88fr 1.32fr;
    min-height: 1120px;
    gap: 22px;
    margin-top: 72px;
  }

  .process-stage-copy h3 {
    font-size: 25px;
  }

  .process-stage-copy p {
    font-size: 15px;
  }

  .process-stage-01 .process-media-frame {
    min-height: 190px;
  }

  .process-stage-02 .process-media-frame {
    min-height: 248px;
  }

  .process-stage-03 .process-media-frame {
    min-height: 230px;
  }

  .process-stage-04 .process-media-frame {
    min-height: 270px;
  }
}

@media (max-width: 1099px) {
  .process-shell {
    padding-top: 104px;
    padding-bottom: 108px;
  }

  .process-heading h2 {
    grid-column: 1 / -1;
    max-width: 780px;
    font-size: 60px;
  }

  .process-sequence {
    display: block;
    min-height: 0;
    margin-top: 72px;
    padding-left: 68px;
  }

  .process-sequence::before {
    top: 0;
    bottom: 0;
    left: 18px;
    width: auto;
  }

  .process-sequence::before {
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-stage {
    margin-bottom: 84px;
  }

  .process-stage:last-child {
    margin-bottom: 0;
  }

  .process-marker {
    top: 8px;
    left: -55px;
  }

  .process-stage-content,
  .process-stage-01 .process-stage-content,
  .process-stage-02 .process-stage-content,
  .process-stage-03 .process-stage-content,
  .process-stage-04 .process-stage-content {
    position: static;
  }

  .process-stage-copy {
    max-width: 720px;
  }

  .process-stage-number {
    margin-bottom: 14px;
  }

  .process-stage-copy h3 {
    font-size: 32px;
  }

  .process-stage-copy p {
    max-width: 680px;
    font-size: 17px;
  }

  .process-media {
    width: 100%;
  }

  .process-stage-01 .process-media-frame,
  .process-stage-02 .process-media-frame,
  .process-stage-03 .process-media-frame,
  .process-stage-04 .process-media-frame {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .process-closing {
    margin-top: 88px;
  }
}

@media (max-width: 767px) {
  .process-shell {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .process-heading h2 {
    font-size: 40px;
    line-height: 1;
  }

  .process-sequence {
    margin-top: 52px;
    padding-left: 34px;
  }

  .process-sequence::before {
    left: 5px;
  }

  .process-stage {
    margin-bottom: 64px;
  }

  .process-marker {
    top: 6px;
    left: -34px;
  }

  .process-stage-content {
    gap: 22px;
  }

  .process-stage-number {
    margin-bottom: 12px;
    font-size: 40px;
  }

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

  .process-stage-copy p {
    margin-top: 14px;
    font-size: 16px;
  }

  .process-media figcaption {
    font-size: 12px;
  }

  .process-closing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 68px;
    padding-top: 28px;
  }

  .process-closing p {
    font-size: 22px;
  }

  .process-closing a {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
  }
}

@media (max-width: 370px) {
  .process-heading h2 {
    font-size: 36px;
  }

  .process-stage-copy h3 {
    font-size: 24px;
  }
}

.source-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
}

.source-slot > span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.source-slot-dark {
  border: 1px solid #3a3530;
  background: #2a2622;
}

.source-slot-dark > span {
  color: #8f8880;
}

.source-slot-light {
  border: 1px solid #ddd5c8;
  background: #e5dfd4;
}

.source-slot-light > span {
  color: #6e665c;
}

.object-story-section {
  overflow: hidden;
  background: #0c0b0a;
  color: #f6f2ea;
  border-top: 1px solid #3a3530;
}

.object-story-shell {
  padding-top: 104px;
  padding-bottom: 136px;
}

.object-story-opening {
  position: relative;
  min-width: 0;
}

.object-story-opening-media {
  aspect-ratio: 21 / 9;
}

.object-story-opening-media > span {
  align-self: start;
  justify-self: start;
  margin: 28px 32px;
}

.object-story-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(100%, 1040px);
  padding: 30px 38px 34px;
  background: rgba(12, 11, 10, 0.9);
}

.object-story-heading h2 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(54px, 4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.object-story-content {
  padding-top: 56px;
}

.object-story-lead {
  max-width: 830px;
  margin: 0;
  color: #c9c1b6;
  font-size: 22px;
  line-height: 1.5;
}

.object-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 48px 0 0;
  border-top: 1px solid #3a3530;
  border-bottom: 1px solid #3a3530;
}

.object-facts[hidden] {
  display: none;
}

.object-facts > div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid #3a3530;
}

.object-facts > div:first-child {
  padding-left: 0;
}

.object-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.object-facts dt {
  color: #8f8880;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.object-facts dd {
  min-height: 28px;
  margin: 14px 0 0;
}

.object-chronology {
  margin: 0;
  padding: 0;
  list-style: none;
}

.object-stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 80px;
}

.object-stage-copy {
  min-width: 0;
}

.object-stage-number {
  display: block;
  color: #8f8880;
  font-family: "Onest", Arial, sans-serif;
  font-size: 56px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.object-stage-opening .object-stage-number {
  color: #fc8c0d;
}

.object-stage h3 {
  margin: 18px 0 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.object-stage-copy p {
  max-width: 530px;
  margin: 14px 0 0;
  color: #c9c1b6;
  font-size: 18px;
  line-height: 1.6;
}

.object-stage-media {
  min-width: 0;
  margin: 0;
}

.object-stage-media .source-slot {
  aspect-ratio: 3 / 2;
}

.object-stage-media figcaption {
  margin-top: 11px;
  color: #8f8880;
  font-size: 13px;
  line-height: 1.4;
}

.object-stage-opening .object-stage-copy {
  grid-column: 1 / span 5;
}

.object-stage-rule {
  grid-column: 6 / -1;
  height: 1px;
  background: #3a3530;
}

.object-stage-media-right .object-stage-copy {
  grid-column: 1 / span 4;
}

.object-stage-media-right .object-stage-media {
  grid-column: 6 / -1;
}

.object-stage-media-left .object-stage-copy {
  grid-column: 7 / -1;
}

.object-stage-media-left .object-stage-media {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.object-stage-detail .object-stage-media .source-slot {
  aspect-ratio: 1 / 1;
}

.object-stage-wide .object-stage-copy {
  grid-column: 1 / span 4;
}

.object-stage-wide .object-stage-media {
  grid-column: 5 / -1;
}

.object-stage-wide .object-stage-media .source-slot {
  aspect-ratio: 16 / 9;
}

.object-stage-final {
  display: block;
  margin-top: 104px;
}

.object-stage-final .object-stage-copy {
  max-width: 640px;
}

.object-stage-final .object-stage-media {
  margin-top: 48px;
}

.object-stage-final .object-stage-media .source-slot {
  aspect-ratio: 2 / 1;
}

.object-story-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  margin-top: 44px;
  border-bottom: 1px solid #f6f2ea;
  color: #f6f2ea;
  font-size: 16px;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease;
}

.object-story-cta span {
  transition: transform 160ms ease;
}

.object-story-cta:hover {
  border-color: #fc8c0d;
  color: #fc8c0d;
}

.object-story-cta:hover span {
  transform: translateX(2px);
}

.object-story-cta:focus-visible {
  outline: 2px solid #fc8c0d;
  outline-offset: 4px;
}

.control-section {
  overflow: hidden;
  background: #faf8f4;
  color: #141414;
  border-top: 1px solid #ddd5c8;
}

.control-shell {
  padding-top: 132px;
  padding-bottom: 140px;
}

.control-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.control-heading h2 {
  grid-column: 1 / span 9;
  max-width: 1120px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(48px, 3.45vw, 66px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.control-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 76px;
}

.control-promises {
  grid-column: 1 / span 6;
  min-width: 0;
}

.control-ledger {
  margin: 0;
  padding: 0;
  border-top: 1px solid #141414;
  list-style: none;
}

.control-ledger li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0 24px;
  border-bottom: 1px solid #ddd5c8;
}

.control-number {
  padding-top: 2px;
  color: #6e665c;
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.2;
}

.control-ledger h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.control-ledger p {
  margin: 7px 0 0;
  color: #4a443c;
  font-size: 18px;
  line-height: 1.55;
}

.control-ledger .control-guarantee {
  padding-left: 18px;
  border-left: 3px solid #fc8c0d;
  background: #f2eee7;
}

.control-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 32px;
  padding: 15px 28px;
  border-radius: 6px;
  background: #fc8c0d;
  color: #141414;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.control-cta:hover {
  background: #ff9c2b;
}

.control-cta:active {
  transform: translateY(1px);
  background: #d9740a;
}

.control-cta:focus-visible {
  outline: 2px solid #141414;
  outline-offset: 3px;
}

.control-evidence {
  grid-column: 7 / -1;
  display: grid;
  gap: 24px;
  min-width: 0;
}

.evidence-item {
  min-width: 0;
  margin: 0;
}

.evidence-contract .source-slot {
  aspect-ratio: 2 / 1;
}

.evidence-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.evidence-report .source-slot {
  aspect-ratio: 3 / 2;
}

.evidence-camera .source-slot {
  aspect-ratio: 16 / 9;
}

.evidence-acceptance .source-slot {
  aspect-ratio: 16 / 5;
}

.control-review {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 56px;
  align-items: center;
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid #141414;
}

.control-review-copy {
  min-width: 0;
}

.control-review blockquote {
  max-width: 1160px;
  margin: 0;
  padding-left: 40px;
  border-left: 4px solid #fc8c0d;
  color: #141414;
  font-size: clamp(30px, 2.15vw, 40px);
  line-height: 1.32;
}

.control-review-copy p {
  margin: 28px 0 0 44px;
  color: #6e665c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.review-source-slot {
  aspect-ratio: 4 / 3;
}

.rescue-section {
  overflow: hidden;
  background: #f2eee7;
  color: #141414;
  border-top: 1px solid #ddd5c8;
}

.rescue-shell {
  padding-top: 88px;
  padding-bottom: 92px;
}

.rescue-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.rescue-copy {
  grid-column: 1 / span 5;
  min-width: 0;
}

.rescue-copy h2 {
  max-width: 610px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(36px, 2.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.rescue-copy > p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #4a443c;
  font-size: 18px;
  line-height: 1.58;
}

.rescue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.rescue-primary,
.rescue-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.rescue-primary {
  background: #fc8c0d;
  color: #141414;
}

.rescue-secondary {
  border: 1px solid #c4b9a6;
  background: #faf8f4;
  color: #141414;
}

.rescue-primary:hover {
  background: #ff9c2b;
}

.rescue-secondary:hover {
  border-color: #141414;
}

.rescue-primary:active,
.rescue-secondary:active {
  transform: translateY(1px);
}

.rescue-primary:focus-visible {
  outline-color: #141414;
}

.rescue-secondary:focus-visible {
  outline: 2px solid #fc8c0d;
  outline-offset: 3px;
}

.rescue-ledger {
  grid-column: 6 / -1;
  margin: 0;
  padding: 0;
  border-top: 1px solid #141414;
  list-style: none;
}

.rescue-ledger li {
  border-bottom: 1px solid #c4b9a6;
}

.rescue-ledger a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  gap: 24px;
  align-items: baseline;
  min-height: 88px;
  padding: 20px 0;
  color: #141414;
  transition: background-color 160ms ease;
}

.rescue-ledger a > span:first-child {
  font-size: 18px;
  line-height: 1.4;
}

.rescue-ledger strong {
  font-family: "Onest", Arial, sans-serif;
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.rescue-ledger a > span:last-child {
  color: #6e665c;
  font-size: 18px;
  transition: transform 160ms ease;
}

.rescue-ledger a:hover {
  background: #faf8f4;
}

.rescue-ledger a:hover > span:last-child {
  transform: translateX(2px);
}

.rescue-ledger a:focus-visible {
  outline: 2px solid #fc8c0d;
  outline-offset: 3px;
}

.next-stage-section {
  overflow: hidden;
  background: #141414;
  color: #f6f2ea;
  border-top: 1px solid #3a3530;
}

.next-stage-shell {
  padding-top: 132px;
  padding-bottom: 104px;
}

.next-stage-heading {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: end;
}

.next-stage-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(48px, 3.4vw, 66px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.next-stage-heading p {
  max-width: 650px;
  margin: 0;
  color: #c9c1b6;
  font-size: 19px;
  line-height: 1.58;
}

.next-stage-routes {
  display: grid;
  grid-template-columns: 4fr 8fr;
  margin-top: 72px;
  border-top: 1px solid #3a3530;
  border-bottom: 1px solid #3a3530;
}

.next-stage-technical {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 52px 48px 56px 0;
  border-right: 1px solid #3a3530;
}

.next-stage-technical h3 {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.next-stage-technical a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  align-self: flex-start;
  min-height: 48px;
  margin-top: auto;
  border-bottom: 1px solid #f6f2ea;
  font-size: 15px;
  font-weight: 700;
}

.next-stage-technical a span {
  transition: transform 160ms ease;
}

.next-stage-technical a:hover span {
  transform: translateX(2px);
}

.next-stage-technical a:focus-visible {
  outline: 2px solid #fc8c0d;
  outline-offset: 3px;
}

.next-stage-house {
  min-width: 0;
  padding: 52px 0 56px 48px;
}

.next-stage-media {
  aspect-ratio: 16 / 9;
}

.next-stage-house-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-top: 32px;
}

.next-stage-house h3 {
  max-width: 800px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(42px, 3vw, 58px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.next-stage-house a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 6px;
  background: #fc8c0d;
  color: #141414;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.next-stage-house a:hover {
  background: #ff9c2b;
}

.next-stage-house a:active {
  transform: translateY(1px);
  background: #d9740a;
}

.next-stage-house a:focus-visible {
  outline: 2px solid #f6f2ea;
  outline-offset: 3px;
}

.final-section {
  overflow: hidden;
  background: #0c0b0a;
  color: #f6f2ea;
  border-top: 1px solid #3a3530;
}

.final-shell {
  padding-top: 104px;
  padding-bottom: 152px;
}

.final-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
  align-items: start;
}

.final-copy h2 {
  max-width: 1040px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(56px, 4.1vw, 78px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.final-copy > p {
  max-width: 790px;
  margin: 28px 0 0;
  color: #c9c1b6;
  font-size: 22px;
  line-height: 1.5;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.final-primary,
.final-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.final-primary {
  background: linear-gradient(96deg, #d9740a 0%, #fc8c0d 54%, #ffb04a 100%);
  color: #141414;
}

.final-phone {
  border: 1px solid #3a3530;
  background: transparent;
  color: #f6f2ea;
  font-variant-numeric: tabular-nums;
}

.final-primary:hover {
  background: linear-gradient(96deg, #c4680a 0%, #ee8309 54%, #f7a63c 100%);
}

.final-phone:hover {
  border-color: #8f8880;
  background: #1e1b18;
}

.final-primary:active,
.final-phone:active {
  transform: translateY(1px);
}

.final-primary:focus-visible {
  outline-color: #f6f2ea;
}

.final-phone:focus-visible {
  outline: 2px solid #fc8c0d;
  outline-offset: 3px;
}

.final-facts {
  margin: 0;
  padding: 0 0 0 56px;
  border-left: 1px solid #3a3530;
  list-style: none;
}

.final-facts li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(246, 242, 234, 0.1);
  font-size: 21px;
  line-height: 1.42;
}

.final-facts li:first-child {
  padding-top: 0;
}

.final-facts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 1439px) and (min-width: 1100px) {
  .object-story-shell,
  .control-shell,
  .next-stage-shell {
    padding-top: 112px;
    padding-bottom: 116px;
  }

  .object-story-shell {
    padding-top: 96px;
  }

  .next-stage-shell {
    padding-bottom: 96px;
  }

  .object-story-heading h2,
  .final-copy h2 {
    font-size: 60px;
  }

  .object-stage {
    gap: 24px;
  }

  .control-layout {
    gap: 32px;
  }

  .control-ledger h3 {
    font-size: 21px;
  }

  .control-ledger p {
    font-size: 17px;
  }

  .rescue-layout {
    gap: 32px;
  }

  .rescue-ledger strong {
    font-size: 30px;
  }

  .next-stage-heading,
  .final-layout {
    gap: 48px;
  }

  .next-stage-house-copy {
    grid-template-columns: 1fr;
  }

  .next-stage-house a {
    justify-self: start;
  }

  .final-shell {
    padding-top: 96px;
    padding-bottom: 124px;
  }
}

@media (max-width: 1099px) {
  .object-story-shell,
  .control-shell,
  .next-stage-shell {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .object-story-shell {
    padding-top: 88px;
  }

  .next-stage-shell {
    padding-bottom: 96px;
  }

  .object-story-opening-media {
    aspect-ratio: 16 / 9;
  }

  .object-story-heading {
    width: min(92%, 820px);
  }

  .object-story-heading h2 {
    font-size: 54px;
  }

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

  .object-facts > div,
  .object-facts > div:first-child,
  .object-facts > div:last-child {
    padding: 22px 20px;
    border-right: 1px solid #3a3530;
    border-bottom: 1px solid #3a3530;
  }

  .object-facts > div:nth-child(2n) {
    border-right: 0;
  }

  .object-facts > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .object-stage,
  .object-stage-opening {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 72px;
  }

  .object-stage .object-stage-copy,
  .object-stage .object-stage-media,
  .object-stage-opening .object-stage-copy,
  .object-stage-rule {
    grid-column: 1;
    grid-row: auto;
  }

  .object-stage-rule {
    width: 100%;
  }

  .object-stage-copy p {
    max-width: 720px;
  }

  .object-stage-detail .object-stage-media .source-slot {
    aspect-ratio: 3 / 2;
  }

  .object-stage-final {
    display: block;
    margin-top: 88px;
  }

  .control-heading h2 {
    grid-column: 1 / -1;
    max-width: 900px;
    font-size: 56px;
  }

  .control-layout {
    display: block;
    margin-top: 64px;
  }

  .control-promises,
  .control-evidence {
    width: 100%;
  }

  .control-evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
  }

  .evidence-contract,
  .evidence-acceptance {
    grid-column: 1 / -1;
  }

  .evidence-pair {
    grid-column: 1 / -1;
  }

  .control-review {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 80px;
    padding-top: 64px;
  }

  .review-source-slot {
    max-width: 520px;
    justify-self: end;
  }

  .rescue-layout {
    display: block;
  }

  .rescue-copy {
    max-width: 760px;
  }

  .rescue-ledger {
    margin-top: 56px;
  }

  .next-stage-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .next-stage-heading h2 {
    max-width: 780px;
    font-size: 56px;
  }

  .next-stage-heading p {
    max-width: 760px;
  }

  .next-stage-routes {
    display: block;
    margin-top: 64px;
  }

  .next-stage-technical {
    min-height: 0;
    padding: 40px 0;
    border-right: 0;
    border-bottom: 1px solid #3a3530;
  }

  .next-stage-technical a {
    margin-top: 32px;
  }

  .next-stage-house {
    padding: 56px 0;
  }

  .next-stage-house-copy {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .final-shell {
    padding-top: 88px;
    padding-bottom: 120px;
  }

  .final-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .final-copy h2 {
    max-width: 880px;
    font-size: 62px;
  }

  .final-copy > p {
    max-width: 760px;
  }

  .final-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 0;
    border-top: 1px solid #3a3530;
    border-left: 0;
  }

  .final-facts li,
  .final-facts li:first-child,
  .final-facts li:last-child {
    padding: 24px;
    border-right: 1px solid #3a3530;
    border-bottom: 0;
  }

  .final-facts li:first-child {
    padding-left: 0;
  }

  .final-facts li:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .source-slot > span {
    font-size: 12px;
  }

  .object-story-shell,
  .control-shell,
  .next-stage-shell {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .object-story-opening-media {
    aspect-ratio: 4 / 5;
  }

  .object-story-opening-media > span {
    margin: 16px;
  }

  .object-story-heading {
    width: calc(100% - 20px);
    padding: 22px 20px 24px;
  }

  .object-story-heading h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .object-story-content {
    padding-top: 32px;
  }

  .object-story-lead {
    font-size: 18px;
    line-height: 1.55;
  }

  .object-facts {
    display: block;
    margin-top: 28px;
  }

  .object-facts > div,
  .object-facts > div:first-child,
  .object-facts > div:last-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 16px;
    min-height: 54px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #3a3530;
  }

  .object-facts > div:last-child {
    border-bottom: 0;
  }

  .object-facts dd {
    min-height: 20px;
    margin: 0;
  }

  .object-stage,
  .object-stage-opening {
    gap: 20px;
    margin-top: 52px;
  }

  .object-stage-number {
    font-size: 40px;
  }

  .object-stage h3 {
    margin-top: 12px;
    font-size: 24px;
  }

  .object-stage-copy p {
    margin-top: 10px;
    font-size: 16px;
  }

  .object-stage-media .source-slot,
  .object-stage-detail .object-stage-media .source-slot,
  .object-stage-wide .object-stage-media .source-slot {
    aspect-ratio: 3 / 2;
  }

  .object-stage-final {
    margin-top: 64px;
  }

  .object-stage-final .object-stage-media {
    margin-top: 24px;
  }

  .object-stage-final .object-stage-media .source-slot {
    aspect-ratio: 4 / 5;
  }

  .object-story-cta {
    width: 100%;
    justify-content: space-between;
    min-height: 56px;
    margin-top: 32px;
  }

  .control-heading h2 {
    font-size: 40px;
    line-height: 1;
  }

  .control-layout {
    margin-top: 48px;
  }

  .control-ledger li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .control-ledger .control-guarantee {
    padding-left: 12px;
  }

  .control-number {
    font-size: 14px;
  }

  .control-ledger h3 {
    font-size: 20px;
  }

  .control-ledger p {
    margin-top: 5px;
    font-size: 16px;
  }

  .control-cta {
    width: 100%;
  }

  .control-evidence {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .evidence-contract,
  .evidence-pair,
  .evidence-acceptance {
    grid-column: 1;
  }

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

  .evidence-contract .source-slot,
  .evidence-acceptance .source-slot {
    aspect-ratio: 2 / 1;
  }

  .evidence-report .source-slot,
  .evidence-camera .source-slot {
    aspect-ratio: 1 / 1;
  }

  .control-review {
    gap: 28px;
    margin-top: 64px;
    padding-top: 48px;
  }

  .control-review blockquote {
    padding-left: 20px;
    font-size: 24px;
    line-height: 1.38;
  }

  .control-review-copy p {
    margin: 18px 0 0 24px;
    font-size: 14px;
  }

  .review-source-slot {
    max-width: none;
    aspect-ratio: 16 / 9;
    justify-self: stretch;
  }

  .rescue-shell {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .rescue-copy h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .rescue-copy > p {
    margin-top: 16px;
    font-size: 16px;
  }

  .rescue-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .rescue-primary,
  .rescue-secondary {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
  }

  .rescue-ledger {
    margin-top: 40px;
  }

  .rescue-ledger a {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 10px;
    min-height: 0;
    padding: 18px 0;
  }

  .rescue-ledger a > span:first-child {
    grid-column: 1 / -1;
    font-size: 17px;
  }

  .rescue-ledger strong {
    grid-column: 1;
    font-size: 28px;
  }

  .rescue-ledger a > span:last-child {
    grid-column: 2;
    align-self: center;
    text-align: right;
  }

  .next-stage-heading {
    gap: 20px;
  }

  .next-stage-heading h2 {
    font-size: 40px;
    line-height: 1;
  }

  .next-stage-heading p {
    font-size: 17px;
  }

  .next-stage-routes {
    margin-top: 48px;
  }

  .next-stage-technical {
    padding: 32px 0 36px;
  }

  .next-stage-technical h3 {
    font-size: 26px;
  }

  .next-stage-technical a {
    width: 100%;
    justify-content: space-between;
    min-height: 56px;
    margin-top: 24px;
  }

  .next-stage-house {
    padding: 40px 0 0;
  }

  .next-stage-media {
    aspect-ratio: 4 / 5;
  }

  .next-stage-house-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    padding-bottom: 40px;
  }

  .next-stage-house h3 {
    font-size: 34px;
  }

  .next-stage-house a {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
  }

  .final-shell {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .final-layout {
    gap: 48px;
  }

  .final-copy h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .final-copy > p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.55;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 28px;
  }

  .final-primary,
  .final-phone {
    width: 100%;
    min-height: 56px;
  }

  .final-facts {
    display: block;
    border-top: 1px solid #3a3530;
  }

  .final-facts li,
  .final-facts li:first-child,
  .final-facts li:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 242, 234, 0.1);
    font-size: 17px;
  }

  .final-facts li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 370px) {
  .object-story-heading h2,
  .control-heading h2,
  .next-stage-heading h2,
  .final-copy h2 {
    font-size: 36px;
  }

  .rescue-copy h2 {
    font-size: 30px;
  }

  .rescue-ledger strong {
    font-size: 25px;
  }
}

@media (min-width: 821px) and (max-width: 900px) {
  .price-section-header,
  .price-details,
  .calculator-heading {
    display: block;
  }

  .price-section-header h2,
  .calculator-heading h2 {
    max-width: 760px;
    font-size: 52px;
  }

  .price-section-header p,
  .calculator-heading p {
    margin-top: 20px;
  }

  .price-included {
    max-width: 760px;
  }

  .price-factors {
    max-width: 720px;
    margin-top: 64px;
    padding-top: 48px;
    padding-left: 0;
    border-top: 1px solid #d5cec4;
    border-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    height: 64px;
    background: var(--surface-page-dark);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-inline: 24px;
    column-gap: 8px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
  }

  .brand {
    flex-basis: 100px;
    width: 100px;
  }

  .brand-logo {
    width: 98px;
  }

  .header-phone {
    justify-content: center;
    min-height: 48px;
    padding: 0 10px;
    border: 0;
    font-size: 14px;
  }

  .header-phone svg {
    display: none;
  }

  .burger {
    display: grid;
    grid-template-rows: repeat(3, 1px);
    align-content: center;
    width: 48px;
    height: 48px;
    gap: 6px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-on-dark);
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu-top,
  .mobile-nav,
  .mobile-menu-actions {
    width: 100%;
    padding-inline: 24px;
  }

  .mobile-top-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-left: auto;
    padding: 0 14px;
    border: 1px solid var(--border-dark-hairline);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 750;
  }

  .price-section-shell {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .price-section-header h2,
  .calculator-heading h2 {
    font-size: 48px;
  }

  .calculator-heading {
    display: block;
  }

  .calculator-heading p {
    margin-top: 20px;
  }

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

  .proof-item {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding: 24px 0 26px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--border-dark);
    border-left: 0;
  }

  .proof-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .proof-item h2,
  .proof-item p {
    grid-column: 2;
    min-height: 0;
  }

  .proof-item h2 {
    grid-row: 1;
  }

  .proof-item p {
    grid-row: 2;
    margin-top: 4px;
  }

  .slab-shell {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .slab-copy h2 {
    font-size: 48px;
  }

  .final-copy h2 {
    font-size: 52px;
  }

  .final-facts {
    display: block;
    border-top: 1px solid #3a3530;
  }

  .final-facts li,
  .final-facts li:first-child,
  .final-facts li:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 242, 234, 0.1);
  }

  .final-facts li:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 960px) and (max-width: 1099px) {
  .control-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
  }

  .control-promises {
    grid-column: 1 / span 6;
    width: auto;
  }

  .control-evidence {
    grid-column: 7 / -1;
    width: auto;
    margin-top: 0;
  }

  .control-review {
    grid-template-columns: 8fr 4fr;
    gap: 40px;
  }

  .review-source-slot {
    max-width: none;
    justify-self: stretch;
  }
}

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

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