/* ======================================================================
   GoldenMena 金美纳 — website stylesheet
   Part 1: brand tokens and components (from the identity spec)
   Part 2: site layer — navigation, hero, journey, film, form, footer
   ====================================================================== */

/* ── Almarai — the Arabic face, self-hosted (SIL OFL) ─────────────────── */

@font-face {
  font-family: 'Almarai';
  src: url('fonts/almarai-300.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Almarai';
  src: url('fonts/almarai-400.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Almarai';
  src: url('fonts/almarai-700.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Almarai';
  src: url('fonts/almarai-800.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  --gm-navy: #0B2545;
  --gm-navy-deep: #091A34;
  --gm-navy-mid: #0E284B;
  --gm-navy-lift: #163865;

  --gm-gold: #C9A75A;
  --gm-gold-light: #E7C979;
  --gm-gold-dark: #A87E22;
  --gm-gold-deep: #8A6A1E;

  --gm-cream: #F7F4EC;
  --gm-cream-light: #F8F7F2;
  --gm-cream-deep: #F2EEE3;
  --gm-white: #FFFFFF;

  --gm-slate-900: #0B2545;
  --gm-slate-700: #3E5069;
  --gm-slate-600: #4C6180;
  --gm-slate-500: #68788F;
  --gm-slate-300: #8FA3BE;
  --gm-slate-200: #C4D0E1;

  --gm-font: 'Poppins', 'Segoe UI', 'Montserrat', Arial, sans-serif;
  --gm-font-cn: 'Noto Sans SC', 'Microsoft YaHei', 'SimHei', SimSun, sans-serif;
  --gm-font-ar: 'Almarai', 'Sakkal Majalla', 'Dubai', 'Traditional Arabic', Arial, sans-serif;

  --gm-radius: 10px;
  --gm-gutter: 7.5vw;
  --gm-hairline: 1px solid rgba(255, 255, 255, 0.10);
  --gm-hairline-light: 1px solid #E5E0D4;
  --gm-max: 1320px;
  --gm-nav-h: 74px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--gm-nav-h); overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--gm-font);
  background: var(--gm-cream);
  color: var(--gm-slate-700);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

/* ── Grounds ─────────────────────────────────────────────────────────── */

.gm-dark {
  background: linear-gradient(135deg, var(--gm-navy-deep) 0%, var(--gm-navy-lift) 100%);
  color: var(--gm-slate-200);
}
.gm-light { background: var(--gm-cream); color: var(--gm-slate-700); }
.gm-light-deep { background: var(--gm-cream-deep); color: var(--gm-slate-700); }
.gm-section { padding: 92px var(--gm-gutter); }
.has-mark { position: relative; overflow: hidden; }
.gm-section.tight { padding-top: 64px; padding-bottom: 64px; }
.gm-inner { max-width: var(--gm-max); margin: 0 auto; }

/* ── Type ────────────────────────────────────────────────────────────── */

.gm-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gm-gold-dark);
  margin: 0 0 18px;
}
.gm-dark .gm-eyebrow { color: var(--gm-gold-light); }
.gm-eyebrow .cn { font-family: var(--gm-font-cn); letter-spacing: 0.12em; }

h1, .gm-h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--gm-navy);
  margin: 0;
}
.gm-dark h1, .gm-dark .gm-h1 { color: var(--gm-white); }
h1 em, .gm-h1 em { font-style: italic; color: var(--gm-gold-dark); }
.gm-dark h1 em, .gm-dark .gm-h1 em { color: var(--gm-gold-light); }

h2, .gm-h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gm-navy);
  margin: 0 0 8px;
}
.gm-dark h2, .gm-dark .gm-h2 { color: var(--gm-white); }
h2 em, .gm-h2 em { font-style: italic; color: var(--gm-gold-dark); }
.gm-dark h2 em, .gm-dark .gm-h2 em { color: var(--gm-gold-light); }

h3, .gm-h3 { font-size: 17px; font-weight: 700; color: var(--gm-navy); margin: 0 0 6px; line-height: 1.3; }
.gm-dark h3, .gm-dark .gm-h3 { color: var(--gm-white); }

