@font-face {
  font-family: "Bebas Neue";
  src: url("./public/fonts/Peyda-Bold.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./public/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("./public/fonts/IRANSansWeb.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --near-black: #070707;
  --panel: #1d1d1d;
  --red: #d81921;
  --red-dark: #780d12;
  --muted: #8e8e8e;
  --white: #fff;
  --max: 1728px;
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-persian: "Vazirmatn", Tahoma, Arial, sans-serif;
  --body-bg: var(--black);
  --body-text: var(--white);
  --surface-light: #fff;
  --surface-soft: #ededed;
  --surface-medium: #cfcfcf;
  --header-bg: rgba(0, 0, 0, 0.78);
  --footer-bg: #1d1d1d;
  --footer-text: #fff;
  --sale-bg: #b40000;
  --input-bg: #e7e7e7;
  --header-max: 1648px;
  --header-height: 104px;
  --header-top: 42px;
  --page-side-gap: 96px;
  --section-pad-top: 209px;
  --section-pad-bottom: 128px;
  --card-radius: 22px;
  --font-size-nav: 16px;
  --font-size-button: 31px;
  --font-size-hero-title: 180px;
  --font-size-section-title: 130px;
  --font-size-page-title: 32px;
  --font-size-product-title: 32px;
  --font-size-body: 15px;
  --font-size-body-large: 24px;
  --font-size-card-title: 32px;
  --font-size-detail-heading: 20px;
  --font-size-sale-title: 190px;
  --header-blur: 5px;
  --submenu-blur: 7px;
  --card-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --form-shadow: 0 36px 70px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--body-bg);
  color: var(--body-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: var(--header-top);
  left: 50%;
  width: min(calc(100% - 80px), var(--header-max));
  height: var(--header-height);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 18px 32px;
  background: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  color: var(--white);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 66px;
  height: 66px;
  border: 7px solid var(--red);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.86;
}

.brand-text strong {
  font-size: 50px;
  letter-spacing: -1px;
}

.brand-text small {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: var(--font-size-nav);
  font-family: var(--font-body);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

@media (min-width: 1181px) {
  .nav-item.has-submenu::after {
    content: "";
    position: absolute;
    z-index: 59;
    top: 100%;
    left: -24px;
    right: -24px;
    height: 42px;
  }
}

.products-menu {
  position: absolute;
  top: calc(100% + 35px);
  left: 50%;
  z-index: 60;
  width: 430px;
  min-height: 610px;
  padding: 54px 60px;
  transform: translate(-50%, 12px);
  background: rgba(0, 0, 0, 0.79);
  backdrop-filter: blur(var(--submenu-blur));
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item.has-submenu:hover .products-menu,
.nav-item.has-submenu:focus-within .products-menu,
.nav-item.has-submenu.is-open .products-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.products-menu strong {
  display: block;
  margin-bottom: 32px;
  color: #b40000;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.905;
  text-transform: uppercase;
}

.products-menu details {
  margin: 0 0 27px;
}

.products-menu summary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 0.905;
  list-style: none;
  text-transform: uppercase;
}

.products-menu summary::-webkit-details-marker {
  display: none;
}

.products-menu summary b::before {
  content: "+";
  font: inherit;
}

.products-menu details[open] summary b::before {
  content: "-";
}

.submenu-series {
  width: 150px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}

.submenu-series a {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 0.905;
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 6px;
  font-size: 16px;
  font-family: var(--font-body);
  text-transform: uppercase;
  white-space: nowrap;
}

.issue-link {
  background: var(--red);
  color: #000;
  padding: 12px 32px;
}

.signin::before {
  content: "→";
  margin-right: 8px;
  font-size: 24px;
  vertical-align: -2px;
}

.language {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: #b40000;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.language-picker {
  position: relative;
  flex: 0 0 auto;
}

.language-picker select {
  min-width: 62px;
  border: 0;
  border-bottom: 2px solid #b40000;
  border-radius: 0;
  padding: 4px 18px 4px 2px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.language-picker select:disabled {
  cursor: wait;
  opacity: 0.65;
}

.language-picker option {
  background: var(--near-black);
  color: var(--white);
}

[dir="rtl"] body {
  font-family: var(--font-persian);
}

[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: var(--font-persian);
}

[dir="rtl"] .nav-links,
[dir="rtl"] .header-actions,
[dir="rtl"] .button,
[dir="rtl"] .stats p,
[dir="rtl"] .match-copy p,
[dir="rtl"] .country-label,
[dir="rtl"] .product-chip,
[dir="rtl"] .site-footer nav,
[dir="rtl"] .audience-cards span,
[dir="rtl"] .representative-result,
[dir="rtl"] .search-box select {
  font-family: var(--font-persian);
}

[dir="rtl"] .signin::before {
  content: "←";
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .representative-results,
[dir="rtl"] .new-products-copy p,
[dir="rtl"] .match-copy,
[dir="rtl"] .footer-about {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .site-header {
  direction: rtl;
}

[dir="rtl"] .brand,
[dir="rtl"] .footer-brand {
  direction: ltr;
}

[dir="rtl"] .nav-links {
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 1181px) {
  [dir="rtl"] .nav-links {
    margin-right: clamp(16px, 2vw, 32px);
  }
}

[dir="rtl"] .header-actions {
  margin-left: 0;
  margin-right: 6px;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .projects-intro,
[dir="rtl"] .new-products-copy,
[dir="rtl"] .representative {
  direction: rtl;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 1000px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -59px auto auto 50%;
  width: 100%;
  max-width: none;
  height: 900px;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1210px, 70.02vw);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  z-index: -1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  width: min(1164px, 56.36vw);
  height: 520px;
  margin-top: 170px;
  padding-top: 0;
}

.hero h1 {
  margin: 0;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(108px, 11.58vw, 200px);
  line-height: 0.905;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 span:first-child {
  position: absolute;
      left: -220px;
    top: -140px;
}

.hero h1 span:last-child {
  position: absolute;
      right: -160px;
    top: 130px;
}

.hero p {
  position: absolute;
  left: 50%;
  top: 330px;

  margin: 0;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 200;
  line-height: 0.905;
  white-space: nowrap;
}

[dir="rtl"] .hero p {
  font-family: var(--font-persian);
}

.hero .button {
  position: absolute;
  left: 50%;
      top: 380px;
    width: 340px;
    min-width: 230px;
  min-width: 230px;
  transform: translateX(-50%);
}

.button {
  display: inline-flex;
  min-width: 220px;
  height: 45px;
  align-items: center;
  justify-content: center;
  padding: 4px 36px;
  border: 0;
  background: var(--white);
  color: #000;
  font-family: var(--font-body);
  font-size: 30.05px;
  font-weight: 200;
  line-height: 0.9;
  text-transform: uppercase;
}

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

.stats {
  width: min(1145px, calc(100% - 48px));
  margin: -30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats article {
  padding: 0 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  z-index: 2;
}

.stats article:first-child {
  padding-left: 0;
}

.stats article:last-child {
  border-right: 0;
  padding-right: 0;
}

.stats strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 51.768px;
  font-weight: 400;
}

.stats p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.28;
  color: #f1f1f1;
}

.products {
  margin-top: 170px;
  padding: 0;
  background: linear-gradient(180deg, #000 0 45%, #f2f2f2 45% 100%);
}

.section-shell {
  width: min(1728px, 100%);
  margin: 0 auto;
  position: relative;
}

.products h2,
.projects h2,
.new-products h2,
.audience h2 {
  margin: 0;
  font-size: clamp(68px, 6.7vw, 116px);
  line-height: 1;
  font-weight: 400;
  text-transform: lowercase;
}

.products h2 {
  position: absolute;
  z-index: 4;
  top: 43px;
  left: 665px;
  width: 399px;
  padding: 0;
  text-align: left;
      color: var(--black);
}

.product-see-all {
  position: absolute;
  z-index: 5;
  left: 713px;
  top: 171px;
  width: 310px;

        background: var(--red);
    color: var(--white);
}

.product-stage {
  position: relative;
  height: 1549px;
  overflow: hidden;
  background: transparent;
}

.product-sky {
  position: absolute;
  z-index: 0;
  left: 85px;
  top: 0;
  width: 1558px;
  height: 1155px;
  border-radius: 44px;
  object-fit: cover;
}

.product-building {
  position: absolute;
  z-index: 2;
  left: 130px;
  top: 133px;
  width: 1398px;
  height: 932px;
  object-fit: contain;

}

.product-panel {
  position: absolute;
  z-index: 4;
  left: 85px;
  top: 913px;
  width: 1558px;
  height: 636px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(235, 235, 235, 0.95), rgba(126, 126, 126, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.product-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 59px;
  border: 0;
  padding: 12px 24px 12px 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #000;
  font-family: var(--font-body);
  font-size: 24px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.product-chip::before {
  content: "";
  width: 23px;
  height: 23px;
  background: var(--red);
  flex: 0 0 auto;
}

.product-chip:hover,
.product-chip.is-active {
  background: #fff;
  transform: translateY(-3px);
}

.product-chip.is-active::before {
  background: #000;
  box-shadow: inset 0 0 0 5px var(--red);
}

.chip-folding {
  left: 345px;
  top: 489px;
}

.chip-hinged {
  left: 581px;
  top: 439px;
}

.chip-sliding {
  left: 581px;
  top: 695px;
}

.chip-curtain {
  left: 1010px;
  top: 482px;
}

.chip-accessories {
  left: 1193px;
  top: 759px;
}

.product-filter {
  position: absolute;
  z-index: 8;
  left: 316px;
  top: 1014px;
  width: 1079px;
  margin: 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: start;
}

.product-filter strong {
  color: #000;
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.audience h2 span {
  display: block;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 38px;
  font-family: var(--font-body);
  font-size: 19px;
  color: #fff;
}

.product-tabs button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
  opacity: 0.88;
  text-transform: uppercase;
}

.product-tabs button:hover,
.product-tabs button.is-active {
  color: #fff;
  text-shadow: 0 0 1px #fff;
  opacity: 1;
}

.product-results {
  position: absolute;
  z-index: 8;
  left: 210px;
  top: 1164px;
  width: 1308px;
  display: block;
}

.product-results h3 {
  margin: 0 0 52px;
  color: #c60000;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-result-grid {
  width: 1096px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
}

.product-results article {
  min-height: 230px;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.product-results img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.world {
  position: relative;
  min-height: 1007px;
  display: block;
  overflow: hidden;
  background: #fff;
  color: #000;
}

.world-stage {
  position: relative;
  width: min(1920px, 100%);
  height: 1007px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.world-visual {
  position: absolute;
  left: 206px;
  top: 70px;
  width: 1026px;
  height: 989px;
}

.world-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
}

.world-pin {
  position: absolute;
  color: #8e8e8e;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.905;
  text-transform: uppercase;
}

.world-pin::before {
  content: "";
  position: absolute;
      left: -9px;
    top: 0px;
    width: 3px;
    height: 310px;
  background: #8e8e8e;
}

.pin-tabriz {
  left: 45%;
  top: 0px;
}

.country-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 43px;
  padding: 0 12px;
  background: #b40000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.905;
  white-space: nowrap;
}

.label-canada {
  left: 133px;
  top: 36px;
}

.label-germany {
  left: 102px;
  top: 201px;
}

.label-austria {
  left: 78px;
  top: 293px;
}

.label-spain {
  left: 50px;
  top: 349px;
}

.label-portugal {
  left: 0;
  top: 406px;
}

.label-georgia {
  left: 315px;
  top: 198px;
}

.label-armenia {
  left: 337px;
  top: 253px;
}

.label-iraq {
  left: 312px;
  top: 361px;
}

.label-turkmenistan {
  left: 588px;
  top: 252px;
}

.label-afghanistan {
  left: 648px;
  top: 346px;
}

.world-text {
  position: absolute;
  left: 1040px;
  top: 472px;
  display: grid;
  width: 820px;
  color: #b40000;
  font-family: var(--font-display);
  font-size: 101px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.world-text span:first-child,
.world-text span:last-child {
  font-size: 101px;
}

.projects {
  position: relative;
  min-height: 1900px;
  padding: 140px 0 120px;
  background: #fff;
  color: #000;
}

.projects-intro {
  position: relative;
  z-index: 2;
  /* width: min(540px, calc(100% - 48px)); */
  margin-left: max(24px, calc((100vw - 1140px) / 2));
  margin-right: max(24px, calc((100vw - 1140px) / 2));
}

.projects-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(72px, 6vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: lowercase;
}

.projects-intro p,
.new-products-copy p,
.match-copy p {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.22;
  text-align: justify;
}

.projects-intro p {
  width: min(100%, 555px);
  margin: 28px 0 0;
  font-size: 20px;
  font-family: var(--font-persian);
  line-height: 1.35;
}

.project-grid {
  width: min(1120px, calc(100% - 48px));
  margin: -180px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 540px));
  gap: 32px 36px;
  align-items: start;
}

.project-card {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #d8d8d8;
  isolation: isolate;
  cursor: pointer;
}

.project-card-offset {
  transform: translateY(250px);
}

.project-card > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transform-origin: center;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.62));
  opacity: 0.78;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.project-card div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
  transform: translateY(12px);
  transition: transform 300ms ease;
}

.project-card strong,
.project-card span {
  display: block;
}

.project-card strong {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.project-card span {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.project-card:hover img {
  transform: scale(1);
  filter: saturate(1.06) contrast(1.04);
}

.project-card:hover::after {
  opacity: 0.92;
}

.project-card:hover div {
  transform: translateY(0);
}

.project-button {
  position: absolute;
  left: calc(45%);
  bottom: 120px;
  background: var(--red);
  color: #fff;
}

.match {
  padding: 100px 0 70px;
  background: #fff;
}

.match-card {
  position: relative;
  width: min(1558px, calc(100% - 48px));
  height: 579px;
  margin: 0 auto;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 0%, #d81921 0%, #a51319 48%, #720d11 100%);
  overflow: visible;
  isolation: isolate;
}

.match-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 60%;
  border-radius: 44px 0 0 44px;
  background: url("public/assets/match-pattern.png") left center / 100% auto no-repeat;
  opacity: 1;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  pointer-events: none;
}

.match-card img {
  position: absolute;
  z-index: 2;
  left: -25.18%;
  top: 0.58%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.match-copy {
  position: absolute;
  z-index: 3;
  left: 58.09%;
  top: 21.07%;
  width: 36.07%;
  padding: 0;
  color: #fff;
  text-align: justify;
}

.match-copy .button {
  display: flex;
  width: 230px;
  min-width: 0;
  height: 45px;
  margin: 33px auto 0;
  font-size: clamp(17px, 1.4vw, 17px);
  line-height: 1;
  white-space: nowrap;
  text-transform: lowercase;
}

.hiring {
  position: relative;
  height: 850px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.hiring img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hiring::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.hiring div {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.hiring h2 {
  margin: 0 0 13px;
  color: #000;
  font-family: var(--font-display);
  font-size: clamp(58px, 4.45vw, 60px);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.hiring-button {
  width: 275px;
  min-width: 0;
  height: 45px;
  padding: 0 24px;
  background: #e3131b;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
  text-transform: none;
}

.audience {
  position: relative;
  height: 1200px;
  min-height: 1200px;
  padding: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.audience::before,
.audience::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 466px;
  height: 910px;
  border: 0 solid rgba(255, 255, 255, 0.18);
  border-bottom-width: 14px;
  border-left-width: 14px;
  opacity: 0.28;
  transform: skewX(-11deg);
  pointer-events: none;
}

.audience::before {
  left: 24px;
  top: -318px;
}

.audience::after {
  right: 26px;
  top: -132px;
}

.audience h2 {
  position: absolute;
  z-index: 2;
  left: 90px;
  top: 505px;
  width: 610px;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 116px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.audience-cards {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.audience-cards article {
  position: absolute;
  width: 248px;
  height: 476px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #b40000;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.55);
}

.audience-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(244, 0, 0, 0.82), rgba(84, 0, 0, 0.82));
  mix-blend-mode: multiply;
}

.audience-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.55));
}

.audience-cards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(1) saturate(7) hue-rotate(318deg) brightness(0.76) contrast(1.25);
  opacity: 0.86;
}

.audience-card-customer {
  left: 722px;
  top: 455px;
}

.audience-card-manufacturer {
  left: 991px;
  top: 555px;
}

.audience-card-representative {
  left: 1260px;
  top: 397px;
}

.audience-cards span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
  text-transform: uppercase;
}

.new-products {
  position: relative;
  height: 720px;
  min-height: 720px;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.new-products-copy {
  position: absolute;
  left: 98px;
  top: 96px;
  width: 573px;
  z-index: 2;
}

.new-products-copy h2 {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.new-products-copy p {
  max-width: 573px;
  margin: 27px 0 0;
  color: var(--white);
  font-size:17px;
  line-height: 1.22;
  text-align: justify;
}

.new-products-button {
  width: 290px;
  min-width: 0;
  height: 45px;
  margin: 76px 0 0 138px;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  line-height: 1;
  text-transform: none;
}

.service-news-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.service-news-card {
  display: grid;
  gap: 7px;
  color: #fff;
}

.service-news-card time,
.service-news-card p {
  font-family: var(--font-body);
}

.service-news-card time {
  color: #bfbfbf;
  font-size: 13px;
}

.service-news-card strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-news-card p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.gallery-strip {
  position: absolute;
  left: 707px;
  top: 68px;
  display: flex;
  gap: 0;
  align-items: flex-start;
  width: 1558px;
  height: 565px;
  transform: none;
}

.gallery-strip img {
  height: 565px;
  width: 376px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.9);
}

.gallery-strip img:nth-child(2) {
  width: 1182px;
  object-position: center;
}

.representative {
  position: relative;
  min-height: 430px;
  padding: 64px 24px 110px;
  text-align: center;
  background: #000;
  color: #fff;
}

.representative h2 {
  margin: 0 0 44px;
  color: #c90000;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.search-box {
  width: min(798px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 38px;
  padding: 0;
  border: 0;
  background: transparent;
}

.representative-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.search-box select {
  appearance: none;
  min-width: 0;
  width: 100%;
  height: 49px;
  border: 0;
  padding: 0 16px;
  color: #fff;
  background: #292929;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1;
  border-radius: 0;
}

.representative-results {
  display: grid;
  gap: 34px;
  text-align: left;
}

.representative-result {
  display: grid;
  grid-template-columns: 97px 1fr;
  gap: 12px 0;
  color: #a7a7a7;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 200;
  line-height: 1.25;
}

.representative-result dt {
  color: #e3131b;
}

.representative-result dd {
  margin: 0;
}

.representative-empty {
  margin: 0;
  color: #a7a7a7;
  font-family: var(--font-body);
  font-size: 20px;
  text-align: center;
}

.representative-submit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.representative-submit span {
  width: 230px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a9a9a9;
  color: #fff;
  font-family: var(--font-body);
  font-size: 42px;
  line-height: 1;
}

.search-box button {
  width: 239px;
  height: 49px;
  border: 0;
  padding: 0;
  background: #e3131b;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  text-transform: none;
}

.site-footer {
  min-height: 348px;
  background: var(--footer-bg);
  color: var(--footer-text);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.55fr) 1.3fr;
  gap: 52px;
  align-items: start;
  padding: 65px 96px;
}

.footer-brand {
  margin-top: 44px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #b40000;
  font-size: 20px;
}

.site-footer nav {
  display: grid;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-about {
  max-width: 338px;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}

.footer-about p {
  margin-top: 0;
}

.socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  font-family: Arial, sans-serif;
  font-size: 25px;
}

.about-page {
  background: #fff;
  color: #fff;
}

.about-main {
  overflow: hidden;
  background: #fff;
  color: #000;
}

.about-hero {
  width: min(1458px, calc(100% - 96px));
  margin: 0 auto;
  padding: 291px 0 0;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 92px;
}

.about-hero h1 {
  margin: 83px 0 0;
  color: #000;
  font-size: clamp(82px, 7.4vw, 128px);
  line-height: 0.905;
  text-transform: uppercase;
}

.about-hero h1 span {
  display: block;
}

.about-hero h1 span:last-child {
  color: var(--red);
}

.about-copy {
  max-width: 729px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.14;
  text-align: justify;
}

.about-copy p {
  margin: 0 0 18px;
}

.about-factory {
  grid-column: 1 / -1;
  width: min(1228px, 100%);
  height: 461px;
  margin: 58px auto 0;
  object-fit: cover;
}

.about-timeline {
  width: min(1280px, calc(100% - 96px));
  margin: 86px auto 0;
  position: relative;
}

.about-timeline h2 {
  margin: 130px 0 70px;
  color: var(--red);
  font-size: clamp(82px, 7.4vw, 128px);
  font-weight: 200;
  line-height: 0.905;
  letter-spacing: 1.28px;
  text-align: center;
  text-transform: uppercase;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px 92px;
}

.timeline-grid article {
  position: relative;
  min-height: 130px;
  padding-left: 26px;
  border-left: 1px solid #bcbcbc;
}

.timeline-grid article::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 11px;
  height: 11px;
  background: var(--red);
}

.timeline-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #bcbcbc;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 0.905;
  text-transform: uppercase;
}

.timeline-grid p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 0.98;
}

.timeline-side {
  grid-column: 3;
  transform: translateX(136px);
}

.about-honors {
  width: min(1458px, calc(100% - 96px));
  margin: 160px auto 0;
  padding-bottom: 105px;
  position: relative;
}

.about-honors h2 {
  margin: 0 0 -38px;
  color: #ebebeb;
  font-size: clamp(82px, 9.8vw, 170px);
  line-height: 0.905;
  text-transform: uppercase;
  white-space: nowrap;
}

.awards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 42px 22px;
  align-items: end;
}

.awards-grid figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.awards-grid img {
  width: 100%;
  max-height: 268px;
  object-fit: contain;
}

.awards-grid .wide {
  grid-column: span 2;
}

.awards-grid .wide img {
  max-height: 188px;
}

.awards-grid figcaption {
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.about-honors > p {
  width: min(891px, 100%);
  margin: 112px auto 70px;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 0.95;
  text-align: justify;
}

.certificates-strip {
  width: min(1279px, 100%);
  margin: 0 auto;
  object-fit: contain;
}

.projects-page {
  background: var(--surface-light);
  color: #000;
}

.projects-main {
  min-height: 862px;
  background: var(--surface-light);
  overflow: hidden;
}

.projects-listing {
  width: min(1188px, calc(100% - var(--page-side-gap)));
  margin: 0 auto;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.projects-listing h1 {
  margin: 0;
  color: #000;
  font-size: var(--font-size-page-title);
  line-height: 0.905;
  text-align: center;
  text-transform: uppercase;
}

.projects-listing-copy {
  width: 343px;
  margin: 58px auto 69px;
  color: #000;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 0.905;
  text-align: justify;
}

.project-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 294px);
  justify-content: center;
  gap: 19px;
}

.project-category-card {
  position: relative;
  height: 333px;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.project-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.project-category-card::after {
  content: "";
  position: absolute;
  inset: 147px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #494949);
  mix-blend-mode: multiply;
  backdrop-filter: blur(2.75px);
}

.project-category-card span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 26px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--font-size-card-title);
  line-height: 0.905;
  text-transform: uppercase;
}

