/* ==========================================================================
   Skyline Volume Trading — Middle East
   Brand tokens inherited from Skyline Dealz (royal blue + flame orange),
   extended with a warm sand/brass layer and a geometric mashrabiya motif
   for the Gulf market. Fully bidirectional: all flow uses CSS logical
   properties so [dir="rtl"] mirrors without a second stylesheet.
   ========================================================================== */

:root {
  /* Surfaces */
  --paper:  #ffffff;
  --panel:  #ffffff;
  --mist:   #eef3fb;      /* cool tint band */
  --sand:   #faf6ef;      /* warm tint band — the regional layer */
  --ink:    #12223a;
  --ink-2:  #47566b;
  --ink-3:  #8793a5;
  --line:   #e3e9f2;
  --line-2: #cfd9e6;

  /* Brand */
  --pine:   #1560cc;
  --pine-2: #0e4aa6;
  --pine-3: #1f74e6;
  --deep:   #0a2f6b;      /* deep navy for dark bands */
  --brass:  #f2701f;
  --brass-2:#d85c12;
  --gold:   #c9a227;      /* regional brass/gold accent */
  --gold-2: #a8871c;
  --grad-flame: linear-gradient(95deg, #f2651f 0%, #f7941d 48%, #ffc62e 100%);
  --grad-gold:  linear-gradient(95deg, #a8871c 0%, #c9a227 45%, #e7c65a 100%);
  --good:   #1f9d57;

  /* Type */
  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-ar:      "IBM Plex Sans Arabic", "Noto Kufi Arabic", "Segoe UI", Tahoma, sans-serif;

  /* Shape */
  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(18,34,58,.06), 0 1px 3px rgba(18,34,58,.05);
  --shadow: 0 10px 28px rgba(18,34,58,.10);
  --shadow-lg: 0 24px 60px rgba(14,74,166,.18);

  --maxw: 1180px;
  --header-h: 106px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 120px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--pine); color: #fff; }

/* ----------  Arabic / RTL  ----------
   Arabic has no letter case and needs more leading; uppercase + wide tracking
   are reset wherever the Latin styles apply them. */
html[lang="ar"] body { font-family: var(--font-ar); line-height: 1.85; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
  font-family: var(--font-ar); font-weight: 700; line-height: 1.3; letter-spacing: 0;
}
html[lang="ar"] h1 { font-size: clamp(2.1rem, 4.9vw, 3.8rem); }
html[lang="ar"] h2 { font-size: clamp(1.65rem, 3.3vw, 2.55rem); }
html[lang="ar"] .eyebrow,
html[lang="ar"] .tb-hub,
html[lang="ar"] .info-item .k,
html[lang="ar"] .season-card .when,
html[lang="ar"] .site-footer h4 { letter-spacing: 0; text-transform: none; }
html[lang="ar"] .stat-num,
html[lang="ar"] .step-n,
html[lang="ar"] .fmt-tag,
html[lang="ar"] .faq-q { font-family: var(--font-ar); letter-spacing: 0; }
html[lang="ar"] .site-footer h4 { font-size: .95rem; }

/* Mirror directional glyphs */
[dir="rtl"] .arrow-i { transform: scaleX(-1); }

/* Latin fragments inside Arabic copy (emails, phone numbers, Incoterms) stay LTR */
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* ----------  Layout primitives  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.section { padding-block: clamp(66px, 9vw, 118px); position: relative; }
.section--tight { padding-block: clamp(44px, 6vw, 78px); }
.section.alt  { background: var(--mist); }
.section.warm { background: var(--sand); }
.section.deep { background: var(--deep); color: #fff; }
.section.deep h2, .section.deep h3 { color: #fff; }
.section.deep .lead { color: rgba(255,255,255,.76); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

/* Mashrabiya motif — the geometric lattice that signals the region without
   resorting to camels-and-dunes clip art. Pure CSS, no image weight. */
.motif { position: relative; overflow: hidden; }
.motif::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    repeating-linear-gradient( 45deg, rgba(21,96,204,.055) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(21,96,204,.055) 0 1px, transparent 1px 26px);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
}
.section.deep.motif::before {
  background-image:
    repeating-linear-gradient( 45deg, rgba(255,255,255,.09) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.09) 0 1px, transparent 1px 26px);
  opacity: .85;
}

/* ----------  Type  ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.42rem); font-weight: 700; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--ink-3); }

.gold-text, .gradient-text {
  background: var(--grad-flame); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brass-2);
}
html[lang="ar"] .eyebrow { font-family: var(--font-ar); font-size: .84rem; }
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-flame); flex: none; }
.eyebrow--gold::before { background: var(--grad-gold); }
.section.deep .eyebrow { color: #ffc62e; }

.section-head { max-width: 740px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 18px; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap; text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: var(--pine-2); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--pine); color: var(--pine); background: rgba(21,96,204,.04); }
.btn-brass { background: var(--brass); color: #fff; }
.btn-brass:hover { background: var(--brass-2); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-wa { background: #25d366; color: #06331a; font-weight: 700; }
.btn-wa:hover { background: #1eb457; color: #fff; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--pine-2); }
.btn-light:hover { background: #eef3fb; transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.36); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ----------  Topbar  ---------- */
.topbar { background: var(--pine-2); color: rgba(255,255,255,.9); font-size: .8rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; flex-wrap: wrap; }
.tb-left { display: inline-flex; align-items: center; gap: 8px; }
.tb-dot { color: #ffc62e; }
.tb-right { display: inline-flex; align-items: center; gap: 16px; }
.tb-hub { color: rgba(255,255,255,.66); letter-spacing: .06em; font-size: .74rem; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar a { white-space: nowrap; }
@media (max-width: 980px) { .tb-left { display: none; } .topbar .container { justify-content: center; } }
/* Below this the hub list plus the number no longer fit on one line; the
   number is the part worth keeping. */
@media (max-width: 620px) { .tb-hub { display: none; } }

/* ----------  Header  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.93);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); max-width: 1320px; margin-inline: auto; padding-inline: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
/* The logo is a stacked lockup with the wordmark built in, so it carries the
   brand on its own — no text alongside it. It needs real height to read, hence
   the taller header. */
.brand-logo { height: 88px; width: auto; }
@media (max-width: 1060px) { .brand-logo { height: 70px; } }
@media (max-width: 520px)  { .brand-logo { height: 58px; } }

.nav-links { display: flex; align-items: center; gap: 1px; margin-inline-start: auto; }
.nav-links a {
  position: relative;
  padding: 9px 9px 10px; border-radius: var(--radius-sm); font-size: .87rem; font-weight: 500; color: var(--ink-2);
  white-space: nowrap; transition: color .18s ease, background .18s ease;
}
/* Flame-gradient underline that wipes in on hover — the brand accent doing the
   work, rather than a generic tint. inset-inline keeps it mirrored in RTL. */
.nav-links a::after {
  content: ""; position: absolute; inset-inline: 9px; inset-block-end: 3px; height: 2px;
  border-radius: 2px; background: var(--grad-flame);
  transform: scaleX(0); transform-origin: center;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--pine-2); background: rgba(21,96,204,.07); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pine); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--pine); outline-offset: 2px; }

/* Mobile menu links get the same treatment, as a leading flame bar */
.mobile-menu a.m-link { transition: color .18s ease, padding-inline-start .18s ease; }
.mobile-menu a.m-link:hover { color: var(--pine-2); padding-inline-start: 10px; }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-inline-start: 6px; flex: none; }
.nav-phone { display: none; align-items: center; gap: 7px; font-size: .89rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
/* The number is already in the topbar; drop it from the nav before anything
   in the bar is forced to wrap. */

.nav-phone svg { width: 17px; height: 17px; color: var(--pine); }
.nav-phone:hover { color: var(--pine); }

/* Language switch */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; flex: none;
  border: 1px solid var(--line-2); border-radius: 999px; font-size: .85rem; font-weight: 600;
  color: var(--ink); transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.lang-switch:hover { border-color: var(--pine); color: var(--pine); background: rgba(21,96,204,.05); }
.lang-switch svg { width: 15px; height: 15px; }
/* The switch always shows the language you would move TO, in that language */
.lang-switch .lg-label { font-family: var(--font-ar); }
html[lang="ar"] .lang-switch .lg-label { font-family: var(--font-body); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--line-2); padding: 11px 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1320px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-cta > .btn { display: none; }
}

.mobile-menu {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 59;
  background: #fff; padding: calc(var(--header-h) + 54px) 26px 34px;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  transform: translateY(-102%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  max-height: 100dvh; overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a.m-link { display: block; padding: 13px 0; font-size: 1.06rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 18px; }
.m-contact { margin-top: 20px; display: grid; gap: 8px; font-size: .93rem; color: var(--ink-2); }
.m-contact a { font-weight: 600; color: var(--pine); }

/* ----------  Hero  ---------- */
.page-hero { padding-block: clamp(48px, 6.5vw, 86px) clamp(52px, 7vw, 92px); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset-block-start: -180px; inset-inline-end: -160px;
  width: 620px; height: 620px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(21,96,204,.10) 0%, rgba(242,112,31,.06) 45%, transparent 68%);
}
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--ink-3); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--pine); }
.breadcrumb .sep { opacity: .6; }