.gm-cn {
  font-family: var(--gm-font-cn);
  font-weight: 700;
  font-size: 0.62em;
  color: var(--gm-navy);
  margin: 10px 0 0;
  line-height: 1.4;
}
.gm-dark .gm-cn { color: var(--gm-gold-light); }
p.gm-cn { font-weight: 400; font-size: 0.92em; color: var(--gm-slate-500); }
.gm-dark p.gm-cn { color: var(--gm-slate-300); font-weight: 400; }

.gm-lead { font-size: 17px; line-height: 1.6; max-width: 62ch; color: var(--gm-slate-700); }
.gm-dark .gm-lead { color: var(--gm-slate-200); }
.gm-body { max-width: 68ch; }
.gm-muted { color: var(--gm-slate-500); }
.gm-dark .gm-muted { color: var(--gm-slate-300); }
.gm-italic { font-style: italic; }
.gm-tiny { font-size: 11.5px; line-height: 1.55; color: var(--gm-slate-500); }
.gm-dark .gm-tiny { color: var(--gm-slate-300); }

/* ── Components ──────────────────────────────────────────────────────── */

.gm-rule { height: 1px; background: var(--gm-gold-dark); opacity: .55; border: 0; margin: 28px 0; }
.gm-dark .gm-rule { background: var(--gm-navy-lift); opacity: 1; }

.gm-grid { display: grid; gap: 18px; }
.gm-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gm-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gm-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gm-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) {
  .gm-grid.cols-3, .gm-grid.cols-4, .gm-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) { .gm-grid { grid-template-columns: 1fr !important; } }

.gm-card {
  background: var(--gm-white);
  border: var(--gm-hairline-light);
  border-radius: var(--gm-radius);
  padding: 26px 24px;
}
.gm-dark .gm-card { background: var(--gm-navy-mid); border: var(--gm-hairline); }
.gm-card .num {
  font-size: 22px; font-weight: 700; color: var(--gm-gold-dark);
  display: block; margin-bottom: 10px; letter-spacing: .02em;
}
.gm-dark .gm-card .num { color: var(--gm-gold-light); }

.gm-stat .value {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700; line-height: 1; color: var(--gm-gold-dark);
}
.gm-dark .gm-stat .value { color: var(--gm-gold-light); }
.gm-stat .value .unit { font-size: 0.42em; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.gm-stat .label {
  display: block; margin-top: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gm-navy);
}
.gm-dark .gm-stat .label { color: var(--gm-white); }
.gm-stat .label-cn { display: block; margin-top: 4px; font-family: var(--gm-font-cn); font-size: 12px; font-weight: 700; color: var(--gm-gold-dark); }
.gm-dark .gm-stat .label-cn { color: var(--gm-gold-light); }
.gm-stat .note { display: block; margin-top: 8px; font-size: 12px; color: var(--gm-slate-500); }
.gm-dark .gm-stat .note { color: var(--gm-slate-300); }

.gm-btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px;
  background: var(--gm-gold-dark); color: var(--gm-navy);
  font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  font-family: inherit;
}
.gm-btn:hover { transform: translateY(-2px); }
.gm-dark .gm-btn { background: var(--gm-gold-light); color: var(--gm-navy); }
.gm-btn.ghost { background: transparent; border: 1px solid var(--gm-gold-dark); color: var(--gm-gold-dark); }
.gm-dark .gm-btn.ghost { border-color: var(--gm-gold-light); color: var(--gm-gold-light); background: transparent; }
.gm-dark .gm-btn.ghost:hover { background: rgba(231,201,121,.10); }

.gm-logo { height: 46px; width: auto; display: block; }
.gm-logo.lg { height: 84px; }
.gm-logo.sm { height: 30px; }

/* ======================================================================
   Site layer
   ====================================================================== */

/* ── Navigation ──────────────────────────────────────────────────────── */

.gm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--gm-nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 0 var(--gm-gutter);
  background: rgba(9, 26, 52, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, border-color .3s ease;
}
.gm-nav.solid { background: rgba(9, 26, 52, 0.97); }
.gm-nav a.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.gm-nav a.brand img { height: 34px; width: auto; display: block; }
.gm-nav a.brand .wordmark {
  color: var(--gm-white); font-weight: 700; font-size: 16px; letter-spacing: .01em; white-space: nowrap;
}
.gm-nav a.brand .wordmark b { color: var(--gm-gold-light); font-weight: 700; }
.gm-nav-links { display: flex; align-items: center; gap: 26px; }
.gm-nav-links a {
  color: var(--gm-slate-200); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  transition: color .18s ease;
}
.gm-nav-links a:hover { color: var(--gm-gold-light); }
.gm-nav-right { display: flex; align-items: center; gap: 18px; }
.gm-nav .gm-btn { padding: 10px 22px; font-size: 11px; }

