:root {
  --green: #143d2c;
  --green-2: #1e5c42;
  --gold: #c4a35a;
  --gold-deep: #8a6b32;
  --cream: #f3eee4;
  --paper: #fffdf8;
  --ink: #1e2a24;
  --heading: #143d2c;
  --muted: #5a635c;
  --on-dark: #f4efe6;
  --on-dark-muted: #d6cdb8;
  --line: #e6ddd0;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(20, 61, 44, 0.06);
  --font: "Manrope", "Cairo", system-ui, sans-serif;
  --serif: "Fraunces", "Cairo", Georgia, serif;
  --max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; margin: 0 0 0.5em; font-weight: 560; color: var(--heading); }
p { margin: 0 0 1em; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: var(--green);
  color: var(--on-dark);
  font-size: 13px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar a { color: var(--on-dark); }
.topbar a:hover { color: var(--gold); }
.langs { display: flex; gap: 8px; flex-wrap: wrap; }
.langs a {
  padding: 2px 7px;
  border-radius: 999px;
  opacity: 0.8;
}
.langs a.is-on {
  background: var(--gold);
  color: var(--green);
  opacity: 1;
  font-weight: 700;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img {
  width: auto;
  height: 58px;
  max-width: 260px;
  object-fit: contain;
}
.brand strong { display: block; font-size: 15px; letter-spacing: 0.04em; color: var(--heading); }
.brand span { display: block; font-size: 11px; color: var(--gold-deep); letter-spacing: 0.12em; text-transform: uppercase; }

.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav > a, .nav .drop > button {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  position: relative;
}
.nav > a:hover, .nav .drop > button:hover { color: var(--green-2); }
.nav > a.is-on,
.nav .drop.is-on > button {
  color: var(--green);
  font-weight: 700;
}
.nav > a.is-on::after,
.nav .drop.is-on > button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav > a.btn.is-on::after { display: none; }
.drop { position: relative; }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: block; }
.drop-menu a { display: block; padding: 8px 10px; border-radius: 8px; font-size: 14px; color: var(--ink); }
.drop-menu a:hover { background: var(--cream); color: var(--heading); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--green-2); }
.btn.gold { background: var(--gold); color: var(--green) !important; }
.btn.ghost { background: transparent; color: var(--green) !important; border: 1px solid var(--green); }
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: #fff;
  background: #0d281c center/cover no-repeat;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 88px 0 72px;
  max-width: var(--max);
  margin-inline: auto;
  width: min(var(--max), calc(100% - 40px));
}
.hero .wrap.hero-grid { margin-inline: auto; max-width: var(--max); }
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 200px;
  gap: 12px;
}
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-collage img:first-child { grid-row: 1 / span 2; }
.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.mosaic a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 0;
}
.mosaic a:first-child { grid-row: 1 / span 2; }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic .body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(8,22,16,0.82));
  color: #fff;
}
.mosaic h3 { color: #fff; margin: 0; }
.gallery-slider {
  position: relative;
}
.gallery-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip img {
  flex: 0 0 16.666%;
  width: 16.666%;
  aspect-ratio: 1;
  object-fit: cover;
  scroll-snap-align: start;
}
.gallery-slider .related-arrow {
  top: 50%;
}
.gallery-slider .related-arrow.is-prev {
  left: auto;
  right: auto;
  inset-inline-start: 12px;
}
.gallery-slider .related-arrow.is-next {
  left: auto;
  right: auto;
  inset-inline-end: 12px;
}
.partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.split-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}
.split-visual img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; object-position: center 78%; }
.line-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.video-frame {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d281c;
  border: 1px solid #e2d8c8;
  aspect-ratio: 16 / 9;
}
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #0d281c;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 20, 0.72);
}
.hero .wrap { position: relative; z-index: 1; padding: 80px 0; }
.hero .wrap.hero-grid { padding: 88px 0 72px; max-width: var(--max); margin-inline: auto; }
html[dir="rtl"] .hero .wrap { margin-inline: auto; }
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; color: #fff; }
.hero p { font-size: 18px; max-width: 46ch; color: var(--on-dark-muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.section { padding: 72px 0; }
.section.alt { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); color: var(--heading); }
.kicker { color: var(--gold-deep); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

.grid-4, .grid-3, .grid-2, .certs { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.certs { grid-template-columns: repeat(6, 1fr); gap: 16px; }

.cat-card, .prod-card, .step-card, .cert-card, .team-card, .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--cream); }
.prod-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
}
.cat-card .body, .prod-card .body, .step-card, .info-card { padding: 18px; }
.cat-card h3, .prod-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--heading); }
.muted { color: var(--muted); font-size: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat { background: var(--green); color: #fff; border-radius: var(--radius); padding: 22px; }
.stat b { display: block; font-family: var(--serif); font-size: 32px; color: var(--gold); font-variant-numeric: tabular-nums; min-height: 1.2em; }
.stat span { display: block; font-size: 14px; color: var(--on-dark); opacity: 0.9; min-height: 1.4em; }
.stat-visits {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
}
.stat-visits b { display: inline; min-height: 0; font-size: 28px; }
.stat-visits span {
  display: inline;
  min-height: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat [data-type].is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.78em;
  margin-inline-start: 3px;
  background: currentColor;
  vertical-align: -0.05em;
  animation: typeCaret 0.85s step-end infinite;
}
@keyframes typeCaret {
  50% { opacity: 0; }
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 48px 0 40px;
  background-color: #0d281c;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--gold);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 22, 16, 0.96) 0%,
      rgba(8, 22, 16, 0.9) 30%,
      rgba(8, 22, 16, 0.52) 55%,
      rgba(8, 22, 16, 0.22) 100%
    );
  background:
    linear-gradient(
      to inline-end,
      rgba(8, 22, 16, 0.96) 0%,
      rgba(8, 22, 16, 0.9) 30%,
      rgba(8, 22, 16, 0.52) 55%,
      rgba(8, 22, 16, 0.22) 100%
    );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  inset-inline-end: -70px;
  top: -90px;
  border: 1px solid rgba(232, 208, 150, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(232, 208, 150, 0.05);
  pointer-events: none;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding-inline-start: 18px;
  border-inline-start: 3px solid var(--gold);
}
.page-hero .crumbs {
  color: var(--on-dark-muted);
  opacity: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  max-width: 16ch;
  color: #fff;
}
.page-hero.is-photo {
  min-height: 320px;
  display: grid;
  align-items: end;
  background-color: #0d281c;
  background-image: none;
  background-position: center 72%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 72px 0 40px;
}
.page-hero.is-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 16, 0.28) 0%, rgba(8, 22, 16, 0.78) 100%);
}
.page-hero.is-photo .wrap { position: relative; z-index: 1; }
.about-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 75%;
  border-radius: var(--radius);
}
.team-card {
  text-align: center;
  padding: 28px 22px 24px;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}
