:root {
  --gold: #c79a2b;
  --gold-2: #e7c85f;
  --gold-soft: #f6eed6;
  --ink: #161615;
  --muted: #6f6e68;
  --line: #e9e6de;
  --off: #f7f6f2;
  --white: #fff;
  --green: #3f563d;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(22, 22, 21, .10);
  --font-ar: 'Alexandria', sans-serif;
  --font-en: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden
}

html[lang="en"] body {
  font-family: var(--font-en)
}

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

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

button,
input,
textarea,
select {
  font: inherit
}

button {
  color: inherit
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.section-pad {
  padding: 110px 0
}

.topline {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f5df8e, var(--gold))
}

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: .3s ease
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(199, 154, 43, .16);
  box-shadow: 0 10px 35px rgba(20, 20, 20, .05)
}

.site-header:not(.scrolled) .brand-copy strong {
  color: #fff
}

.site-header:not(.scrolled) .desktop-nav {
  color: rgba(255, 255, 255, .92)
}

.site-header:not(.scrolled) .desktop-nav a:hover {
  color: var(--gold-2)
}

.site-header:not(.scrolled) .lang-btn {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
  color: #fff
}

.site-header:not(.scrolled) .lang-btn:hover {
  border-color: var(--gold-2);
  color: var(--gold-2)
}

.site-header:not(.scrolled) .menu-btn {
  color: #fff
}

.site-header:not(.scrolled) .btn-dark {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
  color: #fff
}

.site-header:not(.scrolled) .btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff
}

.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

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

.brand img {
  width: 58px;
  height: 66px;
  object-fit: contain
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 700
}

.brand-copy small {
  font: 600 11px var(--font-en);
  color: var(--gold);
  letter-spacing: .06em;
  margin-top: 4px
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: #373631
}

.desktop-nav a {
  position: relative;
  transition: .25s
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: .25s
}

.desktop-nav a:hover {
  color: var(--gold)
}

.desktop-nav a:hover::after {
  transform: scaleX(1)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.lang-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 13px;
  min-width: 48px;
  cursor: pointer;
  font: 700 12px var(--font-en);
  transition: .2s
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 13px;
  transition: .25s;
  border: 1px solid transparent;
  cursor: pointer
}

.btn>i {
  font-size: 16px;
  line-height: 1
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-2px)
}

.btn-gold {
  background: linear-gradient(135deg, #b88717, var(--gold-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(199, 154, 43, .22)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(199, 154, 43, .3)
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer
}

.menu-btn i {
  font-size: 18px;
  transition: .25s
}

.mobile-panel {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease
}

.mobile-panel.open {
  max-height: 450px
}

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 18px 0 28px
}

.mobile-links a {
  padding: 13px 4px;
  border-bottom: 1px solid #f1efe9;
  font-size: 14px
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 154px;
  padding-bottom: 108px;
  background:
    linear-gradient(115deg, rgba(10, 14, 12, .94) 0%, rgba(10, 14, 12, .82) 46%, rgba(24, 20, 6, .52) 100%),
    url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 7, .55));
  pointer-events: none
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 88px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,80 C240,120 480,20 720,40 C960,60 1200,24 1440,80 L1440,120 L0,120 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
  pointer-events: none
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none
}

.hero-glow-1 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(238, 216, 151, .22), transparent 68%);
  top: 30px;
  right: -220px
}

.hero-glow-2 {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(63, 86, 61, .07), transparent 70%);
  left: -170px;
  bottom: 30px
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
  min-height: 600px
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 24px 0 10px
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 13px 6px 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4
}

.hero-kicker-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 11px
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(46px, 2.15vw, 76px);
  line-height: 1.12;
  margin: 23px 0 23px;
  letter-spacing: -.045em;
  font-weight: 700;
  color: #fff
}

.hero h1 span {
  color: var(--gold)
}

.hero-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, .74);
  max-width: 580px;
  margin: 0 0 31px;
  line-height: 2.05
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
  color: #fff
}

.hero-actions .btn-ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
  transform: translateY(-2px)
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  max-width: 620px
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0
}

.hero-meta-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(231, 200, 95, .4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 12px;
  background: rgba(255, 255, 255, .06)
}

.hero-meta-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0
}

.hero-meta strong {
  font-size: 12px;
  color: #fff
}

.hero-meta small {
  font-size: 9px;
  color: rgba(255, 255, 255, .6);
  white-space: nowrap
}

