/* =====================================================================
   Evam Global Trading FZCO — shared stylesheet · v2
   Denser, more visual. Brand: navy #083860. Font: Poppins.
   ===================================================================== */

:root {
  --bg:           #FFFFFF;
  --surface:      #F4F6FA;
  --surface-2:    #ECF0F5;
  --ink:          #0F1A24;
  --ink-2:        #1A2530;
  --ink-soft:     #3A4754;
  --mute:         #62707E;
  --hair:         #E1E5EA;
  --hair-soft:    #ECEEF2;

  --brand:        #083860;
  --brand-2:      #0F4D80;
  --brand-3:      #C7DCEF;
  --brand-soft:   #E8EFF6;

  /* Metal accents (used on metals page) */
  --copper-1:     #D4884E;
  --copper-2:     #8B4520;
  --copper-3:     #5A2A0F;
  --alu-1:        #B8C2CC;
  --alu-2:        #6B7785;
  --alu-3:        #3A4754;

  --green-live:   #2F8F5C;
  --warn:         #C46D2B;

  --sans: 'Poppins', system-ui, -apple-system, sans-serif;

  --gutter-x: clamp(1rem, 3.5vw, 3rem);
  --rule:      1px solid var(--hair);
  --rule-soft: 1px solid var(--hair-soft);

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga";
}
::selection { background: var(--brand); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker {
  background: var(--brand);
  color: #fff;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem var(--gutter-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  position: relative; z-index: 60;
}
.ticker__left, .ticker__right { display: flex; align-items: center; gap: 1.1rem; flex-wrap: nowrap; overflow: hidden; }
.ticker__right { justify-content: flex-end; }
.ticker__center { text-align: center; color: rgba(255,255,255,0.7); letter-spacing: 0.14em; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.ticker__item .k { color: rgba(255,255,255,0.55); }
.ticker__item .v { color: #fff; font-variant-numeric: tabular-nums; }
.live-dot {
  width: 6px; height: 6px;
  background: var(--green-live);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47, 143, 92, 0.7);
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 143, 92, 0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(47, 143, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 143, 92, 0); }
}
@media (max-width: 760px) {
  .ticker { grid-template-columns: 1fr 1fr; }
  .ticker__center { display: none; }
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.nav.is-scrolled { border-bottom-color: var(--hair); }
.nav__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0.85rem var(--gutter-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.logo { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--brand); }
.logo__mark {
  width: 28px; height: 28px;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  border-radius: 5px;
}
.logo__name {
  font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.logo__name span { color: var(--mute); font-weight: 400; margin: 0 0.2em; }

.nav__links {
  display: flex; justify-content: center;
  gap: 2rem; list-style: none;
}
.nav__links > li { position: relative; }
.nav__links > li > a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0; position: relative;
  transition: color 0.3s ease;
}
.nav__links > li > a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--brand);
  transition: right 0.5s var(--ease);
}
.nav__links > li > a:hover, .nav__links > li > a.is-active { color: var(--brand); }
.nav__links > li > a:hover::after, .nav__links > li > a.is-active::after { right: 0; }
.nav__links .caret { font-size: 0.7em; transition: transform 0.3s ease; }
.nav__links li:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 0.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
  box-shadow: 0 20px 40px -12px rgba(8, 56, 96, 0.18);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown a:hover { background: var(--surface); color: var(--brand); }
.dropdown a small {
  display: block; font-size: 10px; font-weight: 400;
  color: var(--mute); margin-top: 0.15rem; letter-spacing: 0.04em;
}
.dropdown__divider { height: 1px; background: var(--hair-soft); margin: 0.4rem 0.6rem; }
.dropdown__foot {
  padding: 0.5rem 0.8rem;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 920px) { .nav__links { display: none; } }

.nav__cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem; font-weight: 500;
  transition: background 0.3s ease, transform 0.4s var(--ease);
}
.nav__cta:hover { background: var(--brand-2); transform: translateY(-1px); }
.nav__cta .arrow { font-size: 0.95em; transition: transform 0.4s var(--ease); }
.nav__cta:hover .arrow { transform: translateX(3px); }