.gm-lang { display: flex; align-items: center; gap: 2px; }
.gm-lang button {
  background: transparent; border: 0; cursor: pointer;
  color: var(--gm-slate-300); font-family: inherit;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 9px; border-radius: 6px; line-height: 1;
  transition: color .16s ease, background .16s ease;
}
.gm-lang button[data-lang="zh"] { font-family: var(--gm-font-cn); }
.gm-lang button[data-lang="ar"] { font-family: var(--gm-font-ar); font-size: 14px; }
.gm-lang button:hover { color: var(--gm-gold-light); }
.gm-lang button.active { color: var(--gm-navy); background: var(--gm-gold-light); }
.gm-lang .sep { color: rgba(255,255,255,.22); font-size: 11px; }

.gm-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.gm-burger span { display: block; width: 22px; height: 2px; background: var(--gm-white); margin: 4px 0; transition: .2s; }

@media (max-width: 1180px) { .gm-nav-links { gap: 18px; } .gm-nav-links a { font-size: 11px; letter-spacing: .1em; } }
@media (max-width: 1000px) {
  .gm-burger { display: block; }
  .gm-nav-links {
    position: absolute; top: var(--gm-nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(9,26,52,.99); padding: 0 var(--gm-gutter);
    max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .gm-nav-links.open { max-height: 340px; padding: 14px var(--gm-gutter) 24px; }
  .gm-nav-links a { padding: 12px 0; width: 100%; }
  .gm-nav .gm-btn { display: none; }
  .gm-nav a.brand .wordmark { display: none; }
}


/* ── Navigation dropdown ─────────────────────────────────────────────── */

.gm-has-sub { position: relative; display: flex; align-items: center; }
.gm-has-sub > .parent { display: inline-flex; align-items: center; gap: 6px; }
.gm-has-sub .chev { width: 9px; height: 6px; transition: transform .2s ease; opacity: .8; }
.gm-has-sub:hover .chev, .gm-has-sub:focus-within .chev { transform: rotate(180deg); }

.gm-sub {
  position: absolute; top: 100%; left: 0; z-index: 120;
  min-width: 260px; padding: 8px;
  background: rgba(9, 26, 52, .99);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--gm-radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
[dir="rtl"] .gm-sub { left: auto; right: 0; }
.gm-has-sub:hover .gm-sub, .gm-has-sub:focus-within .gm-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.gm-sub a {
  display: block; padding: 12px 14px; border-radius: 8px;
  font-size: 12px; letter-spacing: .1em; line-height: 1.5;
  color: var(--gm-slate-200); text-transform: uppercase; font-weight: 700;
}
.gm-sub a:hover { background: rgba(231,201,121,.10); color: var(--gm-gold-light); }
html[dir="rtl"] .gm-sub a { font-size: 14.5px; letter-spacing: 0; }
html[lang="zh"] .gm-sub a { letter-spacing: .06em; }

@media (max-width: 1000px) {
  .gm-has-sub { display: block; width: 100%; }
  .gm-has-sub > .parent { padding: 12px 0; width: 100%; justify-content: space-between; }
  .gm-has-sub .chev { display: none; }
  .gm-sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; padding: 0 0 8px; background: transparent; border: 0; box-shadow: none;
  }
  .gm-sub a { padding: 10px 0 10px 16px; color: var(--gm-gold-light); }
  [dir="rtl"] .gm-sub a { padding: 10px 16px 10px 0; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */

.gm-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--gm-nav-h) + 96px) var(--gm-gutter) 0;
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
}
.gm-hero .gm-inner { position: relative; z-index: 2; width: 100%; }
.gm-hero h1 { font-size: clamp(34px, 5vw, 62px); max-width: 17ch; }
.gm-hero .gm-cn { font-size: clamp(19px, 2.4vw, 30px); }
.gm-hero .gm-lead { margin-top: 26px; }
.gm-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* the arrow motif from the deck, ghosted into the ground */
.gm-hero-mark {
  position: absolute; z-index: 1; pointer-events: none;
  right: -4%; top: 4%; width: 46%; max-width: 640px; opacity: .05;
}
[dir="rtl"] .gm-hero-mark { right: auto; left: -4%; transform: scaleX(-1); }

.gm-hero-strip {
  position: relative; z-index: 2;
  margin-top: 72px; padding: 26px 0 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.gm-hero-strip .item { border-left: 0; }
.gm-hero-strip .dot { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gm-gold); margin-bottom: 12px; }
.gm-hero-strip .en {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gm-slate-200); line-height: 1.5;
}
.gm-hero-strip .cn {
  display: block; margin-top: 6px; font-family: var(--gm-font-cn);
  font-size: 12px; color: var(--gm-gold-light);
}
@media (max-width: 980px) { .gm-hero-strip { grid-template-columns: repeat(3, 1fr); row-gap: 24px; } }
@media (max-width: 560px) { .gm-hero-strip { grid-template-columns: repeat(2, 1fr); } .gm-hero { min-height: auto; padding-top: calc(var(--gm-nav-h) + 60px); } }

