@font-face {
  font-family: "Gilroy";
  src:
    url("assets/fonts/gilroy-medium.woff2") format("woff2"),
    url("assets/fonts/gilroy-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("assets/fonts/gilroy-bold.woff2") format("woff2"),
    url("assets/fonts/gilroy-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("assets/fonts/gilroy-semibold.woff2") format("woff2"),
    url("assets/fonts/gilroy-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("assets/fonts/gilroy-extrabold.woff2") format("woff2"),
    url("assets/fonts/gilroy-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-tech: #e0e0e0;
  --text: #2b2727;
  --text-soft: #6a7282;
  --dark: #2c2626;
  --accent: #e67e22;
  --white: #ffffff;
  --border: #eceff3;
  --container: 1200px;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #f1f3f6;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: 80px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: -12px;
}

.brand-logo {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  font-family: "Spectral SC", serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #000;
}

.brand-copy small {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.site-header a.brand:link,
.site-header a.brand:visited,
.site-header a.brand:hover,
.site-header a.brand:active {
  color: #000;
  text-decoration: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s ease;
}

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

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header-phone {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  color: #1a1a1a;
}

.header-phone-wrap span {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px 30px;
  min-height: 64px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
}

.button-small {
  min-height: 44px;
  padding: 12px 19px;
  border-radius: 12px;
  font-size: 16px;
}

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

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

.button-accent:hover,
.button-accent:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  background: #de6800;
}

.button-accent:active,
.button-dark:active {
  background: #f47301;
}

.button-outline {
  min-height: 71px;
  padding: 18px 34px;
  border: 3px solid var(--text);
  background: transparent;
  color: var(--text);
}

.button-icon .button-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transition: transform 0.22s ease;
}

.button-icon .button-arrow::before,
.button-icon .button-arrow::after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
}

.button-icon .button-arrow::before {
  left: 2px;
  top: 11px;
  width: 17px;
  height: 2px;
}

.button-icon .button-arrow::after {
  right: 3px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.button-icon:hover .button-arrow,
.button-icon:focus-visible .button-arrow {
  transform: translateX(3px);
}

.button-icon:active .button-arrow {
  transform: translateX(1px);
}

body.site-popup-open {
  overflow: hidden;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.site-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.site-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.site-popup__dialog {
  position: relative;
  width: min(100%, 600px);
  max-height: min(92vh, 758px);
  padding: 44px 44px 32px;
  overflow: auto;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.24s ease;
}

.site-popup.is-open .site-popup__dialog {
  transform: translateY(0) scale(1);
}

.site-popup__close {
  position: absolute;
  top: 33px;
  right: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-popup__close:hover,
.site-popup__close:focus-visible {
  background: #f8f9fb;
  border-color: #d7dde6;
  outline: none;
}

.site-popup__close:active {
  transform: scale(0.98);
}

.site-popup__close svg {
  width: 24px;
  height: 24px;
}

.site-popup__copy {
  max-width: 418px;
  margin-bottom: 26px;
}

.site-popup__title {
  margin: 0 0 5px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.64px;
  color: #1a1a1a;
}

.site-popup__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #6a7282;
}

.site-popup__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 470px;
  text-align: center;
}

.site-popup.is-success .site-popup__copy,
.site-popup.is-success .site-popup-form {
  display: none;
}

.site-popup.is-success .site-popup__success {
  display: flex;
}

.site-popup__success-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(0, 239, 52, 0.1);
}

.site-popup__success-icon::before {
  content: "";
  position: absolute;
  inset: 24px;
  background: url("assets/success.svg") center / contain no-repeat;
}

.site-popup__success-title {
  margin: 0;
  max-width: 309px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1a1a1a;
}

.site-popup__success-text {
  margin: 0;
  max-width: 309px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #4a5568;
}

.site-popup-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-popup-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-popup-form__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.site-popup-form__label {
  margin: 0;
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  color: #6a7282;
}

.site-popup-form__error {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.387px;
  color: #ff0000;
  opacity: 0;
  display: none;
  transition: opacity 0.2s ease;
}

.site-popup-form__error.is-visible {
  display: block;
  opacity: 1;
}

.site-popup-form__control {
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  border: 2px solid #f5f5f5;
  border-radius: 16px;
  background: #f5f5f5;
  font-family: inherit;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: -0.3125px;
  color: #6a7282;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-popup-form__control::placeholder {
  color: #6a7282;
  opacity: 1;
}

.site-popup-form__control:hover,
.site-popup-form__control:focus {
  border-color: #2b2727;
  background: #f2f0f0;
  color: #2b2727;
}

.site-popup-form__control:focus {
  box-shadow: 0 0 0 4px rgba(43, 39, 39, 0.08);
}

.site-popup-form__control--message {
  min-height: 58px;
  resize: vertical;
  font-weight: 500;
}

.site-popup-form__control--error {
  border-color: #f5f5f5;
  border-bottom-color: #ff0000;
  border-bottom-width: 3px;
  box-shadow: none;
}

.site-popup-form__control--error:hover,
.site-popup-form__control--error:focus {
  border-color: #f5f5f5;
  border-bottom-color: #ff0000;
  background: #f5f5f5;
  color: #6a7282;
}

.site-popup-form__control--filled {
  color: #2b2727;
}

.site-popup-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8.668px;
  width: 100%;
  min-height: 64px;
  margin-top: 8px;
  padding: 18px 24px;
  border: none;
  border-radius: 22px;
  background: #2c2626;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.3125px;
  cursor: pointer;
  transition: background-color 0.22s ease;
}

.site-popup-form__submit:hover,
.site-popup-form__submit:focus-visible {
  background: #de6800;
  outline: none;
}

.site-popup-form__submit:active {
  background: #f47301;
}

.site-popup-form__submit-icon {
  width: 22.29px;
  height: 22.29px;
  flex: 0 0 22.29px;
  background: url("assets/arrow-req.svg") center / contain no-repeat;
  transition: transform 0.22s ease;
}

.site-popup-form__submit-icon path {
  display: none;
}

.site-popup-form__submit:hover .site-popup-form__submit-icon,
.site-popup-form__submit:focus-visible .site-popup-form__submit-icon {
  transform: translateX(3px);
}

.site-popup-form__submit:active .site-popup-form__submit-icon {
  transform: translateX(1px);
}

.site-popup-form__policy {
  max-width: 360px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  color: #6a7282;
}

.site-popup-form__status {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  color: #6a7282;
}

@media (min-width: 768px) {
  .site-popup.is-success .site-popup__dialog {
    position: relative;
    width: min(100%, 480px);
    max-width: 480px;
    padding: 48px 40px 40px;
    overflow: hidden;
    border: 1px solid rgba(230, 126, 34, 0.12);
    box-shadow:
      0 4px 0 0 var(--accent),
      0 28px 56px -16px rgba(44, 38, 38, 0.18),
      0 0 0 1px rgba(0, 0, 0, 0.03);
  }

  .site-popup.is-success .site-popup__close {
    top: 22px;
    right: 22px;
    border-color: rgba(230, 126, 34, 0.2);
  }

  .site-popup.is-success .site-popup__close:hover,
  .site-popup.is-success .site-popup__close:focus-visible {
    border-color: var(--accent);
    background: rgba(230, 126, 34, 0.06);
  }

  .site-popup.is-success .site-popup__success {
    min-height: 0;
    padding: 12px 4px 0;
    gap: 0;
  }

  .site-popup.is-success .site-popup__success::before {
    content: "Заявка принята";
    order: 2;
    margin: 14px 0 6px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .site-popup.is-success .site-popup__success-icon {
    order: 1;
    width: 108px;
    height: 108px;
    margin: 0;
    background:
      radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
      radial-gradient(circle at 50% 100%, rgba(230, 126, 34, 0.14) 0%, transparent 45%),
      linear-gradient(145deg, rgba(230, 126, 34, 0.11) 0%, rgba(0, 239, 52, 0.09) 100%);
    box-shadow:
      0 12px 40px rgba(230, 126, 34, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .site-popup.is-success .site-popup__success-icon::before {
    inset: 22px;
  }

  .site-popup.is-success .site-popup__success-title {
    order: 3;
    max-width: 100%;
    margin: 10px 0 0;
    font-size: 26px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -0.48px;
    color: var(--text);
  }

  .site-popup.is-success .site-popup__success-text {
    order: 4;
    max-width: 100%;
    margin-top: 16px;
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--text-soft);
    text-align: center;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fafafa 0%, var(--bg-soft) 100%);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 767px) {
  .site-popup {
    padding: 18px 12px;
  }

  .site-popup__dialog {
    padding: 28px 20px 24px;
    border-radius: 28px;
  }

  .site-popup.is-success .site-popup__backdrop {
    backdrop-filter: blur(5.7px);
  }

  .site-popup.is-success .site-popup__dialog {
    width: 357px;
    height: 336px;
    max-width: calc(100vw - 24px);
    max-height: none;
    padding: 64px 24px 24px;
    overflow: hidden;
    border-radius: 40px;
  }

  .site-popup.is-success .site-popup__close {
    top: 20.5px;
    right: 20.5px;
    width: 35px;
    height: 35px;
    border-width: 0.729px;
  }

  .site-popup.is-success .site-popup__close svg {
    width: 17.5px;
    height: 17.5px;
  }

  .site-popup__close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .site-popup__copy {
    max-width: none;
    padding-right: 52px;
  }

  .site-popup__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .site-popup__success {
    gap: 3px;
    min-height: 248px;
    justify-content: flex-start;
  }

  .site-popup__success-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 10px;
  }

  .site-popup__success-title {
    max-width: 309px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.4px;
  }

  .site-popup__success-text {
    max-width: 309px;
    font-size: 16px;
    line-height: 22px;
    color: #4a5568;
  }

  .site-popup__subtitle,
  .site-popup-form__control {
    font-size: 16px;
  }

  .site-popup-form__label {
    font-size: 16px;
    line-height: 18.575px;
    letter-spacing: -0.16px;
  }

  .site-popup-form__control {
    min-height: 70px;
    padding: 14.86px 18px;
    font-size: 18px;
    line-height: normal;
    letter-spacing: -0.387px;
    border-width: 2px;
    border-radius: 16px;
  }

  .site-popup-form__control--error {
    border-bottom-width: 2.477px;
  }

  .site-popup-form__error {
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.387px;
  }

  .site-popup-form__submit {
    min-height: 64px;
    padding: 18px 24px;
    border-radius: 16px;
    line-height: 29.72px;
    letter-spacing: -0.387px;
  }

  .site-popup-form__policy {
    font-size: 12px;
    line-height: 16px;
  }
}

.section {
  padding: 100px 0;
}

.section.section-tech {
  padding: 58px 0 72px;
  background: #e0e0e0;
}

.section-projects {
  background: var(--bg-soft);
  padding-top: 58px;
}

.section-heading {
  margin-bottom: 39px;
}

.section-heading-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.section-tag {
  margin: 0 0 13px;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading h2,
.about-copy h2,
.process-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 45px);
  line-height: 1.17;
  letter-spacing: -0.02em;
}

.section-note,
.about-copy p,
.process-copy p,
.contact-copy p {
  margin: 14px 0 0;
  max-width: 550px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--text-soft);
}