.nav__menu-btn {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 5px; background: var(--surface);
}
.nav__menu-btn span { width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: background 0.2s ease; }
.nav__menu-btn span::before, .nav__menu-btn span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s ease;
}
.nav__menu-btn span::before { top: -5px; }
.nav__menu-btn span::after  { top: 5px; }
.nav__menu-btn.is-open span { background: transparent; }
.nav__menu-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__menu-btn.is-open span::after  { top: 0; transform: rotate(-45deg); }
@media (max-width: 920px) { .nav__menu-btn { display: inline-flex; } }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 200;
  background: #fff;
  padding: 4.5rem var(--gutter-x) 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.4rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 5px; background: var(--surface);
}
.mobile-menu h5 {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute); margin: 1.5rem 0 0.6rem;
}
.mobile-menu h5:first-child { margin-top: 0; }
.mobile-menu a {
  display: block; padding: 0.6rem 0;
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--hair-soft);
}
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu .nav__cta { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ─── SHARED ─────────────────────────────────────────────────── */
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.eyebrow {
  font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px;
  background: var(--brand);
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.on-dark { color: rgba(255,255,255,0.85); }
.eyebrow.on-dark::before { background: rgba(255,255,255,0.5); }

.display-h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 0.96; letter-spacing: -0.035em; font-weight: 600;
}
.display-h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1; letter-spacing: -0.028em; font-weight: 600;
}
em.brand-em { font-style: italic; font-weight: 500; color: var(--brand); }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.46s; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 7px;
  font-size: 0.9rem; font-weight: 500;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn .arrow { font-size: 0.95em; transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-2); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--hair); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: var(--brand-3); }

/* ─── HERO (HOME) ────────────────────────────────────────────── */
.hero {
  padding: clamp(2.5rem, 6vh, 4.5rem) 0 clamp(2rem, 4vh, 3rem);
  position: relative; overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}
@media (max-width: 1000px) { .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.hero__copy { padding-top: 0.5rem; }
.hero__eyebrow { margin-bottom: 1.2rem; }
.hero__title {
  font-size: clamp(2.4rem, 6.5vw, 5.8rem);
  line-height: 0.96; letter-spacing: -0.035em;
  font-weight: 600; margin-bottom: 1.4rem;
}
.hero__title .accent { font-style: italic; font-weight: 500; color: var(--brand); }
.hero__sub {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6; color: var(--ink-soft);
  max-width: 52rem; margin-bottom: 1.8rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.5rem; }

/* hero visual collage on the right */
.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  aspect-ratio: 1.05 / 1;
}
.hero__tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  border: var(--rule);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  transition: transform 0.6s var(--ease), border-color 0.4s ease;
}
.hero__tile img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.hero__tile:hover { transform: translateY(-3px); border-color: var(--brand); }
.hero__tile:hover img { transform: scale(1.06); }
.hero__tile__label {
  position: absolute;
  bottom: 0.6rem; left: 0.6rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}
.hero__tile--dark {
  background: var(--brand);
  color: #fff;
  padding: 1.5rem;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}
.hero__tile--dark .v {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero__tile--dark .v small { font-size: 0.5em; font-weight: 500; opacity: 0.7; }
.hero__tile--dark .k {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem; display: block;
}

/* hero stats row */
.hero__stats {
  margin-top: clamp(2rem, 4vh, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.hero__stat { padding: 1.2rem 1.2rem; border-right: var(--rule-soft); }
.hero__stat:last-child { border-right: 0; }
.hero__stat .num {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1; margin-bottom: 0.4rem;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.hero__stat .num small { font-size: 0.55em; opacity: 0.7; font-weight: 500; }
.hero__stat .label {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__stat:nth-child(1), .hero__stat:nth-child(2) { border-bottom: var(--rule-soft); }
}

.hero__grid--centered {
  display: flex;
  justify-content: center;
}

.hero__copy--centered {
  text-align: center;
  max-width: 720px;
  align-items: center;
}

.hero__copy--centered .hero__ctas {
  justify-content: center;
}

/* ─── PAGE HERO (sub-pages) ──────────────────────────────────── */
.page-hero {
  padding: clamp(2rem, 5vh, 3.5rem) 0 clamp(1.5rem, 4vh, 3rem);
  border-bottom: var(--rule);
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--mute); transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); }

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }
.page-hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 0.98; letter-spacing: -0.032em;
  font-weight: 600; margin-bottom: 1.2rem;
}
.page-hero__title em { font-style: italic; font-weight: 500; color: var(--brand); }
.page-hero__lede {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.6; color: var(--ink-soft);
  max-width: 34rem;
}
.page-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.3rem;
  background: var(--surface);
  border-radius: 11px;
  border: var(--rule);
}
.page-hero__meta-item .k {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  display: block; margin-bottom: 0.25rem;
}
.page-hero__meta-item .v {
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
}
.page-hero__meta-item .v.brand { color: var(--brand); }