.hero-meta .divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .2)
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 28px 0 6px 28px;
  border: 1px solid rgba(199, 154, 43, .25);
  border-radius: 38px;
  transform: rotate(3deg)
}

html[dir="ltr"] .hero-visual::before {
  inset: 28px 28px 6px 0;
  transform: rotate(-3deg)
}

.media-card {
  overflow: hidden;
  border-radius: 32px;
  background: #efede6;
  box-shadow: 0 28px 70px rgba(22, 22, 21, .16)
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease
}

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

.visual-main {
  position: absolute;
  inset: 0 62px 34px 0;
  border: 1px solid rgba(255, 255, 255, .78);
  z-index: 1
}

html[dir="ltr"] .visual-main {
  inset: 0 0 34px 62px
}

.visual-main img {
  filter: saturate(.88) contrast(1.04);
  object-position: center
}

.media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 13, .04) 30%, rgba(8, 12, 10, .72) 100%)
}

.media-topline {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .82);
  font-size: 11px
}

.media-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(8, 12, 10, .2);
  backdrop-filter: blur(10px)
}

.media-live>i {
  font-size: 7px;
  color: #d6bc59;
  box-shadow: 0 0 0 4px rgba(214, 188, 89, .14);
  border-radius: 50%
}

.media-topline>.fa-arrow-up-right-from-square {
  font-size: 12px;
  color: #e7c85f
}

.media-caption {
  position: absolute;
  z-index: 2;
  bottom: 29px;
  right: 30px;
  left: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.media-caption span {
  font-size: 10px;
  color: #ead790
}

.media-caption strong {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.55
}

.visual-small {
  position: absolute;
  width: 184px;
  height: 205px;
  border: 6px solid #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  z-index: 3
}

.visual-small-top {
  left: 0;
  top: 54px;
  transform: rotate(-3deg)
}

.visual-small-bottom {
  left: 26px;
  bottom: 4px;
  height: 178px;
  transform: rotate(3deg)
}

html[dir="ltr"] .visual-small-top {
  right: 0;
  left: auto;
  transform: rotate(3deg)
}

html[dir="ltr"] .visual-small-bottom {
  right: 26px;
  left: auto;
  transform: rotate(-3deg)
}

.visual-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 12, 10, .7))
}

.visual-small-label {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 12px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 700
}

.visual-small-label i {
  color: #e7c85f;
  font-size: 11px
}

.hero-stat-card {
  position: absolute;
  z-index: 4;
  top: 26px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 35px rgba(22, 22, 21, .12);
  backdrop-filter: blur(12px)
}

html[dir="ltr"] .hero-stat-card {
  right: auto;
  left: 16px
}

.hero-stat-number {
  font: 700 25px/1 var(--font-en);
  color: var(--gold)
}

.hero-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.hero-stat-copy strong {
  font-size: 10px
}

.hero-stat-copy small {
  font-size: 9px;
  color: #89867d
}

.floating-seal {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 26px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
  border: 5px solid rgba(255, 255, 255, .8)
}

html[dir="ltr"] .floating-seal {
  left: -18px;
  right: auto
}

.floating-seal img {
  width: 73px;
  height: 82px;
  object-fit: contain
}

.trust-row {
  position: relative;
  z-index: 2;
  margin-top: 35px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18)
}

.trust-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .9);
  font-size: 10px;
  font-weight: 700
}

.trust-heading>i {
  color: var(--gold-2);
  font-size: 13px
}

.trust-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.trust-items span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, .06);
  font-size: 9px
}

.about {
  background: #fff
}

.two-col {
  display: grid;
  grid-template-columns: .36fr 1fr;
  gap: 90px;
  align-items: start
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px
}

.section-kicker>span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font: 700 11px var(--font-en);
  color: var(--gold)
}

.section-kicker div {
  display: flex;
  flex-direction: column
}

.section-kicker small {
  font-size: 11px;
  color: #8a877f
}

.section-kicker strong {
  font: 700 12px var(--font-en);
  letter-spacing: .04em;
  margin-top: 3px
}

.section-copy h2,
.section-head h2,
.supply-content h2,
.why-intro h2,
.contact h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.3;
  margin: 0 0 24px;
  letter-spacing: -.03em
}

.section-copy>p {
  font-size: 15px;
  color: var(--muted);
  line-height: 2.15;
  margin: 0;
  max-width: 800px
}

