﻿@charset "UTF-8";
:root {
  --color-primary: #520000;
  --color-secondary: #2b0101;
  --color-accent: #7a1515;
  --color-background: #eeeeee;
  --color-background-muted: #eeeeee;
  --color-background-warm: #f5f5f5;
  --color-text: #222222;
  --color-muted: #666666;
  --color-inverse: #ffffff;
  --color-deep: #2b0101;
  --font-primary: Montserrat, Arial, sans-serif;
  --container-width: 1760px;
  --container-padding: 24px;
  --border-radius-small: 16px;
  --border-radius-medium: 32px;
  --border-radius-large: 999px;
  --header-height-desktop: 104px;
  --header-height-mobile: 30px;
  --btn-height: 56px;
  --input-height: 50px;
}

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

html {
  scroll-behavior: smooth;
}

html.alupt-menu-open,
html.alupt-modal-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
}

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

.alupt-container {
  width: 100%;
  max-width: 1760px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 767px) {
  .alupt-container {
    padding-inline: 12px;
  }
  
  .alupt-form input.wpcf7-submit,
.alupt-form .wpcf7-submit,
.alupt-form .alupt-form__submit {
  width: 100%;
}





}
.alupt-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.alupt-main {
  flex: 1;
}

/* body:not(.home) .alupt-main {
  padding-top: var(--header-height-mobile);
} */

.alupt-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0 0;
  background: transparent;
  color: #111;
  pointer-events: none;
}
.alupt-header.is-scrolled .alupt-header__inner {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.alupt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 10px 18px 10px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  pointer-events: auto;
}

.alupt-header__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
  line-height: 1.05;
  padding-inline: 6px;
}

.alupt-header__mark {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.alupt-header__logo-text {
  font-weight: 600;
  font-size: 0.52rem;
  color: #111;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
}

.alupt-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.alupt-header__socials {
  display: none;
}

.alupt-header__cta {
  display: none;
  min-height: 48px;
  padding-inline: 22px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.alupt-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.alupt-header__burger span {
  display: block;
  height: 2px;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.alupt-header.is-open .alupt-header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.alupt-header.is-open .alupt-header__burger span:nth-child(2) {
  opacity: 0;
}

.alupt-header.is-open .alupt-header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.alupt-nav {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}

.alupt-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.alupt-nav__list > .menu-item {
  position: relative;
}
.alupt-nav__list > .menu-item > a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.alupt-nav__list > .menu-item > a:hover {
  color: var(--color-primary);
}
.alupt-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  margin: 0;
  padding: 14px 0 10px;
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  z-index: 30;
}
.alupt-nav__list .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.alupt-nav__list .sub-menu a {
  display: block;
  padding: 10px 18px;
  color: #111;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.alupt-nav__list .sub-menu a:hover {
  color: var(--color-primary);
  background: #f7f7f7;
}
.alupt-nav__list > .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-block: 18px;
}
.alupt-nav__list > .menu-item-has-children > a::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  transition: transform 0.15s ease;
  flex: 0 0 auto;
}
.alupt-nav__list > .menu-item-has-children:hover > a::after,
.alupt-nav__list > .menu-item-has-children:focus-within > a::after {
  transform: translateY(0.05em) rotate(225deg);
}
.alupt-nav__list > .menu-item-has-children:hover > .sub-menu,
.alupt-nav__list > .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.alupt-mobile-nav {
  margin-top: 10px;
  border-radius: 28px;
  background: #fff;
  padding: 16px 20px 22px;
  max-height: calc(100vh - 100px);
  overflow: auto;
  display: grid;
  gap: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  pointer-events: auto;
}
.alupt-mobile-nav[hidden] {
  display: none !important;
}

.alupt-mobile-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.alupt-mobile-nav__list a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.alupt-mobile-nav__list > .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.alupt-mobile-nav__list > .menu-item-has-children > a::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  flex: 0 0 auto;
}
.alupt-mobile-nav__list .sub-menu {
  margin: 0 0 8px;
  padding: 0 0 0 14px;
  list-style: none;
}
.alupt-mobile-nav__list .sub-menu a {
  padding: 8px 0;
  font-size: 0.92rem;
  color: #444;
}

.alupt-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.alupt-messengers__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.alupt-messengers__link:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
}
.alupt-messengers__link svg {
  display: block;
}

.alupt-messengers--header {
  margin: 0;
  gap: 8px;
  flex-wrap: nowrap;
}
.alupt-messengers--header .alupt-messengers__link {
  width: 36px;
  height: 36px;
}

.alupt-contacts__card .alupt-messengers__link {
  background: #111;
}