/* page hero with visual */
.page-hero--with-visual .page-hero__grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.page-hero__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.3 / 1;
  background: var(--surface);
}

/* ─── BLOCK / SECTION ────────────────────────────────────────── */
section.block {
  padding: clamp(2.5rem, 6vh, 4.5rem) 0;
  border-top: var(--rule);
}
section.block.no-border { border-top: 0; }
.block__head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.8rem, 3.5vh, 2.6rem);
}
@media (max-width: 900px) { .block__head { grid-template-columns: 1fr; gap: 1rem; align-items: start; } }
.block__head .eyebrow { margin-bottom: 1rem; }
.block__head h2 { margin-top: 1rem; }
.block__head-text {
  font-size: 0.95rem;
  line-height: 1.6; color: var(--ink-soft);
  max-width: 34rem;
}

/* ─── BRAND CARDS (HOME) ─────────────────────────────────────── */
.brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .brands { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .brands { grid-template-columns: 1fr; } }

.brand {
  position: relative;
  background: #fff;
  border: var(--rule);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.brand:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px -24px rgba(8,56,96,0.25);
}
.brand__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  border-bottom: var(--rule);
  overflow: hidden;
}
.brand__media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.brand:hover .brand__media img { transform: scale(1.05); }
.brand__media--collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.8rem;
}
.brand__media--collage img {
  width: 100%; height: 100%; object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.5rem;
}
.brand__media__tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: #fff;
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  border: 1px solid var(--hair);
  z-index: 2;
}
.brand__media__tag.is-new {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.brand__media__count {
  position: absolute;
  bottom: 0.85rem; right: 0.85rem;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.brand__body {
  padding: 1.3rem 1.3rem 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.brand__top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.brand__index {
  font-weight: 500; font-size: 10px; letter-spacing: 0.18em;
  color: var(--mute);
}
.brand__cat {
  font-weight: 500; font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brand);
}
.brand__name {
  font-size: 1.35rem;
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 0.5rem;
}
.brand__name span { font-style: italic; font-weight: 500; color: var(--brand); }
.brand__desc {
  font-size: 0.88rem; line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  flex-grow: 1;
}
.brand__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.9rem;
  border-top: var(--rule-soft);
}
.brand__origin {
  font-weight: 500; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mute);
}
.brand__origin strong { color: var(--ink); font-weight: 600; }
.brand__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--brand);
  transition: gap 0.4s var(--ease);
}
.brand:hover .brand__link { gap: 0.7rem; }

/* product strip / marquee */
.product-strip {
  padding: clamp(2rem, 5vh, 3.5rem) 0;
  border-top: var(--rule);
  overflow: hidden;
}
.product-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding: 0 var(--gutter-x);
}
.product-strip__head h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1;
}
.product-strip__head h3 em { font-style: italic; font-weight: 500; color: var(--brand); }
.product-strip__head .meta {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
}
.product-strip__track {
  display: flex;
  gap: 0.8rem;
  padding: 0 var(--gutter-x);
  animation: strip-scroll 60s linear infinite;
  width: max-content;
}
.product-strip:hover .product-strip__track { animation-play-state: paused; }
@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.product-strip__item {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  background: var(--surface);
  border: var(--rule);
  border-radius: 10px;
  padding: 1rem;
  display: grid; place-items: center;
  position: relative;
  transition: border-color 0.3s ease;
}
.product-strip__item:hover { border-color: var(--brand); }
.product-strip__item img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.product-strip__item .label {
  position: absolute;
  bottom: 0.4rem; left: 0.4rem;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
}