/* page hero for interior pages */
.gm-page-hero { padding: calc(var(--gm-nav-h) + 78px) var(--gm-gutter) 78px; position: relative; overflow: hidden; }
.gm-page-hero .bignum {
  font-size: clamp(60px, 9vw, 132px); font-weight: 700; line-height: .9;
  color: var(--gm-gold-light); opacity: .30; margin: 0 0 6px;
}
.gm-page-hero h1 { max-width: 20ch; }

/* ── Split section ───────────────────────────────────────────────────── */

.gm-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.gm-split.wide { grid-template-columns: 1.35fr 1fr; gap: 52px; }
@media (max-width: 980px) {
  .gm-split, .gm-split.wide { grid-template-columns: 1fr; gap: 34px; }
}

.gm-list { list-style: none; padding: 0; margin: 16px 0 0; }
.gm-list li { position: relative; padding-left: 18px; margin-bottom: 12px; font-size: 14.5px; }
.gm-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gm-gold-dark);
}
.gm-dark .gm-list li::before { background: var(--gm-gold-light); }
.gm-list li .cn { font-family: var(--gm-font-cn); color: var(--gm-slate-500); font-size: 13px; display: block; margin-top: 2px; }
.gm-dark .gm-list li .cn { color: var(--gm-slate-300); }
[dir="rtl"] .gm-list li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .gm-list li::before { left: auto; right: 0; }

.gm-flow-arrow { text-align: center; color: var(--gm-gold-dark); font-size: 22px; margin: 14px 0; line-height: 1; }

/* ── Capability cards ────────────────────────────────────────────────── */

a.gm-card { text-decoration: none; color: inherit; display: block; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
a.gm-card:hover { transform: translateY(-4px); border-color: var(--gm-gold); box-shadow: 0 10px 30px rgba(11,37,69,.08); }
.gm-dark a.gm-card:hover { box-shadow: none; border-color: rgba(231,201,121,.45); }
.gm-card .more {
  display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gm-gold-dark);
}
.gm-dark .gm-card .more { color: var(--gm-gold-light); }
.gm-card .card-cn { font-family: var(--gm-font-cn); font-size: 13.5px; font-weight: 700; color: var(--gm-gold-dark); margin: 0 0 12px; }
.gm-dark .gm-card .card-cn { color: var(--gm-gold-light); }
.gm-card p { margin: 0; font-size: 14px; }


/* ── Photographic hero (models page) ─────────────────────────────────── */

.gm-hero-photo { min-height: 88vh; }
.gm-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .30;
}
.gm-hero-photo::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(9,26,52,.94) 0%, rgba(9,26,52,.72) 45%, rgba(9,26,52,.42) 100%);
}
[dir="rtl"] .gm-hero-photo::after {
  background: linear-gradient(255deg, rgba(9,26,52,.94) 0%, rgba(9,26,52,.72) 45%, rgba(9,26,52,.42) 100%);
}
.gm-hero-photo .gm-inner { position: relative; z-index: 2; }
.gm-hero-strip.claims { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 620px) { .gm-hero-strip.claims { grid-template-columns: 1fr; } }