@media (min-width: 1100px) {
  .alupt-header__socials,
  .alupt-header__cta {
    display: inline-flex;
  }
  .alupt-header__burger,
  .alupt-mobile-nav {
    display: none !important;
  }
  .alupt-nav {
    display: block;
  }
}
@media (min-width: 1100px) and (max-width: 1400px) {
  .alupt-nav__list {
    gap: 6px 14px;
  }
  .alupt-nav__list > .menu-item > a {
    font-size: 0.82rem;
  }
  .alupt-header__cta {
    padding-inline: 16px;
    font-size: 0.8rem;
    min-height: 44px;
  }
  .alupt-messengers--header .alupt-messengers__link {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 1099px) {
	
	.alupt-production__hero {
  padding-top: calc(65px + 0px)!important;
  padding-bottom: 0;
  background: transparent;
}

  .alupt-header {
    padding: 8px 0 0;
  }
  .alupt-header__inner {
    border-radius: 16px;
    min-height: 44px;
    padding: 4px 10px;
    gap: 8px;
  }
  .alupt-header__mark {
    width: 26px;
    height: 26px;
  }
  .alupt-header__logo-text {
    font-size: 0.44rem;
  }
  .alupt-header__burger {
    width: 36px;
    height: 36px;
    padding: 7px;
  }
  .alupt-header__cta {
    display: none !important;
  }
  .alupt-mobile-nav {
    margin-inline: 0;
  }
  .alupt-section.alupt-hero,
  .alupt-production__hero {
  /*   padding-top: calc(var(--header-height-mobile) + 10px); */
  padding-top: calc(65px + 0px);
  }
  .alupt-section[id],
  .alupt-hero,
  .alupt-about,
  .alupt-directions,
  .alupt-cooperation,
  .alupt-smu,
  .alupt-contacts,
  .alupt-production__stats {
    scroll-margin-top: calc(var(--header-height-mobile) + 12px);
  }
}
.alupt-footer {
  background: #eeeeee;
  color: #555;
  padding: 28px 0 40px;
  margin-top: 0;
}

.alupt-footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.alupt-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 90ch;
}

.alupt-footer__privacy {
  color: #555;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.alupt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-height, 56px);
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.alupt-btn:active {
  transform: translateY(1px);
}
.alupt-btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.alupt-btn--primary:hover, .alupt-btn--primary:focus-visible {
  background: #3a0000;
}
.alupt-btn--hero {
  background: #fff;
  color: var(--color-primary);
  min-height: 54px;
  padding: 0 22px 0 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.alupt-btn--hero:hover, .alupt-btn--hero:focus-visible {
  background: #f4f4f4;
}
.alupt-btn--light {
  background: #fff;
  color: var(--color-primary);
  min-height: 54px;
  padding: 0 22px 0 10px;
  align-self: flex-end;
  margin-top: auto;
}
.alupt-btn--light:hover, .alupt-btn--light:focus-visible {
  background: #f4f4f4;
}
.alupt-btn--dealer {
  width: auto;
  align-self: flex-start;
  background: #fff;
  color: var(--color-primary);
  min-height: 54px;
  padding: 0 22px 0 10px;
  border-radius: 999px;
  gap: 12px;
  margin-top: 8px;
}
.alupt-btn--dealer .alupt-btn__icon--arrow {
  background: var(--color-primary);
  color: #fff;
}
.alupt-btn--dealer:hover, .alupt-btn--dealer:focus-visible {
  background: #f4f4f4;
}
.alupt-btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}
.alupt-btn--ghost-light:hover, .alupt-btn--ghost-light:focus-visible {
  background: #fff;
  color: var(--color-primary);
}
.alupt-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}
.alupt-btn--outline-light:hover, .alupt-btn--outline-light:focus-visible {
  background: #fff;
  color: var(--color-primary);
}

.alupt-btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.alupt-btn__icon--arrow {
  background: var(--color-primary);
  color: #fff;
}

.alupt-btn--primary .alupt-btn__icon--arrow {
  background: #fff;
  color: var(--color-primary);
}

.alupt-link {
  font-weight: 600;
  text-decoration: none;
}
.alupt-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alupt-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.alupt-modal[hidden] {
  display: none !important;
}

.alupt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.alupt-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 32px;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.alupt-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.alupt-modal__close:hover {
  background: #f3f3f3;
}

.alupt-modal__content {
  text-align: center;
}

