/* ══════════════════════════════════════════════════════════════
   ÉLVANIA GROUP — Design System
   Nordic representation for destinations.
   Two layers: BRAND (deep forest, gold) + DOCUMENT (paper, ink).
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --forest:        #0d2b1e;
  --forest-mid:    #163828;
  --forest-light:  #1f4d38;
  --forest-deep:   #081a12;
  --gold:          #c9a84c;
  --gold-light:    #e2c97e;
  --gold-dim:      rgba(201,168,76,0.28);
  --gold-faint:    rgba(201,168,76,0.12);
  --ivory:         #f5f0e8;
  --ivory-dim:     #e8e1d4;
  --white:         #ffffff;
  --text-dim:      rgba(245,240,232,0.62);
  --text-faint:    rgba(245,240,232,0.34);
  --line:          rgba(245,240,232,0.10);

  /* Document layer */
  --paper:         #f7f4ee;
  --paper-alt:     #efeadf;
  --ink:           #10231a;
  --ink-mid:       #3b4d43;
  --ink-dim:       #6c7a72;
  --rule:          rgba(13,43,30,0.13);
  --rule-strong:   rgba(13,43,30,0.24);

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --pad-x: 60px;
  --maxw: 1240px;
  --maxw-read: 760px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--forest);
  color: var(--ivory);
  overflow-x: hidden;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
::selection { background: var(--gold); color: var(--forest); }

/* Accessibility */
.skip-link {
  position: absolute; top: -100px; left: 20px; z-index: 999;
  background: var(--gold); color: var(--forest);
  padding: 12px 22px; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 20px; }

a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════ NAV ══════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  background: linear-gradient(to bottom, rgba(13,43,30,0.96) 0%, rgba(13,43,30,0.75) 60%, transparent 100%);
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(9,30,21,0.97);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom-color: rgba(201,168,76,0.16);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo-txt {
  font-family: var(--serif); font-size: 20px; letter-spacing: 3px;
  color: var(--ivory); text-decoration: none; white-space: nowrap;
}
.nav-logo-txt span { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 26px; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-size: 10.5px; font-weight: 500; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--text-dim);
  text-decoration: none; transition: color 0.25s; white-space: nowrap;
  padding: 4px 0; position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--ivory); }
.nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}

.nav-cta {
  display: inline-block; padding: 11px 22px;
  background: var(--gold); color: var(--forest) !important;
  font-size: 10px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.25s, transform 0.25s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 3px 4px;
}
.lang-btn {
  background: none; border: none; color: rgba(245,240,232,0.5);
  font-family: var(--sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.8px; cursor: pointer; padding: 4px 7px;
  border-radius: 3px; transition: color 0.2s, background 0.2s; line-height: 1;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { color: var(--gold); background: rgba(201,168,76,0.14); }

/* Mobile menu */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--gold-dim);
  width: 42px; height: 38px; cursor: pointer; position: relative; flex-shrink: 0;
}
.nav-toggle span {
  display: block; position: absolute; left: 11px; right: 11px; height: 1px;
  background: var(--ivory); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 18.5px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ══════════════ LAYOUT PRIMITIVES ══════════════ */

.band { padding: 110px var(--pad-x); position: relative; }
.band--tight { padding-top: 74px; padding-bottom: 74px; }
.band--mid { background: var(--forest-mid); }
.band--deep { background: var(--forest-deep); }
.band--paper { background: var(--paper); color: var(--ink); }
.band--paper-alt { background: var(--paper-alt); color: var(--ink); }
.band--rule { border-top: 1px solid var(--line); }
.band--paper.band--rule { border-top-color: var(--rule); }

.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap--read { max-width: var(--maxw-read); margin: 0 auto; }
.wrap--wide { max-width: 1400px; margin: 0 auto; }

/* ══════════════ TYPE ══════════════ */

.eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3.4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow--plain { display: block; }
.band--paper .eyebrow { color: #8a6f1f; }

.h-display {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(38px, 4.6vw, 62px); line-height: 1.1;
  letter-spacing: -0.5px; color: var(--ivory); max-width: 17ch;
}
.h-display em { font-style: italic; color: var(--gold-light); }
.band--paper .h-display { color: var(--ink); }
.band--paper .h-display em { color: #8a6f1f; }

.h-section {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15;
  color: var(--ivory); max-width: 20ch;
}
.h-section em { font-style: italic; color: var(--gold-light); }
.band--paper .h-section { color: var(--ink); }
.band--paper .h-section em { color: #8a6f1f; }

.h-sub {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25; color: var(--ivory);
}
.band--paper .h-sub { color: var(--ink); }

.rule {
  width: 60px; height: 1px; background: var(--gold);
  margin: 26px 0 30px;
}
.rule--wide { width: 100%; background: var(--line); margin: 44px 0; }
.band--paper .rule--wide { background: var(--rule); }

.lede {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--ivory); max-width: 62ch; letter-spacing: 0.1px;
}
.band--paper .lede { color: var(--ink-mid); }

.prose { max-width: 68ch; }
.prose p {
  font-size: 14.5px; font-weight: 300; line-height: 1.9;
  color: var(--text-dim); margin-bottom: 18px;
}
.band--paper .prose p { color: var(--ink-mid); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 500; color: var(--ivory); }
.band--paper .prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); }
.prose a:hover { border-bottom-color: var(--gold); }
.band--paper .prose a { color: #8a6f1f; border-bottom-color: rgba(138,111,31,0.35); }

.prose h3, .doc-h3 {
  font-family: var(--serif); font-size: 25px; font-weight: 400;
  line-height: 1.3; color: var(--ivory); margin: 42px 0 14px;
}
.band--paper .prose h3, .band--paper .doc-h3 { color: var(--ink); }

.prose ul, .doc-list { list-style: none; margin: 6px 0 20px; }
.prose ul li, .doc-list li {
  position: relative; padding-left: 22px; margin-bottom: 11px;
  font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-dim);
}
.band--paper .prose ul li, .band--paper .doc-list li { color: var(--ink-mid); }
.prose ul li::before, .doc-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 7px; height: 1px; background: var(--gold);
}

