@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #f7f3ea;
  --white: #fffefa;
  --ink: #1c211d;
  --muted: #666c65;
  --line: #ded7c6;
  --gold: #b88935;
  --grain: #e3c985;
  --olive: #59644a;
  --steel: #6f8291;
  --shadow: 0 22px 60px rgba(40, 34, 24, 0.1);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(227, 201, 133, 0.26), transparent 31rem),
    radial-gradient(circle at 92% 8%, rgba(111, 130, 145, 0.18), transparent 28rem),
    linear-gradient(135deg, #fffdf8 0%, #f4eee2 42%, #edf0eb 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  background-attachment: fixed;
}

body,
button,
input,
textarea {
  font-synthesis: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  transition: padding 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  width: 100%;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(248, 245, 238, 0.88);
  border-bottom: 1px solid rgba(222, 215, 198, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand img,
.footer-brand img {
  object-fit: contain;
}

.brand img {
  width: 62px;
  height: 62px;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  max-width: 170px;
  line-height: 1.2;
}

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

.site-nav a {
  padding: 12px 16px;
  border-radius: 6px;
  color: #4b5049;
  font-size: 15px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(184, 137, 53, 0.12);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(102, 108, 101, 0.18);
}

.language-dock {
  position: fixed;
  left: 0;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 8px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(222, 215, 198, 0.95);
  border-left: 0;
  border-radius: 0 18px 18px 0;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 18px 46px rgba(55, 47, 32, 0.13);
  backdrop-filter: blur(16px);
  transform: translateX(-128px);
  transition: transform 180ms ease;
}

.language-dock:hover,
.language-dock:focus-within {
  transform: translateX(0);
}

.language-dock a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 118px;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-dock a:hover,
.language-dock a.is-active {
  color: var(--ink);
  background: rgba(184, 137, 53, 0.12);
}

.flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(31, 33, 29, 0.14);
}

.flag-us {
  background:
    linear-gradient(90deg, #234177 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #b22234 0 2px, #fff 2px 4px);
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 5px 0 #fff, 10px 0 #fff, 0 5px #fff, 5px 5px #fff, 10px 5px #fff;
}

.flag-ar {
  background: #0b7d3b;
}

.flag-ar::before {
  content: "AR";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.flag-ru {
  background: linear-gradient(180deg, #fff 0 33.33%, #1f57a4 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid transparent;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 245, 238, 0.97) 0%, rgba(248, 245, 238, 0.9) 38%, rgba(248, 245, 238, 0.48) 64%, rgba(248, 245, 238, 0.2) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/photo-hero.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(0.72);
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 132px;
}

.hero-content > * {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--olive);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy,
.page-hero p,
.about-hero p,
.work-with-us p,
.contact-panel p,
.team-note p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy {
  margin: 26px 0 34px;
}

.hero-copy.compact-copy {
  max-width: 610px;
  margin-top: -14px;
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #25291f;
  border-radius: 6px;
  background: #25291f;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olive);
  border-color: var(--olive);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.numbers {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: -72px auto 0;
}

.numbers.about-numbers {
  margin-top: 72px;
}

.number-card {
  min-height: 158px;
  padding: 34px;
  border: 1px solid rgba(222, 215, 198, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.9), rgba(245, 237, 219, 0.68)),
    radial-gradient(circle at 100% 0%, rgba(184, 137, 53, 0.12), transparent 10rem);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(55, 47, 32, 0.08);
}

.number-card strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.number-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 720px;
}

.product-grid,
.product-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card,
.detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(55, 47, 32, 0.06);
}

.product-card img,
.detail-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.product-card div,
.detail-card {
  padding: 22px;
}

.product-card p,
.detail-card p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-card h3,
.detail-card h2 {
  margin-bottom: 12px;
  font-size: 27px;
}

.product-card span,
.detail-card span,
.approach-item p,
.site-footer,
.contact-strip,
.contact-details {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.approach {
  padding-top: 120px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.approach-item {
  min-height: 220px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(222, 215, 198, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.84), rgba(246, 239, 224, 0.64)),
    radial-gradient(circle at 100% 0%, rgba(184, 137, 53, 0.08), transparent 12rem);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(55, 47, 32, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.approach-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 137, 53, 0.38);
  box-shadow: 0 24px 58px rgba(55, 47, 32, 0.11);
}

.approach-item h3 {
  margin-bottom: 16px;
}

.work-with-us,
.contact-strip,
.contact-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 112px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.9), rgba(236, 229, 212, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(184, 137, 53, 0.14), transparent 18rem);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.work-with-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 46px;
}

.work-with-us p {
  max-width: 720px;
  margin: 20px 0 0;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  margin-top: 36px;
}

.contact-strip p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-strip a,
.contact-details a,
.team-card a,
.site-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(102, 108, 101, 0.32);
  text-underline-offset: 4px;
}