.alupt-modal__title {
  margin: 0 0 10px;
  padding-inline: 24px;
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.alupt-modal__subtitle {
  margin: 0 auto 28px;
  max-width: 22rem;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 480px) {
  .alupt-modal__dialog {
    padding: 28px 18px 22px;
    border-radius: 24px;
  }
}
.alupt-form {
  text-align: left;
}

.alupt-form .wpcf7-form {
  margin: 0;
}

.alupt-form .wpcf7-form > p,
.alupt-form .wpcf7-form .alupt-form__field {
  display: block;
  margin: 0 0 16px;
}

.alupt-form .wpcf7-form label.alupt-form__field {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
  line-height: 1.35;
}

.alupt-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.alupt-form input[type=text],
.alupt-form input[type=tel],
.alupt-form input[type=email],
.alupt-form select,
.alupt-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border: 1.5px solid #2a2a2a;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  color: #111;
  background: #fff;
  appearance: none;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.alupt-form input[type=text]:focus,
.alupt-form input[type=tel]:focus,
.alupt-form input[type=email]:focus,
.alupt-form select:focus,
.alupt-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(82, 0, 0, 0.12);
}
.alupt-form input[type=text]::placeholder,
.alupt-form input[type=tel]::placeholder,
.alupt-form input[type=email]::placeholder,
.alupt-form select::placeholder,
.alupt-form textarea::placeholder {
  color: #9a9a9a;
}

.alupt-form select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

.alupt-form textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 24px;
}

/* Phone with BY flag */
.alupt-phone {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 52px;
  margin-top: 8px;
  border: 1.5px solid #2a2a2a;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.alupt-phone:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(82, 0, 0, 0.12);
}

.alupt-phone__code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 0 0 16px;
  color: #111;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  user-select: none;
}

.alupt-phone__dial {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.alupt-phone__flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.alupt-phone__divider {
  width: 1px;
  height: 22px;
  margin-left: 10px;
  background: #d0d0d0;
  flex: 0 0 auto;
}

.alupt-phone .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
}

.alupt-phone input[type=tel] {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  min-height: 50px;
  padding-left: 12px;
  padding-right: 18px;
}

.alupt-form__field--phone > .wpcf7-form-control-wrap:not(.alupt-phone .wpcf7-form-control-wrap) {
  /* hidden when wrapped */
}

.alupt-form .alupt-form__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 22px 0 14px;
  width: 100%;
  text-align: center;
}

.alupt-form .alupt-form__actions > p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  text-align: center;
}

.alupt-form .wpcf7-form > p:has(.wpcf7-submit),
.alupt-form .wpcf7-form > p:has(input[type=submit]) {
  display: flex;
  justify-content: center;
  margin: 22px 0 14px;
  text-align: center;
}

.alupt-form input.wpcf7-submit,
.alupt-form .wpcf7-submit,
.alupt-form .alupt-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-inline: auto;
  transition: background-color 0.15s ease;
}
.alupt-form input.wpcf7-submit:hover, .alupt-form input.wpcf7-submit:focus-visible,
.alupt-form .wpcf7-submit:hover,
.alupt-form .wpcf7-submit:focus-visible,
.alupt-form .alupt-form__submit:hover,
.alupt-form .alupt-form__submit:focus-visible {
  background: #3a0000;
}

.alupt-form .wpcf7-form > p.alupt-form__disclaimer,
.alupt-form__disclaimer {
  margin: 0 auto;
  max-width: 22rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #555;
}
.alupt-form__disclaimer a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.alupt-form__disclaimer a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.alupt-form .wpcf7-spinner {
  margin-left: 10px;
}

.alupt-form .wpcf7-not-valid-tip {
  color: #a11;
  font-size: 0.82rem;
  margin-top: 6px;
}

.alupt-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-align: center;
  font-size: 0.9rem;
}

.alupt-form .wpcf7-mail-sent-ok,
.alupt-form form.sent .wpcf7-response-output {
  border-color: #1a7f37;
  background: #eaf7ee;
}

.alupt-form .wpcf7-validation-errors,
.alupt-form .wpcf7-mail-sent-ng,
.alupt-form form.invalid .wpcf7-response-output,
.alupt-form form.failed .wpcf7-response-output {
  border-color: #c45;
  background: #fff1f1;
}

.alupt-form__placeholder {
  color: var(--color-muted);
  text-align: center;
}

/* Hide default acceptance if old form still cached */
.alupt-form .wpcf7-acceptance {
  display: none;
}

.alupt-card {
  height: 100%;
  background: #fff;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.alupt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(82, 0, 0, 0.12);
}

.alupt-card__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.alupt-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #520000 0%, #280000 100%);
  overflow: hidden;
}

.alupt-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.alupt-card:hover .alupt-card__image {
  transform: scale(1.04);
}