.about-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--off);
  border-radius: 18px;
  border: 1px solid #efede6
}

.about-note .note-icon {
  color: var(--gold);
  font-size: 16px
}

.about-note p {
  margin: 0;
  font-size: 12px;
  color: #66635d;
  line-height: 1.9
}

.about-visual-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 22px;
  margin-top: 62px
}

.about-photo,
.about-card {
  border-radius: 30px;
  overflow: hidden;
  min-height: 450px;
  position: relative
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55))
}

.photo-label {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 30px;
  left: 30px;
  color: #fff;
  display: flex;
  flex-direction: column
}

.photo-label span {
  font-size: 10px;
  color: #efdc9b
}

.photo-label strong {
  font-size: 17px;
  margin-top: 4px
}

.statement {
  padding: 42px;
  background: linear-gradient(145deg, #20201e, #111);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.statement-mark {
  position: absolute;
  top: 18px;
  right: 30px;
  font: 400 84px Georgia, serif;
  color: rgba(231, 200, 95, .3);
  line-height: 1
}

.statement h3 {
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 18px
}

.statement p {
  font-size: 12px;
  line-height: 2;
  color: #bbb9b2;
  margin: 0
}

.sectors {
  background: var(--off)
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 54px
}

.section-head>div {
  max-width: 720px
}

.section-head h2 {
  margin-bottom: 0
}

.section-head>p {
  max-width: 370px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  margin: 0 0 7px
}

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

.sector-card {
  position: relative;
  background: #fff;
  border: 1px solid #ece9e1;
  border-radius: 24px;
  padding: 30px 28px 28px;
  min-height: 300px;
  transition: .3s ease;
  overflow: hidden
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: auto -35px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 43, .13), transparent 70%)
}

.sector-card:hover {
  transform: translateY(-7px);
  border-color: #e0d2a9;
  box-shadow: 0 24px 55px rgba(40, 35, 20, .08)
}

.sector-num {
  position: absolute;
  top: 26px;
  left: 26px;
  font: 700 10px var(--font-en);
  color: #b8b4a9
}

html[dir="ltr"] .sector-num {
  left: auto;
  right: 26px
}

.sector-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 28px
}

.sector-card h3 {
  font-size: 18px;
  margin: 0 0 12px
}

.sector-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 25px
}

.sector-link {
  position: absolute;
  bottom: 26px;
  font: 700 10px var(--font-en);
  color: var(--gold);
  letter-spacing: .04em
}

.supply {
  background: #fff
}

.supply-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
  align-items: center
}

.supply-media {
  height: 680px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #ece9e1
}

.supply-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.supply-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .42))
}

.supply-badge {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  right: 28px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 175px
}

.supply-badge span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font: 800 11px var(--font-en)
}

.supply-badge p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65
}

.supply-content>p {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 25px
}

.steps {
  border-top: 1px solid var(--line)
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line)
}

.step>span {
  font: 700 11px var(--font-en);
  color: var(--gold);
  padding-top: 4px
}

.step h3 {
  margin: 0 0 4px;
  font-size: 15px
}

.step p {
  margin: 0;
  color: #817f78;
  font-size: 11px;
  line-height: 1.8
}

.market {
  background: var(--off)
}

.market-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 320px 320px;
  gap: 16px
}

.market-tile {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #ddd
}

.market-tile.large {
  grid-row: 1 / span 2
}

.market-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}

.market-tile:hover img {
  transform: scale(1.035)
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .62))
}

.tile-copy {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  right: 26px;
  left: 26px;
  color: #fff
}

.tile-copy small {
  font-size: 10px;
  color: #efda96
}

.tile-copy h3 {
  margin: 5px 0 0;
  font-size: 18px
}

.visual-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  color: #79766f;
  font-size: 10px;
  line-height: 1.9
}

.visual-disclaimer span {
  color: var(--gold);
  font-size: 16px
}

.visual-disclaimer p {
  margin: 0
}

.why {
  background: #fff
}

.why-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start
}

.why-intro {
  position: sticky;
  top: 130px
}

.why-list {
  border-top: 1px solid var(--line)
}

.why-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line)
}

.why-index {
  font: 700 11px var(--font-en);
  color: var(--gold);
  padding-top: 5px
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 17px
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9
}

.contact {
  padding-top: 45px;
  background: #fff
}