.contact-strip a:hover,
.contact-details a:hover,
.team-card a:hover,
.site-footer a:hover {
  color: var(--ink);
  text-decoration-color: rgba(184, 137, 53, 0.48);
}

.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  white-space: nowrap;
}

.page-hero,
.about-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0 34px;
}

.page-hero.compact > div {
  max-width: 830px;
}

.page-hero h1,
.about-hero h1 {
  max-width: 920px;
}

.page-hero p,
.about-hero p {
  max-width: 780px;
  margin: 24px 0 0;
}

.product-page-grid {
  padding-top: 42px;
}

.detail-card img {
  margin: -22px -22px 22px;
  width: calc(100% + 44px);
  max-width: none;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  padding-top: 52px;
}

.ceo-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.76);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ceo-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #e9e0cf;
}

.ceo-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: ceoFade 25s infinite;
}

.ceo-slider img.ceo-main-photo {
  object-position: center top;
}

.ceo-slider img:nth-child(2) {
  animation-delay: 5s;
}

.ceo-slider img:nth-child(3) {
  animation-delay: 10s;
}

.ceo-slider img:nth-child(4) {
  animation-delay: 15s;
}

.ceo-slider img:nth-child(5) {
  animation-delay: 20s;
}

@keyframes ceoFade {
  0%,
  16% {
    opacity: 1;
    transform: scale(1);
  }

  22%,
  100% {
    opacity: 0;
    transform: scale(1.025);
  }
}

.ceo-copy {
  display: grid;
  align-content: center;
  padding: clamp(46px, 6vw, 78px);
}

.ceo-copy strong {
  display: block;
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.ceo-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.team-card,
.team-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(55, 47, 32, 0.06);
}

.team-card {
  padding: 18px;
}