#instagram .section-heading-inline > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 527px;
}

#instagram .section-heading-inline h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.173;
  letter-spacing: -0.9px;
  color: #2b2727;
}

#instagram .section-note {
  margin: 5px 0 0;
  max-width: 412px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: var(--text-soft);
}

#instagram .section-note strong {
  color: #2b2727;
  font-weight: 700;
}

#instagram .instagram-handle-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 126, 34, 0.45);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

#instagram .instagram-handle-link:hover,
#instagram .instagram-handle-link:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}

#instagram .section-heading-inline {
  position: relative;
  z-index: 2;
}

#instagram .section-heading-inline .button-outline,
#instagram .mobile-section-button {
  position: relative;
  z-index: 2;
}

#instagram {
  background: var(--white);
}

#shop {
  background: var(--white);
}

#shop .section-heading {
  margin-bottom: 44px;
}

#shop .section-tag {
  text-transform: uppercase;
}

#shop .section-heading h2 {
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.173;
  letter-spacing: -0.9px;
  color: #2b2727;
}

@media (min-width: 1261px) {
  #shop .products-grid {
    grid-template-columns: repeat(4, 272px);
    gap: 37px;
    justify-content: space-between;
    width: 100%;
    max-width: 1199px;
  }

  #shop .product-card {
    width: 272px;
    max-width: 272px;
    justify-self: start;
  }
}