/* ── Image tiles (the ten disciplines) ───────────────────────────────── */

.gm-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .gm-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .gm-tiles { grid-template-columns: 1fr; } }

a.gm-tile { text-decoration: none; color: inherit; }
a.gm-tile h3 { color: var(--gm-navy); }

/* one wide feature tile — used on the Other Services page */
.gm-tiles.feature { grid-template-columns: 1fr; }
.gm-tiles.feature .gm-tile { flex-direction: row; align-items: stretch; }
.gm-tiles.feature .shot { flex: 0 0 46%; aspect-ratio: auto; }
.gm-tiles.feature .body { flex: 1; padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.gm-tiles.feature h3 { font-size: 26px; }
.gm-tiles.feature p { font-size: 15.5px; max-width: 52ch; }
html[dir="rtl"] .gm-tiles.feature h3 { font-size: 29px; }
@media (max-width: 860px) {
  .gm-tiles.feature .gm-tile { flex-direction: column; }
  .gm-tiles.feature .shot { flex: none; aspect-ratio: 3 / 2; }
  .gm-tiles.feature .body { padding: 26px 24px 30px; }
}

.gm-tile {
  background: var(--gm-white);
  border: var(--gm-hairline-light);
  border-radius: var(--gm-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.gm-tile:hover { transform: translateY(-4px); border-color: var(--gm-gold); box-shadow: 0 14px 34px rgba(11,37,69,.10); }
.gm-tile .shot { aspect-ratio: 3 / 2; overflow: hidden; background: var(--gm-navy-deep); }
.gm-tile .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gm-tile:hover .shot img { transform: scale(1.04); }
.gm-tile .body { padding: 22px 24px 26px; }
.gm-tile .num {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .18em;
  color: var(--gm-gold-dark); margin-bottom: 8px;
}
.gm-tile p { margin: 0; font-size: 14px; }

/* ── Figures ─────────────────────────────────────────────────────────── */

.gm-figure {
  width: 100%; height: auto; display: block;
  border-radius: var(--gm-radius); border: var(--gm-hairline-light);
}
.gm-figure-link { display: block; overflow: hidden; border-radius: var(--gm-radius); }
.gm-figure-link img { transition: transform .5s ease; }
.gm-figure-link:hover img { transform: scale(1.03); }

html[dir="rtl"] .gm-tile .num { letter-spacing: 0; font-size: 14px; }
html[dir="rtl"] .gm-tile p { font-size: 17px; }

/* ── Journey rail ────────────────────────────────────────────────────── */

.gm-journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .gm-journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .gm-journey { grid-template-columns: 1fr; } }
.gm-journey .gm-card { display: flex; flex-direction: column; }
.gm-journey .stage {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gm-white);
}
.gm-journey .q { font-style: italic; font-size: 13.5px; color: var(--gm-slate-300); margin: 10px 0 16px; }
.gm-journey .outcome {
  margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.10);
}
.gm-journey .outcome .lbl { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gm-gold-light); display: block; margin-bottom: 6px; }
.gm-journey .outcome .val { font-size: 14px; font-weight: 700; color: var(--gm-white); }

/* ── Outcome band ────────────────────────────────────────────────────── */

.gm-outcome {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px;
  padding: 22px 26px; border-radius: var(--gm-radius);
  background: var(--gm-white); border: 1px solid var(--gm-gold);
}
.gm-dark .gm-outcome { background: var(--gm-navy-mid); border-color: rgba(231,201,121,.45); }
.gm-outcome .lbl { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gm-gold-dark); }
.gm-dark .gm-outcome .lbl { color: var(--gm-gold-light); }
.gm-outcome .val { font-size: 17px; font-weight: 700; color: var(--gm-navy); }
.gm-dark .gm-outcome .val { color: var(--gm-white); }
.gm-outcome .val-cn { font-family: var(--gm-font-cn); font-size: 14px; font-weight: 700; color: var(--gm-gold-dark); }
.gm-dark .gm-outcome .val-cn { color: var(--gm-gold-light); }