.alupt-card__media-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%), linear-gradient(145deg, #6f0000 0%, #280000 100%);
}

.alupt-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 24px;
  flex: 1;
}

.alupt-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.alupt-card__excerpt {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  flex: 1;
}

.alupt-card__more {
  font-weight: 600;
  color: var(--color-primary);
}

.alupt-card__more::after {
  content: " в†’";
}

.alupt-directions__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .alupt-directions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.alupt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.alupt-lightbox[hidden] {
  display: none !important;
}

.alupt-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 0, 0.88);
}

.alupt-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 40px);
}

.alupt-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 40px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.alupt-lightbox__close,
.alupt-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.alupt-lightbox__close {
  top: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.alupt-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
}

.alupt-lightbox__nav--prev {
  left: -8px;
}

.alupt-lightbox__nav--next {
  right: -8px;
}

html.alupt-lightbox-open {
  overflow: hidden;
}

.alupt-production__gallery-link {
  display: block;
  overflow: hidden;
  border-radius: inherit;
}
.alupt-production__gallery-link img {
  transition: transform 0.35s ease;
}
.alupt-production__gallery-link:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .alupt-lightbox__nav--prev {
    left: 4px;
  }
  .alupt-lightbox__nav--next {
    right: 4px;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.alupt-section {
  padding-block: clamp(48px, 7vw, 40px);
}

.alupt-section__title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 1.25rem + 1.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.alupt-section__lead {
  margin: 0;
  color: var(--color-muted);
  max-width: 40rem;
}

.alupt-section__header {
  margin-bottom: 28px;
}
.alupt-section__header--center {
  text-align: center;
}
.alupt-section__header--center .alupt-section__lead {
  margin-inline: auto;
}

.alupt-anchor-alias {
  position: relative;
  top: calc(-1 * (var(--header-height-desktop) + 12px));
  display: block;
  height: 0;
  overflow: hidden;
}

.alupt-section[id],
.alupt-hero,
.alupt-about,
.alupt-directions,
.alupt-cooperation,
.alupt-smu,
.alupt-contacts,
.alupt-production__stats {
  scroll-margin-top: calc(var(--header-height-desktop) + 12px);
}

.alupt-card-surface {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

/* вЂ”вЂ” Hero вЂ”вЂ” */
.alupt-hero {
  padding-top: calc(var(--header-height-desktop) + 8px);
  padding-bottom: 0;
  background: transparent;
}

.alupt-hero__shell {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 420px;
  border-radius: 32px;
  background: #2b0101;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

@media (min-width: 980px) {
  .alupt-hero__shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 560px;
  }
}
.alupt-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(28px, 4vw, 56px);
  max-width: 38rem;
}

@media (min-width: 980px) {
  .alupt-hero__content {
    justify-content: center;
    padding: 56px 24px 56px 56px;
  }
}
.alupt-hero__mark {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
  margin-bottom: 8px;
}

.alupt-hero__title {
  margin: 0;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: normal;
}

.alupt-hero__text {
  margin: 0;
  max-width: 30rem;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.96;
}

.alupt-hero__media {
  position: relative;
  min-height: 260px;
}

@media (min-width: 980px) {
  .alupt-hero__media {
    min-height: 100%;
  }
  .alupt-hero__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 48%;
    z-index: 1;
    background: linear-gradient(90deg, #2b0101 0%, rgba(43, 1, 1, 0.88) 22%, rgba(43, 1, 1, 0.4) 58%, rgba(43, 1, 1, 0) 100%);
    pointer-events: none;
  }
}
.alupt-hero__image,
.alupt-hero__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

@media (min-width: 980px) {
  .alupt-hero__image,
  .alupt-hero__media-fallback {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}
.alupt-hero__media-fallback {
  background: linear-gradient(120deg, rgba(43, 1, 1, 0.35), transparent), linear-gradient(145deg, #777, #333);
}

@media (max-width: 979px) {
  .alupt-hero__title {
    white-space: normal;
  }
}
/* вЂ”вЂ” Specialists вЂ”вЂ” */
.alupt-about {
  background: transparent;
  padding-top: clamp(56px, 8vw, 140px);
  padding-bottom: 18px;
}

.alupt-specialists {
  max-width: none;
  margin: 0 0 18px;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 48px);
  text-align: left;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.alupt-specialists__title {
  margin: 0 0 28px;
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  max-width: 22ch;
}

.alupt-specialists__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.alupt-specialists__list li {
  position: relative;
  padding: 0 0 0 36px;
  color: #333;
  line-height: 1.5;
  font-size: 1rem;
}
.alupt-specialists__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent url("../images/icons/check-on-white.svg") center/contain no-repeat;
  box-shadow: 0 0 0 1px rgba(82, 0, 0, 0.08);
}
.alupt-specialists__list li::after {
  display: none;
}

.alupt-specialists__note {
  display: none;
}

/* вЂ”вЂ” Dual maroon panels вЂ”вЂ” */
.alupt-panels {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .alupt-panels {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.alupt-panel {
  position: relative;
  background: #520000;
  color: #fff;
  border-radius: 32px;
  padding: clamp(32px, 3.2vw, 48px);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.alupt-panel__title {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.75rem);
  font-weight: 700;
}

.alupt-panel__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.alupt-panel__list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 0.98rem;
  line-height: 1.4;
}

.alupt-panel__list--icons {
  display: grid;
 /*  gap: 10px 28px; */
}
@media (min-width: 700px) {
  .alupt-panel__list--icons {
    grid-template-columns: 1fr 1fr;
  }
}
.alupt-panel__list--icons li {
  padding-left: 42px;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.alupt-panel__list--icons li.has-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: var(--dir-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.alupt-panel__list--icons li.has-icon::after {
  display: none;
}

.alupt-panel__list--checks {
  display: grid;
  gap: 8px 28px;
}
@media (min-width: 700px) {
  .alupt-panel__list--checks {
    grid-template-columns: 1fr 1fr;
  }
}
.alupt-panel__list--checks li {
  padding-left: 34px;
}
.alupt-panel__list--checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent url("../images/icons/check-light.svg") center/contain no-repeat;
}
.alupt-panel__list--checks li::after {
  display: none;
}

/* —— Workshops Z-pattern (diz.png: separate image + text cards) —— */
.alupt-directions {
  background: transparent;
  padding-top: clamp(56px, 8vw, 130px);
}

.alupt-workshops {
  display: grid;
  gap: 24px;
}

.alupt-workshop {
  display: grid;
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .alupt-workshop {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
  .alupt-workshop--reverse .alupt-workshop__media {
    order: 2;
  }
  .alupt-workshop--reverse .alupt-workshop__body {
    order: 1;
  }
}
.alupt-workshop__media {
  position: relative;
  min-height: 240px;
  background: #e8e8e8;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.alupt-workshop__image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 900px) {
  .alupt-workshop__media {
    min-height: 100%;
  }
  .alupt-workshop__image {
    position: absolute;
    inset: 0;
    min-height: 100%;
    width: 100%;
    height: 100%;
  }
}
.alupt-workshop__body {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  padding: clamp(32px, 3.5vw, 52px) clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  max-width: none;
}

.alupt-workshop__title {
  margin: 0;
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.alupt-workshop__text {
  margin: 0;
  color: #444;
  line-height: 1.55;
  font-size: clamp(0.98rem, 0.92rem + 0.2vw, 1.08rem);
  max-width: 36rem;
}
.alupt-workshop__text p {
  margin: 0 0 0.85em;
}
.alupt-workshop__text p:last-child {
  margin-bottom: 0;
}
.alupt-workshop__text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.alupt-workshop__body .alupt-btn--primary {
  min-height: 54px;
  padding: 0 22px 0 10px;
  margin-top: 6px;
}

/* вЂ”вЂ” Cooperation вЂ”вЂ” */
.alupt-cooperation {
  background: transparent;
  padding-block: clamp(56px, 8vw, 40px);
}

.alupt-cooperation__shell {
  background: #ebebeb;
  border-radius: 32px;
  padding: clamp(16px, 2vw, 24px);
}

.alupt-cooperation__grid {
  display: grid;
  gap: 16px;
  position: relative;
  align-items: stretch;
}

@media (min-width: 980px) {
  .alupt-cooperation__grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
  }
}
.alupt-cooperation__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  min-height: 100%;
}

.alupt-cooperation__card {
  background: #520000;
  color: #fff;
  border-radius: 28px;
  padding: clamp(32px, 3.2vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: none;
  flex: 1;
  min-height: 100%;
}

.alupt-cooperation__title {
  margin: 0;
  font-size: clamp(1.55rem, 1.25rem + 1vw, 2.1rem);
  font-weight: 750;
  color: #fff;
}

.alupt-cooperation__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.alupt-cooperation__aside {
  position: relative;
  background: transparent;
  border-radius: 28px;
  padding: clamp(24px, 2.8vw, 40px) clamp(24px, 2.8vw, 40px) clamp(24px, 2.8vw, 40px) clamp(12px, 1.5vw, 24px);
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(/wp-content/themes/alupt-theme/images/noroot.png) #fff;
    background-position-x: 0%;
    background-repeat: repeat;
  background-repeat: no-repeat;
  background-position-x: right;
  background-size: contain;
}

.alupt-cooperation__aside-inner {
  width: 100%;
  max-width: 40rem;
}

.alupt-cooperation__list-title {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.alupt-cooperation__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.alupt-cooperation__list li {
  position: relative;
  padding: 10px 0 10px 36px;
  color: #333;
  line-height: 1.45;
}
.alupt-cooperation__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent url("../images/icons/check-on-white.svg") center/contain no-repeat;
  box-shadow: 0 0 0 1px rgba(82, 0, 0, 0.08);
  border-radius: 50%;
}
.alupt-cooperation__list li::after {
  display: none;
}

.alupt-cooperation__person {
  margin-top: 20px;
  max-width: 260px;
  margin-left: auto;
}
.alupt-cooperation__person img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 980px) {
  .alupt-cooperation__aside--has-person {
    padding-right: clamp(32px, 3.2vw, 48px);
  }
  .alupt-cooperation__aside--has-person .alupt-cooperation__aside-inner {
    max-width: 62%;
  }
  .alupt-cooperation__aside--has-person .alupt-cooperation__person {
    position: absolute;
    right: 8px;
    bottom: 0;
    width: min(280px, 34%);
    margin: 0;
  }
}
/* —— SMU —— */
.alupt-smu {
  background: transparent;
}

.alupt-smu__grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 980px) {
  .alupt-smu__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    min-height: 420px;
  }
}
.alupt-smu__content {
  background: #fff;
  border-radius: 32px;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.alupt-smu__content .alupt-section__title {
  color: #1a1a1a;
}

.alupt-smu__text {
  margin: 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.55;
}
.alupt-smu__text p {
  margin: 0 0 0.9rem;
}
.alupt-smu__text p:last-child {
  margin-bottom: 0;
}

.alupt-smu__media,
.alupt-smu__placeholder {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 300px;
/*   aspect-ratio: 16 / 9; */
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  background: #ddd;
}

.alupt-smu__media .alupt-slider {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.alupt-smu__image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.alupt-smu__placeholder {
  background: linear-gradient(135deg, #5a1010, #2a0606);
}

@media (min-width: 980px) {
  .alupt-smu__media,
  .alupt-smu__placeholder {
    min-height: 100%;
  }
}
/* вЂ”вЂ” Contacts вЂ”вЂ” */
.alupt-contacts {
  background: transparent;
}

.alupt-contacts__grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 980px) {
  .alupt-contacts__grid {
    grid-template-columns: minmax(280px, 404px) minmax(0, 1fr);
    align-items: stretch;
    gap: 20px;
  }
}
.alupt-contacts__card {
  background: #fff;
  border: 0;
  border-radius: 32px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.alupt-contacts__title {
  margin: 0 0 22px;
  color: #1a1a1a;
  font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2.1rem);
  font-weight: 700;
}

.alupt-contacts__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.alupt-contacts__list li {
  margin-bottom: 14px;
}
.alupt-contacts__list a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}
.alupt-contacts__list strong {
  display: block;
  font-size: 1.02rem;
}

.alupt-contacts__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.alupt-contacts__map {
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
  background: #e9e9e9;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.alupt-contacts__map iframe,
.alupt-contacts__map > div,
.alupt-contacts__map > ymaps {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px;
}

/* вЂ”вЂ” Production leftovers moved to sections/_production.scss вЂ”вЂ” */
.alupt-404 {
  text-align: center;
  padding-block: 120px 80px;
}

.alupt-page-content {
  padding-block: calc(var(--header-height-mobile) + 40px) 64px;
}

.alupt-page-content__title {
  margin: 0 0 20px;
  color: var(--color-primary);
}

.alupt-production {
  background: transparent;
}

/* вЂ”вЂ” Hero вЂ”вЂ” */
.alupt-production__hero {
  padding-top: calc(var(--header-height-desktop) + 8px);
  padding-bottom: 0;
  background: transparent;
}

.alupt-production__hero-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 420px;
  border-radius: 32px;
  background: linear-gradient(180deg, #290000 0%, #2b0101 40%, #4b0000 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

@media (min-width: 980px) {
  .alupt-production__hero-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 560px;
  }
}
.alupt-production__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(28px, 4vw, 56px);
  max-width: 36rem;
}

.alupt-production__hero-title {
  margin: 0;
  font-size: clamp(1.85rem, 1.2rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.alupt-production__hero-text {
  margin: 0;
  max-width: 30rem;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.96;
}

.alupt-production__hero-media {
  position: relative;
  min-height: 280px;
}

.alupt-production__hero-image,
.alupt-production__hero-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

@media (min-width: 980px) {
  .alupt-production__hero-media {
    min-height: 100%;
  }
  .alupt-production__hero-image,
  .alupt-production__hero-fallback {
    position: absolute;
    inset: 0;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    /* padding: 12px 12px 0 0; */
  }
  .alupt-production__hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: linear-gradient(90deg, #2b0101 0%, rgba(43, 1, 1, 0.35) 18%, rgba(43, 1, 1, 0) 42%); */
    pointer-events: none;
  }
  .alupt-production__hero-media::after {
    display: none;
  }
}
.alupt-production__hero-fallback {
  background: linear-gradient(145deg, #5a1010, #2a0606);
}

/* вЂ”вЂ” Features вЂ”вЂ” */
.alupt-production__features {
  padding-top: clamp(56px, 8vw, 130px);
  padding-bottom: 0;
}

.alupt-production__features-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 980px) {
  .alupt-production__features-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 28px;
  }
}
.alupt-production__feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.alupt-production__feature {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 0;
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.5vw, 36px);
  background: #fff;
  border-radius: 32px;
  border: 1px solid #ececec;
  box-shadow: none;
}

.alupt-production__feature-num {
  flex: 0 0 auto;
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.alupt-production__feature-text {
  flex: 1 1 auto;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}
.alupt-production__feature-text p {
  margin: 0;
}
.alupt-production__feature-text strong,
.alupt-production__feature-text b {
  color: var(--color-primary);
  font-weight: 700;
}

.alupt-production__feature-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  min-height: 280px;
  /* aspect-ratio: 4 / 3; */
 /*  aspect-ratio: 16 / 9; */
  background: #ddd;
}

.alupt-production__feature-media .alupt-slider {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.alupt-production__feature-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 980px) {
  .alupt-production__feature-media {
    min-height: 100%;
    height: 100%;
  }
}
/* вЂ”вЂ” Stats вЂ”вЂ” */
.alupt-production__stats {
  padding-block: clamp(48px, 7vw, 100px);
}

.alupt-production__stats-inner {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .alupt-production__stats-inner {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.4fr);
    gap: 48px 64px;
    align-items: start;
  }
}
.alupt-production__stats-title {
  margin: 0;
  font-size: clamp(1.65rem, 1.25rem + 1.1vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
}

.alupt-production__stats-sub {
  margin: 12px 0 0;
  color: #8a8a8a;
  font-size: 0.95rem;
  line-height: 1.4;
}

.alupt-production__stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alupt-production__stats-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 72px;
  width: 100%;
}

.alupt-production__stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
}

.alupt-production__stat-prefix {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  padding-top: 0.55em;
}

.alupt-production__stat-main {
  min-width: 0;
}

.alupt-production__stat-value-row {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.alupt-production__stat-suffix {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
}

.alupt-production__stat-value {
  font-size: clamp(2.4rem, 1.7rem + 2vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.alupt-production__stat-label {
  display: block;
  margin-top: 10px;
  color: #9a9a9a;
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 16rem;
}

/* вЂ”вЂ” Process checklist card вЂ”вЂ” */
.alupt-production__process {
  padding-top: 0;
  padding-bottom: clamp(48px, 7vw, 100px);
}

.alupt-production__process-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: none;
  padding: clamp(32px, 4vw, 56px);
}

.alupt-production__process-title {
  margin: 0 0 28px;
  /* max-width: 36rem; */
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-primary);
}

.alupt-production__process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.alupt-production__process-list li {
  position: relative;
  padding: 0 0 0 36px;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}
.alupt-production__process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent url("../images/icons/check-on-white.svg") center/contain no-repeat;
  box-shadow: 0 0 0 1px rgba(82, 0, 0, 0.08);
}
.alupt-production__process-list li::after {
  display: none;
}

/* вЂ”вЂ” Asymmetric gallery вЂ”вЂ” */
.alupt-production__gallery {
  padding-top: 0;
  padding-bottom: clamp(48px, 7vw, 100px);
}

.alupt-production__gallery-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.alupt-production__gallery-item {
  flex: 1 1 0;
  min-width: 140px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  height: clamp(280px, 32vw, 520px);
}
.alupt-production__gallery-item.is-wide {
  flex: 2.3 1 0;
  min-width: 220px;
}
.alupt-production__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alupt-production__gallery-link {
  display: block;
  height: 100%;
}
.alupt-form input.wpcf7-submit, .alupt-form .wpcf7-submit, .alupt-form .alupt-form__submit {
    width: 100%!important;
  }
@media (max-width: 767px) {
	
	.alupt-production__hero {
  padding-top: calc(65px + 0px)!important;
  padding-bottom: 0;
  background: transparent;
}


.alupt-production__stats-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: revert;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
}


.alupt-production__stat {
  grid-template-columns: auto!important;

}

.alupt-production__stats-list {
  /* gap: 0px!important; */
}
  /* Единая ширина всех плашек */
  .alupt-cooperation__shell {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .alupt-cooperation__grid {
    gap: 20px;
  }

  .alupt-cooperation__card,
  .alupt-cooperation__aside {
    width: 100%;
    max-width: none;
    border-radius: 24px;
  }

  .alupt-cooperation__aside {
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    padding: clamp(24px, 5vw, 32px);
  }

  .alupt-hero__shell,
  .alupt-specialists,
  .alupt-panel,
  .alupt-workshop__media,
  .alupt-workshop__body,
  .alupt-cooperation__card,
  .alupt-smu__content,
  .alupt-smu__media,
  .alupt-smu__placeholder,
  .alupt-contacts__card,
  .alupt-contacts__map,
  .alupt-production__hero-shell,
  .alupt-production__feature,
  .alupt-production__feature-media,
  .alupt-production__process-card {
    width: 100%;
    max-width: none;
    border-radius: 24px;
  }

  .alupt-workshop__body,
  .alupt-cooperation__card {
    padding-inline: clamp(24px, 5vw, 32px);
  }

  .alupt-workshops,
  .alupt-panels,
  .alupt-smu__grid,
  .alupt-contacts__grid {
    gap: 20px;
  }

  .alupt-production__stats {
    padding-block: 40px 48px;
  }

  .alupt-production__stats-inner,
  .alupt-production__stats-inner--grid {
    gap: 24px;
  }

  .alupt-production__stats-title {
    font-size: clamp(1.45rem, 5.5vw, 1.75rem);
    line-height: 1.2;
  }

  .alupt-production__stats-sub {
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .alupt-production__stats-list--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    width: 100%;
  }

  /* Mobile mockup: окна | двери / раздвижные | фасадные */
  .alupt-production__stats-list--grid .alupt-production__stat:nth-child(1) {
    order: 1;
  }
  .alupt-production__stats-list--grid .alupt-production__stat:nth-child(2) {
    order: 3;
  }
  .alupt-production__stats-list--grid .alupt-production__stat:nth-child(3) {
    order: 2;
  }
  .alupt-production__stats-list--grid .alupt-production__stat:nth-child(4) {
    order: 4;
  }

  .alupt-production__stat {
    column-gap: 6px;
  }

  .alupt-production__stat-prefix {
    color: #222;
    font-size: 0.82rem;
    font-weight: 400;
    padding-top: 0.72em;
  }

  .alupt-production__stat-suffix {
    color: #222;
    font-size: 0.82rem;
    font-weight: 400;
  }

  .alupt-production__stat-value {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .alupt-production__stat-value-row {
    gap: 4px 8px;
	align-items: center;
  }


  .alupt-production__stat-label {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.3;
    max-width: none;
    color: #888;
  }

  .alupt-production__gallery-list {
    flex-wrap: wrap;
  }
  .alupt-production__gallery-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    height: 200px;
  }
  .alupt-production__gallery-item.is-wide {
    flex: 1 1 100%;
    height: 240px;
  }
}

/* —— Autoplay slider —— */
.alupt-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.alupt-slider__track {
  position: absolute;
  inset: 0;
}

.alupt-slider__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.alupt-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.alupt-slider__link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: zoom-in;
}

.alupt-slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.alupt-production__feature-media .alupt-slider .alupt-production__feature-image,
.alupt-smu__media .alupt-slider .alupt-smu__image {
  min-height: 0;
  height: 100%;
}

.alupt-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.alupt-slider--nav:hover .alupt-slider__nav,
.alupt-slider--nav:focus-within .alupt-slider__nav {
  opacity: 1;
}

.alupt-slider__nav:hover {
  background: #fff;
}

.alupt-slider__nav--prev {
  left: 14px;
}

.alupt-slider__nav--next {
  right: 14px;
}

@media (max-width: 979px) {
  .alupt-slider--nav .alupt-slider__nav {
    opacity: 1;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .alupt-slider__nav--prev {
    left: 10px;
  }

  .alupt-slider__nav--next {
    right: 10px;
  }
}

.website\.test-localmedia\.byt-form__disclaimer{
	text-align:center;
}


.alupt-production__stats-list.is-visible{
	display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 16px;
  width: 100%;
  align-items: end;
}