.project-category-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.projects-empty {
  grid-column: 1 / -1;
  margin: 60px 0;
  color: #555;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  text-align: center;
}

.project-detail-body {
  background: #fff;
  color: #000;
}

.project-detail-main {
  background: #fff;
  overflow: hidden;
}

.project-detail-page {
  width: min(1194px, calc(100% - 96px));
  margin: 0 auto;
  padding: 209px 0 124px;
}

.project-detail-title {
  margin: 0 0 44px;
  color: #000;
  font-size: 32px;
  line-height: 0.905;
  text-align: center;
  text-transform: uppercase;
}

.project-detail-title strong {
  color: var(--red);
  font: inherit;
}

.project-detail-hero {
  width: 100%;
  height: 561px;
  object-fit: cover;
}

.project-detail-copy {
  width: 740px;
  margin-top: 49px;
}

.project-detail-copy h2,
.project-detail-products h2,
.project-detail-meta h2 {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 20px;
  line-height: 0.905;
  text-transform: uppercase;
}

.project-detail-copy p,
.project-detail-meta li {
  margin: 0;
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 0.905;
}

.project-detail-copy p {
  text-align: justify;
}

.project-detail-content {
  margin-top: 18px;
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
}

.project-detail-content p,
.project-detail-content ul,
.project-detail-content ol {
  margin: 0 0 14px;
}