.contact-card {
  border-radius: 34px;
  background: linear-gradient(135deg, #1d1d1b, #11110f 70%);
  color: #fff;
  padding: 62px 64px;
  display: grid;
  grid-template-columns: 1.2fr .55fr;
  gap: 70px;
  position: relative;
  overflow: hidden
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 43, .18), transparent 67%);
  left: -170px;
  bottom: -260px
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .018), 0 0 0 110px rgba(255, 255, 255, .012)
}

.contact-copy,
.contact-side {
  position: relative;
  z-index: 2
}

.contact h2 {
  font-size: clamp(35px, 4vw, 54px);
  margin-top: 18px
}

.contact-copy>p {
  color: #aaa89f;
  font-size: 12px;
  margin: 0 0 25px
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.contact-line {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  background: rgba(255, 255, 255, .035);
  transition: .25s
}

.contact-line:hover {
  border-color: rgba(231, 200, 95, .55);
  background: rgba(255, 255, 255, .055)
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(231, 200, 95, .15);
  color: var(--gold-2);
  display: grid;
  place-items: center
}

.contact-line div {
  display: flex;
  flex-direction: column
}

.contact-line small {
  font-size: 9px;
  color: #88867f
}

.contact-line strong {
  font: 700 12px var(--font-en);
  letter-spacing: .02em
}

.contact-line .arrow {
  font-size: 15px;
  color: #85827a
}

.contact-side {
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding-right: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center
}

html[dir="ltr"] .contact-side {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-right: 0;
  padding-left: 44px
}

.contact-side img {
  width: 140px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .22));
  margin-bottom: 18px
}

.contact-location {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px
}

.contact-location small {
  color: #8e8b83;
  font-size: 9px
}

.contact-location strong {
  font-size: 12px
}

.btn.full {
  width: 100%;
  max-width: 220px
}

.footer {
  padding: 70px 0 24px;
  background: #fff
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .6fr .7fr;
  gap: 80px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line)
}

.footer-brand img {
  width: 105px;
  height: 115px;
  object-fit: contain;
  margin-bottom: 14px
}

.footer-brand p {
  font-size: 11px;
  max-width: 440px;
  color: var(--muted);
  line-height: 2
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  color: #6e6b64
}

.footer-links strong,
.footer-contact strong {
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 5px
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold)
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 600 10px var(--font-en);
  color: #9a978e
}

.footer-bottom button {
  margin-inline-start: auto;
  border: 0;
  background: none;
  cursor: pointer;
  color: #5d5a54;
  font-family: var(--font-ar);
  font-size: 10px
}

.footer-bottom button:hover {
  color: var(--gold)
}

html[lang="en"] .footer-bottom button {
  font-family: var(--font-en)
}

.floating-contact {
  position: fixed;
  z-index: 40;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

html[dir="ltr"] .floating-contact {
  left: auto;
  right: 18px
}

.floating-contact a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f9d5b;
  color: #fff;
  font: 800 10px var(--font-en);
  box-shadow: 0 12px 28px rgba(31, 157, 91, .28);
  border: 3px solid #fff;
  transition: .2s
}

.floating-contact a:nth-child(2) {
  background: #20201e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2)
}

.floating-contact a:hover {
  transform: translateY(-3px)
}

