:root {
  --white: #ffffff;
  --black: #080808;
  --navy: #0d275f;
  --gold: #c98943;
  --line: rgba(8, 8, 8, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --anniversary-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: #f2f2f2;
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-header.is-scrolled {
  padding-bottom: calc(var(--anniversary-height) + 96px);
}

.site-header.is-scrolled .anniversary-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  animation: banner-pin 220ms ease both;
}

.site-header.is-scrolled .nav-bar {
  position: fixed;
  top: var(--anniversary-height);
  left: 0;
  right: 0;
  z-index: 40;
  box-shadow: 0 12px 34px rgba(7, 22, 56, 0.12);
  animation: nav-pin 220ms ease both;
}

.anniversary-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: #102b63;
}

.anniversary-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-bar {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 0 clamp(32px, 5.6vw, 112px);
  background: var(--white);
}

@keyframes nav-pin {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes banner-pin {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: var(--navy);
}

.brand img {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 27px);
  color: rgb(18, 18, 18);
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.main-nav > a::after,
.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

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

.nav-group {
  position: relative;
}

.chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  display: grid;
  min-width: 240px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 45px rgba(5, 15, 35, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown a {
  padding: 12px 14px;
  color: rgba(2, 8, 23, 0.74);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease;
}

.dropdown a:hover {
  color: #020817;
  background: rgba(13, 39, 95, 0.06);
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgb(18, 18, 18);
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language button {
  display: inline-flex;
  min-width: 20px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.location-menu {
  position: relative;
}

.location-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #101010;
  color: var(--white);
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.pin {
  position: relative;
  width: 15px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.location-popover {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 12px;
  width: 194px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.location-popover::before {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  content: "";
}

.location-popover a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #101010;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  font-size: 16px;
  line-height: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-menu.is-open .location-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: #020817;
}

.hero-slider {
  position: relative;
  height: 800px;
  overflow: hidden;
  border-bottom-left-radius: 72px;
  border-bottom-right-radius: 72px;
  background:
    linear-gradient(90deg, rgba(6, 9, 13, 0.72), rgba(6, 9, 13, 0.5) 38%, rgba(6, 9, 13, 0.62)),
    url("../../assets/images/orig.jpg") center / cover,
    #151515;
}

.hero-slide {
  position: absolute;
  inset: 0;
  color: var(--white);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5200ms linear;
}

.hero-slide::before,
.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-slide::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-slide::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 9, 13, 0.72), rgba(6, 9, 13, 0.5) 38%, rgba(6, 9, 13, 0.62)),
    linear-gradient(180deg, rgba(6, 9, 13, 0.25), rgba(6, 9, 13, 0.56));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-typewriter {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(34px, 6vw, 116px);
  margin: 0;
  color: var(--white);
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
  font-size: clamp(46px, 4vw, 70px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.hero-typewriter::after {
  position: absolute;
  top: -3px;
  right: -16px;
  width: 2px;
  height: 1.05em;
  background: rgba(255, 255, 255, 0.92);
  content: "";
  animation: caret-blink 760ms steps(1) infinite;
}

.hero-slide--dye::before {
  background-image: url("../../assets/images/orig.jpg");
}

.hero-slide--knit::before {
  background-image: url("../../assets/images/alt-services.webp");
}

.hero-slide--sew::before {
  background-image: url("../../assets/images/alt-services.webp");
}

.hero-slide--print::before {
  background-image: url("../../assets/images/orig.jpg");
}

@keyframes caret-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

.about-section {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  align-items: center;
  margin-top: 0;
  padding: clamp(120px, 10vw, 164px) clamp(28px, 5.6vw, 108px) clamp(92px, 8vw, 126px);
  color: #050505;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.6), transparent 30%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.018) 0 1px, transparent 1px 4px),
    #f1f1f1;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(360px, 1.15fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: start;
  max-width: 1680px;
  margin: 0 auto;
}

.about-inner h2 {
  margin: 0;
  color: rgb(18, 18, 18);
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 0;
}

.about-content {
  max-width: 820px;
}

.about-content p {
  margin: 0;
  font-size: clamp(30px, 2.25vw, 43px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0;
}

.primary-button {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 0 38px;
  border-radius: 999px;
  background: #090909;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  background: #202020;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

.production-section {
  position: sticky;
  top: min(0px, calc(100vh - 1760px));
  z-index: 2;
  min-height: 100vh;
  margin-top: -4vh;
  padding: clamp(72px, 7vw, 112px) clamp(34px, 5.2vw, 96px) clamp(220px, 18vw, 340px);
  background: var(--white);
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.08);
}

.production-inner {
  max-width: 1680px;
  margin: 0 auto;
}

.production-inner > h2 {
  margin: 0 0 clamp(36px, 4vw, 68px);
  color: rgb(18, 18, 18);
  font-family: "Noto Sans", "Noto Sans Fallback", sans-serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 0;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 66px) clamp(28px, 3vw, 54px);
}

.production-card {
  min-width: 0;
}

.production-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: 0 0 24px 24px;
  background: #d9d9d9;
}

.production-card h3 {
  margin: 22px 0 10px;
  color: #171717;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.production-card a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 999px;
  color: rgba(8, 8, 8, 0.62);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.production-card a:hover {
  color: #080808;
  border-color: rgba(8, 8, 8, 0.36);
  transform: translateY(-1px);
}

.export-section {
  position: sticky;
  top: min(0px, calc(100vh - 1760px));
  z-index: 3;
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
  margin-top: -96px;
  padding: 126px clamp(34px, 5.2vw, 96px) clamp(220px, 18vw, 340px);
  background: #e5e5e5;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.08);
}

.export-inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.export-text {
  max-width: 760px;
  margin: 0;
  color: #111114;
  font-size: 60px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
}

.export-map {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  margin-top: 88px;
}

.export-globe {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
}

.export-globe::before {
  position: absolute;
  inset: -5%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0) 66%);
  content: "";
  filter: blur(12px);
}

.export-globe-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.export-globe .sphere {
  fill: #ffffff;
  stroke: rgba(120, 124, 132, 0.38);
  stroke-width: 1.2;
}

.export-globe .country {
  fill: #d9d9d9;
  stroke: #ffffff;
  stroke-width: 0.65;
  transition: fill 220ms ease, opacity 220ms ease;
}

.export-globe .country.is-active {
  stroke: rgba(0, 0, 0, 0.48);
  stroke-width: 1.2;
}

.export-globe .borders {
  fill: none;
  stroke: rgba(125, 125, 125, 0.56);
  stroke-width: 0.55;
  pointer-events: none;
}

.export-globe-label {
  position: absolute;
  z-index: 2;
  left: 58%;
  top: 52%;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(17, 17, 20, 0.52);
  color: rgba(17, 17, 20, 0.72);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.export-countries {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 24px 38px;
}

.export-country {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #202126;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.export-country::before {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--country-color);
  content: "";
}

.export-country.is-active {
  font-weight: 700;
}

.partner-section {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  min-height: 100vh;
  align-items: center;
  margin-top: -96px;
  padding: 126px clamp(34px, 5.2vw, 96px) clamp(220px, 18vw, 340px);
  background: #ffffff;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.08);
}

.partner-inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.partner-text {
  max-width: 820px;
  margin: 0;
  color: #111114;
  font-size: 60px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
}

.partner-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 86px;
}

.partner-card {
  display: grid;
  min-height: 304px;
  align-content: space-between;
  padding: 42px 48px 40px;
  border-radius: 14px;
  background: #c9c9c9;
  color: #050506;
}

.partner-card-number {
  color: #fb153c;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.partner-card-icon {
  color: #fb153c;
  width: 68px;
  height: 68px;
  margin-top: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.partner-card h3 {
  margin: 24px 0 0;
  color: #fb153c;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.partner-button {
  display: flex;
  width: fit-content;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  margin: 96px auto 0;
  padding: 0 34px;
  border-radius: 999px;
  background: #171717;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: transform 180ms ease, background 180ms ease;
}

.partner-button:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.video-section {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 100vh;
  margin-top: -96px;
  background: #111;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  overflow: hidden;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.1);
}

.video-frame {
  position: relative;
  min-height: calc(100vh + 160px);
  overflow: hidden;
}

.video-frame::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 8, 0.34);
  content: "";
  pointer-events: none;
}

.video-media {
  width: 100%;
  height: calc(100vh + 160px);
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.video-play:hover {
  background: rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid currentColor;
}

.products-section {
  position: sticky;
  top: 0;
  z-index: 6;
  min-height: 100vh;
  margin-top: -96px;
  padding: 84px clamp(34px, 5.2vw, 96px) clamp(220px, 18vw, 340px);
  background: #e5e5e5;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.1);
}

.products-inner {
  max-width: 1290px;
  margin: 0 auto;
}

.products-title {
  margin: 0 0 72px;
  color: #071019;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(408px, 1fr));
  gap: 20px;
  max-width: 100%;
}

.product-card {
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
}

.product-card img {
  display: block;
  width: 100%;
  height: 544px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 228, 232, 0.86)),
    #f4f4f4;
}

.product-card h3 {
  margin: 0;
  padding: 14px 13px;
  color: #202020;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.products-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.products-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #080808;
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.products-button:hover {
  background: #222222;
  transform: translateY(-2px);
}

.fabric-section {
  position: sticky;
  top: 0;
  z-index: 7;
  min-height: 100vh;
  margin-top: -96px;
  padding: 84px clamp(34px, 5.2vw, 96px) 92px;
  background: #ffffff;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.1);
}

.fabric-inner {
  max-width: 1290px;
  margin: 0 auto;
}

.fabric-title {
  margin: 0 0 58px;
  color: #071019;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 38px;
}

.fabric-tile {
  display: grid;
  grid-template-columns: minmax(104px, 40%) 1fr;
  min-height: 90px;
  overflow: hidden;
  border-radius: 10px;
  background: #e5e5e5;
}

.fabric-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(222, 224, 224, 0.82)),
    #eeeeee;
}