/* ── Numbered rows (capability sub-services) ─────────────────────────── */

.gm-rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gm-rows.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .gm-rows, .gm-rows.three { grid-template-columns: 1fr; } }
.gm-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; background: var(--gm-white); border: var(--gm-hairline-light); border-radius: var(--gm-radius); }
.gm-dark .gm-row { background: var(--gm-navy-mid); border: var(--gm-hairline); }
.gm-row .idx {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--gm-gold-dark); color: var(--gm-gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.gm-dark .gm-row .idx { border-color: rgba(231,201,121,.55); color: var(--gm-gold-light); }
.gm-row h3 { margin-bottom: 2px; }
.gm-row .h-cn { font-family: var(--gm-font-cn); font-size: 13.5px; font-weight: 700; color: var(--gm-gold-dark); margin: 0 0 10px; }
.gm-dark .gm-row .h-cn { color: var(--gm-gold-light); }
.gm-row p { margin: 0; font-size: 14px; }
.gm-row p.p-cn { font-family: var(--gm-font-cn); font-size: 12.5px; color: var(--gm-slate-500); margin-top: 8px; }
.gm-dark .gm-row p.p-cn { color: var(--gm-slate-300); }

/* ── Film ────────────────────────────────────────────────────────────── */

.gm-film { position: relative; border-radius: var(--gm-radius); overflow: hidden; border: var(--gm-hairline); background: #000; }
.gm-film video { display: block; width: 100%; height: auto; }

/* ── Contact form ────────────────────────────────────────────────────── */

.gm-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gm-form .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .gm-form { grid-template-columns: 1fr; } }
.gm-field label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gm-gold-light); margin-bottom: 8px;
}
.gm-field input, .gm-field select, .gm-field textarea {
  width: 100%; padding: 13px 14px;
  background: rgba(255,255,255,.05); color: var(--gm-white);
  border: 1px solid rgba(255,255,255,.16); border-radius: 8px;
  font-family: inherit; font-size: 14.5px; line-height: 1.5;
}
.gm-field textarea { min-height: 118px; resize: vertical; }
.gm-field input::placeholder, .gm-field textarea::placeholder { color: rgba(196,208,225,.5); }
.gm-field input:focus, .gm-field select:focus, .gm-field textarea:focus {
  outline: none; border-color: var(--gm-gold-light); background: rgba(255,255,255,.08);
}
.gm-field select option { background: var(--gm-navy-deep); color: var(--gm-white); }
.gm-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.gm-form-note { font-size: 12px; color: var(--gm-slate-300); margin: 4px 0 0; }