.small-note {
  font-size: 11.5px; line-height: 1.75; color: rgba(245,240,232,0.5);
  letter-spacing: 0.2px;
}
.band--paper .small-note { color: var(--ink-dim); }

/* ══════════════ BUTTONS ══════════════ */

.btn-primary, .btn-ghost, .btn-paper {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-size: 11px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase; transition: all 0.28s; font-family: var(--sans);
}
.btn-primary {
  padding: 16px 34px; background: var(--gold); color: var(--forest); border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  padding: 16px 34px; border: 1px solid var(--gold-dim);
  color: var(--ivory); background: none; font-weight: 500;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-paper {
  padding: 16px 34px; border: 1px solid var(--rule-strong);
  color: var(--ink); background: none; font-weight: 500;
}
.btn-paper:hover { border-color: var(--ink); background: rgba(13,43,30,0.04); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 3px;
  transition: gap 0.25s, border-color 0.25s;
}
.link-arrow:hover { gap: 13px; border-bottom-color: var(--gold); }
.band--paper .link-arrow { color: #8a6f1f; border-bottom-color: rgba(138,111,31,0.3); }
.band--paper .link-arrow:hover { border-bottom-color: #8a6f1f; }

/* ══════════════ HERO ══════════════ */

.hero {
  min-height: 100vh; min-height: 100svh;
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding: 130px var(--pad-x) 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,26,18,0.96) 0%, rgba(13,43,30,0.86) 45%, rgba(13,43,30,0.66) 100%),
    url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?w=1800&q=80') center/cover no-repeat;
}
.hero-texture {
  position: absolute; inset: 0; opacity: 0.9;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--maxw); margin: 0 auto;
}
html.js .hero-inner {
  animation: fadeUp 1.1s ease both;
}
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5.6vw, 78px); line-height: 1.04;
  letter-spacing: -1px; color: var(--ivory);
  max-width: 15ch; margin-bottom: 30px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: var(--text-dim); max-width: 60ch; letter-spacing: 0.2px;
}

/* Page header (interior pages) */
.pagehead {
  padding: 165px var(--pad-x) 76px;
  background: linear-gradient(165deg, var(--forest-deep), var(--forest) 65%);
  border-bottom: 1px solid var(--line); position: relative;
}
.pagehead::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.pagehead h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.08;
  letter-spacing: -0.5px; color: var(--ivory); max-width: 18ch;
}
.pagehead h1 em { font-style: italic; color: var(--gold-light); }
.pagehead .lede { margin-top: 24px; }

.crumbs {
  display: flex; gap: 9px; align-items: center; flex-wrap: wrap;
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 22px; list-style: none;
}
.crumbs a { color: var(--text-faint); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs li::after { content: '·'; margin-left: 9px; color: var(--gold-dim); }
.crumbs li:last-child::after { display: none; }

/* ══════════════ FIGURE STRIP ══════════════ */

.figstrip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); margin-top: 54px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.figstrip--3 { grid-template-columns: repeat(3, 1fr); }
.figstrip--5 { grid-template-columns: repeat(5, 1fr); }
.figstrip > div { background: var(--forest); padding: 26px 22px; }
.band--mid .figstrip > div { background: var(--forest-mid); }
.hero .figstrip > div { background: rgba(8,26,18,0.55); backdrop-filter: blur(4px); }
.band--paper .figstrip { background: var(--rule); border-color: var(--rule); }
.band--paper .figstrip > div { background: var(--paper); }

