:root {
  --canvas: #f5f1e9;
  --paper: #fffdf8;
  --paper-soft: #ece6da;
  --ink: #22211e;
  --muted: #6f6a61;
  --wine: #8b1f28;
  --wine-dark: #5f1118;
  --gold: #c69a4a;
  --forest: #29423a;
  --charcoal: #24231f;
  --line: rgba(34, 33, 30, 0.14);
  --container: 1200px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--canvas);
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgba(95, 17, 24, 0.018) 6px),
    repeating-linear-gradient(90deg, transparent 0, transparent 8px, rgba(34, 33, 30, 0.014) 9px);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--wine);
  transform: translateY(-150%);
}

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

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

.section {
  padding: 108px 0 116px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
}

.section-label::after {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  content: "";
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform 220ms ease, color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(198, 154, 74, 0.62);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--wine);
}

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

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(20, 18, 16, 0.18);
  backdrop-filter: blur(6px);
}

.button-outline:hover {
  color: var(--wine-dark);
  background: #fff;
  border-color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid rgba(34, 33, 30, 0.1);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.nav-link {
  position: relative;
  color: #4f4b44;
  font-size: 14px;
  font-weight: 700;
  transition: color 200ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--wine);
}

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

.header-order {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--wine);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  height: calc(100dvh - 126px);
  max-height: 760px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.005);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 17, 12, 0.82) 0%, rgba(25, 17, 12, 0.56) 42%, rgba(25, 17, 12, 0.08) 72%),
    linear-gradient(0deg, rgba(25, 17, 12, 0.52) 0%, transparent 42%);
}

.hero-content {
  padding: 72px 0 68px;
  color: #fff;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #f0c875;
  font-size: 16px;
  font-weight: 800;
}