.gm-qr { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gm-qr .gm-card { background: var(--gm-white); border-color: #E5E0D4; text-align: center; padding: 18px 16px; }
.gm-dark .gm-qr .gm-card { background: var(--gm-white); border-color: transparent; }
.gm-qr img { width: 100%; max-width: 178px; height: auto; margin: 0 auto; display: block; }
.gm-qr .t { font-size: 14px; font-weight: 700; color: var(--gm-navy); margin-top: 12px; }
.gm-qr .s { font-size: 11.5px; color: var(--gm-slate-500); margin-top: 2px; }

.gm-contact-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
@media (max-width: 900px) { .gm-contact-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gm-contact-facts { grid-template-columns: 1fr; } }
.gm-contact-facts .gm-card { padding: 20px 22px; }
.gm-contact-facts .lbl { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gm-gold-light); display: block; margin-bottom: 10px; }
.gm-contact-facts .val { font-size: 16px; font-weight: 700; color: var(--gm-white); text-decoration: none; word-break: break-word; }
.gm-contact-facts a.val:hover { color: var(--gm-gold-light); }
.gm-contact-facts .val-cn { display: block; font-family: var(--gm-font-cn); font-size: 12px; color: var(--gm-slate-300); margin-top: 6px; }
/* Latin-ordered data (phone, email, URL) keeps its direction inside an RTL page */
.gm-ltr { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .gm-ltr { display: inline-block; text-align: right; }

/* ── Sent confirmation ──────────────────────────────────────────────── */

.gm-sent { padding: 8px 0 4px; }
.gm-sent .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--gm-gold-light); color: var(--gm-gold-light);
  font-size: 24px; margin-bottom: 22px;
}
.gm-sent .tick.warn { border-color: #E0A96D; color: #E0A96D; }
.gm-sent h2 { margin-bottom: 14px; }
.gm-btn.gm-ltr { text-transform: none; letter-spacing: .02em; }
.gm-sent .gm-lead { margin: 0 0 6px; }

/* ── Prev / next ─────────────────────────────────────────────────────── */

.gm-pager { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.gm-pager a { text-decoration: none; color: inherit; max-width: 46%; }
.gm-pager .dir { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gm-gold-dark); display: block; margin-bottom: 8px; }
.gm-pager .ttl { font-size: 19px; font-weight: 700; color: var(--gm-navy); line-height: 1.25; }
.gm-pager a:hover .ttl { color: var(--gm-gold-dark); }
.gm-pager .nxt { text-align: right; margin-left: auto; }
[dir="rtl"] .gm-pager .nxt { text-align: left; }
@media (max-width: 620px) { .gm-pager a { max-width: 100%; } .gm-pager .nxt { text-align: left; } }

/* ── Footer ──────────────────────────────────────────────────────────── */

.gm-site-footer { background: var(--gm-navy-deep); color: var(--gm-slate-300); padding: 56px var(--gm-gutter) 30px; }
.gm-site-footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.gm-site-footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.gm-site-footer .col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gm-gold-light); margin: 0 0 14px;
}
.gm-site-footer .col a { display: block; color: var(--gm-slate-300); text-decoration: none; font-size: 13.5px; margin-bottom: 9px; }
.gm-site-footer .col a:hover { color: var(--gm-gold-light); }
.gm-site-footer .bar {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gm-slate-300);
}
.gm-site-footer .bar .cn { font-family: var(--gm-font-cn); letter-spacing: .08em; }

/* ── RTL ─────────────────────────────────────────────────────────────── */

[dir="rtl"] body, [dir="rtl"] { text-align: right; }
html[dir="rtl"] body { font-family: var(--gm-font-ar); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] .gm-h1, html[dir="rtl"] .gm-h2 { letter-spacing: 0; }
html[dir="rtl"] .gm-eyebrow, html[dir="rtl"] .gm-stat .label,
html[dir="rtl"] .gm-nav-links a, html[dir="rtl"] .gm-btn,
html[dir="rtl"] .gm-outcome .lbl, html[dir="rtl"] .gm-journey .stage,
html[dir="rtl"] .gm-contact-facts .lbl, html[dir="rtl"] .gm-field label,
html[dir="rtl"] .gm-site-footer .col h4, html[dir="rtl"] .gm-site-footer .bar,
html[dir="rtl"] .gm-hero-strip .en, html[dir="rtl"] .gm-card .more,
html[dir="rtl"] .gm-pager .dir, html[dir="rtl"] .gm-journey .outcome .lbl {
  letter-spacing: 0;
}
/* Almarai sets a smaller apparent size than Poppins at the same px, and
   Arabic needs more leading — the whole RTL scale is lifted accordingly. */
