:root {
  color-scheme: light;
  --ink: #16211e;
  --muted: #60706b;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #174a3d;
  --green-2: #23614f;
  --mint: #dcebe2;
  --gold: #c79a3d;
  --tomato: #b6533c;
  --line: rgba(22, 33, 30, 0.14);
  --shadow: 0 24px 80px rgba(19, 43, 36, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, "Noto Sans Arabic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 74, 61, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(23, 74, 61, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.14);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--green);
}

.language-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(23, 74, 61, 0.08);
}

.lang-btn {
  min-width: 52px;
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.lang-btn.is-active {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100svh - 164px));
  display: grid;
  align-items: center;
  padding: clamp(56px, 7vw, 86px) max(20px, calc((100vw - 1180px) / 2)) 34px;
  overflow: hidden;
  background: #102d28;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 29, 26, 0.9), rgba(11, 29, 26, 0.5) 48%, rgba(11, 29, 26, 0.14)),
    linear-gradient(0deg, rgba(11, 29, 26, 0.84), rgba(11, 29, 26, 0.06) 58%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.95) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  padding-inline: 16px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #1b1711;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 + 16px));
  bottom: 44px;
  z-index: 1;
  width: min(360px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  line-height: 1.55;
}

.hero-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 58px);
}

.section-heading h2,
.quality h2,
.contact h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.intro > p,
.quality-content p,
.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.intro > p {
  margin-top: 38px;
  font-size: clamp(1.18rem, 2.4vw, 1.6rem);
  color: #374841;
}

.metrics {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  padding: 32px 28px;
  border-inline-start: 1px solid var(--line);
}

.metrics div:first-child {
  border-inline-start: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--tomato);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 50px rgba(23, 74, 61, 0.06);
}

.card-kicker {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.82rem;
}

.card h3 {
  margin: 42px 0 0;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.1;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.accent-card {
  background: var(--green);
  color: var(--white);
}

.accent-card h3,
.accent-card p {
  color: inherit;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.74);
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(36px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-list {
  display: grid;
  gap: 14px;
}

.quality-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.quality-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 6px rgba(182, 83, 60, 0.12);
}

.quality-list p {
  margin: 0;
  color: #40534c;
  line-height: 1.7;
}

.process {
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline div {
  min-height: 220px;
  padding: 30px;
  border-inline-start: 1px solid var(--line);
}

.timeline div:first-child {
  border-inline-start: 0;
}

.timeline strong {
  color: var(--green);
  font-size: 1.22rem;
}

.timeline p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card > * {
  display: block;
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.45;
}

.contact-card a {
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-card a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.photo-credit {
  color: rgba(96, 112, 107, 0.72);
}

[dir="rtl"] body {
  font-family:
    "Noto Sans Arabic", Tahoma, Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[dir="rtl"] .hero-media::after {
  background:
    linear-gradient(270deg, rgba(11, 29, 26, 0.9), rgba(11, 29, 26, 0.5) 48%, rgba(11, 29, 26, 0.14)),
    linear-gradient(0deg, rgba(11, 29, 26, 0.84), rgba(11, 29, 26, 0.06) 58%);
}

[dir="rtl"] .hero-media img {
  object-position: 42% center;
}

[dir="rtl"] .hero-panel {
  right: auto;
  left: max(24px, calc((100vw - 1180px) / 2 + 16px));
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .hero-panel span,
[dir="rtl"] .contact-card span {
  letter-spacing: 0;
}

[dir="rtl"] .hero h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 4.7vw, 4.05rem);
  line-height: 1.08;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0 12px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(23, 74, 61, 0.09);
  }

  .nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border-radius: 999px;
    color: var(--green);
    background: transparent;
  }

  .nav-links a:hover {
    background: var(--mint);
  }

  .hero {
    min-height: min(760px, calc(100svh - 132px));
    padding-top: 100px;
  }

  .hero-content {
    padding-inline: 0;
    padding-bottom: 140px;
  }

  .hero-panel {
    right: 20px;
    left: 20px;
    bottom: 30px;
    width: auto;
  }

  [dir="rtl"] .hero-panel {
    right: 20px;
    left: 20px;
  }

  .intro,
  .split,
  .quality,
  .contact {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .intro > p {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 24px, 1180px);
    gap: 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 170px;
    white-space: normal;
    line-height: 1.15;
  }

  .language-toggle {
    margin-inline-start: auto;
  }

  .lang-btn {
    min-width: 44px;
    padding-inline: 10px;
  }

  .hero {
    min-height: min(640px, calc(100svh - 126px));
    padding-inline: 16px;
    padding-block: 64px 34px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-panel {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section-pad,
  .metrics,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .metrics,
  .cards,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .timeline div {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .metrics div:first-child,
  .timeline div:first-child {
    border-top: 0;
  }

  .card,
  .timeline div {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .photo-credit {
    margin-top: 10px;
  }
}

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

  .brand strong {
    max-width: 132px;
    font-size: 0.88rem;
  }

  .nav-links {
    font-size: 0.82rem;
  }

  .hero {
    min-height: min(620px, calc(100svh - 126px));
  }

  .hero-panel {
    padding: 18px;
  }

  .contact-card {
    padding: 10px;
  }
}