.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(30px, 5vw, 62px); align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .88rem; color: var(--ink-2); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--good); flex: none; }

/* ----------  Media  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 62px); align-items: center; }
.split.rev .split-copy { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.rev .split-copy { order: 0; } }
.media-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--mist); }
.media-photo img { width: 100%; height: 100%; object-fit: cover; }
.media-photo.r43 { aspect-ratio: 4/3; }
.media-photo.r11 { aspect-ratio: 1/1; }
.photo-tag {
  position: absolute; inset-block-end: 14px; inset-inline-start: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px); font-size: .8rem; font-weight: 600; box-shadow: var(--shadow-sm);
}
.photo-tag svg { width: 15px; height: 15px; color: var(--pine); }

/* ----------  Grids & cards  ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-2); font-size: .95rem; }
.card .ic, .info-item .ic {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 12px; background: rgba(21,96,204,.08); color: var(--pine); margin-bottom: 16px; flex: none;
}
.card .ic svg, .info-item .ic svg { width: 23px; height: 23px; }
.card.brass .ic { background: rgba(242,112,31,.1); color: var(--brass-2); }
.card.gold  .ic { background: rgba(201,162,39,.13); color: var(--gold-2); }
.section.deep .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); }
.section.deep .card p { color: rgba(255,255,255,.72); }
.section.deep .card .ic { background: rgba(255,255,255,.11); color: #ffc62e; }
.section.deep .card:hover { border-color: rgba(255,255,255,.3); box-shadow: none; }

.cat-tile {
  display: flex; align-items: flex-start; gap: 15px; padding: 22px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--pine); }
.cat-tile .ic { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 11px; background: rgba(21,96,204,.08); color: var(--pine); flex: none; margin: 0; }
.cat-tile .ic svg { width: 21px; height: 21px; }
.cat-tile h3 { font-size: 1.02rem; margin-bottom: 3px; }
.cat-tile p { font-size: .87rem; color: var(--ink-3); line-height: 1.5; }

/* ----------  Pills / lists  ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: 999px;
  background: rgba(21,96,204,.06); border: 1px solid rgba(21,96,204,.14);
  font-size: .87rem; font-weight: 500; color: var(--pine-2);
}
.pill--gold { background: rgba(201,162,39,.09); border-color: rgba(201,162,39,.24); color: var(--gold-2); }
.section.deep .pill { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); color: #fff; }

.check-list { display: grid; gap: 15px; }
.check-list li { position: relative; padding-inline-start: 34px; color: var(--ink-2); }
.check-list li b { color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: 5px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(31,157,87,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section.deep .check-list li { color: rgba(255,255,255,.78); }
.section.deep .check-list li b { color: #fff; }

/* ----------  Stats  ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 780px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--paper); padding: 28px 22px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1; color: var(--pine); letter-spacing: -.02em; }
.stat-lbl { margin-top: 9px; font-size: .87rem; color: var(--ink-2); }

/* ----------  Steps  ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 24px 20px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.step-n {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-flame); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .95rem; margin-bottom: 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .89rem; color: var(--ink-2); line-height: 1.55; }

/* ----------  Format / spec rows  ---------- */
.fmt { display: grid; grid-template-columns: 178px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; }
.fmt:last-child { border-bottom: 0; }
@media (max-width: 700px) { .fmt { grid-template-columns: 1fr; gap: 10px; } }
.fmt-tag { font-family: var(--font-display); font-weight: 800; font-size: 1.06rem; color: var(--pine); }
.fmt-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8rem; color: var(--ink-3); margin-top: 3px; }
html[lang="ar"] .fmt-sub { font-family: var(--font-ar); }
.fmt p { color: var(--ink-2); font-size: .96rem; }

