@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-04FF, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --bg: #eef2f0;
  --surface: #e4eae7;
  --surface-raised: #f7f9f8;
  --surface-strong: #d9e3de;
  --ink: #17201e;
  --muted: #5d6965;
  --line: #c8d2ce;
  --line-strong: #9baaa5;
  --accent: #0e5c4e;
  --accent-hover: #0a4a3f;
  --accent-soft: #c9ddd6;
  --accent-ink: #eef7f4;
  --header-bg: rgb(238 242 240 / 88%);
  --shadow: 0 24px 70px rgb(31 58 49 / 12%);
  --radius: 18px;
  --radius-small: 12px;
  --header-height: 74px;
  --shell: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #101715;
    --surface: #18211f;
    --surface-raised: #202a27;
    --surface-strong: #1b2c27;
    --ink: #edf3f1;
    --muted: #acb8b4;
    --line: #32413d;
    --line-strong: #62716c;
    --accent: #5da890;
    --accent-hover: #72bca5;
    --accent-soft: #24483e;
    --accent-ink: #0e1815;
    --header-bg: rgb(16 23 21 / 88%);
    --shadow: 0 24px 70px rgb(0 0 0 / 28%);
  }
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgb(21 49 41 / 6%);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  height: 100%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-detail {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  min-width: 0;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--line-strong);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
}

.language-switcher a {
  color: var(--muted);
  transition: color 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher .is-active {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 12px;
  font-weight: 700;
}

.menu-toggle-lines,
.menu-toggle-lines::before {
  display: block;
  width: 21px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease);
}

