@font-face {
  font-family: "Vazirmatn";
  src: url("/fonts/vazirmatn-arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("/fonts/vazirmatn-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

:root {
  --navy: #071d2c;
  --navy-soft: #0c2d43;
  --cream: #f4efe7;
  --white: #fffdf8;
  --coral: #f5821f;
  --blue: #6bc4e8;
  --line-light: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(7, 29, 44, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: "Vazirmatn", "Segoe UI", Tahoma, sans-serif;
  text-rendering: optimizeLegibility;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
main { overflow: hidden; }

.site-header {
  width: min(1280px, calc(100% - 48px));
  height: 96px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; }
.brand-logo { width: 98px; height: auto; display: block; }
nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
nav a { padding: 10px 0; border-bottom: 1px solid transparent; transition: 0.2s; }
nav a:hover { border-color: var(--white); }
.language-button {
  justify-self: end;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: .2s;
}
.language-button:hover { color: var(--navy); background: var(--white); }

.hero {
  width: min(1280px, calc(100% - 48px));
  min-height: 790px;
  margin: auto;
  padding: 58px 0 78px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
}
h1 {
  margin: 0;
  font-size: clamp(58px, 6.5vw, 102px);
  line-height: 1.07;
  letter-spacing: -.065em;
  font-weight: 760;
}
h1 em {
  color: var(--coral);
  font-family: inherit;
  font-style: normal;
  font-weight: 460;
}
.hero-lead {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 2;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--navy); background: var(--white); }
.button-line { border: 1px solid var(--line-light); }
.button-line:hover { color: var(--navy); background: var(--blue); }

.hero-gallery {
  height: 640px;
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 12px;
  position: relative;
}
.hero-gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--navy-soft); }
.hero-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.hero-gallery:hover img { transform: scale(1.015); }
.gallery-main { border-radius: 180px 0 0 0; }
.gallery-main img { object-position: center 48%; }
.gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.gallery-side figure:first-child { border-radius: 0 0 120px 0; }
.gallery-side figure:first-child img { object-position: center 42%; }
.gallery-side figure:last-child img { object-position: 62% center; }
.gallery-stamp {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: 118px;
  height: auto;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
  transform: rotate(-8deg);
}
.gallery-stamp img { width: 100%; height: auto; display: block; }

.catalogue-strip {
  padding: 92px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 100px;
  align-items: end;
  color: var(--navy);
  background: var(--coral);
}
.catalogue-strip .eyebrow { color: rgba(7,29,44,.62); }
h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 720;
}
.catalogue-details > p { max-width: 580px; margin: 0 0 28px; line-height: 1.9; color: rgba(7,29,44,.72); }
.download-link {
  min-height: 88px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(7,29,44,.55);
  border-bottom: 1px solid rgba(7,29,44,.55);
  transition: padding .2s, background .2s;
}
.download-link:hover { padding-inline: 34px; background: rgba(255,255,255,.18); }
.download-link span { font-weight: 750; }
.download-link small { opacity: .65; }
.download-link i { font-style: normal; font-size: 28px; }

.contact-section {
  padding: 120px max(24px, calc((100vw - 1280px) / 2));
  color: var(--navy);
  background: var(--cream);
}
.contact-heading { display: grid; grid-template-columns: .4fr 1fr; gap: 54px; margin-bottom: 72px; }
.contact-heading .eyebrow { color: #237ca1; }
.contact-heading h2 { max-width: 820px; }
.contact-list { border-top: 1px solid var(--line-dark); }
.contact-list a {
  min-height: 88px;
  display: grid;
  grid-template-columns: .42fr 1fr auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  transition: padding .2s, background .2s;
}
.contact-list a:hover { padding-inline: 16px; background: rgba(255,255,255,.55); }
.contact-list span { font-size: 12px; color: rgba(7,29,44,.55); }
.contact-list b { font-size: clamp(16px, 2vw, 23px); font-weight: 620; }
.contact-list i { font-style: normal; font-size: 23px; }

footer {
  min-height: 150px;
  padding: 38px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: .45fr 1fr .45fr;
  gap: 30px;
  align-items: center;
  color: rgba(255,255,255,.68);
  background: var(--navy);
  font-size: 12px;
}
.footer-logo { width: 112px; height: auto; display: block; }
footer p { margin: 0; text-align: center; }
footer > span:last-child { text-align: end; }

.is-ltr { font-family: "Segoe UI", Arial, sans-serif; }
.is-ltr h1 { letter-spacing: -.055em; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 76px; }
  .hero-copy { max-width: 720px; }
  .hero-gallery { height: 720px; }
  .catalogue-strip { grid-template-columns: 1fr; gap: 48px; }
  .contact-heading { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 30px); grid-template-columns: 1fr auto; height: 82px; }
  nav { display: none; }
  .brand-logo { width: 86px; }
  .language-button { width: 46px; height: 46px; }
  .hero { width: calc(100% - 30px); min-height: auto; padding: 66px 0; }
  h1 { font-size: clamp(50px, 15vw, 76px); }
  .hero-gallery { height: auto; aspect-ratio: .78; grid-template-columns: 1fr; grid-template-rows: 1.5fr .72fr; }
  .gallery-main { border-radius: 110px 0 0 0; }
  .gallery-side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .gallery-side figure:first-child { border-radius: 0 0 70px 0; }
  .gallery-stamp { width: 94px; left: -4px; bottom: 118px; border-radius: 17px; }
  .catalogue-strip, .contact-section { padding-block: 82px; }
  .contact-list a { grid-template-columns: 1fr auto; gap: 10px; padding-block: 17px; }
  .contact-list a span { grid-column: 1 / -1; }
  .contact-list a b { align-self: start; }
  .contact-list a i { align-self: start; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: auto; }
  footer > span:last-child { text-align: center; }
}

@media (max-width: 460px) {
  .hero-actions .button { width: 100%; }
  .hero-gallery { aspect-ratio: .72; }
  .download-link { grid-template-columns: 1fr auto; }
  .download-link small { grid-column: 1; }
  .download-link i { grid-column: 2; grid-row: 1 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