.hero {
  background: var(--bg-soft);
  padding: 50px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 583px 537px;
  grid-template-areas:
    "copy media"
    "features media";
  align-items: start;
  column-gap: 80px;
  row-gap: 40px;
  min-height: 511px;
  padding-top: 0;
}

.hero-copy {
  grid-area: copy;
  margin-top: 33px;
}

.hero-media {
  grid-area: media;
}

.hero-features {
  grid-area: features;
}

.hero-copy h1 {
  margin: 0;
  width: 556px;
  max-width: 100%;
  font-size: 50px;
  line-height: 0.96;
  letter-spacing: -1px;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-description {
  max-width: 504px;
  margin: 17px 0 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.88px;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 33px;
  margin-bottom: 0;
}

.hero-actions .button {
  min-width: 287px;
  min-height: 71px;
  padding: 0 34px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.16px;
}

.hero-features {
  display: flex;
  gap: 29px;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-features li {
  position: relative;
  width: 175px;
  padding-left: 25px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.54px;
}

.hero-features li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--accent);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #d6dbe2, #b7c0ca);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.24s ease;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.image-frame-hero {
  width: 537px;
  height: 460px;
  border-radius: 38px 0 38px 0;
}

.image-frame.is-loading,
.image-frame.is-missing,
.catalog-card.is-loading,
.catalog-card.is-missing {
  min-height: 220px;
  background: #f5f5f5;
}

.image-frame.is-loading::before,
.catalog-card.is-loading::before,
.image-frame.is-missing::before,
.catalog-card.is-missing::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.image-frame.is-loading::before,
.catalog-card.is-loading::before {
  background-image: url("assets/images/image-loading.svg");
}

.image-frame.is-missing::before,
.catalog-card.is-missing::before {
  background-image: url("assets/images/image-absent.svg");
}

.image-frame.is-loading img,
.catalog-card.is-loading img,
.image-frame.is-missing img,
.catalog-card.is-missing img {
  opacity: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 578px 276px 276px;
  grid-template-rows: repeat(3, 276px);
  column-gap: 35px;
  row-gap: 26px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-grid__row3 {
  grid-column: 1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 276px 276px;
  column-gap: 26px;
  align-items: stretch;
  min-height: 276px;
  width: 578px;
  max-width: 100%;
}

.catalog-grid__row3 .catalog-card-link {
  width: 276px;
  max-width: 100%;
  min-height: 276px;
}

a.catalog-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.catalog-grid a.catalog-card.catalog-card-link {
  color: #fff;
}

a.catalog-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, #c4cbd3, #9da8b6);
}

.catalog-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.catalog-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.86) 46.8%,
    rgba(0, 0, 0, 0) 93.7%
  );
  opacity: 0.8;
}

.catalog-card-large {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.catalog-card-top-center { grid-column: 2; grid-row: 1; }
.catalog-card-top-right { grid-column: 3; grid-row: 1; }
.catalog-card-middle-center { grid-column: 2; grid-row: 2; }
.catalog-card-middle-right { grid-column: 3; grid-row: 2; }
.catalog-card-bottom-left { grid-column: 1; grid-row: 3; }
.catalog-card-bottom-center { grid-column: 2; grid-row: 3; }

.catalog-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catalog-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.07px;
  color: #fff;
}

.catalog-card-large h3 {
  max-width: 508px;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.37px;
}

.catalog-card-desc {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    margin 0.35s ease;
}

.catalog-card:hover .catalog-card-desc,
.catalog-card:focus-within .catalog-card-desc {
  max-height: 6rem;
  opacity: 1;
  margin: 0 0 12px;
}

.catalog-card-large:hover .catalog-card-desc,
.catalog-card-large:focus-within .catalog-card-desc {
  max-height: 7.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .catalog-card-desc {
    transition: none;
  }

  .catalog-card:hover .catalog-card-desc,
  .catalog-card:focus-within .catalog-card-desc {
    max-height: 6rem;
  }
}

.catalog-card .link-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 16px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.catalog-card .link-line::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.section-tech .section-heading {
  margin-bottom: 39px;
}

.section-tech .section-heading .section-tag {
  margin-bottom: 13px;
}

.section-tech .section-heading h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 45px;
  line-height: 52.8px;
  font-weight: 800;
  letter-spacing: -0.9px;
}

.section-tech .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 373px);
  gap: 40px;
  justify-content: flex-start;
  align-items: stretch;
}

.section-tech .feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 373px;
  min-height: 240px;
  box-sizing: border-box;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 31px 31px 56px 36px;
}

.section-tech .feature-card.dark {
  background: #2b2727;
  border: none;
  box-shadow: none;
  padding: 31px 22px 56px 36px;
}

.section-tech .feature-card.accent {
  background: #e67e22;
  border: none;
  box-shadow: none;
  padding: 31px 31px 56px 36px;
}

.section-tech .feature-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  flex-shrink: 0;
}

.section-tech .feature-card h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 22px;
  line-height: 37.5px;
  font-weight: 800;
  letter-spacing: -0.22px;
  color: #1a1a1a;
}

.section-tech .feature-card.dark h3,
.section-tech .feature-card.accent h3 {
  color: #ffffff;
  letter-spacing: 0.3955px;
}