/* ─── PRODUCT GRID (brand pages) ─────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.product {
  background: #fff;
  border: var(--rule);
  border-radius: 11px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.product:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 18px 36px -22px rgba(8, 56, 96, 0.22);
}
.product__media {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  display: grid; place-items: center;
  border-bottom: var(--rule-soft);
  padding: 1.2rem;
  position: relative; overflow: hidden;
}
.product__media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.product:hover .product__media img { transform: scale(1.04); }
.product__badge {
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  background: var(--brand);
  color: #fff;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
}
.product__badge--alt { background: var(--warn); }
.product__badge--soft { background: #fff; color: var(--brand); border: 1px solid var(--brand); }
.product__body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.product__cat {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
}
.product__name {
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.012em; line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.product__desc {
  font-size: 0.83rem; line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
  flex-grow: 1;
}
.product__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 0.7rem;
  border-top: var(--rule-soft);
}
.product__moq {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute);
}
.product__moq strong { color: var(--ink); font-weight: 600; }
.product__link {
  font-size: 0.8rem; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: gap 0.4s var(--ease);
}
.product:hover .product__link { gap: 0.45rem; }

/* ═════════════════════════════════════════════════════════════
   METALS — variety cards with SVG art treatment
   ═════════════════════════════════════════════════════════════ */

.metals-section { margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.metals-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.1rem;
  border-bottom: var(--rule);
}
.metals-section__title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.028em;
  line-height: 1;
}
.metals-section__title em { font-style: italic; font-weight: 500; color: var(--brand); }
.metals-section__title strong { color: var(--brand); font-weight: 600; }
.metals-section__sub {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  text-align: right;
}
.metals-section__sub strong { color: var(--brand); font-weight: 600; display: block; font-size: 1.3rem; margin-bottom: 0.2rem; letter-spacing: -0.01em; }

.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.variety {
  position: relative;
  background: #fff;
  border: var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.variety:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 20px 42px -22px rgba(8, 56, 96, 0.3);
}