.team-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 50%;
  background: #e8efe9;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--cream);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  transition: transform 0.35s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card.is-static:hover .team-photo img { transform: none; }
.team-card[data-team-id="fayez"] .team-photo img { object-position: center 8%; }
.team-card[data-team-id="malak"] .team-photo img { object-position: center 10%; }
.team-card[data-team-id="magdy"] .team-photo img { object-position: center 16%; }
.team-card-body { padding: 0; }
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 61, 44, 0.1);
}
.team-card.is-static {
  cursor: default;
  transform: none;
  box-shadow: none;
}
.team-card.is-static:hover {
  transform: none;
  box-shadow: none;
}
.team-admin {
  position: fixed;
  bottom: 18px;
  inset-inline-start: 18px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(20, 61, 44, 0.12);
  display: grid;
  gap: 8px;
  min-width: 220px;
  font-size: 13px;
}
.team-admin strong { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }
.team-admin label { display: flex; gap: 8px; align-items: center; cursor: pointer; }
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.team-modal[hidden] { display: none; }
.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 16, 0.55);
}
.team-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(20, 61, 44, 0.18);
}
.team-modal-card .team-mark { margin-bottom: 16px; }
.team-modal-card .team-photo {
  width: 120px;
  height: 120px;
}
.team-modal-card h3 { font-size: 24px; }
.team-role {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.35;
}
.team-card .team-role { margin: 0 0 10px; }
.team-modal-card .btn { margin-top: 16px; }
.team-modal-x {
  position: absolute;
  top: 10px;
  inset-inline-end: 12px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.team-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--cream);
}
.team-card h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--heading);
}
.team-card p { margin: 0; }
.team-view {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0;
}
.team-card:hover .team-view { color: var(--green); }
.team-modal-card a { color: var(--green-2); font-weight: 700; }
.team-modal-card a:hover { color: var(--gold-deep); }
.crumbs { font-size: 13px; color: var(--on-dark-muted); opacity: 1; margin-bottom: 10px; }
.page-hero .crumbs a { color: var(--on-dark); }
.about-split { align-items: stretch; }
.about-copy .kicker { margin-bottom: 10px; }
.about-copy p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}
.about-copy .about-lead {
  color: var(--heading);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 1em;
}
.section.alt > .wrap > h2,
.section.alt .section-head h2 {
  color: var(--heading);
}
.about-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  min-height: 340px;
}
.about-figure img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filters button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--heading);
}
.filters button.is-on { background: var(--green); color: #fff; border-color: var(--green); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.prod-zoom {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  cursor: crosshair;
}
.prod-zoom > img:first-of-type {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
  object-fit: unset;
  aspect-ratio: auto;
  border-radius: var(--radius);
  background: transparent;
}
.prod-zoom-inner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  margin: 0;
  max-width: none !important;
  max-height: none;
  width: auto;
  height: auto;
  opacity: 0;
  pointer-events: none;
  border-radius: 0;
  object-fit: fill;
  transition: opacity 0.12s ease;
}
.prod-zoom.is-on .prod-zoom-inner { opacity: 1; }
.prod-zoom-open {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 2px 12px rgba(20, 61, 44, 0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.prod-zoom-open:hover { color: var(--gold); }
.prod-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 32, 24, 0.78);
  cursor: zoom-out;
}
.prod-lightbox[hidden] { display: none; }
.prod-lightbox img {
  max-width: min(960px, 100%);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  background: #fff;
}
.prod-lightbox-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
@media (hover: none), (pointer: coarse) {
  .prod-zoom { cursor: pointer; }
  .prod-zoom-inner { display: none !important; }
}
.section:has(.product-detail) { padding-bottom: 20px; }
.related-section { padding-top: 8px; }
.specs { width: 100%; border-collapse: collapse; margin: 18px 0; }
.specs th, .specs td { text-align: start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.specs th { color: var(--muted); font-weight: 600; width: 38%; }

.form {
  display: grid;
  gap: 14px;
  background: #f7f2e9;
  border: 1px solid #e2d8c8;
  border-radius: var(--radius);
  padding: 26px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--heading);
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #ddd4c6;
  border-radius: 10px;
  background: #fcf9f3;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form input::placeholder, .form textarea::placeholder {
  color: #7a847e;
}
.form input:hover, .form textarea:hover, .form select:hover {
  border-color: #d0c4b2;
  background: #fffdf8;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: #c4a35a;
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.16);
}
.form textarea { min-height: 120px; resize: vertical; }
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235d574c' d='M1.2 1.2 6 6l4.8-4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-inline-end: 36px;
}
html[dir="rtl"] .form select { background-position: left 14px center; }
.form .btn {
  margin-top: 4px;
  justify-self: start;
  background: #1a4734;
}
.form .btn:hover { background: #245a43; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.human-check {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 2px 0 4px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0 !important;
  color: var(--green) !important;
}
.human-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--green);
  border-radius: 4px;
  cursor: pointer;
}
.human-check:hover { border-color: var(--gold); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.form-ok {
  background: #eef4ef;
  color: #1e4a38;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d5e4d8;
  margin: 0;
}
.form-err {
  background: #f6eeea;
  color: #6d3f38;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ead9d3;
  margin: 0;
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.news-band {
  background: var(--cream);
  color: var(--ink);
  padding: 48px 0 56px;
  border-top: 3px solid var(--gold);
}
.news-band .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
}
.news-band .kicker { color: var(--gold-deep); }
.news-band h2 { color: var(--heading); margin: 6px 0 8px; font-size: clamp(22px, 3vw, 32px); }
.news-band .muted { color: var(--muted); margin: 0; max-width: 42ch; }
.news-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.news-form .news-email { flex: 1; min-width: 200px; display: block; }
.news-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8cbb8;
  border-radius: 10px;
  background: #fcf9f3;
  color: var(--ink);
  font-size: 15px;
}
.news-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.2);
}
.news-form .btn { white-space: nowrap; }
.news-form .btn:hover { filter: none; }
.news-form .form-ok,
.news-form .form-err { flex-basis: 100%; margin: 0; }
.news-form.is-stack {
  display: grid;
  gap: 10px;
}
.news-form.is-stack .btn { width: 100%; justify-self: stretch; text-align: center; }
.foot-news p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--on-dark-muted);
}
.foot-news .news-form input[type="email"] {
  background: #1a3d2e;
  border-color: #2f5a45;
  color: #f4efe6;
}
.foot-news .news-form input[type="email"]::placeholder { color: #9eb0a4; }
.foot-news .news-form input[type="email"]:focus {
  background: #1f4736;
  border-color: var(--gold);
}

.contact-hours {
  margin: 28px 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
  line-height: 1.35;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}
.contact-aside .map-wrap {
  flex: 1 1 auto;
  position: relative;
  min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }
.contact-aside .map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.map-link { margin: 0 0 12px; }
.map-link a { color: var(--green-2); font-weight: 700; }
.map-link a:hover { color: var(--gold-deep); }

.site-footer {
  position: relative;
  overflow: hidden;
  background: #0f2a20;
  color: var(--on-dark-muted);
  padding: 56px 0 0;
  margin-top: 48px;
  border-top: 3px solid var(--gold);
}
.news-band + .site-footer { margin-top: 0; }
.site-footer a {
  color: var(--on-dark);
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--gold); }
.site-footer h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-family: var(--font);
  font-weight: 700;
}
.site-footer h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 36px;
  padding-bottom: 40px;
  align-items: start;
}
.foot-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.foot-logo img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.foot-about p { margin: 0 0 10px; font-size: 14px; line-height: 1.7; max-width: 38ch; }
.foot-note { color: var(--on-dark-muted); font-size: 13px !important; }
.foot-quote { margin-top: 16px; }
.foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.foot-links a, .foot-links li { font-size: 14px; }
.foot-photos {
  position: relative;
  min-height: 168px;
}
.foot-photos img {
  position: absolute;
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(244, 239, 230, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  background: #143d2c;
}
.foot-photos img:first-child {
  top: 0;
  inset-inline-end: 36px;
}
.foot-photos img:last-child {
  top: 56px;
  inset-inline-end: 0;
}
.legal {
  border-top: 1px solid rgba(232, 208, 150, 0.18);
  padding: 16px 0 20px;
  font-size: 12px;
  color: var(--on-dark-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.legal-mark {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  font-size: 11px;
}

.hidden { display: none !important; }

html[dir="rtl"] body { font-family: "Cairo", var(--font); }
html[dir="rtl"] .kicker { text-transform: none; letter-spacing: 0; }

@media (max-width: 1100px) {
  .certs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brand img { height: 50px; max-width: 220px; }
  .site-header .wrap { min-height: 76px; }
  .grid-3, .product-detail, .foot-grid, .news-band .wrap, .contact-layout { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .site-header { position: relative; }
  .menu-toggle { display: inline-flex; }
  .drop-menu { position: static; display: block; border: 0; box-shadow: none; padding-inline-start: 12px; }
  .stats { grid-template-columns: 1fr 1fr; }
}
.trustbar {
  background: #0f2e22;
  color: var(--on-dark);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.trustbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 5px 0;
}
.trustbar span { opacity: 0.9; }
.hero::before {
  background: linear-gradient(105deg, rgba(8, 22, 16, 0.88) 0%, rgba(8, 22, 16, 0.45) 62%, rgba(8, 22, 16, 0.2) 100%);
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 8px; }
.hero-badges span {
  border: 1px solid rgba(196, 163, 90, 0.55);
  color: var(--on-dark);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.prod-card, .cat-card, .info-card, .cert-card, .step-card {
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.prod-card:hover, .cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.mosaic img, .prod-card img, .cat-card img,
.hero-collage img, .split-visual img, .gallery-strip img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.prod-card .body { position: relative; }
.badge-origin {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-2);
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.form-chips span,
.form-chips a,
.form-chips button {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1.3;
  text-decoration: none;
  font-family: inherit;
  cursor: default;
}
.form-chips.is-pick a,
.form-chips.is-pick button {
  cursor: pointer;
}
.form-chips.is-pick a:hover,
.form-chips.is-pick button:hover {
  border-color: var(--green);
  background: #fff;
}
.form-chips a.is-on,
.form-chips button.is-on {
  background: var(--green);
  color: var(--gold);
  border-color: var(--gold);
}
html[dir="rtl"] .form-chips span,
html[dir="rtl"] .form-chips a,
html[dir="rtl"] .form-chips button {
  text-transform: none;
  letter-spacing: 0;
}
.specs .form-chips { margin: 0; }
.prod-detail-name {
  font-size: 28px;
  color: var(--green);
  margin: 0 0 12px;
}
.prod-card .view {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-2);
  margin: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.step-card { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
}
.cert-card {
  text-align: center;
  padding: 28px 12px 20px;
  border-top: 3px solid var(--gold);
}
.cert-card .cert-mark {
  width: 104px;
  height: 104px;
  margin: 0 auto 14px;
  object-fit: contain;
}
.cert-card h3 { font-size: 15px; margin: 0 0 6px; }
.cert-card p { margin: 0; font-size: 13px; color: var(--muted); }
.wa {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 50;
  background: #128c7e;
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.site-header { box-shadow: 0 1px 0 rgba(20, 61, 44, 0.06); }
.langs a {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.cta-band {
  background: var(--green);
  color: #fff;
  padding: 40px 0;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  max-width: 18ch;
}
.cta-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cta-badges span {
  border: 1px solid rgba(196, 163, 90, 0.55);
  color: var(--on-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
@media (max-width: 960px) {
  .hero-grid, .mosaic, .partner, .line-steps { grid-template-columns: 1fr; }
  .mosaic { grid-template-rows: none; }
  .mosaic a:first-child { grid-row: auto; min-height: 280px; }
  .hero-collage { min-height: 280px; }
  .gallery-strip img { flex-basis: 25%; width: 25%; }
}
@media (max-width: 640px) {
  .grid-4, .grid-2, .stats, .form-row { grid-template-columns: 1fr; }
  .certs { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 70vh; }
  .step-card { grid-template-columns: 1fr; }
  .brand img { height: 46px; max-width: 200px; }
  .gallery-strip img { flex-basis: 50%; width: 50%; }
}

@keyframes elFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes elFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes elFadeScale {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes elFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes elPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.45); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(18, 140, 126, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow { animation: elFadeUp 0.7s ease both; }
  .hero h1 { animation: elFadeUp 0.85s 0.1s ease both; }
  .hero-grid > div:first-child > p { animation: elFadeUp 0.85s 0.2s ease both; }
  .hero-badges span { animation: elFadeUp 0.55s ease both; }
  .hero-badges span:nth-child(1) { animation-delay: 0.3s; }
  .hero-badges span:nth-child(2) { animation-delay: 0.38s; }
  .hero-badges span:nth-child(3) { animation-delay: 0.46s; }
  .hero-actions { animation: elFadeUp 0.7s 0.52s ease both; }
  .hero-collage img { animation: elFadeScale 0.9s ease both; }
  .hero-collage img:nth-child(1) { animation-delay: 0.22s; }
  .hero-collage img:nth-child(2) { animation-delay: 0.34s; }
  .hero-collage img:nth-child(3) { animation-delay: 0.46s; }
  .hero-collage img:first-child {
    animation: elFadeScale 0.9s 0.22s ease both, elFloat 7s 1.2s ease-in-out infinite;
  }
  html.has-home-motion .trustbar span { animation: elFadeIn 0.55s ease both; }
  html.has-home-motion .trustbar span:nth-child(1) { animation-delay: 0.05s; }
  html.has-home-motion .trustbar span:nth-child(2) { animation-delay: 0.14s; }
  html.has-home-motion .trustbar span:nth-child(3) { animation-delay: 0.23s; }
  html.has-home-motion .trustbar span:nth-child(4) { animation-delay: 0.32s; }

  html.has-home-motion .js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.has-home-motion .js-reveal.is-in {
    opacity: 1;
    transform: none;
  }
  html.has-home-motion .js-reveal[data-d="1"] { transition-delay: 0.04s; }
  html.has-home-motion .js-reveal[data-d="2"] { transition-delay: 0.1s; }
  html.has-home-motion .js-reveal[data-d="3"] { transition-delay: 0.16s; }
  html.has-home-motion .js-reveal[data-d="4"] { transition-delay: 0.22s; }
  html.has-home-motion .js-reveal[data-d="5"] { transition-delay: 0.28s; }
  html.has-home-motion .js-reveal[data-d="6"] { transition-delay: 0.34s; }
  html.has-home-motion .js-reveal[data-d="7"] { transition-delay: 0.4s; }
  html.has-home-motion .js-reveal[data-d="8"] { transition-delay: 0.46s; }

  html.has-home-motion .mosaic a:hover img,
  html.has-home-motion .split-visual img:hover,
  html.has-home-motion .gallery-strip img:hover,
  html.has-home-motion .hero-collage img:not(:first-child):hover {
    transform: scale(1.06);
  }
  html.has-home-motion .gallery-strip img:hover { z-index: 1; position: relative; }
  html.has-home-motion .info-card:hover,
  html.has-home-motion .step-card:hover,
  html.has-home-motion .cert-card:hover,
  html.has-home-motion .team-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
  }
  html.has-home-motion .btn {
    transition: background 0.25s ease, transform 0.25s ease;
  }
  html.has-home-motion .btn:hover { transform: translateY(-1px); }
  html.has-home-motion .wa { animation: elPulse 2.8s ease-in-out infinite; }
}

@media (prefers-reduced-motion: reduce) {
  html.has-home-motion .js-reveal { opacity: 1; transform: none; }
}

.related-section h2 { margin-bottom: 22px; }
.related-slider {
  position: relative;
}
.related-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 48px 18px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.related-track::-webkit-scrollbar { display: none; }
.related-track .prod-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
.related-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  padding: 0;
  background: #e0a020;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(20, 61, 44, 0.2);
}
.related-arrow:hover { background: #c98d12; }
.related-arrow:disabled { opacity: 0.35; cursor: default; }
.related-slider.is-static .related-arrow,
.gallery-slider.is-static .related-arrow { display: none; }
.related-arrow.is-prev { left: 0; }
.related-arrow.is-next { right: 0; }
.related-arrow svg { width: 22px; height: 22px; display: block; }

@media (max-width: 960px) {
  .related-track { padding: 6px 36px 16px; }
  .related-track .prod-card { flex-basis: calc((100% - 16px) / 2); }
  .related-arrow { width: 42px; height: 42px; }
}
@media (max-width: 640px) {
  .related-track { padding: 6px 28px 14px; }
  .related-track .prod-card { flex-basis: 78%; }
}