.project-detail-content h2,
.project-detail-content h3 {
  margin: 24px 0 12px;
  color: var(--red);
}

.project-detail-products {
  margin-top: 63px;
}

.project-product-row {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 52px;
  align-items: end;
}

.project-product-row img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.project-detail-meta {
  width: 690px;
  margin-top: 45px;
}

.project-detail-meta ul {
  margin: 0;
  padding-left: 16px;
}

.project-detail-meta li {
  margin-bottom: 5px;
}

.all-products-page {
  background: var(--surface-light);
  color: #000;
}

.all-products-main {
  background: var(--surface-light);
  overflow: hidden;
}

.all-products-list {
  width: 100%;
  margin: 0 auto;
  padding: 209px 0 104px;
}

.all-products-list > h1 {
  margin: 0 0 56px;
  color: #000;
  font-size: 32px;
  line-height: 0.905;
  text-align: center;
  text-transform: uppercase;
}

.all-products-page.is-cms-loading .all-product-row {
  visibility: hidden;
}

.all-product-row {
  position: relative;
  width: min(1728px, calc(100% - 64px));
  margin-inline: auto;
  min-height: 400px;
  display: grid;
  grid-template-columns: minmax(270px, 340px) 1px minmax(0, 1fr);
  align-items: center;
  background: #e3e3e3;
}

.all-product-row.is-light {
  background: #f7f7f7;
}

.product-row-copy {
  width: 100%;
  max-width: 285px;
  justify-self: center;
  padding: 30px 28px;
  text-align: left;
}

.product-row-copy h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 32px;
  line-height: 0.905;
  text-align: left;
  text-transform: uppercase;
}

.product-row-copy p {
  margin: 0;
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  text-align: left;
}

.product-row-copy a {
  width: 131px;
  height: 27px;
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 0.905;
  text-align: center;
  text-transform: uppercase;
}

.all-product-row::before {
  content: "";
  width: 1px;
  height: 297px;
  background: #fff;
  grid-column: 2;
  grid-row: 1;
}

.product-row-items {
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(18px, 2.2vw, 38px);
  min-width: 0;
  padding: 0 clamp(28px, 3vw, 60px);
}

.product-row-items.is-slider {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (3 * clamp(18px, 2.2vw, 38px))) / 4);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  direction: ltr;
}