/* The visual art panel */
.variety__art {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.variety__art svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.variety__art .isri {
  position: relative; z-index: 2;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  text-align: center;
  line-height: 1;
}
.variety__art .isri small {
  display: block;
  font-size: 0.4em;
  font-weight: 500;
  letter-spacing: 0.32em;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* metal-type chip overlaid on art */
.variety__chip {
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
}
.variety__purity {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  z-index: 3;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
}

.variety__body {
  padding: 1.1rem 1.2rem 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.variety__name {
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2;
  margin-bottom: 0.45rem;
}
.variety__name em { font-style: italic; font-weight: 500; color: var(--brand); }
.variety__desc {
  font-size: 0.83rem; line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  flex-grow: 1;
}
.variety__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.8rem;
  padding-top: 0.8rem;
  border-top: var(--rule-soft);
}
.variety__spec .k {
  font-weight: 500; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  display: block; margin-bottom: 0.1rem;
}
.variety__spec .v { font-size: 0.82rem; font-weight: 600; color: var(--ink); }

/* ─── DARK STRIP / BANNER ────────────────────────────────────── */
.dark-strip {
  background: var(--brand);
  color: #fff;
  padding: clamp(2rem, 5vh, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 14px;
  margin: clamp(1.5rem, 4vh, 3rem) 0;
  position: relative; overflow: hidden;
}
.dark-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.dark-strip > * { position: relative; z-index: 2; }
.dark-strip__title {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 600; letter-spacing: -0.026em;
  line-height: 1.05;
  margin: 0.7rem 0 0.9rem;
}
.dark-strip__title em { font-style: italic; font-weight: 500; color: var(--brand-3); }
.dark-strip__sub {
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 40rem;
  margin-bottom: 1.2rem;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule); border-bottom: var(--rule);
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }
.service {
  padding: 1.8rem 1.6rem;
  border-right: var(--rule-soft);
  transition: background 0.5s ease;
}
.service:last-child { border-right: 0; }
.service:hover { background: var(--surface); }
@media (max-width: 900px) {
  .service { border-right: 0; border-bottom: var(--rule-soft); }
  .service:last-child { border-bottom: 0; }
}
.service__num {
  font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--brand);
  margin-bottom: 1rem; display: block;
}
.service__title {
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: -0.018em; line-height: 1.2;
  margin-bottom: 0.6rem;
}
.service__title em { font-style: italic; font-weight: 500; color: var(--brand); }
.service__desc {
  color: var(--ink-soft); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 1.2rem;
}
.service__list { list-style: none; display: grid; gap: 0.4rem; }
.service__list li {
  font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
  padding-left: 1rem; position: relative;
}
.service__list li::before { content: "—"; position: absolute; left: 0; color: var(--brand); }

/* ─── REACH ─────────────────────────────────────────────────── */
.reach {
  background: var(--brand);
  color: #fff;
  margin: 0 calc(-1 * var(--gutter-x));
  padding: clamp(3rem, 7vh, 5rem) var(--gutter-x);
  position: relative; overflow: hidden;
  border-radius: 16px;
}
.reach::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.reach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .reach__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.reach__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600; line-height: 1; letter-spacing: -0.03em;
  margin: 1.2rem 0;
}
.reach__title em { font-style: italic; font-weight: 500; color: var(--brand-3); }
.reach__sub {
  font-size: 1rem; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.reach__regions {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.reach__region .name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.reach__region .meta {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.reach__map {
  position: relative;
  aspect-ratio: 1.2 / 1;
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-grid-dot { fill: rgba(255,255,255,0.14); }
.map-active-dot { fill: #fff; }
.map-dubai-ring {
  fill: none; stroke: #fff; stroke-width: 1.4;
  animation: ring 3.4s ease-out infinite;
}
@keyframes ring {
  0%   { r: 4;  opacity: 0.9; }
  100% { r: 24; opacity: 0; }
}
.map-route {
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1; stroke-dasharray: 3 4;
  opacity: 0.55;
}

/* ─── ABOUT PILLARS / VALUES ─────────────────────────────────── */
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .about__pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--surface);
  border: var(--rule);
  border-radius: 11px;
  padding: 1.6rem;
  transition: border-color 0.4s ease, transform 0.5s var(--ease);
}
.pillar:hover { border-color: var(--brand); transform: translateY(-3px); }
.pillar__label {
  font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 0.8rem;
}
.pillar__title {
  font-size: 1.25rem; font-weight: 600;
  letter-spacing: -0.018em; margin-bottom: 0.7rem;
  line-height: 1.2;
}
.pillar__title em { font-style: italic; font-weight: 500; color: var(--brand); }
.pillar__body { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule); border-bottom: var(--rule);
}
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 1.6rem; border-right: var(--rule-soft);
  display: flex; align-items: baseline; gap: 1.2rem;
}
.value:last-child { border-right: 0; }
@media (max-width: 760px) {
  .value { border-right: 0; border-bottom: var(--rule-soft); }
  .value:last-child { border-bottom: 0; }
}
.value__num { font-weight: 500; font-size: 10.5px; letter-spacing: 0.16em; color: var(--brand); }
.value__title { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.018em; margin-bottom: 0.3rem; }
.value__desc { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; }

/* ─── PROCESS ───────────────────────────────────────────────── */
.process__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0.8rem;
  margin: 0 -0.8rem;
  border-top: var(--rule-soft);
  align-items: baseline;
  transition: padding-left 0.6s var(--ease), background 0.5s ease;
  border-radius: 7px;
}
.process__step:hover { padding-left: 1.8rem; background: var(--surface); }
.process__step:last-child { border-bottom: var(--rule-soft); }
.process__num { font-weight: 500; font-size: 10.5px; letter-spacing: 0.18em; color: var(--brand); width: 3em; }
.process__name { font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 600; letter-spacing: -0.018em; line-height: 1.2; }
.process__name em { font-style: italic; font-weight: 500; color: var(--brand); }
.process__detail { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.4rem; line-height: 1.55; max-width: 36rem; }
.process__tag {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  text-align: right; white-space: nowrap;
}
@media (max-width: 700px) {
  .process__step { grid-template-columns: auto 1fr; }
  .process__tag { grid-column: 2; text-align: left; padding-top: 0.4rem; }
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq__list { list-style: none; }
.faq__item { border-top: var(--rule-soft); }
.faq__item:last-child { border-bottom: var(--rule-soft); }
.faq__btn {
  width: 100%; text-align: left;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 2rem;
  transition: padding-left 0.5s var(--ease);
}
.faq__btn:hover { padding-left: 0.5rem; }
.faq__q { font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 600; letter-spacing: -0.012em; line-height: 1.3; }
.faq__icon { font-weight: 300; font-size: 1.4rem; color: var(--brand); transition: transform 0.5s var(--ease); flex-shrink: 0; line-height: 1; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.6s var(--ease); }
.faq__a-inner { padding: 0 0 1.6rem; color: var(--ink-soft); line-height: 1.65; max-width: 48rem; font-size: 0.92rem; }

/* ─── CTA BLOCK ─────────────────────────────────────────────── */
.cta-block {
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: clamp(2rem, 5vh, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  margin: clamp(2.5rem, 6vh, 4rem) 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 2; }
@media (max-width: 900px) { .cta-block { grid-template-columns: 1fr; align-items: start; } }
.cta-block__title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 600; letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 1rem 0 1rem;
}
.cta-block__title em { font-style: italic; font-weight: 500; color: var(--brand-3); }
.cta-block__sub {
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 30rem; margin-bottom: 1.5rem;
}
.cta-block__contacts { display: grid; grid-template-columns: 1fr; }
.cta-block__contact {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; justify-content: space-between; align-items: baseline;
  transition: padding-left 0.4s var(--ease);
}
.cta-block__contact:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.cta-block__contact:hover { padding-left: 0.5rem; }
.cta-block__contact .k {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cta-block__contact .v { font-size: 0.95rem; font-weight: 500; color: #fff; transition: color 0.3s ease; }
.cta-block__contact:hover .v { color: var(--brand-3); }

/* ─── FORM ──────────────────────────────────────────────────── */
.form {
  background: var(--surface);
  border: var(--rule);
  border-radius: 13px;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__row.full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form__grid { grid-template-columns: 1fr; } .form__row.full { grid-column: auto; } }
.form__row { display: flex; flex-direction: column; gap: 0.35rem; }
.form__row label {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
}
.form__row input, .form__row select, .form__row textarea {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 7px;
  padding: 0.75rem 0.9rem;
  font: inherit; font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form__row input:focus, .form__row select:focus, .form__row textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8, 56, 96, 0.1);
}
.form__row textarea { resize: vertical; min-height: 90px; }
.form__submit { margin-top: 0.3rem; }

/* ─── INFO CARDS ────────────────────────────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.info-card {
  background: var(--surface);
  border: var(--rule);
  border-radius: 11px;
  padding: 1.4rem;
  transition: border-color 0.4s ease, transform 0.5s var(--ease);
}
.info-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.info-card__label {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 0.6rem;
}
.info-card__value { font-size: 1rem; font-weight: 600; line-height: 1.3; }
.info-card__sub { color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.35rem; line-height: 1.5; }
.info-card__link { color: var(--brand); }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer.foot { border-top: var(--rule); padding: clamp(2.5rem, 5vh, 3.5rem) 0 1.5rem; }
.foot__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: var(--rule-soft);
}
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot__top { grid-template-columns: 1fr; } }

.foot__brand p {
  color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6;
  margin-top: 1rem; max-width: 22rem;
}
.foot__addr {
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: var(--rule-soft); max-width: 22rem;
}
.foot__addr-label {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 0.4rem;
}
.foot__addr-text { font-size: 0.88rem; line-height: 1.55; color: var(--ink-soft); }
.foot__col h5 {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 0.8rem;
}
.foot__col ul { list-style: none; display: grid; gap: 0.55rem; }
.foot__col a {
  font-size: 0.88rem; color: var(--ink-soft);
  transition: color 0.3s ease;
}
.foot__col a:hover { color: var(--brand); }

.foot__bottom {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.foot__bottom > *:nth-child(2) { text-align: center; }
.foot__bottom > *:nth-child(3) { text-align: right; }
.foot__bottom a { color: var(--mute); transition: color 0.3s ease; }
.foot__bottom a:hover { color: var(--brand); }
.foot__legal { display: flex; gap: 1.2rem; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 700px) {
  .foot__bottom { grid-template-columns: 1fr; }
  .foot__bottom > * { text-align: left !important; }
  .foot__legal { justify-content: flex-start; }
}

.foot__bigmark {
  font-size: clamp(4rem, 20vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--brand);
  margin: 3rem calc(-1 * var(--gutter-x)) -0.5rem;
  padding: 0 var(--gutter-x);
  overflow: hidden; white-space: nowrap;
  pointer-events: none; user-select: none;
  text-transform: uppercase;
}
.foot__bigmark span { font-style: italic; font-weight: 500; color: var(--brand); opacity: 0.4; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .map-dubai-ring, .live-dot, .product-strip__track { animation: none; }
}