.section-tech .feature-card:not(.dark):not(.accent) h3 {
  flex: 1 1 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.section-tech .feature-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #6a7282;
  background: transparent;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6a7282;
}

.section-tech .feature-card.dark .feature-card-badge,
.section-tech .feature-card.accent .feature-card-badge {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.section-tech .feature-card p {
  margin: 0;
  max-width: 300px;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.4395px;
  color: #6a7282;
}

.section-tech .feature-card.dark p,
.section-tech .feature-card.accent p {
  color: rgba(255, 255, 255, 0.8);
}

.about-grid {
  display: grid;
  grid-template-columns: 552px 552px;
  column-gap: 80px;
  justify-content: flex-start;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.section-about {
  overflow: visible;
}

.about-visual {
  position: relative;
  width: 552px;
  min-height: 454px;
  overflow: visible;
}

.about-visual__square {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: #f9fafb;
  z-index: 0;
  pointer-events: none;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 552px;
  height: 414px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-photo.image-frame {
  background: #e8eaef;
}

.about-badge {
  position: absolute;
  left: 292px;
  top: 302px;
  z-index: 2;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  box-sizing: border-box;
  width: 300px;
  height: 152px;
  padding: 40px 40px 0;
  border-radius: 32px;
  background: #2b2727;
  color: var(--white);
}

.about-badge strong {
  display: block;
  font-size: 51px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: 0.35px;
}

.about-badge span {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.section-about .about-copy {
  padding-top: 0;
  max-width: 552px;
}

.section-about .about-copy .section-tag {
  margin: 0 0 15px;
  color: var(--accent);
}

.section-about .about-copy h2 {
  margin: 0 0 18px;
  max-width: 536px;
  font-size: 48px;
  line-height: 52.8px;
  font-weight: 700;
  letter-spacing: -0.96px;
  color: #1a1a1a;
}

.section-about .about-copy .about-copy__lead {
  margin: 0;
  max-width: 550px;
  font-size: 18px;
  line-height: 29.25px;
  font-weight: 500;
  letter-spacing: -0.4395px;
  color: #4a5565;
}

.projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 788fr) minmax(0, 383fr);
  gap: 29px;
  align-items: start;
}

.section-projects .section-heading h2 {
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.173;
  letter-spacing: -0.9px;
  color: #2b2727;
}

.section-projects .section-heading-inline .button-outline {
  width: 276px;
  min-height: 71px;
  flex-shrink: 0;
  padding: 18px 24px;
}

.project-card {
  position: relative;
  min-height: 388px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.project-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-large {
  min-height: 800px;
}

.project-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 103px;
  opacity: 0.8;
  pointer-events: none;
  background: linear-gradient(
    0.73deg,
    rgba(0, 0, 0, 0.9) 18.07%,
    rgba(26, 26, 26, 0.2) 89.05%,
    rgba(0, 0, 0, 0) 102.14%
  );
}

.project-card-large::after {
  height: 197px;
}

.project-overlay {
  position: absolute;
  z-index: 1;
  color: var(--white);
}

.project-card-large .project-overlay {
  left: 40px;
  right: 40px;
  bottom: 40px;
}

.project-card:not(.project-card-large) .project-overlay {
  left: 32px;
  right: 32px;
  bottom: 32px;
}

.project-overlay h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.3955px;
}

.project-card:not(.project-card-large) .project-overlay h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.project-overlay p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.3125px;
  color: rgba(255, 255, 255, 0.82);
}

.projects-stack {
  display: grid;
  gap: 24px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 282px);
  justify-content: space-between;
  gap: 24px;
}

.instagram-card {
  width: 282px;
  aspect-ratio: 282 / 278;
}

.instagram-card .image-frame,
.instagram-card img {
  height: 100%;
}

.section-process {
  padding: 48px 0;
  background: var(--bg-soft);
}

.process-layout {
  display: flex;
  align-items: flex-start;
  gap: 51px;
}

.process-copy {
  flex: 0 0 auto;
  width: min(404px, 100%);
  max-width: 404px;
}

.section-process .process-copy .section-tag {
  margin: 0 0 13px;
  color: var(--accent);
}

.section-process .process-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.173;
  letter-spacing: -0.02em;
  color: #2b2727;
}

.section-process .process-copy .process-intro {
  margin: 0;
  max-width: 367px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3125px;
  color: var(--text-soft);
}

.process-steps-panel {
  flex: 1 1 0;
  min-width: 0;
  border-left: 1px solid rgba(106, 114, 130, 0.24);
  padding: 0 0 0 61px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.process-step__number {
  flex: 0 0 70px;
  width: 70px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0.35px;
  color: rgba(106, 114, 130, 0.28);
}

.process-step--current .process-step__number {
  color: var(--accent);
  opacity: 1;
}

.process-step__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.process-step__title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.process-step__text-block {
  display: flex;
  flex-direction: column;
}

.process-step__text {
  margin: 0;
  font-size: 16px;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
  font-weight: 500;
  color: var(--text-soft);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 37px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 272px;
  min-height: 380px;
  height: 100%;
  justify-self: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg-soft);
  overflow: hidden;
  box-shadow: none;
}

.products-grid .product-card .product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  cursor: pointer;
}

.products-grid .product-card .product-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-media {
  position: relative;
  width: 100%;
  height: 209px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-media.image-frame {
  border-radius: 32px 32px 0 0;
  background: var(--bg-soft);
}

.product-media.image-frame::after {
  display: none;
}

.product-media img {
  width: 100%;
  height: 209px;
  object-fit: cover;
}

.product-stock-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 9px 16px;
  border-radius: 12px;
  background: #f03;
  color: #fff;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 0, 51, 0.22);
  pointer-events: none;
}

.product-stock-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.product-stock-badge--compact {
  max-width: calc(100% - 28px);
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 170px;
  padding: 18px 24px 32px;
  box-sizing: border-box;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.4395px;
  color: #2b2727;
  text-transform: capitalize;
}