.team-photo,
.member-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.team-photo {
  background: linear-gradient(145deg, #f4ead4, #c5aa68);
  color: #352a17;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
}

.team-card h2 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.team-card p {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.member-contact {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.4;
}

.member-contact a {
  color: var(--muted);
  text-decoration-color: rgba(102, 108, 101, 0.32);
}

.team-note {
  padding: 34px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 46px;
  align-items: center;
  padding-bottom: 0;
}

.about-image {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.75fr);
  gap: 34px;
  padding: 42px;
}

.contact-panel p {
  margin: 18px 0 0;
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 12px;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 110px auto 0;
  padding: 38px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-brand span {
  max-width: 360px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-location {
  color: var(--muted);
  font-size: 14px;
}

.footer-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(102, 108, 101, 0.24);
  border-radius: 7px;
  background: rgba(255, 254, 250, 0.7);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-icon.mail::before {
  content: "✉";
  font-size: 14px;
}

.footer-icon.whatsapp::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.6 2.33A7.85 7.85 0 0 0 8.02 0C3.67 0 .12 3.54.12 7.9c0 1.39.36 2.75 1.05 3.95L.05 16l4.25-1.11a7.9 7.9 0 0 0 3.72.95h.01c4.36 0 7.9-3.54 7.9-7.9 0-2.11-.82-4.09-2.33-5.61zM8.03 14.5h-.01a6.57 6.57 0 0 1-3.35-.92l-.24-.14-2.52.66.67-2.46-.16-.25a6.55 6.55 0 0 1-1.01-3.49c0-3.63 2.96-6.58 6.6-6.58 1.76 0 3.41.69 4.65 1.93a6.54 6.54 0 0 1 1.93 4.66c0 3.64-2.96 6.59-6.56 6.59zm3.61-4.93c-.2-.1-1.17-.58-1.35-.64-.18-.07-.31-.1-.44.1-.13.19-.51.64-.62.77-.11.13-.23.15-.42.05-.2-.1-.83-.31-1.58-.98-.58-.52-.98-1.16-1.09-1.36-.11-.2-.01-.3.09-.4.09-.09.2-.23.3-.35.1-.11.13-.2.2-.33.07-.13.03-.25-.02-.35-.05-.1-.44-1.06-.6-1.45-.16-.38-.32-.33-.44-.34h-.38c-.13 0-.35.05-.53.25-.18.2-.69.67-.69 1.63 0 .96.71 1.89.8 2.02.1.13 1.39 2.12 3.36 2.97.47.2.84.32 1.12.41.47.15.9.13 1.24.08.38-.06 1.17-.48 1.34-.94.17-.46.17-.86.12-.94-.05-.08-.18-.13-.38-.23z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.6 2.33A7.85 7.85 0 0 0 8.02 0C3.67 0 .12 3.54.12 7.9c0 1.39.36 2.75 1.05 3.95L.05 16l4.25-1.11a7.9 7.9 0 0 0 3.72.95h.01c4.36 0 7.9-3.54 7.9-7.9 0-2.11-.82-4.09-2.33-5.61zM8.03 14.5h-.01a6.57 6.57 0 0 1-3.35-.92l-.24-.14-2.52.66.67-2.46-.16-.25a6.55 6.55 0 0 1-1.01-3.49c0-3.63 2.96-6.58 6.6-6.58 1.76 0 3.41.69 4.65 1.93a6.54 6.54 0 0 1 1.93 4.66c0 3.64-2.96 6.59-6.56 6.59zm3.61-4.93c-.2-.1-1.17-.58-1.35-.64-.18-.07-.31-.1-.44.1-.13.19-.51.64-.62.77-.11.13-.23.15-.42.05-.2-.1-.83-.31-1.58-.98-.58-.52-.98-1.16-1.09-1.36-.11-.2-.01-.3.09-.4.09-.09.2-.23.3-.35.1-.11.13-.2.2-.33.07-.13.03-.25-.02-.35-.05-.1-.44-1.06-.6-1.45-.16-.38-.32-.33-.44-.34h-.38c-.13 0-.35.05-.53.25-.18.2-.69.67-.69 1.63 0 .96.71 1.89.8 2.02.1.13 1.39 2.12 3.36 2.97.47.2.84.32 1.12.41.47.15.9.13 1.24.08.38-.06 1.17-.48 1.34-.94.17-.46.17-.86.12-.94-.05-.08-.18-.13-.38-.23z'/%3E%3C/svg%3E") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  transform: none;
}

.footer-icon.whatsapp::after {
  content: none;
}

.footer-icon.linkedin {
  font-size: 13px;
  font-weight: 800;
}

.linkedin-link {
  justify-self: start;
}

.linkedin-link .footer-icon {
  width: 32px;
  height: 32px;
  border-color: rgba(102, 108, 101, 0.34);
}

.linkedin-link:hover .footer-icon {
  color: var(--ink);
  border-color: rgba(184, 137, 53, 0.52);
}

.site-footer small {
  display: block;
  margin-top: 24px;
  color: #85857c;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

html[dir="rtl"] body {
  direction: rtl;
  font-family: "Alexandria", "Segoe UI", Tahoma, Arial, Helvetica, sans-serif;
  font-size: 16px;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .site-nav,
html[dir="rtl"] .footer-contact a {
  direction: rtl;
}

html[dir="rtl"] .language-switch {
  margin-right: 10px;
  margin-left: 0;
  padding-right: 10px;
  padding-left: 0;
  border-right: 1px solid rgba(102, 108, 101, 0.18);
  border-left: 0;
}

html[dir="rtl"] .hero::after {
  background: linear-gradient(270deg, rgba(248, 245, 238, 0.97) 0%, rgba(248, 245, 238, 0.9) 38%, rgba(248, 245, 238, 0.48) 64%, rgba(248, 245, 238, 0.2) 100%);
}

html[dir="rtl"] .hero-media {
  transform: scale(1.02) scaleX(-1);
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .page-hero,
html[dir="rtl"] .about-hero,
html[dir="rtl"] .section,
html[dir="rtl"] .site-footer {
  text-align: right;
}

html[dir="rtl"] .footer-contact {
  justify-items: start;
}

html[dir="rtl"] .footer-icon svg {
  transform: none;
}

html[dir="rtl"] h1 {
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 1.32;
}

html[dir="rtl"] h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.28;
}

html[dir="rtl"] .section-heading h2 {
  line-height: 1.34;
}

html[dir="rtl"] h3 {
  font-size: 25px;
  line-height: 1.28;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .page-hero p,
html[dir="rtl"] .about-hero p,
html[dir="rtl"] .work-with-us p,
html[dir="rtl"] .contact-panel p,
html[dir="rtl"] .team-note p,
html[dir="rtl"] .ceo-copy p {
  font-size: 18px;
  line-height: 1.9;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .product-card p,
html[dir="rtl"] .detail-card p,
html[dir="rtl"] .team-card p,
html[dir="rtl"] .number-card span {
  font-size: 13px;
  letter-spacing: 0.08em;
}

html[dir="rtl"] .team-card p {
  font-size: 14px;
  line-height: 1.65;
}

html[dir="rtl"] .team-card h2 {
  font-size: clamp(23px, 2.35vw, 31px);
  line-height: 1.16;
  white-space: normal;
}

html[dir="rtl"] .team-note h2 {
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.16;
  margin-bottom: 16px;
}

html[dir="rtl"] .member-contact {
  font-size: 13.5px;
  gap: 6px;
  margin-top: 16px;
}

html[dir="rtl"] .site-nav a {
  font-size: 15px;
}

html[dir="rtl"] .language-dock {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .work-with-us {
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: 56px;
}

html[dir="rtl"] .work-with-us h2 {
  max-width: 760px;
  font-size: clamp(36px, 3.7vw, 50px);
  line-height: 1.35;
}

html[dir="rtl"] .work-with-us p {
  max-width: 760px;
}

html[dir="rtl"] .work-with-us .button {
  min-width: 150px;
  min-height: 58px;
  padding: 0 30px;
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ceo-slider img {
    animation: none;
    opacity: 0;
  }

  .ceo-slider img:first-child {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: 100%;
    padding: 12px 20px;
    background: rgba(248, 245, 238, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .language-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(248, 245, 238, 0.98), rgba(248, 245, 238, 0.72));
  }

  .hero-content {
    padding-top: 72px;
  }

  .numbers,
  .product-grid,
  .product-page-grid,
  .approach-grid,
  .team-layout,
  .ceo-feature,
  .employee-grid,
  .about-hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .approach-item {
    min-height: auto;
  }

  .approach-item span {
    margin-bottom: 42px;
  }

  .ceo-slider {
    min-height: 520px;
  }

  .section-heading,
  .work-with-us,
  .contact-strip {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .contact-strip {
    display: grid;
  }

  .team-photo,
  .member-photo {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 132px;
    font-size: 11px;
  }

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

  h1 {
    font-size: 44px;
  }

  .number-card,
  .work-with-us,
  .contact-panel {
    padding: 26px;
  }

  .section,
  .work-with-us,
  .contact-strip,
  .contact-panel,
  .site-footer,
  .page-hero,
  .about-hero {
    width: min(100% - 28px, var(--max));
  }
}