/* ----------  Season calendar  ---------- */
.season { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .season { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .season { grid-template-columns: 1fr; } }
.season-card { padding: 24px 22px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.season-card .when { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); }
.season-card h3 { font-size: 1.04rem; margin: 8px 0 7px; }
.season-card p { font-size: .89rem; color: var(--ink-2); line-height: 1.55; }

/* ----------  Info list  ---------- */
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; }
.info-item .ic { width: 44px; height: 44px; margin: 0; }
.info-item .k { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.info-item .v { font-weight: 600; font-size: 1.02rem; }
.info-item .v a:hover { color: var(--pine); }

/* ----------  Forms  ---------- */
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 36px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(21,96,204,.13);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.hp { position: absolute !important; inset-inline-start: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { margin-top: 14px; font-size: .8rem; color: var(--ink-3); line-height: 1.55; }
.form-note a { color: var(--pine); }
.form-success {
  display: none; margin-top: 16px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(31,157,87,.09); border: 1px solid rgba(31,157,87,.3); color: #14713f; font-size: .93rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ----------  FAQ  ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0; text-align: start; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink);
}
.faq-q:hover { color: var(--pine); }
.faq-q .chev { width: 20px; height: 20px; flex: none; color: var(--pine); transition: transform .22s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a p { padding-bottom: 22px; color: var(--ink-2); }

/* ----------  CTA band  ---------- */
.cta-band { background: var(--pine); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.82); margin-top: 16px; }
.cta-band .hero-actions { justify-content: center; margin-top: 28px; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .6; pointer-events: none;
  background-image:
    repeating-linear-gradient( 45deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px);
}
.cta-band .container { position: relative; z-index: 1; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--deep); color: rgba(255,255,255,.72); padding-block: 62px 0; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.site-footer a:hover { color: #fff; }
.foot-links { display: grid; gap: 11px; }
/* The full lockup carries navy type, which would disappear on the navy footer.
   A white chip keeps the logo in its real colours instead of inverting it flat. */
.foot-logo-chip {
  display: inline-block; background: #fff; border-radius: var(--radius);
  padding: 14px 20px; box-shadow: 0 6px 20px rgba(0,0,0,.20);
}
.foot-logo-chip img { width: 190px; height: auto; display: block; }
.foot-brand p { margin-top: 16px; line-height: 1.65; color: rgba(255,255,255,.66); }
.foot-contact { display: grid; gap: 11px; }
.foot-contact .fc { display: flex; gap: 11px; align-items: flex-start; }
/* Secondary line under a footer contact (e.g. the US desk under the Dubai number) */
.foot-contact .muted-2 { display: inline-block; margin-top: 2px; font-size: .85rem; color: rgba(255,255,255,.48); }
.foot-contact .muted-2 a { color: rgba(255,255,255,.62); }
.foot-contact svg { width: 17px; height: 17px; color: #ffc62e; flex: none; margin-top: 3px; }
.foot-bottom {
  margin-top: 48px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.foot-bottom a { color: rgba(255,255,255,.7); }

/* ----------  Floating WhatsApp  ---------- */
.wa-float {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 55;
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 19px; border-radius: 999px;
  background: #25d366; color: #06331a; font-weight: 700; font-size: .92rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.42); transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.5); }
.wa-float svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 560px) { .wa-float .wa-txt { display: none; } .wa-float { padding: 15px; } }

/* ----------  Reveal  ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Prose (privacy / terms) */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 40px; margin-bottom: 12px; }
.prose p, .prose li { color: var(--ink-2); margin-bottom: 14px; }
.prose ul { display: grid; gap: 8px; padding-inline-start: 22px; list-style: disc; }
.prose a { color: var(--pine); text-decoration: underline; }

/* ==========================================================================
   Resources — article index & long-form article pages
   ========================================================================== */

/* ----------  Article cards (index)  ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex; flex-direction: column; gap: 12px; padding: 26px 24px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--pine); }
.post-card h3 { font-size: 1.08rem; line-height: 1.34; }
.post-card p { font-size: .92rem; color: var(--ink-2); line-height: 1.55; flex: 1; }

.tag {
  display: inline-flex; align-items: center; align-self: flex-start; gap: 6px;
  padding: 5px 11px; border-radius: 999px; font-size: .7rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
}
html[lang="ar"] .tag { letter-spacing: 0; text-transform: none; font-size: .78rem; }
.tag--buy  { background: rgba(21,96,204,.09);  color: var(--pine-2); }
.tag--sell { background: rgba(242,112,31,.11); color: var(--brass-2); }
.tag--ship { background: rgba(201,162,39,.13); color: var(--gold-2); }

.post-meta { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ink-3); }
.post-more { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--pine); }
.post-more svg { width: 16px; height: 16px; }
.post-card:hover .post-more { color: var(--pine-2); }

/* ----------  Article body  ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article-head { max-width: 760px; margin-inline: auto; }
.article-head h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; }
html[lang="ar"] .article-head h1 { font-size: clamp(1.75rem, 3.7vw, 2.7rem); line-height: 1.35; }
.article-head .lead { margin-top: 20px; }

.article-body { font-size: 1.045rem; line-height: 1.78; color: var(--ink-2); }
html[lang="ar"] .article-body { line-height: 2.0; }
.article-body > * + * { margin-top: 20px; }
.article-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); color: var(--ink);
  margin-top: 48px; padding-top: 4px;
}
.article-body h3 { font-size: 1.12rem; color: var(--ink); margin-top: 32px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { color: var(--pine); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--pine-2); }
.article-body ul, .article-body ol { display: grid; gap: 11px; padding-inline-start: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li::marker { color: var(--pine); }
.article-body blockquote {
  border-inline-start: 3px solid var(--brass); padding-inline-start: 20px;
  font-size: 1.1rem; color: var(--ink); font-weight: 500;
}

/* Key-takeaways panel — the block that answers the query on its own, and the
   part an assistant is most likely to lift when summarising the page. */
.takeaway {
  background: var(--sand); border: 1px solid rgba(201,162,39,.28);
  border-radius: var(--radius-lg); padding: 26px 28px;
}
.takeaway h2 {
  margin-top: 0 !important; font-size: .78rem !important; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2);
}
html[lang="ar"] .takeaway h2 { letter-spacing: 0; text-transform: none; font-size: .95rem !important; }
.takeaway ul { margin-top: 16px; display: grid; gap: 12px; padding: 0; list-style: none; }
.takeaway li { position: relative; padding-inline-start: 30px; color: var(--ink); font-size: .98rem; line-height: 1.6; }
.takeaway li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: 6px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201,162,39,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8871c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Inline callout */
.callout {
  background: rgba(21,96,204,.05); border-inline-start: 3px solid var(--pine);
  border-radius: var(--radius-sm); padding: 18px 22px; font-size: .97rem;
}
.callout b { color: var(--ink); }

/* Comparison table */
.article-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.article-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 460px; }
.article-table th, .article-table td { padding: 13px 15px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-table thead th { background: var(--mist); color: var(--ink); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 2px solid var(--line-2); }
html[lang="ar"] .article-table thead th { letter-spacing: 0; text-transform: none; font-size: .9rem; }
.article-table tbody tr:last-child td { border-bottom: 0; }
.article-table tbody tr:hover { background: rgba(21,96,204,.03); }

/* In-article CTA */
.article-cta {
  margin-top: 44px; padding: 30px 32px; border-radius: var(--radius-lg);
  background: var(--deep); color: #fff; text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.25rem; }
.article-cta p { margin-top: 10px; color: rgba(255,255,255,.75); font-size: .97rem; }
.article-cta .hero-actions { justify-content: center; margin-top: 20px; }

/* Byline / meta row */
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 26px; padding-block: 18px; border-block: 1px solid var(--line);
  font-size: .87rem; color: var(--ink-3);
}
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 15px; height: 15px; color: var(--pine); }

/* Related */
.related { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 40px; }
.related h2 { font-size: 1.3rem; margin-bottom: 22px; }

/* Compact pills inside cards (re-export corridor lists) */
.card .pills { gap: 6px; }
.card .pills .pill { padding: 4px 11px; font-size: .78rem; }
html[lang="ar"] .card .pills .pill { font-size: .82rem; }
.section.warm .card .pill { background: #fff; border-color: rgba(21,96,204,.16); }

/* Regulatory / import-rules guides */
.tag--rules { background: rgba(31,157,87,.11); color: #14713f; }