.product-meta {
  margin: 0;
  max-width: 222px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: var(--text-soft);
}

div.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-size: unset;
  line-height: unset;
  font-weight: unset;
  letter-spacing: unset;
  color: unset;
}

.product-meta p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: var(--text-soft);
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  min-height: 40px;
}

.product-price {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.4492px;
  color: #1a1a1a;
}

.product-price__sq {
  font-size: 12.9px;
  font-weight: 700;
  line-height: 0;
  vertical-align: 0.35em;
}

.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #2b2727;
  color: var(--white);
}

.product-action__icon {
  display: block;
  width: 18px;
  max-width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 487px) minmax(0, 487px);
  justify-content: space-between;
  align-items: start;
  gap: 64px;
  min-height: 658px;
  padding: 81px;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: var(--white);
}

.contact-banner > .contact-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 113px;
  box-sizing: border-box;
}

.contact-copy {
  padding-top: 0;
}

.contact-copy-lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 487px;
}

.contact-banner .contact-copy-lead h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.173;
  letter-spacing: -0.9px;
  color: var(--white);
  max-width: 520px;
}

.contact-banner .contact-copy-lead > p:not(.section-tag) {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -0.4492px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 485px;
}

.contact-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-phone-card__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}

.contact-phone-card small {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.contact-phone-card a {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.07px;
  color: #fff;
}

.contact-form {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--white);
  color: var(--text);
}

.contact-form label {
  display: block;
}

.contact-form label + label {
  margin-top: 20px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #f5f5f5;
  border-radius: 16px;
  background: #f5f5f5;
  padding: 18px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(230, 126, 34, 0.75);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.12);
}

.contact-form textarea {
  min-height: 58px;
  resize: vertical;
}

.button-submit {
  width: 100%;
  margin-top: 21px;
}

.button-submit .button-arrow {
  margin-left: auto;
}

.form-policy {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text-soft);
}

.form-status {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-soft);
}

.form-status {
  min-height: 20px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0 41px;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 64px;
  row-gap: 64px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 13px;
  max-width: 284px;
  min-width: 0;
}

.footer-brand-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.site-footer .footer-brand .footer-brand-top .brand {
  display: flex;
  align-items: center;
  min-height: 45px;
  margin: 0;
  padding: 0;
}

.site-footer .footer-brand .brand {
  margin-left: 0;
  gap: 7px;
}

.site-footer .footer-brand a.brand:link,
.site-footer .footer-brand a.brand:visited,
.site-footer .footer-brand a.brand:hover,
.site-footer .footer-brand a.brand:active {
  color: #000;
  text-decoration: none;
}

.site-footer .footer-brand .brand-logo {
  flex-shrink: 0;
  align-self: center;
  border-radius: 50%;
  box-shadow: 0 0 0 0.75px rgba(255, 255, 255, 0.45);
}

.site-footer .footer-brand .brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  gap: 0;
  height: 39px;
  min-width: 0;
  box-sizing: border-box;
}

.site-footer .footer-brand .brand-copy strong {
  font-family: "Spectral SC", serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.85px;
  color: #000;
  margin: 0;
  padding: 0;
}

.site-footer .footer-brand .brand-copy small {
  display: block;
  margin: 0;
  margin-top: 2px;
  padding: 0;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.11px;
  color: #000;
  white-space: nowrap;
}

.footer-brand-text {
  margin: 0;
  padding: 0;
  max-width: 284px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  color: #6a7282;
}

.footer-brand > p:not(.footer-brand-text) {
  margin: 0;
  max-width: 284px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  color: var(--text-soft);
}

.footer-heading {
  margin: 0;
  padding-top: 1px;
  min-height: 16px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.footer-column:not(.footer-column-contacts):has(> h3) {
  gap: 0;
}

.footer-column > h3 {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-column:not(.footer-column-contacts):has(> h3) > a {
  margin-top: 9px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: #2b2727;
  text-decoration: none;
  width: fit-content;
}

.footer-column:not(.footer-column-contacts):has(> h3) > a:hover,
.footer-column:not(.footer-column-contacts):has(> h3) > a:focus-visible {
  color: var(--accent);
}

.footer-column:not(.footer-column-contacts):has(> h3) > h3 + a {
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: #2b2727;
  text-decoration: none;
  width: fit-content;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-column-contacts {
  gap: 18px;
}

.footer-column-contacts > .footer-heading,
.footer-column-contacts > h3 {
  margin-bottom: 0;
}

.footer-contacts-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text);
  text-decoration: none;
}

a.footer-contact:hover .footer-contact-primary,
a.footer-contact:focus-visible .footer-contact-primary {
  color: var(--accent);
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
}

.footer-contact-primary {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: #2b2727;
}

.footer-contact-primary--wide {
  max-width: 212px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact-meta {
  font-size: 12px;
  line-height: 14.286px;
  font-weight: 600;
  letter-spacing: 0.1172px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--accent);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact:not(:has(.footer-contact-body)) .footer-contact-icon {
  margin-top: 2px;
}

.footer-contact:not(:has(.footer-contact-body)) > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-contact:not(:has(.footer-contact-body)) strong {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: #2b2727;
}

.footer-contact:not(:has(.footer-contact-body)) small {
  font-size: 12px;
  line-height: 14.286px;
  font-weight: 600;
  letter-spacing: 0.1172px;
  text-transform: uppercase;
  color: var(--text-soft);
}

a.footer-contact:not(:has(.footer-contact-body)):hover strong,
a.footer-contact:not(:has(.footer-contact-body)):focus-visible strong {
  color: var(--accent);
}

.site-footer .socials-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9.684px;
  margin: 0;
}

.socials-contacts .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38.737px;
  height: 38.737px;
  border-radius: 50%;
  font-size: 0;
  text-decoration: none;
  background: transparent !important;
  overflow: hidden;
}