.hero-kicker::before {
  width: 34px;
  height: 2px;
  background: #f0c875;
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.proof-band {
  position: relative;
  z-index: 2;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 12px 32px rgba(95, 17, 24, 0.18);
}

.proof-grid {
  display: grid;
  min-height: 126px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 25px 34px;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-mark {
  color: #e2b762;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 21px;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 72px;
  align-items: center;
}

.opportunity-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.opportunity-points {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.opportunity-point {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.opportunity-point b {
  color: var(--wine);
  font-size: 14px;
}

.opportunity-point span {
  color: #4f4b44;
  font-size: 14px;
  line-height: 1.65;
}

.product-collage {
  display: grid;
  min-height: 640px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.collage-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e2d8;
}

.collage-photo:first-child {
  grid-row: 1 / span 2;
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms ease;
}

.collage-photo:hover img {
  transform: scale(1.025);
}

.collage-photo em {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(36, 35, 31, 0.78);
  border-radius: 3px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.brand-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
}

.brand-band::before {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 4px, rgba(255, 255, 255, 0.025) 5px),
    repeating-linear-gradient(90deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.018) 9px);
  content: "";
  pointer-events: none;
}

.brand-band .section-label {
  color: #e4bc6d;
}

.brand-band .section-label::after {
  background: #e4bc6d;
}

.brand-band .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.brand-story {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.brand-quote {
  margin: 46px 0 0;
  padding: 24px 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

.brand-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-fact {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-fact b {
  display: block;
  color: #edc77b;
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.brand-fact strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.brand-fact span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.75;
}

.gallery-section {
  padding: 0 0 110px;
  background: var(--paper);
}

.shoe-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gallery-item {
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-item figcaption {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: #4f4b44;
  font-size: 14px;
}

.gallery-item figcaption b {
  color: var(--wine);
}

.series-section {
  background: var(--paper);
}

.series-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.price-note {
  flex: 0 0 320px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.price-note strong {
  display: block;
  color: var(--wine);
  font-size: 22px;
  line-height: 1.5;
}

.price-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.series-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.series-card:hover {
  z-index: 1;
  border-color: rgba(139, 31, 40, 0.42);
  box-shadow: 0 18px 36px rgba(34, 33, 30, 0.1);
  transform: translateY(-4px);
}

.series-photo {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eee9e0;
}

.series-photo img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  transition: transform 350ms ease;
}

.series-card:hover .series-photo img {
  transform: scale(1.03);
}

.series-index {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
}

.series-copy {
  min-height: 148px;
  padding: 20px;
}

.series-copy h3 {
  margin: 0;
  color: var(--wine-dark);
  font-size: 18px;
  line-height: 1.4;
}

.series-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.support-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.support-section .section-label {
  color: #edc77b;
}

.support-section .section-label::after {
  background: #edc77b;
}

.support-section .section-title {
  max-width: 900px;
}

.support-section .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.support-item {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 220ms ease;
}

.support-item:hover {
  background: rgba(139, 31, 40, 0.22);
}

.support-number {
  color: #d7ad5b;
  font-size: 13px;
  font-weight: 800;
}

.support-item h3 {
  margin: 30px 0 0;
  font-size: 20px;
}

.support-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.store-models {
  padding: 78px 0 86px;
  background: var(--paper-soft);
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.condition-item {
  min-height: 214px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
}

.condition-number {
  display: block;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.condition-item strong {
  display: block;
  margin-top: 24px;
  color: var(--wine-dark);
  font-size: 18px;
}

.condition-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.rights-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
}

.rights-heading h3 {
  margin: 0;
  color: var(--wine-dark);
  font-size: 28px;
}

.rights-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.right-item {
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.right-item b {
  color: var(--gold);
  font-size: 13px;
}

.right-item strong {
  display: block;
  margin-top: 20px;
  color: var(--wine-dark);
  font-size: 16px;
}

.right-item span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.68;
}

.model-heading {
  margin: 58px 0 28px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.model-heading span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.model-heading h3 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.3;
}

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

.model-item {
  padding: 8px 40px 8px 0;
}

.model-item + .model-item {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.model-item b {
  color: var(--wine);
  font-size: 28px;
}

.model-item h3 {
  margin: 14px 0 0;
  font-size: 19px;
}

.model-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.process-section {
  background: var(--paper);
}

.process-head {
  text-align: center;
}

.process-head .section-label {
  justify-content: center;
}

.process-head .section-title,
.process-head .section-lead {
  margin-right: auto;
  margin-left: auto;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 60px;
}

.process-grid::before {
  position: absolute;
  top: 34px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(139, 31, 40, 0.28);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  text-align: center;
}

.process-number {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(139, 31, 40, 0.32);
  border-radius: 50%;
  color: var(--wine);
  background: var(--paper);
  font-size: 17px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  margin: 22px 0 0;
  font-size: 18px;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  color: #fff;
  background: var(--wine);
}

.contact-copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 74px 78px 74px max(48px, calc((100vw - var(--container)) / 2));
}

.contact-inner {
  width: 100%;
  max-width: 640px;
}

.contact-label {
  margin: 0 0 20px;
  color: #edc77b;
  font-size: 14px;
  font-weight: 800;
}

.contact-copy h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.contact-phone {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

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

.contact-actions .button-primary {
  color: var(--wine-dark);
  background: #fff;
}

.contact-actions .button-primary:hover {
  background: #f3e8d4;
}

.contact-media {
  position: relative;
  overflow: hidden;
  background: #e8e2d8;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-media::after {
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 70px 0 90px rgba(95, 17, 24, 0.2);
  content: "";
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--wine-dark);
  font-size: 12px;
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: #fff;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 58px;
  }

  .opportunity-grid,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .opportunity-grid {
    gap: 52px;
  }

  .product-collage {
    min-height: 560px;
  }

  .brand-story {
    gap: 52px;
  }

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

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

  .contact-copy {
    padding-right: 48px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

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

  .brand-logo {
    height: 52px;
  }

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 38px rgba(34, 33, 30, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .header-order {
    margin-top: 12px;
  }

  .hero {
    min-height: 600px;
    height: calc(100dvh - 110px);
    max-height: 700px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: 50px;
  }

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

  .proof-item {
    min-height: 102px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

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

  .price-note {
    flex-basis: auto;
  }

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

  .shoe-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    aspect-ratio: 16 / 9;
  }

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

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

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

  .model-item,
  .model-item + .model-item {
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .process-grid::before {
    display: none;
  }

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

  .contact-copy {
    min-height: 470px;
    justify-content: flex-start;
    padding: 72px 32px;
  }

  .contact-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 58px;
  }

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

  .section {
    padding: 76px 0 82px;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.22;
  }

  .section-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.82;
  }

  .hero {
    min-height: 610px;
    height: calc(100dvh - 96px);
    max-height: 690px;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(25, 17, 12, 0.8) 0%, rgba(25, 17, 12, 0.34) 100%),
      linear-gradient(0deg, rgba(25, 17, 12, 0.72) 0%, rgba(25, 17, 12, 0.06) 70%);
  }

  .hero-content {
    padding: 50px 0 44px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-lead {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .proof-item {
    grid-template-columns: 76px 1fr;
    padding: 20px;
  }

  .proof-mark {
    font-size: 31px;
  }

  .proof-item strong {
    font-size: 18px;
  }

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

  .opportunity-point {
    grid-template-columns: 72px 1fr;
  }

  .product-collage {
    min-height: 660px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 0.65fr;
    gap: 8px;
  }

  .collage-photo:first-child {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .brand-quote {
    padding-left: 18px;
    font-size: 20px;
  }

  .brand-facts {
    grid-template-columns: 1fr;
  }

  .brand-fact {
    min-height: 160px;
    padding: 24px;
  }

  .gallery-section {
    padding-bottom: 76px;
  }

  .gallery-item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .series-heading {
    gap: 28px;
  }

  .series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 38px;
  }

  .series-photo {
    height: 172px;
  }

  .series-copy {
    min-height: 164px;
    padding: 15px;
  }

  .series-copy h3 {
    font-size: 16px;
  }

  .series-copy p {
    font-size: 12px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .support-item {
    min-height: 170px;
    padding: 24px;
  }

  .support-item h3 {
    margin-top: 18px;
  }

  .store-models {
    padding: 60px 0 64px;
  }

  .cooperation-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .condition-item,
  .right-item {
    min-height: 0;
  }

  .model-heading h3 {
    font-size: 25px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 46px;
  }

  .process-step {
    padding: 0 18px;
  }

  .process-number {
    width: 58px;
    height: 58px;
  }

  .contact-copy {
    min-height: 500px;
    padding: 64px 20px;
  }

  .contact-copy h2 {
    font-size: 36px;
  }

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

  .contact-actions {
    display: grid;
  }

  .contact-media {
    min-height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    height: 58px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    background: var(--wine-dark);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-actions a + a {
    color: var(--wine-dark);
    background: #f1ce89;
  }
}

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

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