.product-row-items.is-slider::-webkit-scrollbar {
  display: none;
}

.product-row-items figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 17px;
  min-width: 0;
  scroll-snap-align: start;
}

.product-row-items figure > a {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 17px;
  color: inherit;
  text-decoration: none;
}

.product-row-items img {
  width: 100%;
  height: 218px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-slider-controls {
  position: absolute;
  z-index: 3;
  right: 64px;
  top: 22px;
  display: flex;
  gap: 8px;
}

.product-slider-controls button {
  width: 36px;
  height: 36px;
  border: 0;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font: 30px/1 var(--font-body);
  cursor: pointer;
}

.product-slider-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

[dir="rtl"] .product-row-copy,
[dir="rtl"] .product-row-copy h2,
[dir="rtl"] .product-row-copy p {
  text-align: right;
}

[dir="rtl"] .product-row-copy a {
  margin-right: 0;
  margin-left: auto;
}

.product-row-items figure:hover img {
  transform: translateY(-4px) scale(1.02);
}

.product-row-items figcaption {
  color: #8e8e8e;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.product-row-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: #777;
  font-family: var(--font-body);
  font-size: 15px;
  text-align: center;
}

.product-detail-field {
  margin-top: 28px;
}

.product-detail-field .product-field-copy,
.product-detail-field .climate-copy {
  white-space: normal;
}

.row-arrow {
  position: absolute;
  left: calc(100% + 34px);
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--red);
  transform: translateY(-50%);
}

.row-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg) translate(-2px, 2px);
}

.product-category-body {
  background: var(--surface-light);
  color: #000;
}

.product-category-main {
  background: var(--surface-light);
  overflow: hidden;
}

.product-category-page {
  width: min(1250px, calc(100% - var(--page-side-gap)));
  margin: 0 auto;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.product-category-head {
  width: 343px;
  margin: 0 auto 49px;
}

.product-category-head h1 {
  margin: 0 0 44px;
  color: #000;
  font-size: var(--font-size-page-title);
  line-height: 0.905;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-category-head h1 strong {
  color: var(--red);
  font: inherit;
}

.product-category-head p {
  margin: 0;
  color: #000;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 0.905;
  text-align: justify;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 230px);
  gap: 71px 20px;
  align-items: start;
}

.catalog-product-card {
  min-height: 362px;
  display: grid;
  grid-template-rows: 245px 1fr;
  background: var(--surface-soft);
}

.catalog-product-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  padding: 14px 8px 0;
  transition: transform 220ms ease;
}

.catalog-product-card:hover img {
  transform: translateY(-4px) scale(1.02);
}

.catalog-product-card div {
  min-height: 159px;
  padding: 11px 20px 18px;
  background: var(--surface-medium);
}

.catalog-product-card h2 {
  margin: 0 0 9px;
  color: #b40000;
  font-size: var(--font-size-product-title);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.catalog-product-card p {
  margin: 0;
  color: #000;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 0.905;
  text-align: justify;
}

.product-detail-body {
  background: #fff;
  color: #000;
}

.product-detail-main {
  background: #fff;
  overflow: hidden;
}

.product-detail-page {
  width: min(1124px, calc(100% - 96px));
  margin: 0 auto;
  padding: 209px 0 125px;
}

.product-detail-title {
  margin: 0 0 62px;
  color: #000;
  font-size: 32px;
  line-height: 0.905;
  text-align: center;
  text-transform: uppercase;
}

.product-detail-title strong {
  color: var(--red);
  font: inherit;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: 730px 368px;
  gap: 26px;
  align-items: start;
}

.product-detail-visual {
  width: 100%;
  height: 554px;
  margin: 0;
  overflow: hidden;
}

.product-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-summary {
  padding-top: 0;
}

.product-detail-summary h2,
.product-detail-summary h3,
.product-detail-info h2 {
  margin: 0;
  text-transform: uppercase;
}

.product-detail-summary h2 {
  color: #000;
  font-size: 32px;
  line-height: 0.905;
}

.product-detail-summary h3 {
  margin-top: 9px;
  color: var(--red);
  font-size: 32px;
  line-height: 0.905;
}

.product-detail-summary p,
.product-detail-info p,
.product-detail-info li {
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.25;
}

.product-detail-summary p {
  margin: 16px 0;
  line-height: 1.15;
  text-align: left;
}

.product-detail-render {
  width: 368px;
  height: 326px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ddd;
}

.product-detail-render img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  width: 438px;
  margin-top: 12px;
}

.product-detail-info h2 {
  margin: 42px 0 16px;
  color: var(--red);
  font-size: 20px;
  line-height: 0.905;
}

.product-detail-info h2:first-child {
  margin-top: 0;
}

.product-detail-info p {
  margin: 0 0 11px;
}

.product-detail-info strong {
  font-weight: 800;
}

.climate-icons {
  display: flex;
  align-items: center;
  gap: 37px;
  margin: 3px 0 16px;
}

.climate-icons img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.product-detail-info .climate-copy {
  max-width: 348px;
  text-align: justify;
}

.product-detail-info ul {
  margin: 0 0 31px;
  padding-left: 13px;
}

.product-detail-info li {
  margin: 0;
}

.detail-download {
  display: inline-grid;
  width: 206px;
  height: 40px;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 0.905;
  text-transform: uppercase;
}

.sale-page {
  background: #000;
  color: #fff;
}

.sale-main {
  background: var(--sale-bg);
}

.sale-form-section {
  min-height: 900px;
  width: min(1430px, calc(100% - 96px));
  margin: 0 auto;
  padding: 225px 0 150px;
  display: grid;
  grid-template-columns: 450px minmax(0, 740px);
  gap: 140px;
  align-items: start;
}

.sale-copy {
  padding-top: 70px;
}

.sale-kicker {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(120px, 10vw, var(--font-size-sale-title));
  line-height: 0.82;
  text-transform: uppercase;
}

.sale-copy p:last-child {
  max-width: 400px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.35;
}

.sale-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  padding: 48px;
  background: #fff;
  color: #000;
  box-shadow: var(--form-shadow);
}

.sale-field {
  display: grid;
  gap: 8px;
}

.sale-field-wide {
  grid-column: 1 / -1;
}

.sale-field label {
  color: #b40000;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 0.905;
  text-transform: uppercase;
}

.sale-field input,
.sale-field select,
.sale-field textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: var(--input-bg);
  color: #000;
  padding: 12px 14px;
  font: 16px/1.2 var(--font-body);
}

.sale-field textarea {
  min-height: 150px;
  resize: vertical;
}

.sale-submit {
  grid-column: 2;
  justify-self: end;
  width: 230px;
  height: 52px;
  border: 0;
  background: #b40000;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.905;
  text-transform: uppercase;
}

[dir="rtl"] .product-category-head p,
[dir="rtl"] .catalog-product-card p {
  font-family: var(--font-persian);
}

[dir="rtl"] .product-detail-title,
[dir="rtl"] .product-detail-summary,
[dir="rtl"] .product-detail-info {
  direction: rtl;
}

[dir="rtl"] .product-detail-summary p,
[dir="rtl"] .product-detail-info p,
[dir="rtl"] .product-detail-info li,
[dir="rtl"] .detail-download {
  font-family: var(--font-persian);
  line-height: 1.45;
  text-align: right;
}

[dir="rtl"] .detail-download {
  text-align: center;
}

[dir="rtl"] .sale-form-section,
[dir="rtl"] .sale-form {
  direction: rtl;
}

[dir="rtl"] .sale-kicker,
[dir="rtl"] .sale-copy p:last-child,
[dir="rtl"] .sale-field label,
[dir="rtl"] .sale-field input,
[dir="rtl"] .sale-field select,
[dir="rtl"] .sale-field textarea,
[dir="rtl"] .sale-submit {
  font-family: var(--font-persian);
}

[dir="rtl"] .project-detail-page,
[dir="rtl"] .project-detail-copy,
[dir="rtl"] .project-detail-meta {
  direction: rtl;
}

[dir="rtl"] .project-detail-copy p,
[dir="rtl"] .project-detail-meta li {
  font-family: var(--font-persian);
  line-height: 1.45;
  text-align: right;
}

[dir="rtl"] .project-detail-meta ul {
  padding-right: 18px;
  padding-left: 0;
}

[dir="rtl"] .product-detail-info ul {
  padding-right: 18px;
  padding-left: 0;
}

[dir="rtl"] .product-row-copy p {
  font-family: var(--font-persian);
  text-align: right;
}

[dir="rtl"] .about-copy,
[dir="rtl"] .timeline-grid p,
[dir="rtl"] .awards-grid figcaption,
[dir="rtl"] .about-honors > p,
[dir="rtl"] .projects-listing-copy {
  font-family: var(--font-persian);
}