.socials-contacts .social img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

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

  .header-contacts {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-bottom: 16px;
  }

  .hero-grid,
  .about-grid,
  .projects-grid,
  .contact-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .about-grid,
  .projects-grid,
  .contact-banner,
  .blog-grid {
    gap: 40px;
  }

  .contact-banner {
    min-height: 0;
  }

  .process-layout {
    flex-direction: column;
    gap: 40px;
  }

  .process-steps-panel {
    border-left: none;
    border-top: 1px solid rgba(106, 114, 130, 0.24);
    padding: 40px 0 0;
  }

  .image-frame-hero,
  .about-visual,
  .about-photo,
  .instagram-card,
  .product-media {
    width: 100%;
    max-width: 552px;
  }

  .about-visual {
    min-height: 0;
    margin: 0 auto;
  }

  .about-photo {
    height: auto;
    min-height: 260px;
    aspect-ratio: 552 / 414;
  }

  .about-badge {
    left: auto;
    top: auto;
    right: max(16px, 4%);
    bottom: max(-20px, -4vw);
    width: min(300px, 92%);
  }

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

  .catalog-card,
  .catalog-card-large,
  .catalog-card-top-center,
  .catalog-card-top-right,
  .catalog-card-middle-center,
  .catalog-card-middle-right,
  .catalog-card-bottom-left,
  .catalog-card-bottom-center,
  .catalog-card--row3-tile {
    grid-column: auto;
    grid-row: auto;
    min-height: 276px;
  }

  .catalog-card-large {
    min-height: 578px;
  }

  .catalog-grid__row3 {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid__row3 .catalog-card-link {
    width: 100%;
  }

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

  #shop .products-grid {
    justify-content: stretch;
    max-width: none;
  }

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

  .section-tech .feature-card {
    width: 100%;
    max-width: 373px;
    height: auto;
    min-height: 240px;
  }

  .instagram-card,
  .product-card {
    width: 100%;
    max-width: none;
  }

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