html[dir="rtl"] body { font-size: 17.5px; line-height: 1.85; font-weight: 400; }
html[dir="rtl"] .gm-lead { font-size: 20px; line-height: 1.8; }
html[dir="rtl"] .gm-list li, html[dir="rtl"] .gm-row p,
html[dir="rtl"] .gm-card p, html[dir="rtl"] .gm-journey .q { font-size: 17px; line-height: 1.8; }
html[dir="rtl"] .gm-eyebrow { font-size: 13px; font-weight: 700; }
html[dir="rtl"] .gm-nav-links a { font-size: 14.5px; font-weight: 700; }
html[dir="rtl"] .gm-btn { font-size: 14.5px; font-weight: 700; padding: 14px 32px; }
html[dir="rtl"] .gm-nav .gm-btn { padding: 11px 24px; font-size: 13.5px; }
html[dir="rtl"] .gm-lang button { font-size: 13.5px; }
html[dir="rtl"] .gm-lang button[data-lang="ar"] { font-size: 15px; }
html[dir="rtl"] h3, html[dir="rtl"] .gm-h3 { font-size: 21px; font-weight: 700; line-height: 1.55; }
html[dir="rtl"] .gm-hero-strip .en { font-size: 14px; font-weight: 700; }
html[dir="rtl"] .gm-stat .label { font-size: 14px; font-weight: 700; line-height: 1.6; }
html[dir="rtl"] .gm-stat .note { font-size: 14px; line-height: 1.7; }
html[dir="rtl"] .gm-tiny { font-size: 13.5px; line-height: 1.8; }
html[dir="rtl"] .gm-site-footer .bar { font-size: 13px; }
html[dir="rtl"] .gm-site-footer .col a { font-size: 16px; }
html[dir="rtl"] .gm-journey .stage { font-size: 15px; font-weight: 700; }
html[dir="rtl"] .gm-journey .outcome .val { font-size: 16.5px; }
html[dir="rtl"] .gm-outcome .val { font-size: 19px; }
html[dir="rtl"] .gm-pager .ttl { font-size: 21px; }
html[dir="rtl"] .gm-field input, html[dir="rtl"] .gm-field select,
html[dir="rtl"] .gm-field textarea { font-size: 16.5px; padding: 14px 16px; }
html[dir="rtl"] .gm-form-note { font-size: 14px; line-height: 1.8; }
html[dir="rtl"] .gm-contact-facts .val { font-size: 18px; }
html[dir="rtl"] .gm-qr .t { font-size: 16px; }
html[dir="rtl"] .gm-qr .s { font-size: 13.5px; }
html[dir="rtl"] .gm-card .more { font-size: 13px; font-weight: 700; }
html[dir="rtl"] .gm-contact-facts .lbl, html[dir="rtl"] .gm-field label,
html[dir="rtl"] .gm-outcome .lbl, html[dir="rtl"] .gm-pager .dir,
html[dir="rtl"] .gm-site-footer .col h4, html[dir="rtl"] .gm-journey .outcome .lbl {
  font-size: 13px; font-weight: 700;
}
/* the paired secondary line is hidden when a single-language view is active */
html[lang="zh"] .only-en-pair, html[lang="ar"] .only-en-pair { display: none; }

/* ── Non-Latin typographic corrections ───────────────────────────────── */
/* Synthetic obliques break Chinese and Arabic letterforms — the gold
   emphasis stays, the slant does not. */
html[lang="zh"] em, html[lang="ar"] em,
html[lang="zh"] .gm-italic, html[lang="ar"] .gm-italic,
html[lang="zh"] .gm-journey .q, html[lang="ar"] .gm-journey .q { font-style: normal; }

html[lang="zh"] body { font-family: var(--gm-font-cn); }
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3,
html[lang="zh"] .gm-h1, html[lang="zh"] .gm-h2 { line-height: 1.3; letter-spacing: 0; }
html[lang="zh"] .gm-hero h1 { max-width: 24ch; }
html[lang="zh"] h1, html[lang="zh"] .gm-h1 { font-size: clamp(28px, 3.6vw, 44px); }
html[lang="zh"] .gm-hero h1 { font-size: clamp(30px, 4vw, 50px); }
html[lang="zh"] .gm-eyebrow { letter-spacing: 0.1em; }
html[lang="zh"] .gm-lead, html[lang="zh"] .gm-body { max-width: 40em; }

html[dir="rtl"] .gm-hero h1 { max-width: 22ch; font-size: clamp(32px, 4.4vw, 54px); }
html[dir="rtl"] h1, html[dir="rtl"] .gm-h1 {
  line-height: 1.45; font-weight: 800; font-size: clamp(29px, 3.7vw, 46px);
}
html[dir="rtl"] h2, html[dir="rtl"] .gm-h2 { line-height: 1.55; font-weight: 800; font-size: clamp(21px, 2.3vw, 29px); }
html[dir="rtl"] .gm-page-hero h1 { max-width: 24ch; }
html[dir="rtl"] .gm-lead { max-width: 52ch; }
html[dir="rtl"] .gm-stat .value { font-size: clamp(26px, 2.9vw, 38px); line-height: 1.25; }
html[dir="rtl"] .gm-page-hero .bignum { direction: ltr; }

/* ── Reveal on scroll ────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Print ───────────────────────────────────────────────────────────── */

@media print {
  .gm-nav, .gm-lang, .gm-burger { display: none !important; }
  .gm-dark, .gm-card, .gm-row { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