@media (max-width: 1180px) {
  .site-header {
    top: 16px;
    width: calc(100% - 32px);
    height: auto;
    min-height: 82px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-width: 5px;
    font-size: 20px;
  }

  .brand-text strong {
    font-size: 58px;
  }

  .brand-text small {
    font-size: 10px;
    letter-spacing: 7px;
  }

  .products-menu {
    width: 380px;
    min-height: 560px;
    padding: 46px 48px;
  }

  .about-hero {
    width: min(980px, calc(100% - 56px));
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 190px;
  }

  .about-hero h1 {
    margin: 0;
  }

  .about-copy {
    max-width: none;
  }

  .about-factory {
    height: auto;
    aspect-ratio: 1228 / 461;
  }

  .about-timeline,
  .about-honors {
    width: min(980px, calc(100% - 56px));
  }

  .timeline-grid {
    gap: 54px 38px;
  }

  .timeline-grid p {
    font-size: 20px;
    line-height: 1.08;
  }

  .timeline-side {
    transform: none;
  }

  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-honors h2 {
    white-space: normal;
  }

  .projects-listing {
    width: min(940px, calc(100% - 56px));
  }

  .project-category-grid {
    grid-template-columns: repeat(2, minmax(260px, 294px));
    gap: 24px;
  }

  .project-detail-page {
    width: calc(100% - 56px);
    padding: 170px 0 90px;
  }

  .project-detail-hero {
    height: auto;
    aspect-ratio: 1194 / 561;
  }

  .project-detail-copy,
  .project-detail-meta {
    width: min(740px, 100%);
  }

  .project-product-row {
    gap: 24px;
  }

  .project-product-row img {
    height: 145px;
  }

  .all-products-list {
    width: min(100%, 1080px);
  }

  .all-product-row {
    width: 100%;
    margin-left: 0;
    grid-template-columns: minmax(250px, 300px) 1px minmax(0, 1fr);
  }

  .row-arrow {
    left: auto;
    right: 18px;
  }

  .product-row-items {
    gap: 20px;
    padding: 0 34px;
  }

  .product-row-items.is-slider {
    grid-auto-columns: calc((100% - 40px) / 3);
  }

  .product-row-items img {
    height: 190px;
  }

  .product-category-page {
    width: min(980px, calc(100% - 56px));
  }

  .product-card-grid {
    grid-template-columns: repeat(3, 230px);
    justify-content: center;
    gap: 34px 24px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .site-header.is-open {
    flex-wrap: wrap;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-actions {
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    gap: 18px;
    margin-left: 0;
  }

  .site-header.is-open .nav-item {
    width: 100%;
  }

  .site-header.is-open .products-menu {
    position: static;
    width: 100%;
    min-height: 0;
    margin-top: 12px;
    padding: 28px 24px 24px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.34);
    border-radius: 18px;
  }

  .site-header.is-open .nav-item.has-submenu.is-open .products-menu {
    display: block;
  }

  .site-header.is-open .products-menu strong {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .site-header.is-open .products-menu summary {
    font-size: 25px;
  }

  .site-header.is-open .submenu-series {
    width: 100%;
    max-width: 260px;
    gap: 10px 28px;
  }

  .stats,
  .product-filter,
  .match-card,
  .new-products,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 28px;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    padding: 0 0 22px;
  }

  .project-grid {
    margin-top: 42px;
    width: min(920px, calc(100% - 48px));
    gap: 28px;
  }

  .project-card-offset {
    transform: none;
  }

  .project-button {
    position: static;
    margin: 42px auto 0;
    display: flex;
    width: 220px;
  }

  .projects {
    min-height: 0;
    padding: 96px 0;
  }

  .projects-intro {
    margin: 0 auto;
    padding: 0px 20px;
  }

  .match-card {
    height: auto;
    min-height: 579px;
    padding: 430px 0 56px;
    overflow: hidden;
  }

  .match-card::before {
    width: 100%;
    border-radius: 44px 44px 0 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
  }

  .match-card img {
    left: 50%;
    top: -30px;
    width: min(980px, 130vw);
    height: auto;
    transform: translateX(-62%);
  }

  .match-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(562px, calc(100% - 48px));
    margin: 0 auto;
  }

  .audience {
    height: auto;
    min-height: 940px;
    padding: 110px 24px 96px;
  }

  .audience h2 {
    position: relative;
    left: auto;
    top: auto;
    width: min(475px, 100%);
    margin: 0 auto 64px;
    font-size: clamp(76px, 10vw, 116px);
    text-align: center;
  }

  .audience-cards {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(3, 248px);
    gap: 24px;
    justify-content: center;
    align-items: start;
  }

  .audience-cards article {
    position: relative;
    left: auto;
    top: auto;
  }

  .audience-card-manufacturer {
    transform: translateY(90px);
  }

  .audience-card-representative {
    transform: translateY(-58px);
  }

  .new-products {
    height: auto;
    min-height: 0;
    padding: 90px 24px 40px;
  }

  .new-products-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(573px, 100%);
    margin: 0 auto;
  }

  .new-products-copy h2 {
    font-size: clamp(72px, 11vw, 116px);
  }

  .new-products-button {
    margin: 44px auto 0;
  }

  .gallery-strip {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 48px;
    overflow-x: auto;
  }

  .gallery-strip img {
    flex: 0 0 auto;
  }
}

@media (min-width: 1181px) and (max-width: 1550px) {
  .site-header {
    width: calc(100% - 56px);
    gap: 20px;
    padding-inline: 24px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-width: 6px;
    font-size: 24px;
  }

  .brand-text strong {
    font-size: 42px;
  }

  .brand-text small {
    font-size: 12px;
    letter-spacing: 9px;
  }

  .nav-links {
    gap: 24px;
    font-size: 14px;
  }

  .header-actions {
    gap: 16px;
    font-size: 14px;
  }

  .issue-link {
    padding-inline: 24px;
  }

  .audience {
    height: 69.444vw;
    min-height: 69.444vw;
  }

  .audience h2 {
    left: 5.208vw;
    top: 29.225vw;
    width: 35.301vw;
    font-size: 6vw;
  }

  .audience-cards article {
    width: 14.352vw;
    height: 27.546vw;
  }

  .audience-card-customer {
    left: 41.782vw;
    top: 26.331vw;
  }

  .audience-card-manufacturer {
    left: 57.35vw;
    top: 32.118vw;
  }

  .audience-card-representative {
    left: 72.917vw;
    top: 22.975vw;
  }

  .audience-cards span {
    font-size: 1.736vw;
  }

  .product-detail-page {
    width: min(1124px, calc(100% - 96px));
    padding: 190px 0 110px;
  }

  .product-detail-hero {
    grid-template-columns: minmax(0, 730px) minmax(280px, 368px);
    gap: 26px;
  }

  .product-detail-visual {
    height: auto;
    aspect-ratio: 730 / 554;
  }

  .product-detail-summary {
    display: block;
  }

  .product-detail-summary p {
    margin: 16px 0;
    line-height: 1.15;
  }

  .product-detail-render {
    width: 100%;
    height: auto;
    aspect-ratio: 368 / 326;
  }

  .product-detail-info {
    width: min(438px, 100%);
    margin-top: 12px;
  }

  .sale-form-section {
    width: calc(100% - 56px);
    min-height: 0;
    padding: 170px 0 90px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .sale-copy h1 {
    font-size: clamp(96px, 18vw, 150px);
  }

  .sale-copy p:last-child {
    max-width: 620px;
    margin-top: 24px;
  }
}

@media (min-width: 1181px) and (max-width: 1260px) {
  .site-header {
    width: calc(100% - 32px);
    padding-inline: 14px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-width: 5px;
    font-size: 20px;
  }

  .brand-text strong {
    font-size: 34px;
  }

  .brand-text small {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 6px;
  }

  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
    font-size: 12px;
  }

  .issue-link {
    padding: 10px 14px;
  }

  .signin::before {
    margin-right: 4px;
    font-size: 18px;
  }

  [dir="rtl"] .signin::before {
    margin-right: 0;
    margin-left: 4px;
  }

  .language-picker select {
    min-width: 48px;
    padding-right: 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .product-detail-page {
    width: calc(100% - 56px);
    padding: 170px 0 92px;
  }

  .product-detail-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 31.8%);
    gap: 24px;
  }

  .product-detail-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 730 / 554;
    border-radius: 0;
  }

  .product-detail-summary {
    display: block;
  }

  .product-detail-summary h2,
  .product-detail-summary h3 {
    font-size: 30px;
  }

  .product-detail-summary p {
    margin: 14px 0 16px;
    font-size: 14px;
    line-height: 1.2;
  }

  .product-detail-render {
    width: 100%;
    height: auto;
    aspect-ratio: 368 / 326;
    border-radius: 0;
  }

  .product-detail-info {
    width: min(438px, 100%);
    margin-top: 18px;
  }
}

@media (min-width: 721px) and (max-width: 1023px) {
  .product-detail-page {
    width: calc(100% - 56px);
    padding: 150px 0 84px;
  }

  .product-detail-title {
    margin-bottom: 38px;
    font-size: 30px;
  }

  .product-detail-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .product-detail-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 730 / 554;
  }

  .product-detail-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 12px 28px;
    align-items: start;
  }

  .product-detail-summary h2,
  .product-detail-summary h3,
  .product-detail-summary p {
    grid-column: 1;
  }

  .product-detail-summary h2,
  .product-detail-summary h3 {
    font-size: 30px;
  }

  .product-detail-summary p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .product-detail-render {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 100%;
    height: auto;
    aspect-ratio: 368 / 326;
  }

  .product-detail-info {
    width: min(560px, 100%);
    margin-top: 34px;
  }
}