@media (max-width: 767px) {
  .section {
    padding: 68px 0;
  }

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

  .header-phone-wrap,
  .header-contacts {
    align-items: flex-start;
  }

  .header-contacts {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 24px 0 50px;
  }

  .hero-grid {
    padding-top: 10px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions .button,
  .button-outline,
  .button-submit {
    width: 100%;
    min-width: 0;
  }

  .section-projects .section-heading-inline .button-outline {
    width: 100%;
  }

  .section-heading-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero-features,
  .features-grid,
  .instagram-grid,
  .products-grid,
  .catalog-grid,
  .projects-stack {
    grid-template-columns: 1fr;
  }

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

  .catalog-card-large {
    min-height: 320px;
  }

  .catalog-card h3,
  .catalog-card-large h3 {
    font-size: 28px;
  }

  .section-tech .section-heading h2 {
    font-size: clamp(28px, 8vw, 45px);
    line-height: 1.15;
    letter-spacing: -0.06em;
  }

  .section-tech .feature-card:not(.dark):not(.accent) h3 {
    white-space: normal;
    font-size: 22px;
    letter-spacing: -0.22px;
  }

  .section-tech .feature-card,
  .contact-banner,
  .contact-form {
    padding: 24px;
  }

  .section-tech .feature-card {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
  }

  .section-tech .feature-card-top {
    max-width: none;
  }

  .section-tech .feature-card p {
    max-width: none;
  }

  .about-badge {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 152px;
    margin-top: -48px;
    border-radius: 0 0 32px 32px;
  }

  .section-about .about-copy h2 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.1;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-banner > .contact-copy {
    padding-top: 24px;
  }

  .contact-phone-card a {
    font-size: 26px;
  }

  .process-step {
    gap: 16px;
  }

  .process-step__number {
    flex: 0 0 54px;
    width: 54px;
    font-size: 38px;
    line-height: 38px;
  }

  .footer-grid {
    gap: 32px;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
}

.mobile-menu__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 78px 18px 28px;
  background: rgba(255, 255, 255, 0.9);
}

.mobile-menu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__brand {
  margin-left: 0;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 8px;
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-menu__close img {
  width: 24px;
  height: 24px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 38px;
}

.mobile-menu__nav a,
.mobile-menu__catalog-toggle {
  padding: 0;
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: left;
  color: #2b2727;
}

.mobile-menu__group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mobile-menu__catalog-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-menu__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.mobile-menu__catalog-toggle[aria-expanded="false"] .mobile-menu__chevron {
  transform: rotate(-45deg) translateY(2px);
}

.mobile-menu__catalog-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mobile-menu__catalog-list a {
  font-weight: 600;
}

.mobile-menu__group.is-collapsed .mobile-menu__catalog-list {
  display: none;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eceff3;
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__phone {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.mobile-menu__contacts p {
  margin: 0;
  font-size: 16px;
  line-height: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6a7282;
}

.mobile-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 69px;
  margin-top: 119px;
  border-radius: 16px;
  background: #e67e22;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
}

.mobile-slider-controls,
.mobile-section-button {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1260px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 20px;
  }

  .site-nav,
  .header-contacts {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    justify-self: end;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: transparent;
    font-size: 0;
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/menu.svg") center / 24px 24px no-repeat;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .site-header {
    border-bottom: 1px solid #f3f4f6;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 0;
    align-items: center;
  }

  .brand {
    gap: 6.236px;
    margin-left: 0;
  }

  .brand-logo {
    width: 40.091px;
    height: 40.091px;
    flex-basis: 40.091px;
  }

  .brand-copy {
    gap: 0;
  }

  .brand-copy strong {
    font-size: 15.145px;
    letter-spacing: -0.05em;
  }

  .brand-copy small {
    font-size: 9.8px;
    line-height: 1.25;
  }

  .page-home {
    background: #fbfbfb;
  }

  .page-home .site-header {
    border-bottom-width: 2px;
    background: #fefefe;
  }

  .page-home .header-inner {
    min-height: 72px;
    height: auto;
    padding: 12px 0 10px;
    align-items: center;
  }

  .page-home .brand-copy {
    height: auto;
    padding-bottom: 0;
  }

  .page-home .hero {
    padding: 14px 0 16px;
    background: #f8f9fa;
  }

  .page-home .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding-top: 0;
  }

  .page-home .hero-copy {
    width: 357px;
    max-width: 100%;
  }

  .page-home .hero-copy h1 {
    margin: 0;
    width: 329px;
    max-width: 100%;
    font-size: 35px;
    line-height: 0.96;
    letter-spacing: -0.7px;
  }

  .page-home .hero-description {
    width: 324px;
    max-width: 100%;
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 20.05px;
    letter-spacing: -0.64px;
  }

  .page-home .hero-actions {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .page-home .hero-actions .button {
    width: 241px;
    min-width: 0;
    min-height: 64px;
    padding: 0 22px 0 24px;
    border-radius: 22px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.16px;
    gap: 10px;
    justify-content: center;
  }

  .page-home .hero-actions .button > span:first-child {
    white-space: nowrap;
  }

  .page-home .image-frame-hero {
    width: 100%;
    height: 306px;
    max-width: none;
    margin-top: 25px;
    border-radius: 38px 0 38px 0;
  }

  .page-home .hero-features {
    display: grid;
    grid-template-columns: 116px 99px 92px;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
  }

  .page-home .hero-features li {
    width: auto;
    padding-left: 25px;
    font-size: 14px;
    line-height: 17.54px;
    font-weight: 600;
    letter-spacing: -0.42px;
  }

  .page-home .hero-features li::before {
    top: 5px;
    width: 13px;
    height: 13px;
  }

  .page-home .hero-features li:nth-child(2)::before,
  .page-home .hero-features li:nth-child(3)::before {
    top: 6px;
    width: 10.707px;
    height: 10.707px;
  }

  .page-home .hero-actions .button-arrow {
    transform: none;
  }

  .page-home .section-tag {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1;
  }

  .page-home .section-heading,
  .page-home .section-tech .section-heading,
  .page-home #shop .section-heading {
    margin-bottom: 25px;
  }

  .page-home .section-heading h2,
  .page-home .section-tech .section-heading h2,
  .page-home .section-about .about-copy h2,
  .page-home .section-projects .section-heading h2,
  .page-home #instagram .section-heading-inline h2,
  .page-home .section-process .process-copy h2,
  .page-home .contact-banner .contact-copy-lead h2,
  .page-home #shop .section-heading h2 {
    font-size: 25px;
    line-height: 34px;
    letter-spacing: -0.5px;
  }

  .page-home #catalog {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-home .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 174px));
    grid-template-rows: none;
    column-gap: 9px;
    row-gap: 9px;
    width: 100%;
    max-width: 357px;
    margin: 0;
  }

  .page-home .catalog-card,
  .page-home .catalog-card-large,
  .page-home .catalog-card-top-center,
  .page-home .catalog-card-top-right,
  .page-home .catalog-card-middle-center,
  .page-home .catalog-card-middle-right,
  .page-home .catalog-card-bottom-left,
  .page-home .catalog-card-bottom-center,
  .page-home .catalog-card--row3-tile {
    grid-column: auto;
    grid-row: auto;
    min-height: 276px;
    border-radius: 32px;
  }

  .page-home .catalog-card-large {
    grid-column: auto;
  }

  .page-home .catalog-grid__row3 {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 174px));
    column-gap: 9px;
  }

  .page-home .catalog-grid__row3 .catalog-card-link {
    width: 100%;
    min-height: 276px;
  }

  .page-home .catalog-card-content {
    left: 15px;
    right: 15px;
    bottom: 15px;
    gap: 8px;
  }

  .page-home .catalog-card h3,
  .page-home .catalog-card-large h3 {
    max-width: 139px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: 0.07px;
  }

  .page-home .catalog-card-desc {
    display: none;
  }

  .page-home .catalog-card .link-line {
    gap: 12px;
    font-size: 16px;
    line-height: 1;
  }

  .page-home .catalog-card .link-line::before {
    width: 32px;
    height: 2px;
  }

  .page-home .section-tech {
    padding: 30px 0;
  }

  .page-home .section-tech .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .section-tech .feature-card,
  .page-home .section-tech .feature-card.dark,
  .page-home .section-tech .feature-card.accent {
    max-width: none;
    min-height: 240px;
    padding: 31px 31px 56px 36px;
  }

  .page-home .section-tech .feature-card h3,
  .page-home .section-tech .feature-card:not(.dark):not(.accent) h3 {
    font-size: 20px;
    line-height: 37.5px;
    letter-spacing: -0.2px;
  }

  .page-home .section-about {
    padding: 50px 0;
  }

  .page-home .about-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-home .about-copy {
    order: 1;
    max-width: none;
  }

  .page-home .about-visual {
    order: 2;
    position: relative;
    width: 100%;
    min-height: 414px;
    max-width: none;
    margin: 0;
  }

  .page-home .about-visual__square {
    display: none;
  }

  .page-home .about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 414px;
    max-width: none;
    aspect-ratio: auto;
  }

  .page-home .about-badge {
    position: absolute;
    z-index: 2;
    top: 246px;
    right: auto;
    bottom: auto;
    left: 16px;
    width: 300px;
    max-width: calc(100% - 32px);
    height: 152px;
    margin-top: 0;
    padding: 40px 40px 0;
    border-radius: 32px;
  }

  .page-home .section-projects {
    padding: 30px 0 50px;
    background: #f8f9fa;
  }

  .page-home .section-projects .section-heading-inline {
    display: block;
  }

  .page-home .section-projects .section-heading-inline .button-outline {
    display: none;
  }

  .page-home .projects-grid,
  .page-home .instagram-grid,
  .page-home .products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 18px;
    margin-right: -18px;
    scrollbar-width: none;
  }

  .page-home .projects-grid::-webkit-scrollbar,
  .page-home .instagram-grid::-webkit-scrollbar,
  .page-home .products-grid::-webkit-scrollbar {
    display: none;
  }

  .page-home .projects-grid > *,
  .page-home .instagram-grid > *,
  .page-home .products-grid > * {
    scroll-snap-align: start;
  }

  .page-home .project-card,
  .page-home .projects-stack {
    flex: 0 0 357px;
  }

  .page-home .project-card,
  .page-home .project-card-large {
    min-height: 387px;
    border-radius: 32px;
  }

  .page-home .projects-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-home .projects-stack .project-card {
    min-height: 181px;
  }

  .page-home .project-card-large .project-overlay,
  .page-home .project-card:not(.project-card-large) .project-overlay {
    left: 22px;
    right: 18px;
    bottom: 22px;
  }

  .page-home .project-overlay h3,
  .page-home .project-card:not(.project-card-large) .project-overlay h3 {
    margin: 0;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.3955px;
  }

  .page-home .project-overlay p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
  }

  .page-home #instagram {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .page-home #instagram .instagram-grid {
    position: relative;
    z-index: 0;
  }

  .page-home #instagram .section-heading-inline {
    display: block;
  }

  .page-home #instagram .section-heading-inline {
    margin-bottom: 24px;
  }

  .page-home #instagram .section-note {
    margin: 5px 0 0;
    max-width: 356px;
    font-size: 16px;
    line-height: 24px;
  }

  .page-home .instagram-card {
    flex: 0 0 355px;
    width: 355px;
    height: 317px;
  }

  .page-home .instagram-card .image-frame {
    height: 317px;
    border-radius: 32px;
  }

  .page-home .section-process {
    padding: 30px 0;
  }

  .page-home .process-layout {
    gap: 24px;
  }

  .page-home .process-copy {
    width: 100%;
    max-width: none;
  }

  .page-home .process-steps-panel {
    padding: 0;
    border-top: none;
  }

  .page-home .process-steps {
    gap: 16px;
  }

  .page-home .process-step {
    gap: 24px;
  }

  .page-home .process-step__number {
    flex: 0 0 45px;
    width: 45px;
    font-size: 30px;
    line-height: 48px;
  }

  .page-home .process-step__title {
    font-size: 20px;
    line-height: 28px;
  }

  .page-home .process-step__text {
    font-size: 16px;
    line-height: 22.75px;
  }

  .page-home #shop {
    padding-top: 50px;
    padding-bottom: 72px;
  }

  .page-home #shop .section-heading {
    margin-bottom: 14px;
  }

  .page-home .product-card {
    flex: 0 0 272px;
    width: 272px;
    max-width: 272px;
  }

  .page-home #contacts {
    padding: 0;
  }

  .page-home #contacts .container {
    width: 100%;
    max-width: none;
  }

  .page-home .contact-banner {
    gap: 20px;
    min-height: 0;
    padding: 30px 18px;
    border-radius: 0;
  }

  .page-home .contact-banner > .contact-copy {
    gap: 17px;
    padding-top: 0;
  }

  .page-home .contact-copy-lead {
    gap: 4px;
    max-width: 352px;
  }

  .page-home .contact-banner .contact-copy-lead > p:not(.section-tag) {
    max-width: 352px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4492px;
  }

  .page-home .contact-banner .contact-copy-lead h2 {
    line-height: 37px;
  }

  .page-home .contact-phone-card a {
    font-size: 20px;
    line-height: 32px;
  }

  .page-home .lead-form {
    width: 357px;
    max-width: 100%;
    min-height: 465px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 32px;
  }

  .page-home .site-footer {
    padding: 30px 0 23px;
    background: #f8f9fa;
  }

  .page-home .footer-grid {
    grid-template-columns: 136px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 20px;
  }

  .page-home .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    row-gap: 13px;
  }

  .page-home .footer-brand-text {
    max-width: 357px;
    line-height: 18px;
  }

  .page-home .footer-column[aria-label="Продукция"] {
    display: none;
  }

  .page-home .footer-heading {
    font-size: 12px;
    line-height: 16px;
  }

  .page-home .footer-column {
    gap: 12px;
  }

  .page-home .footer-links {
    gap: 9px;
  }

  .page-home .footer-contacts-stack {
    gap: 14px;
  }

  .page-home .footer-contact {
    gap: 16px;
  }

  .page-home .footer-column-contacts {
    min-width: 0;
  }

  .page-home .site-footer .socials-contacts {
    display: grid;
    grid-template-columns: repeat(4, 38.737px);
    justify-content: start;
    gap: 9.684px;
    width: max-content;
    max-width: 100%;
  }

  .page-home .footer-links a,
  .page-home .footer-contact-primary,
  .page-home .footer-contact:not(:has(.footer-contact-body)) strong {
    font-size: 14px;
    line-height: 20px;
  }

  .page-home .footer-contact-meta,
  .page-home .footer-contact:not(:has(.footer-contact-body)) small {
    font-size: 12px;
    line-height: 14.286px;
  }

  .page-home .mobile-slider-controls {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-top: 24px;
  }

  .page-home #instagram .mobile-slider-controls,
  .page-home #shop .mobile-slider-controls {
    margin-top: 19px;
  }

  .page-home .mobile-slider-control {
    position: relative;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid #eceff3;
    border-radius: 50%;
    background: #fff;
    color: #2b2727;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .page-home .mobile-slider-control::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 23px;
    height: 15px;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 15px;
  }

  .page-home .mobile-slider-control--prev::before {
    background-image: url("assets/arrow-left.svg");
  }

  .page-home .mobile-slider-control--next::before {
    background-image: url("assets/arrow-right.svg");
  }

  .page-home .mobile-slider-control:disabled {
    opacity: 0.45;
  }

  .page-home .mobile-section-button {
    display: inline-flex;
    width: 100%;
    margin-top: 23px;
    min-height: 71px;
    border-radius: 22px;
    padding: 0 24px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
  }

  .page-home #instagram .mobile-section-button {
    margin-top: 19px;
  }
}