.fig-num {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px);
  font-weight: 300; line-height: 1; color: var(--gold-light);
  letter-spacing: -1px; font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.band--paper .fig-num { color: #8a6f1f; }
.fig-label {
  font-size: 10.5px; font-weight: 400; line-height: 1.6;
  color: var(--text-dim); margin-top: 12px; letter-spacing: 0.3px;
}
.band--paper .fig-label { color: var(--ink-dim); }
.fig-src {
  font-family: var(--mono); font-size: 9.5px; color: rgba(245,240,232,0.45);
  margin-top: 8px; letter-spacing: 0.2px;
}
.band--paper .fig-src { color: var(--ink-dim); opacity: 0.75; }

/* ══════════════ CARDS ══════════════ */

.grid { display: grid; gap: 1px; background: var(--gold-faint); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.band--paper .grid { background: var(--rule); }

.card {
  background: var(--forest-mid); padding: 40px 34px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.band--mid .card { background: var(--forest); }
.band--paper .card { background: var(--paper); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.card:hover { background: var(--forest-light); }
.band--paper .card:hover { background: var(--paper-alt); }
.card:hover::before { transform: scaleX(1); }

.card-num {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  color: var(--gold); letter-spacing: 1.5px; margin-bottom: 18px;
  display: block;
}
.band--paper .card-num { color: #8a6f1f; }
.card-h {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--ivory); line-height: 1.25; margin-bottom: 14px;
}
.band--paper .card-h { color: var(--ink); }
.card-p {
  font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--text-dim);
}
.band--paper .card-p { color: var(--ink-mid); }
.card-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.band--paper .card-tag { color: #8a6f1f; }

.card-list { list-style: none; margin-top: 18px; }
.card-list li {
  font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(245,240,232,0.55);
  padding: 7px 0 7px 16px; position: relative; border-top: 1px solid var(--line);
}
.band--paper .card-list li { color: var(--ink-dim); border-top-color: var(--rule); }
.card-list li::before {
  content: '·'; position: absolute; left: 2px; top: 6px; color: var(--gold);
}

/* ══════════════ SPLIT LAYOUT ══════════════ */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 78px; align-items: start;
}
.split--narrow-left { grid-template-columns: 0.85fr 1.15fr; }
.split--narrow-right { grid-template-columns: 1.15fr 0.85fr; }
.split--sticky > .split-aside { position: sticky; top: 110px; }

/* ══════════════ DATA TABLE ══════════════ */

.dtable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 30px 0; }
.dtable {
  width: 100%; border-collapse: collapse; font-size: 13px;
  min-width: 620px; font-variant-numeric: tabular-nums;
}
.dtable caption {
  text-align: left; font-size: 10px; font-weight: 600; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--gold); padding-bottom: 14px;
}
.band--paper .dtable caption { color: #8a6f1f; }
.dtable th {
  text-align: left; font-size: 9.5px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold); padding: 12px 18px 12px 0;
  border-bottom: 1px solid var(--gold-dim); vertical-align: bottom;
}
.band--paper .dtable th { color: #8a6f1f; border-bottom-color: var(--rule-strong); }
.dtable td {
  padding: 15px 18px 15px 0; border-bottom: 1px solid var(--line);
  color: var(--text-dim); font-weight: 300; line-height: 1.65; vertical-align: top;
}
.band--paper .dtable td { color: var(--ink-mid); border-bottom-color: var(--rule); }
.dtable td:first-child { color: var(--ivory); font-weight: 400; }
.band--paper .dtable td:first-child { color: var(--ink); font-weight: 500; }
.dtable td.num {
  font-family: var(--mono); font-size: 12.5px; color: var(--gold-light); white-space: nowrap;
}
.band--paper .dtable td.num { color: #8a6f1f; }
.dtable tr:last-child td { border-bottom: none; }
.dtable--zebra tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.band--paper .dtable--zebra tbody tr:nth-child(even) { background: rgba(13,43,30,0.025); }

/* ══════════════ CHART ══════════════ */

.chart {
  margin: 34px 0; padding: 30px 28px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.015);
}
.band--paper .chart { border-color: var(--rule); background: rgba(255,255,255,0.5); }
.chart-title {
  font-size: 11px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.band--paper .chart-title { color: #8a6f1f; }
.chart-sub {
  font-size: 11.5px; font-weight: 300; color: var(--text-faint);
  margin-bottom: 26px; line-height: 1.6;
}
.band--paper .chart-sub { color: var(--ink-dim); }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart-note {
  font-size: 10.5px; color: var(--text-faint); margin-top: 20px;
  line-height: 1.65; padding-top: 14px; border-top: 1px solid var(--line);
}
.band--paper .chart-note { color: var(--ink-dim); border-top-color: var(--rule); }

/* Bar rows (CSS charts) */
.barset { display: flex; flex-direction: column; gap: 15px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 62px; gap: 16px; align-items: center; }
.bar-label { font-size: 12px; font-weight: 400; color: var(--text-dim); }
.band--paper .bar-label { color: var(--ink-mid); }
.bar-track { height: 12px; background: rgba(245,240,232,0.07); position: relative; }
.band--paper .bar-track { background: rgba(13,43,30,0.07); }
.bar-fill {
  position: absolute; inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left; animation: barGrow 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
.bar-fill--muted { background: rgba(245,240,232,0.22); }
.band--paper .bar-fill--muted { background: rgba(13,43,30,0.2); }
.bar-val {
  font-family: var(--mono); font-size: 11.5px; color: var(--gold-light);
  text-align: right; font-variant-numeric: tabular-nums;
}
.band--paper .bar-val { color: #8a6f1f; }

/* ══════════════ CALLOUT / NOTE ══════════════ */

.callout {
  border-left: 2px solid var(--gold); padding: 26px 30px;
  background: rgba(201,168,76,0.05); margin: 32px 0;
}
.band--paper .callout { background: rgba(201,168,76,0.09); border-left-color: #8a6f1f; }
.callout-h {
  font-size: 10px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.band--paper .callout-h { color: #8a6f1f; }
.callout p {
  font-size: 13.5px; font-weight: 300; line-height: 1.85; color: var(--text-dim);
}
.band--paper .callout p { color: var(--ink-mid); }

.pullquote {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 300; font-style: italic; line-height: 1.4;
  color: var(--gold-light); max-width: 24ch; margin: 10px 0;
}
.band--paper .pullquote { color: #7a6119; }
.pullquote-cite {
  font-family: var(--sans); font-style: normal; font-size: 10.5px;
  font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--text-faint); margin-top: 18px; display: block;
}
.band--paper .pullquote-cite { color: var(--ink-dim); }

/* ══════════════ SOURCES / CITATIONS ══════════════ */

sup.ref {
  font-family: var(--mono); font-size: 9.5px; color: var(--gold);
  vertical-align: super; line-height: 0; margin-left: 2px;
}
sup.ref a { color: inherit; text-decoration: none; }
sup.ref a:hover { text-decoration: underline; }
.band--paper sup.ref { color: #8a6f1f; }

.sources { counter-reset: src; list-style: none; margin-top: 18px; }
.sources li {
  counter-increment: src; position: relative; padding-left: 34px;
  margin-bottom: 14px; font-size: 12px; line-height: 1.7; color: var(--text-dim);
}
.band--paper .sources li { color: var(--ink-mid); }
.sources li::before {
  content: counter(src); position: absolute; left: 0; top: 1px;
  font-family: var(--mono); font-size: 10px; color: var(--gold);
  width: 22px; text-align: right;
}
.band--paper .sources li::before { color: #8a6f1f; }
.sources a { color: var(--gold); text-decoration: none; word-break: break-word; }
.sources a:hover { text-decoration: underline; }
.band--paper .sources a { color: #8a6f1f; }
.sources .meta {
  display: block; font-family: var(--mono); font-size: 10px;
  color: var(--text-faint); margin-top: 3px;
}
.band--paper .sources .meta { color: var(--ink-dim); }

.doc-meta {
  display: flex; flex-wrap: wrap; gap: 30px; padding: 20px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 34px 0;
}
.band--paper .doc-meta { border-color: var(--rule); }
.doc-meta div { min-width: 110px; }
.doc-meta dt {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.band--paper .doc-meta dt { color: #8a6f1f; }
.doc-meta dd { font-size: 12.5px; font-weight: 300; color: var(--text-dim); }
.band--paper .doc-meta dd { color: var(--ink-mid); }

/* ══════════════ PHASE / TIMELINE ══════════════ */

.phases { display: flex; flex-direction: column; gap: 1px; background: var(--gold-faint); }
.band--paper .phases { background: var(--rule); }
.phase {
  background: var(--forest-mid); padding: 42px 40px;
  display: grid; grid-template-columns: 190px 1fr; gap: 46px; align-items: start;
}
.band--paper .phase { background: var(--paper); }
.band--mid .phase { background: var(--forest); }
.phase-idx {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}
.band--paper .phase-idx { color: #8a6f1f; }
.phase-name {
  font-family: var(--serif); font-size: 27px; font-weight: 400;
  line-height: 1.2; color: var(--ivory); margin-bottom: 10px;
}
.band--paper .phase-name { color: var(--ink); }
.phase-term {
  font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-faint);
}
.band--paper .phase-term { color: var(--ink-dim); }

/* ══════════════ THE GAP DIAGRAM ══════════════ */

.gapgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 8px; margin: 28px 0 6px;
}
.gapchip {
  border: 1px solid var(--line); padding: 13px 10px; text-align: center;
  font-size: 11px; font-weight: 300; color: var(--text-dim); letter-spacing: 0.4px;
}
.band--paper .gapchip { border-color: var(--rule); color: var(--ink-mid); }
.gapchip--void {
  border: 1px dashed var(--gold); color: var(--gold);
  font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  font-size: 10px; grid-column: span 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.06);
}
.band--paper .gapchip--void { color: #8a6f1f; border-color: #8a6f1f; }

/* ══════════════ CONTACT FORM ══════════════ */

.form-card {
  background: var(--forest-mid); border: 1px solid var(--line); padding: 44px 40px;
}
.band--paper .form-card { background: var(--white); border-color: var(--rule); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.band--paper .form-group label { color: #8a6f1f; }
.form-group .req { color: var(--gold); }
.form-group .opt { color: var(--text-faint); font-weight: 400; letter-spacing: 1px; }

input, textarea, select {
  width: 100%; padding: 13px 15px; font-family: var(--sans);
  font-size: 13.5px; font-weight: 300; color: var(--ivory);
  background: rgba(0,0,0,0.18); border: 1px solid var(--line);
  transition: border-color 0.25s, background 0.25s; border-radius: 0;
}
.band--paper input, .band--paper textarea, .band--paper select {
  color: var(--ink); background: var(--paper); border-color: var(--rule-strong);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,0.28);
}
.band--paper input:focus, .band--paper textarea:focus, .band--paper select:focus {
  background: var(--white); border-color: #8a6f1f; outline: 1px solid rgba(138,111,31,0.3);
}
input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.26); }
.band--paper input::placeholder, .band--paper textarea::placeholder { color: rgba(16,35,26,0.32); }
textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}

.btn-submit {
  width: 100%; padding: 17px; background: var(--gold); color: var(--forest);
  border: none; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; cursor: pointer;
  transition: background 0.25s; margin-top: 6px;
}
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.form-error {
  margin-top: 16px; padding: 13px 16px; border-left: 2px solid #c0553f;
  background: rgba(192,85,63,0.1); font-size: 12.5px; color: #e8a494;
}
.band--paper .form-error { color: #9c3d28; }
.form-success { text-align: center; padding: 50px 20px; }
.form-success .success-icon {
  width: 54px; height: 54px; margin: 0 auto 22px; border: 1px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 24px;
}
.form-success p { font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--ivory); }
.band--paper .form-success p { color: var(--ink); }

/* Booking button */
.btn-cal {
  display: flex; align-items: center; gap: 18px; width: 100%;
  padding: 22px 26px; border: 1px solid var(--gold-dim);
  background: rgba(201,168,76,0.04); color: inherit; font: inherit;
  text-align: left; text-decoration: none; cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.btn-cal:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.55); }
.btn-cal-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); }
.btn-cal-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.btn-cal-main { font-family: var(--serif); font-size: 19px; color: var(--ivory); letter-spacing: 0.5px; }
.btn-cal-sub {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: 0.65;
}
.btn-cal-arrow { color: var(--gold); font-size: 18px; opacity: 0.55; transition: transform 0.3s, opacity 0.3s; }
.btn-cal:hover .btn-cal-arrow { transform: translateX(5px); opacity: 1; }
.cal-or {
  display: flex; align-items: center; gap: 14px; margin: 34px 0 18px;
  color: var(--text-faint); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.cal-or::before, .cal-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ══════════════ TEAM ══════════════ */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.team-card { text-align: left; }
.team-avatar {
  width: 116px; height: 116px; border-radius: 50%; overflow: hidden;
  margin-bottom: 22px; border: 1px solid var(--gold-dim); background: var(--forest-mid);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ivory); }
.band--paper .team-name { color: var(--ink); }
.team-role {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--gold); margin: 9px 0 16px;
}
.band--paper .team-role { color: #8a6f1f; }
.team-bio { font-size: 12.5px; font-weight: 300; line-height: 1.85; color: var(--text-dim); }
.band--paper .team-bio { color: var(--ink-mid); }

/* ══════════════ CTA BAND ══════════════ */

.cta-band {
  padding: 96px var(--pad-x);
  background: linear-gradient(140deg, var(--forest-deep), var(--forest-light) 190%);
  border-top: 1px solid var(--gold-dim); text-align: center;
}
.cta-band .h-section { max-width: 22ch; margin: 0 auto; }
.cta-band .lede { margin: 26px auto 0; text-align: center; }
.cta-band .btn-row { justify-content: center; }

/* ══════════════ FOOTER ══════════════ */

footer {
  background: var(--forest-deep); padding: 76px var(--pad-x) 44px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; max-width: var(--maxw); margin: 0 auto 52px;
}
.foot-logo {
  font-family: var(--serif); font-size: 22px; letter-spacing: 4px; color: var(--ivory);
}
.foot-logo span { color: var(--gold); }
.foot-blurb {
  font-size: 12px; font-weight: 300; line-height: 1.85;
  color: var(--text-faint); margin-top: 18px; max-width: 34ch;
}
.foot-h {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.foot-list { list-style: none; }
.foot-list li { margin-bottom: 11px; }
.foot-list a, .foot-list span {
  font-size: 12px; font-weight: 300; color: var(--text-dim);
  text-decoration: none; transition: color 0.25s;
}
.foot-list a:hover { color: var(--gold); }
.foot-bottom {
  max-width: var(--maxw); margin: 0 auto; padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.foot-copy, .foot-legal { font-size: 10.5px; line-height: 1.75; color: rgba(245,240,232,0.28); }
.foot-legal { max-width: 62ch; }

/* ══════════════ MODALS ══════════════ */

.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5,18,12,0.86); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--forest-mid); border: 1px solid var(--gold-dim);
  max-width: 460px; width: 100%; padding: 40px 36px; position: relative;
  animation: fadeUp 0.35s ease both; max-height: 88vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: var(--text-faint); font-size: 26px; line-height: 1; cursor: pointer;
  transition: color 0.2s; padding: 4px 8px;
}
.modal-close:hover { color: var(--gold); }
.modal-title {
  font-family: var(--serif); font-size: 25px; font-weight: 400;
  color: var(--ivory); margin-bottom: 8px;
}
.modal-sub { font-size: 12px; font-weight: 300; color: var(--text-faint); margin-bottom: 26px; line-height: 1.7; }
.modal-person {
  display: flex; align-items: center; gap: 16px; padding: 15px;
  border: 1px solid var(--line); margin-bottom: 10px; text-decoration: none;
  transition: border-color 0.25s, background 0.25s; cursor: pointer;
  width: 100%; background: none; text-align: left; font-family: inherit;
}
.modal-person:hover { border-color: var(--gold-dim); background: rgba(201,168,76,0.05); }
.modal-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.modal-person > span { display: block; flex: 1; min-width: 0; }
.modal-person-name {
  display: block; font-family: var(--serif); font-size: 18px;
  line-height: 1.25; color: var(--ivory);
}
.modal-person-role {
  display: block; font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); margin-top: 4px; line-height: 1.4;
}

.wa-widget {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: #25d366; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.35); transition: transform 0.25s;
}
.wa-widget:hover { transform: scale(1.07); }
.wa-widget svg { width: 28px; height: 28px; }

/* ══════════════ ANIMATION ══════════════ */

/* Reveals are visible by default; JS opts in to the animation so that
   content is never hidden behind a script that failed to load. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
/* Must match the specificity of `html.js .reveal` (0,2,1), otherwise the
   hidden state wins and revealed content never appears. */
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ══════════════ RTL ══════════════ */

[dir="rtl"] body { font-family: 'Cairo', var(--sans); }
[dir="rtl"] .eyebrow, [dir="rtl"] .h-display, [dir="rtl"] .h-section,
[dir="rtl"] .lede, [dir="rtl"] .prose, [dir="rtl"] .card, [dir="rtl"] .hero-inner { text-align: right; }
[dir="rtl"] .rule { margin-left: auto; margin-right: 0; }
[dir="rtl"] .cta-band .rule, [dir="rtl"] .cta-band .h-section { margin-left: auto; margin-right: auto; }
[dir="rtl"] .prose ul li, [dir="rtl"] .doc-list li, [dir="rtl"] .sources li { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .prose ul li::before, [dir="rtl"] .doc-list li::before { left: auto; right: 0; }
[dir="rtl"] .sources li { padding-right: 34px; }
[dir="rtl"] .sources li::before { left: auto; right: 0; text-align: left; }
[dir="rtl"] .callout { border-left: none; border-right: 2px solid var(--gold); }
[dir="rtl"] .dtable th, [dir="rtl"] .dtable td { text-align: right; padding: 15px 0 15px 18px; }
[dir="rtl"] .nav-links, [dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .btn-row, [dir="rtl"] .foot-bottom { flex-direction: row-reverse; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select { text-align: right; direction: rtl; }
[dir="rtl"] .form-group label { text-align: right; }
[dir="rtl"] .phase { direction: rtl; }
[dir="rtl"] .card::before { transform-origin: right; }
[dir="rtl"] .bar-fill { inset: 0 0 0 auto; transform-origin: right; }
[dir="rtl"] .wa-widget { right: auto; left: 26px; }

/* Arabic script has no italic form. Slanting it is a faux style and reads as
   broken type, so keep the accent colour and drop the slant in RTL. */
[dir="rtl"] em,
[dir="rtl"] .hero h1 em,
[dir="rtl"] .h-display em,
[dir="rtl"] .h-section em,
[dir="rtl"] .pullquote { font-style: normal; }
[dir="rtl"] .pullquote { font-weight: 400; }

/* ══════════════ RESPONSIVE ══════════════ */

@media (max-width: 1180px) {
  :root { --pad-x: 40px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10px; letter-spacing: 1.2px; }
  .split { gap: 52px; }
}

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav-right {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--forest-deep); padding: 92px 40px 40px;
    transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: 100vh; overflow-y: auto; border-bottom: 1px solid var(--gold-dim);
  }
  .nav-right.open { transform: none; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 17px 0; font-size: 12px; letter-spacing: 2px; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-cta { text-align: center; margin-top: 24px; padding: 16px; }
  .lang-switcher { align-self: flex-start; margin-top: 20px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--narrow-left, .split--narrow-right { grid-template-columns: 1fr; gap: 44px; }
  .split--sticky > .split-aside { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .figstrip, .figstrip--3, .figstrip--5 { grid-template-columns: repeat(2, 1fr); }
  .phase { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 22px; }
  .band { padding: 68px var(--pad-x); }
  .band--tight { padding-top: 48px; padding-bottom: 48px; }
  .pagehead { padding: 130px var(--pad-x) 54px; }
  .hero { padding: 118px var(--pad-x) 66px; }
  .hero h1 { font-size: clamp(32px, 9vw, 46px); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .card { padding: 32px 26px; }
  .phase { padding: 32px 26px; }
  .form-card { padding: 30px 22px; }
  .bar-row { grid-template-columns: 96px 1fr 54px; gap: 10px; }
  .bar-label { font-size: 11px; }
  .cta-band { padding: 68px var(--pad-x); }
  .chart { padding: 22px 18px; }
  .figstrip > div { padding: 20px 16px; }
}

/* ══════════════ PRINT ══════════════ */

@media print {
  .nav, .wa-widget, .modal-overlay, .btn-row, .cta-band,
  .nav-toggle, .hero-bg, .hero-texture, .skip-link { display: none !important; }
  body { background: #fff; color: #111; font-size: 11pt; }
  .band, .pagehead, .hero { background: #fff !important; color: #111; padding: 18pt 0; }
  .h-display, .h-section, .h-sub, .card-h, .team-name,
  .pagehead h1, .hero h1, .phase-name { color: #111 !important; }
  .prose p, .lede, .card-p, .doc-list li, .sources li, .dtable td { color: #333 !important; }
  .eyebrow, .card-num, .chart-title, .dtable th, .foot-h, sup.ref { color: #7a6119 !important; }
  .fig-num, .bar-val, .dtable td.num { color: #7a6119 !important; }
  .card, .chart, .callout, .phase { break-inside: avoid; border: 1px solid #ddd; background: #fff !important; }
  .grid { background: #fff; gap: 10pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; word-break: break-all; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   ONE-PAGE ADDITIONS — visual components
   ══════════════════════════════════════════════════════════════ */

/* ── Full-width image band ── */
.imgband {
  position: relative; min-height: 460px; display: flex; align-items: center;
  padding: 90px var(--pad-x); overflow: hidden; isolation: isolate;
}
.imgband-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.imgband::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(8,26,18,0.96) 0%, rgba(13,43,30,0.88) 45%, rgba(13,43,30,0.58) 100%);
}
[dir="rtl"] .imgband::after {
  background: linear-gradient(260deg, rgba(8,26,18,0.96) 0%, rgba(13,43,30,0.88) 45%, rgba(13,43,30,0.58) 100%);
}
.imgband-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 72px; align-items: end;
}
.imgband-copy { min-width: 0; }
.imgband .h-section, .imgband .lede { max-width: 20ch; }
.imgband .lede { max-width: 46ch; }
.imgband-proof {
  position: relative; margin: 0; padding: 7px;
  border: 1px solid rgba(226,201,126,0.5);
  background: rgba(8,26,18,0.72); backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}
.imgband-proof img {
  display: block; width: 100%; aspect-ratio: 16 / 8; object-fit: cover;
}
.imgband-proof figcaption {
  padding: 11px 7px 5px; color: var(--gold-light);
  font-size: 8.5px; font-weight: 600; letter-spacing: 1.7px;
  text-transform: uppercase;
}

/* ── Contact, simplified around the enquiry ── */
.contact-intro { max-width: 740px; margin: 0 auto 44px; text-align: center; }
.contact-intro .h-section, .contact-intro .lede { max-width: none; }
.contact-intro .rule { margin-left: auto; margin-right: auto; }
.contact-intro .lede { margin: 22px auto 0; }
.contact-form-wrap { max-width: 820px; margin: 0 auto; }

/* ── Media + text split ── */
.media { position: relative; overflow: hidden; }
.media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5; transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.media:hover img { transform: scale(1.04); }
.media--wide img { aspect-ratio: 16 / 10; }
.media--square img { aspect-ratio: 1 / 1; }
.media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px;
  background: linear-gradient(to top, rgba(8,26,18,0.92), transparent);
  font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold-light);
}
.media-frame { border: 1px solid var(--gold-dim); padding: 8px; }

/* ── Icon cards ── */
.icard {
  background: var(--forest-mid); padding: 32px 26px;
  transition: background 0.35s, transform 0.35s; position: relative; overflow: hidden;
}
.band--mid .icard { background: var(--forest); }
.icard::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.icard:hover { background: var(--forest-light); }
.icard:hover::before { transform: scaleX(1); }
.icard-ico {
  width: 34px; height: 34px; color: var(--gold); margin-bottom: 20px; display: block;
}
.icard-ico svg { width: 100%; height: 100%; display: block; }
.icard-num {
  position: absolute; top: 24px; right: 24px; font-family: var(--mono);
  font-size: 10px; color: rgba(201,168,76,0.35); letter-spacing: 1px;
}
[dir="rtl"] .icard-num { right: auto; left: 24px; }
.icard h3 {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--ivory); line-height: 1.25; margin-bottom: 10px;
}
.icard p { font-size: 12.5px; font-weight: 300; line-height: 1.7; color: var(--text-dim); }

/* ── Corridor diagram ── */
.corridor {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch; border: 1px solid var(--gold-dim); overflow: hidden;
}
.corridor-side { position: relative; min-width: 0; background: var(--forest-mid); }
.corridor-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.corridor-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,26,18,0.36), transparent 46%);
  pointer-events: none;
}
.corridor-side img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.corridor-side:hover img { transform: scale(1.025); }
.corridor-side--north .corridor-photo img { object-position: 50% center; }
.corridor-side--gulf .corridor-photo img { object-position: 56% center; }
.visual-tag {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  padding: 8px 11px; background: rgba(8,26,18,0.82);
  border: 1px solid rgba(226,201,126,0.45);
  color: var(--gold-light); font-size: 8.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
}
.corridor-supports {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--gold-faint); border-top: 1px solid var(--gold-faint);
}
.corridor-supports--single { grid-template-columns: 1fr; }
.corridor-support {
  position: relative; height: 124px; overflow: hidden; margin: 0;
  background: var(--forest-deep);
}
.corridor-support img { width: 100%; height: 100%; object-fit: cover; }
.corridor-supports--single .corridor-support img { object-position: 61% 48%; }
.corridor-side--gulf .corridor-support:first-child img { object-position: center 54%; }
.corridor-side--gulf .corridor-support:last-child img { object-position: 43% 48%; }
.corridor-support::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,26,18,0.82), transparent 68%);
  pointer-events: none;
}
.corridor-support figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 11px; z-index: 2;
  color: var(--ivory); font-size: 8px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.corridor-label {
  position: relative; z-index: 2; padding: 26px 28px 30px;
}
.corridor-label .k {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.corridor-label .t {
  font-family: var(--serif); font-size: 24px; color: var(--ivory); line-height: 1.2;
}
.corridor-label .d { font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.68); margin-top: 10px; line-height: 1.65; }
.corridor-mid {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 30px 26px; background: var(--forest-deep); min-width: 132px;
}
.corridor-arrow { color: var(--gold); font-size: 22px; line-height: 1; }
.corridor-mid .cm-label {
  font-size: 9px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--text-faint); text-align: center; line-height: 1.7;
}

/* ── Big number band ── */
.numband {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gold-faint);
}
.numband > div { background: var(--forest-deep); padding: 34px 26px; text-align: center; }
.numband .n {
  font-family: var(--serif); font-size: clamp(32px, 3.6vw, 50px); font-weight: 300;
  color: var(--gold-light); line-height: 1; letter-spacing: -1px;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.numband .l {
  font-size: 10.5px; line-height: 1.6; color: var(--text-dim); margin-top: 14px;
}
.numband .s { font-family: var(--mono); font-size: 9.5px; color: rgba(245,240,232,0.45); margin-top: 8px; }

/* ── Section intro (compact) ── */
.sec-head { max-width: 700px; margin-bottom: 52px; }
.sec-head .h-section { max-width: none; }
.sec-head .lede { margin-top: 22px; }

/* ── Steps (compact phases) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gold-faint); }
.step { background: var(--forest-mid); padding: 38px 30px; position: relative; }
.band--mid .step { background: var(--forest); }
.step-n {
  font-family: var(--serif); font-size: 56px; font-weight: 300; line-height: 1;
  color: rgba(201,168,76,0.22); margin-bottom: 18px;
  font-feature-settings: 'lnum' 1;
}
.step h3 { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--ivory); margin-bottom: 6px; }
.step .term {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.step p { font-size: 12.5px; font-weight: 300; line-height: 1.75; color: var(--text-dim); }

/* ── Anchor offset for one-page nav ── */
.anchor { position: relative; top: -84px; display: block; height: 0; pointer-events: none; }

@media (max-width: 1000px) {
  .numband { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .corridor { grid-template-columns: 1fr; }
  .corridor-mid { flex-direction: row; min-height: 84px; }
  .corridor-arrow { transform: rotate(90deg); }
  .imgband { min-height: 380px; }
  .imgband-bg { background-position: 58% center; }
  .imgband-inner { grid-template-columns: 1fr; gap: 34px; }
  .imgband-proof { max-width: 480px; }
}
@media (max-width: 640px) {
  .numband { grid-template-columns: 1fr; }
  .imgband { padding: 64px var(--pad-x); min-height: 300px; }
  .imgband-bg { background-position: 66% center; }
  .imgband-proof { padding: 5px; }
  .corridor-support { height: 108px; }
  .contact-intro { margin-bottom: 32px; }
  .icard { padding: 26px 22px; }
  .step { padding: 30px 24px; }
}

/* ══════════════════════════════════════════════════════════════
   MARKETS / REGIONS
   ══════════════════════════════════════════════════════════════ */

.regions { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-faint); }
.region { background: var(--forest-mid); padding: 42px 36px; position: relative; }
.band--mid .region { background: var(--forest); }
.band--deep .region { background: var(--forest); }
.region-k {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.region-h {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ivory); line-height: 1.2; margin-bottom: 12px;
}
.region-p { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--text-dim); }

.mktchips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.mktchip {
  border: 1px solid var(--line); padding: 10px 15px; font-size: 12px;
  color: var(--ivory); letter-spacing: 0.3px; transition: border-color 0.3s, background 0.3s;
}
.mktchip:hover { border-color: var(--gold-dim); background: rgba(201,168,76,0.05); }
.mktchip span { color: var(--text-faint); font-family: var(--mono); font-size: 10px; margin-left: 7px; }
[dir="rtl"] .mktchip span { margin-left: 0; margin-right: 7px; }

.region-stat {
  display: flex; gap: 30px; flex-wrap: wrap; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.region-stat > div { min-width: 96px; }
.region-stat .rn {
  font-family: var(--serif); font-size: 27px; font-weight: 300;
  color: var(--gold-light); line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.region-stat .rl { font-size: 10.5px; line-height: 1.6; color: rgba(245,240,232,0.5); margin-top: 9px; }

@media (max-width: 1000px) { .regions { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .region { padding: 32px 26px; } }


/* ══════════════════════════════════════════════════════════════
   DISCOVERY CALL (Cal.com)
   ══════════════════════════════════════════════════════════════ */

.cal-block { margin-top: 34px; }
.cal-or {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  color: var(--text-faint); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.cal-or::before, .cal-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.modal-eyebrow {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}

.bookcard {
  display: flex; align-items: center; gap: 18px; width: 100%;
  padding: 16px; margin-bottom: 12px; cursor: pointer;
  border: 1px solid var(--line); background: rgba(201,168,76,0.03);
  text-decoration: none; font-family: inherit; text-align: left;
  transition: border-color 0.25s, background 0.25s;
}
.bookcard:hover { border-color: var(--gold-dim); background: rgba(201,168,76,0.08); }
/* These are <span> elements, so each needs an explicit display value.
   Inline spans ignore width, height and margin-top, which collapses the
   whole card onto a single run of text. */
.bookcard-avatar {
  display: block;
  width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--gold-dim);
}
.bookcard-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bookcard-info { display: block; flex: 1; min-width: 0; }
.bookcard-name {
  display: block; font-family: var(--serif); font-size: 19px;
  line-height: 1.2; color: var(--ivory);
}
.bookcard-role {
  display: block;
  font-size: 9.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold); margin-top: 6px; line-height: 1.5;
}
.bookcard-langs {
  display: block; font-size: 11px; color: rgba(245,240,232,0.5);
  margin-top: 7px; letter-spacing: 0.4px;
}
.bookcard-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gold-dim); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.bookcard-icon svg { width: 18px; height: 18px; }
.bookcard:hover .bookcard-icon { background: rgba(201,168,76,0.14); border-color: var(--gold); }

.modal-foot {
  text-align: center; font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-faint); margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}

[dir="rtl"] .bookcard { flex-direction: row-reverse; text-align: right; }

@media (max-width: 640px) {
  .bookcard { gap: 13px; padding: 13px; }
  .bookcard-avatar { width: 50px; height: 50px; }
  .bookcard-name { font-size: 17px; }
}


/* .btn-cal children are <span> in this build; give them block flow. */
.btn-cal-text { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.btn-cal-main { display: block; }
.btn-cal-sub  { display: block; }
.btn-cal-icon { flex-shrink: 0; }
.btn-cal-arrow { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   PARTNER LOGOS
   Logos are flattened to a single ivory tone so a row of unrelated
   brand palettes reads as one system on the dark ground.
   ══════════════════════════════════════════════════════════════ */

.partners {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gold-faint);
  border: 1px solid var(--gold-faint);
}
.partner {
  background: var(--forest-mid); padding: 38px 22px 30px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background 0.35s;
}
.band--deep .partner { background: var(--forest); }
.band--mid .partner { background: var(--forest); }
.partner:hover { background: var(--forest-light); }

.partner-logo {
  height: 46px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; width: 100%;
}
.partner-logo img {
  max-height: 46px; max-width: 100%; width: auto; height: auto;
  opacity: 0.78; transition: opacity 0.35s; display: block;
}
.partner:hover .partner-logo img { opacity: 1; }

.partner-name {
  font-family: var(--serif); font-size: 16px; line-height: 1.3;
  color: var(--ivory); margin-bottom: 7px;
}
.partner-meta {
  font-size: 9.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--gold); line-height: 1.5;
}

@media (max-width: 1000px) {
  .partners { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .partners { grid-template-columns: repeat(2, 1fr); }
  .partner { padding: 28px 16px 24px; }
  .partner-logo { height: 38px; margin-bottom: 18px; }
  .partner-logo img { max-height: 38px; }
  .partner-name { font-size: 14px; }
}

/* Language switcher entries are links (each language is its own URL). */
a.lang-btn { text-decoration: none; display: inline-block; }