@media (min-width: 721px) and (max-width: 1727px) {
  .products {
    position: relative;
    height: 89.6412vw;
  }

  .products .section-shell {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1728px;
    margin: 0;
    transform: scale(var(--akpa-products-scale, 0.75)) translateX(-50%);
    transform-origin: top left;
  }

  .world {
    height: 52.4479vw;
    min-height: 0;
  }

  .world-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1920px;
    margin: 0;
    transform: scale(var(--akpa-world-scale, 0.666667)) translateX(-50%);
    transform-origin: top left;
  }

}

@media (max-width: 720px) {
  .hero {
    min-height: 820px;
  }

  .hero-image {
    height: 900px;
    width: 1410px;
  }

  .hero h1 {
    gap: 26px;
    font-size: clamp(48px, 15vw, 58px);
    line-height: 1.08;
    text-align: center;
  }
.hero h1 span:first-child {
    position: absolute;
         left: -50px;
        top: -60px;
}
.hero h1 span:last-child {
    position: absolute;
    right: 0px;
    top: 150px;
}
.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1210px, 150.02vw);
    height: auto;
    max-width: none;
    transform: translateX(-50%);
    mix-blend-mode: screen;
    z-index: -1;
    pointer-events: none;
}
.hero .button {
    position: absolute;
    left: 50%;
    top: 380px;
    width: 340px;
    min-width: 230px;
    min-width: 230px;
    transform: translateX(-50%);
}
.hero-copy {
    position: relative;
    width: min(1164px, 67.36vw);
    height: 420px;
    margin-top: 70px;
    padding-top: 0;
}
  .hero h1 span:first-child,
  .hero h1 span:last-child {
    justify-self: center;
  }

  .hero p {
    width: min(100%, 340px);
    margin-inline: auto;
    font-size: 18px;
  }

  .about-hero,
  .about-timeline,
  .about-honors {
    width: calc(100% - 36px);
  }

  .about-hero {
    padding-top: 150px;
  }

  .about-hero h1,
  .about-timeline h2 {
    font-size: clamp(56px, 17vw, 86px);
  }

  .about-copy {
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .about-factory {
    margin-top: 20px;
    min-height: 220px;
  }

  .about-timeline {
    margin-top: 64px;
  }

  .about-timeline h2 {
    margin: 60px 0 42px;
    text-align: left;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-side {
    grid-column: auto;
  }

  .timeline-grid article {
    min-height: 0;
  }

  .timeline-grid p {
    font-size: 18px;
    line-height: 1.2;
  }

  .about-honors {
    margin-top: 82px;
    padding-bottom: 64px;
  }

  .about-honors h2 {
    margin-bottom: -8px;
    font-size: clamp(58px, 16vw, 86px);
    line-height: 0.95;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .awards-grid .wide {
    grid-column: span 2;
  }

  .awards-grid figcaption {
    font-size: 12px;
    line-height: 1.1;
  }

  .about-honors > p {
    margin: 64px auto 42px;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .projects-main {
    min-height: 0;
  }

  .projects-listing {
    width: calc(100% - 36px);
    padding: 150px 0 72px;
  }

  .projects-listing h1 {
    font-size: 44px;
  }

  .projects-listing-copy {
    width: min(100%, 343px);
    margin: 32px auto 42px;
    font-size: 16px;
    line-height: 1.25;
    text-align: left;
  }

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

  .project-category-card {
    height: 330px;
  }

  .project-category-card::after {
    inset: 142px 0 0;
  }

  .project-detail-page {
    width: calc(100% - 36px);
    padding: 150px 0 72px;
  }

  .project-detail-title {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.05;
  }

  .project-detail-hero {
    height: auto;
    aspect-ratio: 1194 / 561;
  }

  .project-detail-copy {
    width: 100%;
    margin-top: 32px;
  }

  .project-detail-copy h2,
  .project-detail-products h2,
  .project-detail-meta h2 {
    font-size: 24px;
  }

  .project-detail-copy p,
  .project-detail-meta li {
    font-size: 15px;
    line-height: 1.28;
  }

  .project-detail-products {
    margin-top: 44px;
  }

  .project-product-row {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .project-product-row img {
    height: 135px;
  }

  .project-detail-meta {
    width: 100%;
    margin-top: 36px;
  }

  .all-products-list {
    width: 100%;
    padding: 150px 18px 72px;
  }

  .all-products-list > h1 {
    margin-bottom: 34px;
    font-size: 44px;
  }

  .all-product-row,
  .all-product-row.is-light {
    width: 100%;
    margin-left: 0;
    min-height: 0;
    margin-bottom: 18px;
    display: block;
    padding: 28px 16px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #eeeeee, #f8f8f8);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .all-product-row::before {
    display: none;
  }

  .product-row-copy {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

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

  .product-row-copy p {
    max-width: 310px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
  }

  .product-row-copy a {
    margin-top: 18px;
  }

  .product-row-items {
    margin-top: 26px;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .product-row-items.is-slider {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .product-slider-controls {
    position: static;
    width: max-content;
    margin: 18px auto 0;
  }

  .product-row-items img {
    height: 132px;
  }

  .product-row-items figcaption {
    font-size: 22px;
  }

  .row-arrow {
    position: static;
    width: 42px;
    height: 42px;
    margin: 24px auto 0;
    border-radius: 0;
    transform: none;
  }

  .product-category-page {
    width: calc(100% - 36px);
    padding: 150px 0 72px;
  }

  .product-category-head {
    width: 100%;
    margin-bottom: 34px;
    text-align: center;
  }

  .product-category-head h1 {
    margin-bottom: 24px;
    font-size: 34px;
    white-space: normal;
  }

  .product-category-head p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
  }

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

  .catalog-product-card {
    min-height: 0;
    grid-template-rows: 220px auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .catalog-product-card img {
    height: 220px;
    padding-top: 12px;
  }

  .catalog-product-card div {
    min-height: 0;
    padding: 16px 22px 20px;
  }

  .catalog-product-card p {
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
  }

  .product-detail-page {
    width: calc(100% - 36px);
    padding: 150px 0 72px;
  }

  .product-detail-title {
    margin-bottom: 32px;
    font-size: 30px;
    line-height: 1.05;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-detail-visual {
    height: auto;
    min-height: 260px;
    aspect-ratio: 730 / 554;
    border-radius: 18px;
  }

  .product-detail-summary {
    display: block;
  }

  .product-detail-summary h2,
  .product-detail-summary h3 {
    font-size: 34px;
    line-height: 0.95;
  }

  .product-detail-summary p,
  .product-detail-info p,
  .product-detail-info li {
    font-size: 15px;
    line-height: 1.3;
  }

  .product-detail-summary p {
    margin: 18px 0 24px;
  }

  .product-detail-render {
    width: 100%;
    height: auto;
    aspect-ratio: 368 / 326;
    border-radius: 18px;
  }

  .product-detail-info {
    width: 100%;
    margin-top: 28px;
  }

  .product-detail-info h2 {
    margin: 34px 0 14px;
    font-size: 24px;
  }

  .climate-icons {
    justify-content: space-between;
    gap: 14px;
  }

  .climate-icons img {
    width: 40px;
    height: 40px;
  }

  .product-detail-info .climate-copy {
    max-width: none;
  }

  .detail-download {
    width: 100%;
    height: 48px;
    font-size: 24px;
  }

  .sale-form-section {
    width: calc(100% - 36px);
    padding: 150px 0 64px;
    gap: 30px;
  }

  .sale-kicker {
    font-size: 14px;
  }

  .sale-copy h1 {
    font-size: clamp(80px, 28vw, 118px);
  }

  .sale-copy p:last-child {
    font-size: 16px;
    line-height: 1.35;
  }

  .sale-form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .sale-field-wide,
  .sale-submit {
    grid-column: auto;
  }

  .sale-field label {
    font-size: 22px;
  }

  .sale-submit {
    width: 100%;
    justify-self: stretch;
  }

  [dir="rtl"] .about-copy,
  [dir="rtl"] .about-timeline h2,
  [dir="rtl"] .about-honors > p,
  [dir="rtl"] .projects-listing-copy {
    text-align: right;
  }

  .products {
    margin-top: 90px;
    background: linear-gradient(180deg, #000 0 39%, #f2f2f2 39% 100%);
  }

  .product-stage {
    height: auto;
    min-height: 1280px;
    padding-top: 210px;
    background: transparent;
  }

  .products h2 {
    top: 42px;
    left: 24px;
    width: auto;
  }

  .product-see-all {
    top: 128px;
    left: 24px;
    width: 220px;
  }

  .product-building {
    position: relative;
    z-index: 2;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .product-sky {
    left: 0;
    top: 0;
    width: 100%;
    height: 620px;
    border-radius: 0;
  }

  .product-panel {
    left: 0;
    top: 610px;
    width: 100%;
    height: calc(100% - 610px);
    display: block;
  }

  .product-chip {
    position: relative;
    inset: auto;
    margin: 10px auto;
    width: min(100%, 360px);
    font-size: 18px;
  }

  .product-filter {
    position: relative;
    z-index: 7;
    left: auto;
    top: auto;
    width: calc(100% - 48px);
    margin: 24px auto 0;
    grid-template-columns: 1fr;
  }

  .product-tabs {
    gap: 18px 22px;
  }

  .product-results {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 48px);
    margin: 28px auto 0;
    grid-template-columns: 1fr;
  }

  .world {
    min-height: 620px;
  }

  .world-stage {
    width: 100%;
    height: 620px;
  }

  .world-visual {
    left: 50%;
    top: 22px;
    width: 620px;
    height: 598px;
    transform: translateX(-50%);
  }

  .world-pin {
    font-size: 16px;
  }

  .world-pin::before {
    height: 212px;
    top: -32px;
  }

  .country-label {
    height: 28px;
    padding: 0 8px;
    font-size: 14px;
  }

  .label-canada {
    left: 152px;
    top: 52px;
  }

  .label-germany {
    left: 128px;
    top: 152px;
  }

  .label-austria {
    left: 110px;
    top: 208px;
  }

  .label-spain {
    left: 91px;
    top: 246px;
  }

  .label-portugal {
    left: 62px;
    top: 284px;
  }

  .label-georgia {
    left: 260px;
    top: 154px;
  }

  .label-armenia {
    left: 278px;
    top: 190px;
  }

  .label-iraq {
    left: 255px;
    top: 264px;
  }

  .label-turkmenistan {
    left: 435px;
    top: 190px;
  }

  .label-afghanistan {
    left: 470px;
    top: 255px;
  }

  .world-text {
    left: 24px;
    top: 470px;
    width: calc(100% - 48px);
    font-size: 38px;
    text-align: left;
  }

  .world-text span:first-child,
  .world-text span:last-child {
    font-size: 38px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: 36px;
    gap: 22px;
  }

  .project-card {
    height: 440px;
  }

  .project-card div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .project-card strong {
    font-size: 34px;
  }

  .project-card span {
    font-size: 14px;
  }

  .match-card {
    min-height: 0;
    padding: 300px 0 34px;
    border-radius: 24px;
  }

  .match-card::before {
    border-radius: 24px 24px 0 0;
  }

  .match-card img {
    top: -8px;
    width: 690px;
    height: auto;
    transform: translateX(-60%);
  }

  .match-copy {
    width: calc(100% - 44px);
    padding: 0;
  }

  .match-copy p {
    font-size: 18px;
    line-height: 1.32;
  }

  .match-copy .button {
    margin-top: 24px;
    font-size: 24px;
  }

  .hiring {
    height: 480px;
  }

  .audience {
    min-height: 0;
    padding: 90px 18px 72px;
  }

  .audience h2 {
    margin-bottom: 42px;
    font-size: 58px;
  }

  .audience-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }

  .audience-cards article {
    width: min(248px, 100%);
    height: 420px;
    transform: none;
  }

  .gallery-strip {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 38px;
    transform: none;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .gallery-strip img,
  .gallery-strip img:nth-child(2) {
    width: 320px;
    height: 430px;
    flex: 0 0 auto;
  }

  .search-box {
    height: auto;
    gap: 24px;
  }

  .representative-fields,
  .representative-submit {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .search-box select,
  .representative-submit span,
  .search-box button {
    width: 100%;
  }

  .site-footer {
    padding: 48px 24px;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 72px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.92);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 30px;
  }

  .brand-text small {
    margin-top: 7px;
    letter-spacing: 5px;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-actions {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding-top: 14px;
    font-size: 15px;
  }

  .site-header.is-open .nav-links {
    grid-template-columns: 1fr 1fr;
  }

  .site-header.is-open .nav-links > a,
  .site-header.is-open .nav-item > a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .site-header.is-open .nav-links > a:hover,
  .site-header.is-open .nav-item > a:hover {
    background: rgba(216, 25, 33, 0.28);
  }

  .site-header.is-open .nav-item {
    grid-column: 1 / -1;
  }

  .site-header.is-open .header-actions {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .site-header.is-open .language-picker {
    grid-column: 1 / -1;
  }

  .site-header.is-open .language-picker select {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--red);
  }

  .issue-link {
    justify-content: center;
    height: 42px;
    border-radius: 12px;
    color: #fff;
  }

  .signin,
  .language {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
  }

  .language {
    text-decoration: none;
    color: var(--red);
  }

  .nav-toggle {
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    min-height: 760px;
    padding: 128px 18px 56px;
  }

  .hero-image {
    left: 50%;
    width: 1080px;
    height: 760px;
    transform: translateX(-50%);
    object-position: center top;
  }

  .hero h1 {
    margin-top: 210px;
    gap: 12px;
    font-size: clamp(54px, 18vw, 78px);
    line-height: 0.92;
  }

  .hero p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.35;
  }

  .stats {
    margin: 0 auto;
    padding: 36px 22px;
  }

  .stats strong {
    font-size: 48px;
  }

  .products {
    margin-top: 0;
    background: linear-gradient(180deg, #000 0 36%, #f2f2f2 36% 100%);
  }

  .product-stage {
    min-height: 1180px;
    padding-top: 180px;
    background: transparent;
  }

  .products h2 {
    color: #000;
    font-size: 68px;
  }

  .product-see-all {
    top: 118px;
  }

  .product-sky {
    height: 560px;
  }

  .product-building {
    margin-top: 50px;
    transform: scale(1.25);
    transform-origin: center;
  }

  .product-panel {
    top: 548px;
    border-radius: 28px 28px 0 0;
  }

  .product-chip {
    z-index: 9;
    width: calc(100% - 48px);
    min-height: 46px;
    font-size: 17px;
  }

  .product-filter strong {
    font-size: 34px;
  }

  .product-tabs {
    gap: 14px 18px;
    font-size: 16px;
  }

  .product-result-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-result-grid article {
    min-height: 170px;
  }

  .world {
    min-height: 760px;
    padding: 54px 0;
    overflow: hidden;
  }

  .world-stage {
    height: 650px;
  }

  .world-visual {
    top: 0;
    width: 620px;
    height: 598px;
    opacity: 0.92;
  }

  .country-label {
    transform: scale(0.72);
    transform-origin: left top;
  }

  .label-canada {
    left: 172px;
  }

  .label-germany {
    left: 138px;
  }

  .label-austria {
    left: 124px;
  }

  .label-spain {
    left: 120px;
  }

  .label-portugal {
    left: 100px;
  }

  .label-afghanistan {
    left: 445px;
  }

  .world-text {
    top: 530px;
    font-size: 42px;
    line-height: 0.95;
  }

  .world-text span:first-child,
  .world-text span:last-child {
    font-size: 42px;
  }

  .projects {
    padding: 86px 0 78px;
  }

  .projects-intro h2 {
    font-size: 68px;
  }

  .projects-intro p {
    font-size: 17px;
  }

  .project-card {
    height: 380px;
  }

  .project-button {
    margin-top: 30px;
  }

  .match {
    padding: 64px 0;
  }

  .match-card {
    width: calc(100% - 28px);
    padding: 260px 0 34px;
  }

  .match-card img {
   min-width: 600px;
        transform: translateX(-55%);
        min-height: 279px;
        position: absolute;
  }

  .hiring {
    height: 520px;
  }

  .hiring h2 {
    font-size: 54px;
  }

  .hiring-button {
    width: min(275px, calc(100vw - 48px));
  }

  .audience {
    padding: 76px 18px;
  }

  .audience::before,
  .audience::after {
    opacity: 0.18;
  }

  .audience h2 {
    width: 100%;
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.9;
    text-align: center;
  }

  .audience-cards {
    gap: 18px;
  }

  .audience-cards article {
    width: min(280px, 100%);
    height: 360px;
  }

  .audience-cards span {
    font-size: 26px;
  }

  .new-products {
    padding: 76px 18px 48px;
  }

  .new-products-copy h2 {
    white-space: normal;
    font-size: clamp(64px, 18vw, 86px);
    line-height: 0.9;
  }

  .new-products-copy p {
    font-size: 17px;
    line-height: 1.45;
    text-align: left;
  }

  .new-products-button {
    width: min(290px, 100%);
  }

  .gallery-strip {
    display: grid;
    gap: 14px;
    overflow: visible;
  }

  .gallery-strip img,
  .gallery-strip img:nth-child(2) {
    width: 100%;
    height: 300px;
  }

  .representative {
    padding: 68px 18px 86px;
  }

  .representative h2 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 0.95;
  }

  .search-box {
    width: 100%;
    gap: 26px;
  }

  .representative-fields {
    gap: 10px;
  }

  .search-box select {
    height: 50px;
    font-size: 18px;
  }

  .representative-results {
    gap: 26px;
  }

  .representative-result {
    grid-template-columns: 86px 1fr;
    font-size: 18px;
  }

  .representative-submit {
    gap: 10px;
  }

  .representative-submit span {
    height: 50px;
    font-size: 30px;
  }

  .search-box button {
    height: 50px;
    font-size: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 24px;
  }

  .footer-brand {
    margin-top: 0;
  }

  .footer-about {
    max-width: none;
    font-size: 17px;
  }
}

/* Final narrow-screen polish: keep every page usable down to 320px. */
@media (max-width: 480px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 9px 11px;
    border-radius: 14px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 26px;
  }

  .brand-text small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 4px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header.is-open .nav-item,
  .site-header.is-open .nav-links > a,
  .site-header.is-open .header-actions > * {
    grid-column: auto;
    min-width: 0;
  }

  .site-header.is-open .products-menu {
    padding: 18px 14px;
  }

  .products-menu strong {
    font-size: 30px;
  }

  .products-menu summary {
    font-size: 21px;
  }

  .submenu-series {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .submenu-series a {
    min-width: 0;
    font-size: 17px;
  }

  .hero {
    min-height: 680px;
    padding: 106px 16px 44px;
  }

  .hero-image {
    inset: 0 auto auto 50%;
    width: 820px;
    height: 680px;
    object-position: center top;
  }

  .hero-glow {
    width: 430px;
  }

  .hero-copy {
    width: 100%;
    height: auto;
    margin-top: 148px;
    text-align: center;
  }

  .hero h1 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin: 0;
    font-size: clamp(46px, 16.5vw, 64px);
    line-height: 0.9;
    text-align: center;
  }

  .hero h1 span:first-child,
  .hero h1 span:last-child {
    position: static;
    inset: auto;
  }

  .hero p {
    position: static;
    width: 100%;
    margin: 24px 0 0;
    transform: none;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
  }

  .hero .button {
    position: static;
    width: min(240px, 100%);
    min-width: 0;
    margin: 18px auto 0;
    transform: none;
    font-size: 20px;
  }

  .stats {
    width: calc(100% - 32px);
    padding: 10px 0;
    gap: 24px 0;
  }

  .stats article,
  .stats article:first-child,
  .stats article:last-child {
    padding: 0 10px;
  }

  .stats strong {
    font-size: 40px;
  }

  .stats p {
    font-size: 13px;
    line-height: 1.35;
  }

  .products {
    overflow: hidden;
  }

  .product-stage {
    min-height: 1100px;
    padding-top: 168px;
  }

  .products h2 {
    top: 34px;
    left: 18px;
    font-size: 54px;
  }

  .product-see-all {
    top: 100px;
    left: 18px;
    width: 190px;
    font-size: 18px;
  }

  .product-sky {
    height: 510px;
  }

  .product-building {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
    transform: none;
  }

  .product-panel {
    top: 500px;
    height: calc(100% - 500px);
  }

  .product-chip {
    width: calc(100% - 32px);
    min-height: 42px;
    margin: 8px auto;
    padding: 9px 14px;
    font-size: 15px;
  }

  .product-chip::before {
    width: 18px;
    height: 18px;
  }

  .product-filter,
  .product-results {
    width: calc(100% - 32px);
  }

  .product-filter {
    gap: 16px;
    margin-top: 18px;
  }

  .product-filter strong {
    font-size: 30px;
  }

  .product-tabs {
    gap: 10px 14px;
    font-size: 14px;
  }

  .product-results {
    margin-top: 18px;
  }

  .product-result-grid {
    gap: 10px;
  }

  .product-result-grid article {
    min-height: 142px;
  }

  .product-results img {
    height: 142px;
  }

  .world {
    min-height: 620px;
    padding: 30px 0 0;
  }

  .world-stage {
    height: 590px;
  }

  .world-visual {
    top: 0;
    width: 520px;
    height: 520px;
  }

  .country-label {
    transform: scale(0.62);
  }

  .world-text {
    left: 18px;
    top: 470px;
    width: calc(100% - 36px);
    font-size: 34px;
  }

  .world-text span:first-child,
  .world-text span:last-child {
    font-size: 34px;
  }

  .projects {
    min-height: 0;
    padding: 62px 0 68px;
  }

  .projects-intro {
    margin-inline: 18px;
  }

  .projects-intro h2 {
    font-size: 54px;
  }

  .projects-intro p {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }

  [dir="rtl"] .projects-intro p {
    text-align: right;
  }

  .project-grid {
    width: calc(100% - 32px);
    gap: 16px;
  }

  .project-card {
    height: 310px;
  }

  .project-card-offset {
    transform: none;
  }

  .project-button {
    position: static;
    display: flex;
    width: 200px;
    margin: 24px auto 0;
  }

  .match {
    padding: 48px 0;
    overflow: hidden;
  }

  .match-card {
    width: calc(100% - 24px);
    height: auto;
    padding: 220px 0 28px;
    overflow: hidden;
  }

  .match-card img {
    left: 50%;
    top: 0;
    width: 480px;
    min-width: 480px;
    min-height: 0;
    transform: translateX(-56%);
  }

  .match-copy {
    position: relative;
    inset: auto;
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .match-copy p {
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }

  [dir="rtl"] .match-copy p {
    text-align: right;
  }

  .match-copy .button {
    width: 100%;
    font-size: 18px;
  }

  .hiring {
    height: 420px;
  }

  .hiring h2 {
    font-size: 46px;
  }

  .audience {
    height: auto;
    padding: 60px 16px;
  }

  .audience h2 {
    font-size: 48px;
  }

  .audience-cards article {
    width: 100%;
    max-width: 280px;
    height: 330px;
  }

  .new-products {
    height: auto;
    min-height: 0;
    padding: 60px 16px 40px;
  }

  .new-products-copy h2 {
    font-size: 54px;
  }

  .new-products-copy p {
    font-size: 15px;
  }

  .gallery-strip img,
  .gallery-strip img:nth-child(2) {
    height: 240px;
  }

  .representative {
    padding: 56px 16px 64px;
  }

  .representative h2 {
    margin-bottom: 32px;
    font-size: 40px;
  }

  .representative-result {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px 0;
    font-size: 14px;
  }

  .representative-result dd {
    overflow-wrap: anywhere;
  }

  .representative-submit span {
    font-size: 24px;
  }

  .site-footer {
    padding: 36px 18px;
  }

  .site-footer nav,
  .footer-about {
    font-size: 15px;
  }

  .sale-form-section {
    width: calc(100% - 28px);
    min-width: 0;
    padding: 126px 0 50px;
    grid-template-columns: minmax(0, 1fr);
  }

  .sale-copy,
  .sale-form,
  .sale-field {
    width: 100%;
    min-width: 0;
  }

  .sale-copy {
    padding-top: 24px;
  }

  .sale-copy h1 {
    max-width: 100%;
    font-size: clamp(60px, 24vw, 88px);
    overflow-wrap: anywhere;
  }

  .sale-copy p:last-child {
    max-width: 100%;
    font-size: 15px;
  }

  .sale-form {
    padding: 20px 14px;
  }

  .sale-field input,
  .sale-field select,
  .sale-field textarea {
    min-width: 0;
    max-width: 100%;
  }

  .all-products-list,
  .product-category-page,
  .product-detail-page,
  .project-detail-page,
  .projects-listing,
  .about-hero,
  .about-timeline,
  .about-honors {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 23px;
  }

  .brand-text small {
    letter-spacing: 3px;
  }

  .product-row-items,
  .project-product-row {
    gap: 14px 8px;
  }

  .product-row-items img,
  .project-product-row img {
    height: 118px;
  }

  .product-detail-title,
  .project-detail-title {
    font-size: 27px;
  }

  .climate-icons {
    gap: 8px;
  }

  .climate-icons img {
    width: 34px;
    height: 34px;
  }
}

/* EOF responsive menu overrides */
@media (max-width: 480px) {
  .site-header.is-open {
    max-height: calc(100dvh - 20px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    align-content: start;
    scrollbar-width: thin;
  }

  .site-header.is-open .products-menu {
    width: 100%;
    max-width: 100%;
    padding: 16px 12px;
    overflow: hidden;
  }

  .site-header.is-open .nav-item.has-submenu.is-open .products-menu {
    transform: none;
  }

  .site-header.is-open .products-menu strong {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .site-header.is-open .products-menu details {
    min-width: 0;
    margin-bottom: 18px;
  }

  .site-header.is-open .products-menu summary {
    min-width: 0;
    gap: 8px;
    font-size: 18px;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-header.is-open .submenu-series {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-header.is-open .submenu-series a {
    min-width: 0;
    font-size: 16px;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 600px) and (max-width: 720px) {
  .product-detail-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 12px 22px;
    align-items: start;
  }

  .product-detail-summary h2,
  .product-detail-summary h3,
  .product-detail-summary p {
    grid-column: 1;
  }

  .product-detail-summary h2,
  .product-detail-summary h3 {
    font-size: 30px;
  }

  .product-detail-summary p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .product-detail-render {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 100%;
    height: auto;
    aspect-ratio: 368 / 326;
    border-radius: 0;
  }

  .product-detail-info {
    margin-top: 34px;
  }
}