.fabric-tile h3 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 22px;
  color: #202020;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.fabric-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}

.fabric-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #080808;
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.fabric-button:hover {
  background: #222222;
  transform: translateY(-2px);
}

.contacts-section {
  position: sticky;
  top: 0;
  z-index: 9;
  min-height: 100vh;
  margin-top: -96px;
  padding: 74px clamp(34px, 5.2vw, 96px) 78px;
  background: #ffffff;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.08);
}

.contacts-inner {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.contacts-info h2 {
  max-width: 430px;
  margin: 0 0 24px;
  color: #121212;
  font-size: clamp(48px, 4.7vw, 68px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contacts-lead {
  max-width: 430px;
  margin: 0 0 26px;
  color: #060606;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 800;
}

.contacts-list {
  display: grid;
  gap: 22px;
  max-width: 410px;
  color: #162033;
  font-size: 14px;
  line-height: 1.25;
}

.contacts-list h3,
.contacts-socials h3 {
  margin: 0 0 8px;
  color: #050505;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.contacts-list p {
  margin: 6px 0 0;
}

.contacts-list a {
  color: #162033;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-socials {
  margin-top: 22px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.contacts-form {
  display: grid;
  gap: 28px;
  max-width: 430px;
  padding-top: 4px;
}

.contacts-form p {
  max-width: 430px;
  margin: 0 0 38px;
  color: #162033;
  font-size: 15px;
  line-height: 1.28;
}

.contacts-form label {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.contacts-form span,
.contacts-market legend {
  color: #162033;
  font-size: 13px;
  line-height: 1.1;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c9ced8;
  border-radius: 0;
  background: transparent;
  color: #101010;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease;
}

.contacts-form input {
  height: 38px;
}

.contacts-form textarea {
  min-height: 64px;
  resize: vertical;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  border-color: #111111;
}

.contacts-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contacts-market {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: -2px 0 0;
  padding: 0;
  border: 0;
}

.contacts-market legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contacts-market label {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #c9ced8;
  cursor: pointer;
}

.contacts-market input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.contacts-market span {
  color: #050505;
  font-weight: 800;
}

.contacts-market label:has(input:checked) {
  border-color: #111111;
}

.contacts-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: -4px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: #080808;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.contacts-submit:hover {
  background: #222222;
  transform: translateY(-2px);
}

.final-cta-section {
  position: sticky;
  top: 0;
  z-index: 8;
  display: grid;
  min-height: 520px;
  place-items: center;
  margin-top: -96px;
  padding: 82px 24px 88px;
  background: #e5e5e5;
  text-align: center;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.08);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
}

.final-cta-inner img {
  width: 158px;
  height: auto;
  margin-bottom: 32px;
}

.final-cta-inner h2 {
  max-width: 720px;
  margin: 0;
  color: #111111;
  font-size: clamp(58px, 5.2vw, 86px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.final-cta-inner a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 0 34px;
  border-radius: 999px;
  background: #080808;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.final-cta-inner a:hover {
  background: #222222;
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding: 86px clamp(28px, 5.2vw, 96px) 28px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  background: #101010;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: clamp(48px, 8vw, 120px);
  max-width: 1290px;
  margin: 0 auto;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1290px;
  margin: 72px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

@media (max-width: 1280px) {
  .nav-bar {
    grid-template-columns: 210px 1fr auto;
    padding-inline: 34px;
  }

  .main-nav {
    gap: 15px;
    font-size: 13px;
  }

  .export-text {
    font-size: 52px;
  }

  .export-map {
    grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 0.8fr);
    gap: 48px;
  }

  .export-countries {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
  }

  .partner-text {
    font-size: 52px;
  }

  .partner-card {
    padding-inline: 32px;
  }

  .partner-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .anniversary-banner {
    min-height: 0;
  }

  .nav-bar {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    padding-inline: 18px;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    align-items: stretch;
    justify-content: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(7, 22, 56, 0.12);
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-group {
    display: grid;
    gap: 10px;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .location-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .export-section {
    min-height: 480px;
    padding-top: 92px;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }

  .export-text {
    max-width: 680px;
    font-size: 46px;
  }

  .export-map {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 68px;
  }

  .export-countries {
    width: 100%;
    max-width: 620px;
  }

  .partner-section {
    min-height: 100vh;
    padding-top: 92px;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }

  .partner-text {
    max-width: 760px;
    font-size: 46px;
  }

  .partner-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 58px;
  }

  .partner-button {
    margin-top: 58px;
  }

  .video-section {
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 0.75 / 1;
  }

  .fabric-grid {
    gap: 22px;
  }

  .contacts-inner {
    grid-template-columns: minmax(280px, 0.82fr) minmax(460px, 1fr);
    gap: 58px;
    max-width: none;
  }

  .contacts-info h2 {
    font-size: 54px;
  }
}

@media (max-width: 900px) {
  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contacts-info h2,
  .contacts-lead,
  .contacts-list {
    max-width: 620px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .anniversary-banner {
    min-height: 0;
  }

  .nav-bar {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
  }

  .brand img {
    height: 56px;
  }

  .language {
    display: none;
  }

  .hero-slider {
    min-height: 420px;
    height: 420px;
    border-bottom-left-radius: 38px;
    border-bottom-right-radius: 38px;
  }

  .hero-typewriter {
    top: 50%;
    left: 28px;
  }

  .about-section {
    position: relative;
    margin-top: 0;
    padding: 72px 24px 76px;
    min-height: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-content p {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.08;
  }

  .about-inner h2,
  .production-inner > h2 {
    font-size: 42px;
    line-height: 42px;
  }

  .primary-button {
    min-height: 58px;
    margin-top: 34px;
    padding-inline: 28px;
  }

  .production-section {
    position: relative;
    margin-top: 0;
    padding: 54px 18px 68px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .production-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .production-card img {
    border-radius: 0 0 18px 18px;
  }

  .production-card h3 {
    margin-top: 18px;
  }

  .export-section {
    position: relative;
    min-height: auto;
    margin-top: 0;
    padding: 62px 24px 78px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .export-text {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.18;
  }

  .export-map {
    gap: 34px;
    margin-top: 44px;
  }

  .export-countries {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
  }

  .export-country {
    font-size: 15px;
  }

  .export-country::before {
    width: 15px;
    height: 15px;
  }

  .export-globe-label {
    font-size: 18px;
  }

  .partner-section {
    position: relative;
    min-height: auto;
    margin-top: 0;
    padding: 62px 24px 78px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .partner-text {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.18;
  }

  .partner-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .partner-card {
    min-height: 240px;
    padding: 30px 28px;
  }

  .partner-card-icon {
    width: 58px;
    height: 58px;
    margin-top: 34px;
  }

  .partner-card h3 {
    font-size: 22px;
  }

  .partner-button {
    min-height: 56px;
    margin-top: 42px;
    padding-inline: 30px;
  }

  .video-section {
    position: relative;
    min-height: 420px;
    margin-top: 0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .video-frame {
    min-height: 420px;
  }

  .video-media {
    height: 420px;
  }

  .video-play {
    width: 72px;
    height: 72px;
  }

  .video-play span {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 20px;
  }

  .products-section {
    position: relative;
    min-height: auto;
    margin-top: 0;
    padding: 62px 24px 78px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .products-title {
    margin-bottom: 34px;
    font-size: 34px;
  }

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

  .product-card img {
    aspect-ratio: 0.86 / 1;
  }

  .products-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .products-button {
    width: fit-content;
  }

  .fabric-section {
    position: relative;
    min-height: auto;
    margin-top: 0;
    padding: 62px 24px 78px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .fabric-title {
    margin-bottom: 34px;
    font-size: 34px;
  }

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

  .fabric-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .fabric-button {
    width: fit-content;
  }

  .contacts-section {
    position: relative;
    min-height: auto;
    margin-top: 0;
    padding: 62px 24px 78px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

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

  .contacts-info h2 {
    font-size: 44px;
    line-height: 1;
  }

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

  .contacts-form {
    gap: 24px;
  }

  .contacts-form p {
    margin-bottom: 10px;
  }

  .contacts-form-row,
  .contacts-market {
    grid-template-columns: 1fr;
  }

  .social-links a {
    width: 48px;
    height: 48px;
  }

  .final-cta-section {
    position: relative;
    min-height: 420px;
    margin-top: 0;
    padding: 68px 24px 78px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .final-cta-inner img {
    width: 132px;
    margin-bottom: 28px;
  }

  .final-cta-inner h2 {
    font-size: 52px;
  }

  .site-footer {
    margin-top: 0;
    padding: 58px 24px 24px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 128px;
  }

  .footer-column h2 {
    font-size: 22px;
  }

  .footer-bottom {
    margin-top: 44px;
    text-align: left;
  }
}