.floating-contact a i {
  font-size: 18px
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.delay-1 {
  transition-delay: .12s
}

.reveal.delay-2 {
  transition-delay: .22s
}

.reveal.delay-3 {
  transition-delay: .32s
}

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

@media (max-width:1050px) {
  .desktop-nav {
    display: none
  }

  .menu-btn {
    display: block
  }

  .mobile-panel {
    display: block
  }

  .nav-cta {
    display: none
  }

  .brand {
    min-width: 0
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0
  }

  .hero-copy {
    max-width: 780px
  }

  .hero-visual {
    min-height: 560px
  }

  .visual-main {
    inset: 0 110px 34px 0
  }

  html[dir="ltr"] .visual-main {
    inset: 0 0 34px 110px
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .section-kicker {
    padding: 0
  }

  .about-visual-grid {
    grid-template-columns: 1fr .8fr
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .supply-grid {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .supply-media {
    height: 540px
  }

  .why-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .why-intro {
    position: static
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .contact-side {
    border-right: 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 35px 0 0 !important
  }

  .contact-side img {
    width: 110px;
    height: 120px
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media (max-width:760px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .section-pad {
    padding: 78px 0
  }

  .nav-wrap {
    height: 76px
  }

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

  .brand-copy strong {
    font-size: 12px
  }

  .brand-copy small {
    font-size: 9px
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 92px
  }

  .hero-wave {
    height: 72px
  }

  .hero-grid {
    gap: 38px
  }

  .hero h1 {
    font-size: 44px
  }

  .hero-lead {
    font-size: 13px
  }

  .hero-meta {
    gap: 12px
  }

  .hero-meta strong {
    font-size: 11px
  }

  .hero-meta small {
    font-size: 9px
  }

  .hero-visual {
    min-height: 500px
  }

  .visual-main {
    inset: 0 46px 28px 0
  }

  html[dir="ltr"] .visual-main {
    inset: 0 0 28px 46px
  }

  .visual-small {
    width: 132px;
    height: 155px;
    border-width: 5px
  }

  .visual-small-top {
    top: 36px
  }

  .visual-small-bottom {
    bottom: 0;
    height: 132px
  }

  .hero-stat-card {
    top: 16px;
    right: 8px;
    padding: 10px 12px
  }

  html[dir="ltr"] .hero-stat-card {
    left: 8px;
    right: auto
  }

  .floating-seal {
    width: 84px;
    height: 84px;
    right: -8px;
    bottom: 20px
  }

  html[dir="ltr"] .floating-seal {
    left: -8px;
    right: auto
  }

  .floating-seal img {
    width: 62px;
    height: 68px
  }

  .media-topline {
    top: 17px;
    right: 18px;
    left: 18px
  }

  .media-caption {
    bottom: 20px;
    right: 20px;
    left: 20px
  }

  .media-caption strong {
    font-size: 13px
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px
  }

  .trust-items {
    gap: 7px
  }

  .trust-items span {
    padding: 7px 10px;
    font-size: 9px
  }

  .section-copy h2,
  .section-head h2,
  .supply-content h2,
  .why-intro h2,
  .contact h2 {
    font-size: 34px
  }

  .about-visual-grid {
    grid-template-columns: 1fr
  }

  .about-photo,
  .about-card {
    min-height: 380px
  }

  .statement {
    min-height: 340px
  }

  .statement h3 {
    font-size: 27px
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px
  }

  .section-head>p {
    max-width: 100%
  }

  .sector-grid {
    grid-template-columns: 1fr
  }

  .sector-card {
    min-height: 285px
  }

  .supply-media {
    height: 420px
  }

  .supply-grid {
    gap: 40px
  }

  .step {
    grid-template-columns: 45px 1fr
  }

  .market-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 390px 260px 260px
  }

  .market-tile.large {
    grid-row: auto
  }

  .why-item {
    grid-template-columns: 50px 1fr
  }

  .contact-card {
    padding: 40px 24px;
    border-radius: 28px
  }

  .contact-buttons {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .footer-brand {
    grid-column: auto
  }

  .footer-bottom {
    flex-wrap: wrap
  }

  .footer-bottom button {
    width: 100%;
    margin-inline-start: 0;
    text-align: start;
    padding: 0
  }
}

@media (max-width:430px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 84px
  }

  .hero-wave {
    height: 64px
  }

  .hero h1 {
    font-size: 39px
  }

  .hero-lead {
    font-size: 12px
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px
  }

  .hero-meta .divider {
    width: 100%;
    height: 1px
  }

  .hero-visual {
    min-height: 420px
  }

  .visual-main {
    inset: 0 28px 22px 0
  }

  html[dir="ltr"] .visual-main {
    inset: 0 0 22px 28px
  }

  .visual-small {
    width: 105px;
    height: 130px
  }

  .visual-small-bottom {
    height: 112px
  }

  .hero-stat-card {
    top: 8px;
    right: 2px;
    transform: scale(.88);
    transform-origin: top right
  }

  html[dir="ltr"] .hero-stat-card {
    left: 2px;
    right: auto;
    transform-origin: top left
  }

  .floating-seal {
    display: none
  }

  .media-caption strong {
    font-size: 12px
  }

  .section-copy h2,
  .section-head h2,
  .supply-content h2,
  .why-intro h2,
  .contact h2 {
    font-size: 30px
  }

  .market-grid {
    grid-template-rows: 340px 230px 230px
  }
}

.image-fallback {
  background: linear-gradient(145deg, #ede7d5, #c79a2b 130%);
  position: relative
}

.image-fallback::after {
  content: 'Golden Medals';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(40, 35, 20, .35);
  font: 800 14px var(--font-en);
  letter-spacing: .08em
}