:root {
  --black: #030303;
  --ink: #101010;
  --white: #ffffff;
  --paper: #f5f4f1;
  --line: #d8d6d0;
  --muted: #8c8c8c;
  --soft: #d7d7d7;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body[dir="rtl"] {
  font-family: Arial, "Tahoma", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(330px, 1.25fr) auto minmax(170px, 0.75fr);
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: invert(1);
}

.brand-wordmark {
  width: clamp(160px, 18vw, 250px);
  height: auto;
  filter: none;
}

.brand img.brand-wordmark {
  width: clamp(160px, 18vw, 250px);
  height: auto;
  filter: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 40px);
  color: var(--soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.wa-link {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.nav a,
.wa-link,
.lang-toggle,
.menu-toggle,
.primary-link,
.secondary-link,
.visit-actions a {
  transition: opacity 180ms ease, background 180ms ease, color 180ms ease;
}

.nav a:hover,
.wa-link:hover,
.lang-toggle:hover,
.primary-link:hover,
.secondary-link:hover,
.visit-actions a:hover {
  opacity: 0.72;
}

.floating-instagram {
  position: fixed;
  left: 0;
  top: 52%;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background: rgba(3, 3, 3, 0.46);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.floating-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-instagram:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  transform: translateY(-50%) translateX(3px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: var(--black);
}

.hero-slider,
.hero-slide,
.hero img {
  display: block;
  width: 100%;
  height: calc(100vh - 92px);
}

.hero-slider {
  position: relative;
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero img {
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-controls {
  position: absolute;
  top: 50%;
  right: clamp(18px, 2.6vw, 42px);
  left: clamp(18px, 2.6vw, 42px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-controls button:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  transform: translateY(-1px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(72px, 9vw, 128px) clamp(22px, 6vw, 84px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-copy {
  display: flex;
  min-height: 68vh;
  max-width: 940px;
  flex-direction: column;
  justify-content: center;
}

.intro-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(28px, 4vw, 64px);
}

.intro-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 0.68;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: #101010;
}

.intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.intro-card::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  min-height: 640px;
  background: var(--black);
  color: var(--white);
}

.about-copy {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 640px;
  overflow: hidden;
  padding: clamp(48px, 7vw, 104px) clamp(28px, 6vw, 84px);
}

.about-background {
  position: absolute;
  top: -13%;
  right: 0;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 72%;
  filter: grayscale(1) contrast(1.1) brightness(0.5);
}

.about-copy::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  content: "";
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.about-content .eyebrow {
  margin-bottom: clamp(26px, 4vw, 48px);
  color: #d0d0d0;
}

.about-content h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 84px);
}

.about-pillars {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 690px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.about-pillars article {
  position: relative;
}

.about-pillar-link {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: baseline;
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: padding 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.about-pillar-link::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  opacity: 0;
  transform: translate(-6px, 4px);
  transition: opacity 240ms ease, transform 240ms ease, color 240ms ease;
}

.about-pillar-link:hover,
.about-pillar-link:focus-visible {
  padding-left: 14px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  outline: 0;
}

.about-pillar-link:hover::after,
.about-pillar-link:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--white);
}

.about-pillars h3 {
  margin: 0;
  color: var(--white);
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-pillar-link:hover h3,
.about-pillar-link:focus-visible h3 {
  color: var(--white);
}

.about-pillars p {
  margin: 0;
  color: #dedede;
  font-size: 14px;
  line-height: 1.6;
}

.about-pillar-link:hover p,
.about-pillar-link:focus-visible p {
  color: var(--white);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 20px);
  align-items: center;
  min-width: 0;
  padding: clamp(22px, 2.8vw, 40px) clamp(10px, 1.5vw, 22px);
  background: var(--black);
}

.about-gallery figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 4;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.12);
}

.about-gallery figure:last-child img {
  object-position: 52% 34%;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Baskerville", "Baskerville Old Face", "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(50px, 7.4vw, 104px);
  line-height: 0.96;
}

.intro-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 0;
  color: #eeeeee;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-link,
.secondary-link,
.lead-form button,
.visit-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-link,
.lead-form button {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.secondary-link {
  color: var(--white);
}

.catalog,
.visit {
  padding: clamp(76px, 11vw, 148px) clamp(22px, 6vw, 84px);
}

.wide-carousel {
  position: relative;
  padding: clamp(54px, 8vw, 104px) 0 clamp(72px, 10vw, 128px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.carousel-head {
  display: block;
  align-items: center;
  padding: 0 clamp(22px, 6vw, 84px) 24px;
}

.carousel-head .eyebrow {
  margin-bottom: 0;
}

.carousel-controls {
  position: absolute;
  top: 54%;
  right: clamp(12px, 2.4vw, 36px);
  left: clamp(12px, 2.4vw, 36px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.carousel-controls button {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: var(--white);
  font: inherit;
  font-size: 30px;
  line-height: 1;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-controls button:hover {
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.86);
  transform: scale(1.06);
}

.wide-track {
  display: grid;
  grid-auto-columns: minmax(74vw, 1fr);
  grid-auto-flow: column;
  gap: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  padding: 0 clamp(22px, 6vw, 84px) 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.wide-track::-webkit-scrollbar {
  display: none;
}

.wide-track figure {
  position: relative;
  overflow: hidden;
  height: clamp(520px, 68vh, 760px);
  margin: 0;
  background: #121212;
  scroll-snap-align: center;
}

.wide-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog .eyebrow,
.visit .eyebrow {
  color: #606060;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.catalog-copy p {
  margin: 0;
  color: #3f3f3f;
  font-size: 17px;
  line-height: 1.72;
}

.style-collections {
  padding: clamp(76px, 10vw, 136px) clamp(22px, 6vw, 84px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.style-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.style-intro .eyebrow {
  color: #606060;
}

.style-intro h2 {
  margin-bottom: 0;
}

.style-intro p:not(.eyebrow) {
  margin: 0;
  color: #3f3f3f;
  font-size: 17px;
  line-height: 1.7;
}

.style-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 24vw, 420px);
  grid-template-columns: none;
  gap: clamp(16px, 1.7vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #1f1f1f transparent;
}

.style-grid::-webkit-scrollbar {
  height: 4px;
}

.style-grid::-webkit-scrollbar-track {
  background: transparent;
}

.style-grid::-webkit-scrollbar-thumb {
  background: #1f1f1f;
}

.style-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.74;
  min-height: 0;
  background: #dedbd3;
  scroll-snap-align: start;
}

.style-card-large {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.style-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
}

.style-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.style-card:hover img {
  transform: scale(1.035);
}

body.modal-open {
  overflow: hidden;
}

.catalog-modal[hidden] {
  display: none;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: stretch;
  background: rgba(0, 0, 0, 0.72);
}

.catalog-modal-panel {
  position: relative;
  overflow: auto;
  width: min(1180px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  margin: auto;
  padding: clamp(24px, 4vw, 54px);
  background: #f4f2ed;
  color: var(--black);
}

.catalog-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 44px;
  height: 44px;
  margin: -12px -12px 0 18px;
  border: 1px solid #1f1f1f;
  background: #f4f2ed;
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.catalog-modal-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 48px);
  clear: both;
}

.catalog-modal-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: #686868;
}

.catalog-modal-head h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
}

.catalog-modal-head p:not(.eyebrow) {
  margin: 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.7;
}

.about-detail-panel {
  width: min(1080px, calc(100vw - 28px));
  background: #fffdf8;
}

.about-detail-head {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.about-detail-head .eyebrow {
  grid-column: auto;
  margin-bottom: 0;
}

.about-detail-head h2 {
  max-width: none;
  font-size: clamp(42px, 4.8vw, 68px);
  white-space: nowrap;
}

.about-detail-body {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.about-detail-body .company-about-detail {
  max-width: 860px;
}

.about-detail-body .company-service-list {
  margin-top: 20px;
}

.company-factory-video {
  position: relative;
  overflow: hidden;
  width: min(900px, 100%);
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #d9d7d2;
}

.company-factory-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.factory-video-cache {
  position: fixed;
  top: -240px;
  left: -360px;
  z-index: -1;
  overflow: hidden;
  width: 320px;
  height: 180px;
  opacity: 0.001;
  pointer-events: none;
  contain: strict;
}

.factory-video-cache video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-detail-gallery {
  max-width: 860px;
  margin-top: 0;
}

.about-services-gallery {
  max-width: 900px;
}

.catalog-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.catalog-page {
  position: relative;
  overflow: hidden;
  background: #e5e1d8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.catalog-page img {
  width: 100%;
  height: auto;
}

.catalog-page span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.catalog-lock {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 0.6fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-top: clamp(22px, 4vw, 44px);
  padding-top: clamp(22px, 4vw, 44px);
  border-top: 1px solid #c9c4bb;
}

.catalog-lock .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -10px;
  color: #686868;
}

.catalog-lock h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}

.catalog-lock p:not(.eyebrow) {
  margin: 0;
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.7;
}

.catalog-lock button {
  min-width: 220px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog.lead-modal[hidden] {
  display: none;
}

.catalog.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  width: min(1040px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  margin: auto;
  overflow: auto;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: #fffdf8;
  color: var(--black);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.catalog.lead-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.78);
}

.lead-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid #1f1f1f;
  background: #fffdf8;
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.catalog.lead-modal .catalog-copy {
  max-width: 520px;
  padding-right: 34px;
}

.catalog.lead-modal .lead-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.focus {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(520px, 1.08fr);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.focus-company {
  display: flex;
  min-height: 560px;
  padding: clamp(46px, 6vw, 88px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

body[dir="rtl"] .focus-company {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-company h2 {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
}

#projects {
  scroll-margin-top: 120px;
}

.focus-company > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.75;
}

.company-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 42px;
  padding: 0 0 9px;
  gap: 22px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.company-more span {
  margin: 0;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.case-carousel {
  display: flex;
  min-height: 560px;
  padding: clamp(42px, 5.4vw, 78px);
  align-items: center;
}

.case-media {
  position: relative;
  width: 100%;
}

.case-track {
  width: 100%;
}

.case-slide {
  display: none;
  margin: 0;
}

.case-slide.is-active {
  display: block;
}

.case-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.case-slide figcaption {
  display: grid;
  margin-top: 18px;
  place-items: center;
  text-align: center;
}

.case-slide figcaption span {
  margin: 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.case-slide figcaption p {
  max-width: 430px;
  margin: 0;
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.7;
}

.case-controls {
  position: absolute;
  z-index: 3;
  top: calc((100% - 47px) / 2);
  right: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

body[dir="rtl"] .case-controls {
  right: 16px;
  left: 16px;
}

.case-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.case-controls button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.focus-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 210px;
  padding: clamp(30px, 3.8vw, 54px);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-list article:last-child,
body[dir="rtl"] .focus-list article:last-child {
  border-right: 0;
  border-left: 0;
}

body[dir="rtl"] .focus-list article {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-list article > span {
  align-self: start;
  margin: 5px 0 0;
  color: #777;
  font-size: 11px;
  letter-spacing: 0.18em;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.focus-list p {
  max-width: 360px;
  margin: 0;
  color: #c8c8c8;
  font-size: 14px;
  line-height: 1.7;
}

.company-services {
  margin-top: clamp(30px, 5vw, 70px);
  padding-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid #c9c4bb;
}

.company-about-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 48px);
  padding-top: clamp(28px, 4vw, 50px);
  border-top: 1px solid #c9c4bb;
}

.company-about-detail p,
.company-services-intro,
.company-services-closing {
  margin: 0;
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.75;
}

.company-services > h3,
.company-factory h3 {
  max-width: 760px;
  margin: 12px 0 clamp(28px, 4vw, 48px);
  font-size: clamp(30px, 4vw, 54px);
}

.company-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c9c4bb;
  border-bottom: 1px solid #c9c4bb;
}

.company-service-grid article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid #c9c4bb;
}

body[dir="rtl"] .company-service-grid article {
  border-right: 0;
  border-left: 1px solid #c9c4bb;
}

.company-service-grid article:last-child,
body[dir="rtl"] .company-service-grid article:last-child {
  border-right: 0;
  border-left: 0;
}

.company-service-grid span {
  color: #777;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.company-service-grid h4 {
  margin: 58px 0 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}

.company-services-intro {
  max-width: 680px;
  margin-bottom: 26px;
}

.company-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #c9c4bb;
  list-style: none;
}

.company-service-list li {
  position: relative;
  padding: 17px 24px 17px 28px;
  border-top: 1px solid #c9c4bb;
  color: #202020;
  font-size: 14px;
  line-height: 1.5;
}

.company-service-list li:nth-child(odd) {
  border-right: 1px solid #c9c4bb;
}

body[dir="rtl"] .company-service-list li:nth-child(odd) {
  border-right: 0;
  border-left: 1px solid #c9c4bb;
}

.company-service-list li::before {
  position: absolute;
  top: 24px;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  content: "";
}

body[dir="rtl"] .company-service-list li::before {
  right: 10px;
  left: auto;
}

.company-services-closing {
  max-width: 820px;
  margin-top: 28px;
}

.company-product-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: start;
  margin-top: clamp(26px, 4vw, 52px);
}

.company-product-story figure {
  overflow: hidden;
  width: 100%;
  min-height: 0;
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
}

.company-product-story img,
.company-factory-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-factory {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  margin-top: clamp(42px, 7vw, 88px);
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid #c9c4bb;
}

.company-factory-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.34fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.company-factory-side-image {
  width: 100%;
  margin: 4px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e7e2d8;
}

.company-factory-side-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-factory-inline-image {
  width: min(72%, 420px);
  margin: 22px 0 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e7e2d8;
}

.company-factory-inline-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-detail-factory-intro {
  float: right;
  width: min(32%, 260px);
  margin: 0 0 18px clamp(18px, 3vw, 30px);
}

.company-factory-text p {
  margin: 0 0 18px;
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.75;
}

.company-factory-text p:last-child {
  margin-bottom: 0;
}

.company-factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(34px, 4vw, 56px);
}

.company-factory-gallery img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.catalog {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding: clamp(56px, 7vw, 88px) clamp(22px, 6vw, 84px);
  background: var(--white);
}

.catalog-copy {
  max-width: 760px;
}

.catalog-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.8vw, 62px);
}

.catalog-copy p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.form-hidden {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #383838;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form .consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: #555;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 0;
  border: 0;
  border-bottom: 1px solid #1f1f1f;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 17px;
}

.lead-form select {
  appearance: none;
  padding-right: 28px;
  background-image: linear-gradient(45deg, transparent 50%, #1f1f1f 50%), linear-gradient(135deg, #1f1f1f 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.lead-form input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--black);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 0;
  border-color: var(--black);
}

.lead-form button {
  width: fit-content;
  min-width: 190px;
  min-height: 44px;
  margin-top: 8px;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  cursor: pointer;
}

.lead-form.is-submitted button {
  opacity: 0.58;
}

.lead-success {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.lead-success[hidden] {
  display: none;
}

.lead-success p {
  margin: 0;
  color: #343434;
  font-size: 14px;
  line-height: 1.55;
}

.lead-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lead-success-actions button,
.lead-success-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 42px;
  margin: 0;
  border: 1px solid var(--black);
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.lead-success-actions button,
.lead-action-primary {
  background: var(--black);
  color: var(--white);
}

.lead-action-secondary {
  background: transparent;
  color: var(--black);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--black);
}

.visit-map {
  position: relative;
  display: block;
  height: 400px;
  min-height: 0;
  overflow: hidden;
  background: #eeeeeb;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.92) brightness(1.06);
}

.map-region {
  position: absolute;
  top: 34%;
  left: 42%;
  color: rgba(0, 0, 0, 0.22);
  font-size: clamp(30px, 4vw, 66px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.map-location {
  position: absolute;
  top: 41%;
  left: 60.5%;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translate(-18px, -100%);
}

.map-marker {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--black);
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.08);
  transform: rotate(-45deg);
}

.map-marker::after {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.map-location-name {
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.map-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 13px 17px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.map-caption:hover {
  background: var(--white);
  color: var(--black);
}

.visit-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(30px, 3.5vw, 52px);
  color: var(--white);
}

.visit .eyebrow {
  color: #a8a8a8;
}

.visit h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 3vw, 48px);
}

.visit address {
  max-width: 340px;
  color: #b7b7b7;
  font-style: normal;
  line-height: 1.7;
}

.visit-actions {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 520px;
}

.visit-actions .contact-link {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  justify-content: initial;
  width: 100%;
  min-height: 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  color: var(--white);
  font-size: inherit;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

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

.contact-link span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-link small {
  color: #999999;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body[dir="rtl"] .visit-actions .contact-link {
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(22px, 6vw, 84px);
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[dir="rtl"] .nav,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .visit-actions {
  direction: rtl;
}

body[dir="rtl"] .brand-main {
  letter-spacing: 0.2em;
}

body[dir="rtl"] .primary-link,
body[dir="rtl"] .secondary-link,
body[dir="rtl"] .lead-form button,
body[dir="rtl"] .visit-actions a,
body[dir="rtl"] .lang-toggle,
body[dir="rtl"] .wa-link,
body[dir="rtl"] .menu-toggle,
body[dir="rtl"] .mobile-menu a {
  font-size: 13px;
  letter-spacing: 0;
}

body[dir="rtl"] .lead-form select {
  padding-right: 0;
  padding-left: 28px;
  background-position: 14px 50%, 8px 50%;
}

body[dir="rtl"] .about-pillar-link {
  text-align: right;
}

body[dir="rtl"] .about-pillar-link::after {
  right: auto;
  left: 0;
}

@media (max-width: 980px) {
  #projects {
    scroll-margin-top: 96px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 12px 18px;
  }

  .floating-instagram {
    top: auto;
    bottom: 18px;
    left: 0;
    width: 42px;
    height: 42px;
    transform: none;
  }

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

  .nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .wa-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
    font: inherit;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle i {
    position: relative;
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    top: -6px;
  }

  .menu-toggle i::after {
    top: 6px;
  }

  .menu-open .menu-toggle i {
    background: transparent;
  }

  .menu-open .menu-toggle i::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle i::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(3, 3, 3, 0.98);
    color: var(--white);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .brand-main {
    font-size: 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand img.brand-wordmark {
    width: clamp(126px, 42vw, 176px);
  }

  .wide-track {
    grid-auto-columns: minmax(86vw, 1fr);
  }

  .wide-track figure {
    height: 560px;
  }

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

  .intro-copy {
    min-height: auto;
  }

  .intro-gallery {
    max-width: 720px;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-copy {
    min-height: 560px;
  }

  .about-gallery {
    height: 560px;
  }

  .style-intro {
    grid-template-columns: 1fr;
  }

  .style-grid {
    grid-auto-columns: minmax(270px, 38vw);
  }

  .style-card,
  .style-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .catalog-modal-head,
  .catalog-lock {
    grid-template-columns: 1fr;
  }

  .about-detail-head h2 {
    white-space: normal;
  }

  .catalog-lock button {
    width: fit-content;
  }

  .catalog,
  .visit {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

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

  .focus-company,
  body[dir="rtl"] .focus-company {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .case-carousel {
    min-height: auto;
  }

  .focus-list {
    grid-template-columns: 1fr;
  }

  .focus-list article,
  body[dir="rtl"] .focus-list article {
    min-height: 190px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .focus-list article:last-child,
  body[dir="rtl"] .focus-list article:last-child {
    border-bottom: 0;
  }

  .company-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-about-detail {
    grid-template-columns: 1fr;
  }

  .company-service-grid article:nth-child(2) {
    border-right: 0;
  }

  body[dir="rtl"] .company-service-grid article:nth-child(2) {
    border-left: 0;
  }

  .company-service-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #c9c4bb;
  }

  .company-factory {
    grid-template-columns: 1fr;
  }

  .company-factory-intro {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 0.3fr);
  }

  .company-factory-gallery {
    margin-top: 20px;
  }

  .visit-actions {
    justify-content: flex-start;
  }

  .visit-map {
    height: min(52vw, 400px);
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 82px;
    padding: 14px 16px;
  }

  .floating-instagram {
    bottom: 14px;
    left: 0;
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-wordmark {
    width: clamp(108px, 34vw, 152px);
    max-width: none;
  }

  .wa-link {
    display: none;
  }

  .lang-toggle {
    min-height: 36px;
    padding: 0 11px;
  }

  .hero {
    min-height: 0;
    height: auto;
    background: var(--black);
  }

  .hero-slider {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero picture,
  .hero-slide,
  .hero img {
    min-height: 0;
    height: 100%;
  }

  .hero img {
    object-fit: cover;
    object-position: center center;
  }

  .hero-slide:nth-child(1) img,
  .hero-slide:nth-child(3) img,
  .hero-slide:nth-child(5) img,
  .hero-slide:nth-child(7) img {
    object-position: center 54%;
  }

  .hero-slide:nth-child(4) img,
  .hero-slide:nth-child(8) img {
    object-position: center 56%;
  }

  .hero-slide:nth-child(9) img {
    object-position: center 52%;
  }

  .hero-slide:nth-child(10) img {
    object-position: center 50%;
  }

  .hero-controls {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 43px);
    line-height: 1;
  }

  h2 {
    font-size: 40px;
  }

  .intro {
    padding: 64px 16px;
  }

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

  .intro-card {
    aspect-ratio: 0.82;
  }

  .style-collections {
    padding: 64px 16px;
  }

  .style-grid {
    grid-auto-columns: minmax(248px, 78vw);
  }

  .style-card,
  .style-card-large {
    min-height: 0;
  }

  .catalog-modal-panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 22px 16px;
  }

  [data-catalog-modal] .catalog-modal-panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    padding: 22px 16px calc(112px + env(safe-area-inset-bottom, 0px));
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  [data-about-modal] {
    place-items: stretch;
  }

  [data-about-modal] .about-detail-panel {
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    padding: calc(22px + env(safe-area-inset-top, 0px)) 16px calc(30px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  [data-about-modal] .company-factory-video {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    contain: layout paint;
  }

  [data-about-modal] .company-factory-video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .catalog.lead-modal {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-content: start;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    padding: calc(58px + env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
  }

  .catalog.lead-modal .catalog-copy {
    width: 100%;
    max-width: none;
    padding: 0 50px 0 2px;
  }

  .catalog.lead-modal .catalog-copy h2 {
    margin: 0;
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.05;
  }

  .catalog.lead-modal .catalog-copy p {
    display: none;
  }

  .catalog.lead-modal .lead-form {
    width: 100%;
    padding: 14px 16px 16px;
    gap: 9px;
    box-shadow: none;
  }

  .catalog.lead-modal .lead-form label {
    gap: 5px;
    font-size: 10px;
  }

  .catalog.lead-modal .lead-form input,
  .catalog.lead-modal .lead-form select {
    min-height: 40px;
    font-size: 16px;
  }

  .catalog.lead-modal .lead-form .consent-row {
    gap: 9px;
    font-size: 10px;
  }

  .catalog.lead-modal .lead-form button {
    width: 100%;
    min-height: 46px;
  }

  .catalog.lead-modal .lead-close {
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .catalog-close {
    width: 40px;
    height: 40px;
    margin: -8px -2px 0 12px;
  }

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

  .catalog-lock button {
    width: 100%;
  }

  [data-catalog-modal] .catalog-lock button {
    position: fixed;
    z-index: 56;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: auto;
    min-height: 52px;
    box-shadow:
      0 0 0 12px rgba(244, 242, 237, 0.96),
      0 -12px 34px rgba(0, 0, 0, 0.12);
  }

  .focus-company {
    padding: 54px 20px;
  }

  .focus-company h2 {
    font-size: 48px;
  }

  .case-carousel {
    padding: 20px 20px 46px;
  }

  .case-track {
    display: grid;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .case-track::-webkit-scrollbar {
    display: none;
  }

  .case-slide,
  .case-slide.is-active {
    display: block;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .case-slide figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-controls {
    top: calc((100% - 47px) / 2);
    right: 10px;
    left: 10px;
  }

  body[dir="rtl"] .case-controls {
    right: 10px;
    left: 10px;
  }

  .focus-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 190px;
    padding: 34px 20px;
    gap: 12px;
  }

  .company-service-grid {
    grid-template-columns: 1fr;
  }

  .company-service-list {
    grid-template-columns: 1fr;
  }

  .company-service-list li:nth-child(odd),
  body[dir="rtl"] .company-service-list li:nth-child(odd) {
    border-right: 0;
    border-left: 0;
  }

  .company-service-grid article,
  body[dir="rtl"] .company-service-grid article,
  .company-service-grid article:nth-child(2),
  body[dir="rtl"] .company-service-grid article:nth-child(2) {
    min-height: 150px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #c9c4bb;
  }

  .company-service-grid article:last-child {
    border-bottom: 0;
  }

  .company-service-grid h4 {
    margin-top: 38px;
  }

  .company-product-story {
    grid-template-columns: 1fr;
  }

  .company-product-story figure {
    min-height: 0;
  }

  .company-factory-intro {
    grid-template-columns: 1fr;
  }

  .company-factory-side-image {
    max-width: 260px;
  }

  .company-factory-inline-image {
    width: 100%;
    max-width: 420px;
  }

  .about-detail-factory-intro {
    float: none;
    width: 100%;
    max-width: 260px;
    margin: 0 0 22px;
  }

  .company-factory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-copy {
    min-height: 500px;
    padding: 48px 20px;
  }

  .about-content h2 {
    margin-bottom: 22px;
    font-size: 44px;
  }

  .about-content .eyebrow {
    font-size: 14px;
    letter-spacing: 0.2em;
  }

  .about-content > p:last-child {
    font-size: 15px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-pillars article {
    padding: 0;
  }

  .about-pillar-link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px 40px 17px 0;
    transition: padding 240ms ease, border-color 240ms ease, background-color 240ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
  }

  .about-pillar-link::after {
    content: "↗";
    top: 10px;
    right: 4px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 38px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    font-size: 11px;
    line-height: 1;
    opacity: 1;
    transform: none;
  }

  .about.about-awaiting-entry .about-pillars article {
    opacity: 0;
    transform: translateY(15px);
  }

  .about.about-awaiting-entry.is-in-view .about-pillars article {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 480ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about.about-awaiting-entry.is-in-view .about-pillars article:nth-child(2) {
    transition-delay: 90ms;
  }

  .about.about-awaiting-entry.is-in-view .about-pillars article:nth-child(3) {
    transition-delay: 180ms;
  }

  .about.about-awaiting-entry.is-in-view .about-pillar-link::after {
    animation: about-arrow-box-cue 820ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
  }

  .about-pillar-link:active {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.07);
  }

  .about-pillars h3 {
    padding-right: 10px;
  }

  .about-gallery {
    height: 440px;
  }


  .catalog {
    gap: 34px;
    padding: 52px 16px;
  }

  .catalog-copy h2 {
    font-size: 40px;
  }

  .wide-carousel {
    padding-top: 42px;
  }

  .carousel-head {
    padding-right: 16px;
    padding-left: 16px;
  }

  .carousel-controls {
    top: calc(58px + 28vw);
    right: 8px;
    left: 8px;
  }

  .carousel-controls button {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .wide-track {
    grid-auto-columns: calc(100vw - 32px);
    align-items: start;
    padding-right: 16px;
    padding-left: 16px;
  }

  .wide-track figure {
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    scroll-snap-stop: always;
  }

  .wide-track img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .visit-map {
    height: 260px;
    min-height: 0;
  }

  .map-region {
    top: 31%;
    left: 43%;
    font-size: 30px;
  }

  .map-location {
    top: 43%;
    left: 55%;
    gap: 11px;
  }

  .map-marker {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .map-marker::after {
    top: 9px;
    left: 9px;
    width: 12px;
    height: 12px;
  }

  .map-location-name {
    padding: 10px 11px;
    font-size: 9px;
  }

  .visit-info {
    gap: 32px;
    padding: 36px 20px;
  }

  .map-caption {
    right: 16px;
    bottom: 16px;
  }

  .primary-link,
  .secondary-link,
  .visit-actions a,
  .lead-form button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@keyframes about-arrow-box-cue {
  0% {
    opacity: 0.52;
    transform: scale(0.78);
  }
  55% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes about-arrow-cue {
  0% {
    color: rgba(255, 255, 255, 0.34);
    transform: translate(-5px, 5px);
  }
  55% {
    color: rgba(255, 255, 255, 0.78);
    transform: translate(1px, -1px);
  }
  100% {
    color: rgba(255, 255, 255, 0.42);
    transform: translate(0, 0);
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .about.about-awaiting-entry .about-pillars article,
  .about.about-awaiting-entry.is-in-view .about-pillars article {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about.about-awaiting-entry.is-in-view .about-pillar-link::after {
    animation: none;
  }
}