.menu-toggle-lines::before {
  transform: translateY(-6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  transform: rotate(-90deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgb(14 92 78 / 18%);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  box-shadow: 0 14px 34px rgb(14 92 78 / 24%);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(.98);
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 12px;
}

.button-inverse {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: #173029;
  box-shadow: none;
}

.button-inverse:hover {
  border-color: #dfeae6;
  background: #dfeae6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero {
  min-height: min(760px, calc(100dvh - var(--header-height)));
  display: grid;
  align-items: center;
  padding-block: clamp(36px, 5vw, 72px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(38px, 5.5vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 630;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.hero-lead {
  max-width: 49ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 1.865 / 1;
  object-fit: cover;
}

.hero-media::before {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: -1;
  width: 56%;
  height: 68%;
  border-radius: var(--radius);
  background: var(--accent-soft);
  content: "";
}

.hero-media figcaption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-media figcaption::before {
  width: 42px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.trust-strip {
  border-block: 1px solid var(--line);
}

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

.trust-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 25px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

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

.trust-item strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 650;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: clamp(96px, 11vw, 172px);
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(62px, 8vw, 112px);
}

.section-intro h2,
.process-heading h2,
.benefits-statement h2,
.about-copy h2,
.contact-primary h2 {
  max-width: 16ch;
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 590;
  letter-spacing: -.05em;
  line-height: 1.05;
}

.section-intro p,
.process-heading > p {
  max-width: 56ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

.product-feature {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
}

.product-window {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .76fr);
}

.product-door {
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
  margin-top: clamp(112px, 14vw, 220px);
  padding: clamp(30px, 5vw, 78px);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 850ms var(--ease);
}

.product-media:hover img {
  transform: scale(1.018);
}

.product-media-portrait {
  justify-self: end;
  width: min(100%, 570px);
  box-shadow: none;
}

.product-media-portrait img {
  aspect-ratio: 2 / 3;
}

.product-copy {
  max-width: 550px;
}

.product-index {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.product-copy h3 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 580;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.product-copy > p:not(.product-index) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.product-specs {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.product-specs dd {
  font-size: 13px;
  font-weight: 700;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-raised);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.benefits-section {
  background: var(--surface-strong);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .78fr);
  gap: clamp(60px, 10vw, 160px);
}

.benefits-statement {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.benefits-statement p {
  max-width: 55ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
}

.benefits-statement .text-link {
  margin-top: 34px;
}

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

.benefits-list article {
  padding-block: clamp(30px, 4vw, 52px);
  border-bottom: 1px solid var(--line-strong);
}

.benefits-list h3 {
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 630;
  letter-spacing: -.03em;
}

.benefits-list p {
  max-width: 47ch;
  margin-top: 12px;
  color: var(--muted);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: end;
  gap: 56px;
  margin-bottom: clamp(50px, 7vw, 88px);
}

.process-heading h2 {
  max-width: 18ch;
}

.process-heading > p {
  margin-top: 0;
  padding-bottom: 7px;
}

.process-media {
  overflow: hidden;
  max-height: 660px;
  border-radius: var(--radius);
}

.process-media img {
  aspect-ratio: 3 / 1.35;
  object-fit: cover;
  object-position: center 45%;
}

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

.process-steps li {
  min-height: 220px;
  padding: 34px clamp(18px, 2.5vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-increment: process;
}

.process-steps li:first-child {
  border-left: 1px solid var(--line);
}

.process-steps h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 650;
  letter-spacing: -.03em;
}

.process-steps p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.about-section {
  padding-top: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: .54fr 1.2fr .58fr;
  gap: clamp(36px, 6vw, 96px);
  padding-block: clamp(72px, 8vw, 112px);
  border-block: 1px solid var(--line);
}

.about-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.about-copy h2 {
  max-width: 15ch;
  font-size: clamp(36px, 4.4vw, 62px);
}

.about-copy p {
  max-width: 62ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.about-note {
  align-self: end;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}

.about-note span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-note p {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 650;
}

.contacts-section {
  padding-top: 0;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: stretch;
}

.contact-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 570px;
  padding: clamp(36px, 6vw, 88px);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
}

.contact-primary .eyebrow {
  color: var(--accent-ink);
  opacity: .72;
}

.contact-primary h2 {
  max-width: 11ch;
}

.contact-primary > p:not(.eyebrow) {
  max-width: 46ch;
  margin-top: 24px;
  opacity: .78;
}

.contact-phone {
  margin-top: auto;
  padding-top: 48px;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.contact-primary .button {
  margin-top: 24px;
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 58px;
}

.contact-details h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.03em;
}

.locations address {
  display: grid;
  font-style: normal;
}

.locations address a {
  display: grid;
  grid-template-columns: minmax(130px, .78fr) minmax(180px, 1fr);
  gap: 24px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding-left 220ms var(--ease);
}

.locations address a:first-child {
  border-top: 1px solid var(--line);
}

.locations address a:hover {
  padding-left: 8px;
  color: var(--accent);
}

.locations strong {
  font-size: 12px;
  font-weight: 750;
}

.locations span {
  color: var(--muted);
  font-size: 13px;
}

.schedule dl {
  display: grid;
  gap: 12px;
}

.schedule dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.schedule dt,
.schedule dd {
  font-size: 13px;
}

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

.schedule dd {
  font-weight: 750;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr .8fr auto;
  align-items: end;
  gap: 36px;
}

.footer-grid > p,
.footer-grid > a:not(.brand) {
  color: var(--muted);
  font-size: 12px;
}

.footer-grid > a:not(.brand):hover {
  color: var(--accent);
}

.footer-legal {
  text-align: right;
}

.mobile-call {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal-delay="1"] {
  transition-delay: 90ms;
}

[data-reveal-delay="2"] {
  transition-delay: 180ms;
}

[data-reveal-delay="3"] {
  transition-delay: 270ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    height: calc(100dvh - var(--header-height));
    padding: 28px var(--gutter) 48px;
    overflow-y: auto;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 260ms var(--ease);
  }

  .site-nav a {
    padding-block: 19px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 560;
    letter-spacing: -.03em;
  }

  .site-nav a::after {
    display: none;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-actions {
    justify-self: end;
  }

  .about-layout {
    grid-template-columns: .45fr 1.35fr;
  }

  .about-note {
    grid-column: 2;
    max-width: 420px;
  }

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

  .footer-legal {
    text-align: left;
  }
}

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

  .hero {
    min-height: 0;
    padding-top: 58px;
  }

  .hero-grid,
  .product-window,
  .product-door,
  .benefits-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(46px, 9vw, 70px);
  }

  .hero-media {
    margin-top: 18px;
  }

  .product-door {
    gap: 56px;
  }

  .product-door .product-copy {
    max-width: 660px;
  }

  .product-media-portrait {
    justify-self: stretch;
    width: 100%;
    max-height: 680px;
  }

  .product-media-portrait img {
    height: 100%;
    object-position: center 55%;
  }

  .benefits-statement {
    position: static;
  }

  .benefits-list {
    margin-top: 12px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-heading > p {
    margin-top: 0;
  }

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

  .process-steps li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .contacts-layout {
    gap: 68px;
  }

  .contact-primary {
    min-height: 500px;
  }

  .contact-details {
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --radius: 14px;
  }

  body {
    padding-bottom: 72px;
  }

  .brand-detail {
    display: none;
  }

  .menu-toggle {
    order: 3;
    justify-self: end;
  }

  .menu-toggle-label {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button {
    display: none;
  }

  .language-switcher {
    font-size: 10px;
  }

  .hero {
    padding-block: 42px 58px;
  }

  .hero-grid {
    gap: 46px;
  }

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

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media::before {
    top: -12px;
    right: -12px;
  }

  .hero-media figcaption {
    justify-content: flex-start;
  }

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

  .trust-item,
  .trust-item:first-child {
    justify-content: space-between;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .trust-item strong {
    font-size: 20px;
  }

  .section {
    padding-block: 88px;
  }

  .section-intro {
    margin-bottom: 52px;
  }

  .section-intro h2,
  .process-heading h2,
  .benefits-statement h2,
  .about-copy h2,
  .contact-primary h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .section-intro p,
  .process-heading > p {
    margin-top: 18px;
    font-size: 16px;
  }

  .product-feature {
    gap: 38px;
  }

  .product-copy h3 {
    font-size: 34px;
  }

  .product-copy > p:not(.product-index) {
    font-size: 16px;
  }

  .product-door {
    margin-top: 98px;
    padding: 20px 20px 28px;
  }

  .product-door .product-copy {
    padding: 18px 4px 0;
  }

  .product-media-portrait {
    max-height: 520px;
  }

  .benefits-layout {
    gap: 54px;
  }

  .benefits-statement p {
    font-size: 16px;
  }

  .process-media img {
    aspect-ratio: 4 / 3;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li,
  .process-steps li:nth-child(3) {
    min-height: 0;
    padding: 26px 20px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-note {
    grid-column: auto;
  }

  .contact-primary {
    min-height: 480px;
    padding: 30px 24px;
  }

  .contact-phone {
    font-size: 28px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .locations address a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 10px 18px;
    border: 1px solid rgb(238 247 244 / 22%);
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 14px 38px rgb(8 42 35 / 32%);
  }

  .mobile-call span {
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-call strong {
    font-size: 13px;
    font-weight: 750;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .hero-media img,
  .product-media img,
  .process-media img {
    filter: brightness(.84) saturate(.84);
  }

  .button-inverse {
    color: #173029;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
