/* =========================================================
   Safron Ltd — palette matched to logo
   Icon: #F5A623 → #D4581E gradient | Wordmark: #5C5C5C
   ========================================================= */
:root {
  /* Logo saffron gradient */
  --saffron-light: #f5a623;
  --saffron: #e87722;
  --saffron-mid: #e06518;
  --saffron-deep: #d4581e;
  --saffron-dark: #b84512;
  --logo-gray: #5c5c5c;
  --logo-gray-light: #7a7a7a;

  /* Warm charcoal (logo black-background feel) */
  --charcoal-900: #111111;
  --charcoal-850: #161616;
  --charcoal-800: #1c1c1c;
  --charcoal-700: #282828;
  --charcoal-600: #3a3a3a;
  --navy-900: var(--charcoal-900);
  --navy-800: var(--charcoal-800);
  --navy-700: var(--charcoal-700);
  --navy-600: var(--charcoal-600);

  --gold: var(--saffron);
  --gold-soft: var(--saffron-light);
  --accent-rgb: 232, 119, 34;
  --accent-deep-rgb: 212, 88, 30;

  --ink: #1a1a1a;
  --muted: var(--logo-gray-light);
  --line: #e5e2dd;
  --bg: #faf9f7;
  --bg-soft: #f3f0eb;
  --bg-tint: #ece8e1;
  --white: #ffffff;

  --gradient-logo: linear-gradient(135deg, var(--saffron-light) 0%, var(--saffron-mid) 48%, var(--saffron-deep) 100%);
  --gradient-logo-soft: linear-gradient(135deg, rgba(245,166,35,.18) 0%, rgba(212,88,30,.08) 100%);
  --gradient-dark: linear-gradient(145deg, var(--charcoal-850) 0%, var(--charcoal-900) 100%);

  --shadow-sm: 0 1px 3px rgba(17, 17, 17, .07);
  --shadow-md: 0 12px 40px rgba(17, 17, 17, .10);
  --shadow-md-warm: 0 12px 40px rgba(212, 88, 30, .12);
  --shadow-lg: 0 28px 64px rgba(17, 17, 17, .16);
  --radius: 4px;
  --radius-lg: 6px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  color: var(--charcoal-900);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.015em;
}

p { margin: 0 0 1.1em; color: var(--ink); }
a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gradient-logo);
  display: inline-block;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--gradient-dark); color: #d4d0ca; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #a8a49c; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { font-size: 1.08rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s var(--ease);
}
.btn--gold { background: var(--gradient-logo); color: #fff; }
.btn--gold:hover { background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md-warm); }
.btn--ghost { border-color: rgba(17,17,17,.25); color: var(--charcoal-900); }
.btn--ghost:hover { border-color: var(--saffron); color: var(--saffron); }
.btn--dark { background: var(--charcoal-900); color: #fff; }
.btn--dark:hover { background: var(--charcoal-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 16px 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(17,17,17,.06);
  border-bottom: 3px solid var(--saffron);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-sm);
  padding: 9px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; transition: opacity .3s var(--ease); }
.brand .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: .02em;
}

.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 15px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
}
.nav-menu > li > a:hover { color: var(--gold); }
.nav-menu .nav-cta { margin-left: 10px; }

/* dropdown */
.has-dropdown > a::after {
  content: "▾";
  font-size: .7em;
  margin-left: 6px;
  opacity: .7;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s var(--ease);
  border: 1px solid var(--line);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.scrolled .nav-toggle span { background: var(--navy-900); }

/* ---------- Hero (white editorial — signature diagonal + triangles) ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--ink);
  overflow: hidden;
  background: var(--white);
}
.hero .container { position: relative; z-index: 3; width: 100%; }
.hero-inner { max-width: 600px; padding: 150px 0 110px; }
.hero h1 {
  color: var(--charcoal-900);
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--saffron); font-style: italic; font-weight: 500; }
.hero .lead { font-size: 1.12rem; color: var(--logo-gray); max-width: 500px; margin-bottom: 38px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Diagonal black & white photograph on the right */
.hero-figure {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  z-index: 1;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  background: var(--charcoal-900);
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(232,119,34,.10) 0%, rgba(17,17,17,.18) 100%);
}

/* Signature triangle accents */
.tri { position: absolute; width: 0; height: 0; z-index: 2; pointer-events: none; }
.tri--top {
  top: 92px; right: 22%;
  border-left: 130px solid transparent;
  border-right: 130px solid transparent;
  border-top: 210px solid rgba(245,166,35,.55);
}
.tri--coral {
  bottom: 0; left: 14%;
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
  border-bottom: 165px solid rgba(232,99,72,.92);
}
.tri--small {
  top: 38%; left: -34px;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 60px solid var(--saffron);
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 24px;
  z-index: 3;
  color: var(--logo-gray-light);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--saffron), transparent); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:.2;transform:scaleY(.4);transform-origin:top} 50%{opacity:1} 100%{opacity:.2;transform:scaleY(1);transform-origin:top} }

@media (max-width: 880px) {
  .hero { min-height: auto; }
  .hero-inner { max-width: 100%; padding: 130px 0 56px; }
  .hero-figure {
    position: relative;
    width: 100%;
    height: 320px;
    clip-path: polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
  }
  .tri--top { right: 8%; border-left-width: 90px; border-right-width: 90px; border-top-width: 150px; }
  .tri--coral { left: 6%; }
}

/* ---------- Page banner (inner pages — editorial monochrome) ---------- */
.page-banner {
  position: relative;
  background: var(--charcoal-900);
  color: #fff;
  padding: 184px 0 92px;
  overflow: hidden;
}
.banner-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.banner-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(17,17,17,.9) 0%, rgba(17,17,17,.6) 60%, rgba(17,17,17,.35) 100%);
  pointer-events: none;
}
.page-banner::before {
  content: "";
  position: absolute; top: 0; right: 12%;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-top: 150px solid rgba(245,166,35,.5);
  z-index: 2;
  pointer-events: none;
}
.page-banner::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--gradient-logo);
  z-index: 2;
}
.page-banner .container { position: relative; z-index: 3; }
.page-banner h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); }
.page-banner p { color: rgba(255,255,255,.82); max-width: 640px; font-size: 1.12rem; margin-bottom: 0; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 20px; letter-spacing: .14em; text-transform: uppercase; }
.crumbs a { color: rgba(255,255,255,.72); }
.crumbs a:hover { color: var(--saffron); }

/* ---------- Monochrome photography — all content photos, color on hover ---------- */
.hero-figure img,
.banner-media img,
.feature-photo img,
.card-media img,
.pillar-card__img img,
.investor-split__media img,
.region-card img,
.product-img img {
  filter: grayscale(1) contrast(1.05);
  transition: filter .65s var(--ease), transform .65s var(--ease);
}

.hero:hover .hero-figure img,
.page-banner:hover .banner-media img,
.feature-photo:hover img,
.card--media:hover .card-media img,
.pillar-card:hover .pillar-card__img img,
.investor-split:hover .investor-split__media img,
.region-card:hover img,
.product-card:hover .product-img img {
  filter: grayscale(0) contrast(1.02);
}

.region-card img { filter: grayscale(1) contrast(1.08) brightness(.92); }
.region-card:hover img { filter: grayscale(0) contrast(1.02) brightness(1); }
.page-banner .banner-media img { filter: grayscale(1) contrast(1.08) brightness(.88); }
.page-banner:hover .banner-media img { filter: grayscale(0) contrast(1.02) brightness(.95); }

.brand img,
.map-stage img { filter: none; transition: none; }

/* On touch devices there is no hover, so reveal each image's colour as it
   scrolls into view (JS adds .in-color). Keeps the signature mono→colour
   effect working on phones and tablets. */
@media (hover: none) {
  .hero-figure img.in-color,
  .banner-media img.in-color,
  .feature-photo img.in-color,
  .card-media img.in-color,
  .pillar-card__img img.in-color,
  .investor-split__media img.in-color,
  .region-card img.in-color,
  .product-img img.in-color {
    filter: grayscale(0) contrast(1.02);
  }
  .region-card img.in-color { filter: grayscale(0) contrast(1.02) brightness(1); }
  .page-banner .banner-media img.in-color { filter: grayscale(0) contrast(1.02) brightness(.95); }
}

.investor-split__media { position: relative; }
.investor-split__media::before {
  content: "";
  position: absolute; top: -18px; left: -18px;
  border-left: 54px solid transparent;
  border-right: 54px solid transparent;
  border-top: 90px solid var(--saffron);
  z-index: 2;
  opacity: .9;
}

/* ---------- Live market ticker ---------- */
.market-ticker {
  background: var(--charcoal-900);
  border-top: 3px solid var(--saffron);
  border-bottom: 1px solid rgba(232, 119, 34, .2);
  padding: 0;
  overflow: hidden;
}
.market-ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  padding: 13px 24px;
  animation: tickerScroll 46s linear infinite;
}
.market-ticker:hover .market-ticker__track { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.market-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  flex: none;
}
.market-ticker__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.market-ticker__price {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.market-ticker__chg {
  font-size: .72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.market-ticker__chg.up { color: #6ee7a8; }
.market-ticker__chg.down { color: #fca5a5; }
.market-ticker__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron-light);
  padding: 0 20px 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}
.market-ticker__live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--saffron-light);
  animation: ticker-pulse 2s ease-in-out infinite;
}
@keyframes ticker-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; padding: 20px; }
.stat .num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.section--dark .stat .num {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat .label { font-size: .85rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 8px; }
.section--dark .stat .label { color: #9a9690; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(var(--accent-rgb),.25); }
.card .card-num {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: grid; place-items: center;
  background: var(--gradient-logo);
  color: #fff;
  margin-bottom: 22px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-weight: 600; font-size: .92rem; color: var(--navy-700);
}
.card .card-link .arrow { transition: transform .25s var(--ease); }
.card:hover .card-link { color: var(--gold); }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* ---------- Two-column feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature.reverse .feature-text { order: 2; }
.feature-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.feature-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  min-height: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  color: var(--gold-soft);
}
.feature-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.feature-visual .glyph { position: relative; z-index: 2; width: 120px; height: 120px; opacity: .9; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.mv-card.dark { background: var(--gradient-dark); color: #d4d0ca; border: none; box-shadow: inset 0 3px 0 0 var(--saffron); }
.mv-card.dark h3 { color: #fff; }
.mv-card .mv-label { font-family:"Inter",sans-serif; font-size:.78rem; letter-spacing:.2em; text-transform:uppercase; color: var(--gold); font-weight: 600; }
.mv-card h3 { font-size: 1.9rem; margin: 8px 0 16px; }
.mv-card p { margin-bottom: 0; }
.mv-card.dark p { color: #b3c2d2; }

/* ---------- Presence ---------- */
.presence-list { display: grid; gap: 18px; }
.presence-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.presence-item:hover { background: rgba(var(--accent-rgb),.10); border-color: rgba(var(--accent-rgb),.45); transform: translateX(6px); }
.presence-item .pnum {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.presence-item h4 { color: #fff; margin-bottom: 4px; font-size: 1.25rem; }
.presence-item p { margin: 0; color: #93a4b5; font-size: .96rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bg-tint);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.step h4 { font-size: 1.15rem; margin-bottom: 12px; position: relative; z-index: 2; }
.step ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .92rem; }
.step ul li { margin-bottom: 6px; }

/* ---------- Pill list (products) ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 12px 22px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.pill:hover { border-color: var(--gold); color: var(--navy-900); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- Rich content (prose) ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.9rem; margin-top: 1.4em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.6em; color: var(--navy-800); }
.prose p { color: #3a4a5a; }
.prose ul { padding-left: 22px; color: #3a4a5a; }
.prose ul li { margin-bottom: 8px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

/* ---------- Risk profiles ---------- */
.risk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.risk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.risk-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.risk-card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .info-icon {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bg-tint);
  color: var(--navy-700);
}
.contact-info .info-icon svg { width: 22px; height: 22px; }
.contact-info .info-item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.contact-info .info-item p, .contact-info .info-item address {
  margin: 0; color: var(--muted); font-style: normal; font-size: .98rem;
}
.contact-info .info-item a { color: var(--muted); }
.contact-info .info-item a:hover { color: var(--gold); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 119, 34, .22);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,166,35,.2), transparent 58%),
    var(--gradient-logo-soft);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { color: #b8b4ac; max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-900); color: #9a9690; padding: 72px 0 0; box-shadow: inset 0 3px 0 0 var(--saffron); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .brand-name { font-family:"Cormorant Garamond",serif; font-size:1.5rem; color:#fff; font-weight:700; }
.footer-brand p { margin-top: 16px; max-width: 320px; color: #8a8680; font-size: .96rem; }
.footer-col h5 { color: #fff; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; font-family:"Inter",sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #8a8680; font-size: .96rem; }
.footer-col ul li a:hover { color: var(--saffron-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: .88rem; color: #6f8195;
  flex-wrap: wrap;
}
.footer-bottom a { color: #9aa9b9; }
.footer-bottom a:hover { color: var(--saffron-light); }

/* ---------- Media cards & images ---------- */
.card--media { padding: 0; display: flex; flex-direction: column; }
.card--media .card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--charcoal-800);
}
.card--media .card-media img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.card--media:hover .card-media img { transform: scale(1.04); }
.card--media .card-body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; }
.card--media .card-link { margin-top: auto; padding-top: 16px; }

.feature-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--charcoal-800);
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: rgba(var(--accent-rgb),.3); }
.product-card .product-img { aspect-ratio: 16/9; overflow: hidden; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-body { padding: 32px 28px; }
.product-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.product-card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ---------- Interactive map (light editorial panel) ---------- */
.map-section {
  background: var(--bg-soft);
  color: var(--ink);
  padding: clamp(64px, 8vw, 108px) 0;
  position: relative;
}
.map-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-logo);
}
.map-section .container { position: relative; z-index: 1; }
.map-section .eyebrow { color: var(--saffron-deep); }
.map-section .eyebrow::before { background: var(--gradient-logo); }
.map-section .section-head h2 { color: var(--charcoal-900); }
.map-section .section-head p { color: var(--muted); }

.interactive-map {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 30px;
  align-items: stretch;
  min-height: 480px;
}
.map-stage {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 420px;
}
.map-canvas {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.map-canvas img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: none;
}
.map-stage img.map-mobile { display: none; }
.map-marker {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient-logo);
  border: 3px solid #fff;
  box-shadow: 0 0 0 0 rgba(232, 119, 34, .55);
  cursor: pointer;
  transform: translate(-50%, -50%);
  padding: 0;
  transition: transform .2s var(--ease);
  z-index: 2;
  animation: mapPing 2.2s ease infinite;
}
.map-marker::after { display: none; }
.map-marker:hover,
.map-marker.active {
  transform: translate(-50%, -50%) scale(1.25);
  animation: none;
  box-shadow: 0 0 0 8px rgba(232, 119, 34, .2);
}
.map-marker.active { background: var(--saffron-deep); }
.map--trading .map-marker { background: var(--gradient-logo); }
@keyframes mapPing {
  0% { box-shadow: 0 0 0 0 rgba(232, 119, 34, .5); }
  70% { box-shadow: 0 0 0 14px rgba(232, 119, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 119, 34, 0); }
}

.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.map-panel-label {
  font-family: "Inter", sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}
.map-panel h3 {
  color: var(--charcoal-900);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.map-panel p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 14px;
  line-height: 1.65;
}
.map-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-panel ul li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: .9rem;
}
.map-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
}
.map-panel-default {
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
  margin: auto 0;
  text-align: center;
  padding: 20px 0;
}
.map-panel-content { display: none; }
.map-panel-content.active {
  display: block;
  animation: fadeIn .4s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.map-region-list { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.map-region-btn {
  text-align: left;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 11px 16px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.map-region-btn:hover,
.map-region-btn.active {
  border-color: var(--saffron);
  color: var(--charcoal-900);
  background: linear-gradient(90deg, rgba(232,119,34,.08), rgba(212,88,30,.04));
  box-shadow: inset 3px 0 0 var(--saffron);
}

/* ---------- Reveal animation ---------- */
/* Only hide for the reveal animation when JS is active. If JS fails or is
   disabled, content (and photos) stay fully visible — never a blank page. */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .feature, .mv-grid, .contact-grid, .split, .risk-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature.reverse .feature-text { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 96px 24px 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li > a { color: #cdd8e4; padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .scrolled .nav-menu > li > a { color: #cdd8e4; }
  .has-dropdown > a::after { float: right; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: none; padding: 0 0 8px 12px;
  }
  .dropdown li a { color: #93a4b5; }
  .scrolled .dropdown li a { color: #93a4b5; }
  .nav-cta { margin: 14px 0 0 !important; }
  .nav-menu .btn { justify-content: center; }
  .grid-3, .grid-2, .grid-4, .steps { grid-template-columns: 1fr; }
  .interactive-map { grid-template-columns: 1fr; }
  .map-panel { border-left: none; border-top: 1px solid var(--line); }
  .map-stage img.map-desktop { display: none; }
  .map-stage img.map-mobile { display: block; max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 48px 28px; }
  .form-card { padding: 28px 22px; }
  .nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(7,16,27,.5); z-index: 99; }
  .nav-backdrop.show { display: block; }
}

/* ---------- Investor-grade layouts ---------- */
.investor-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.investor-split.reverse { direction: rtl; }
.investor-split.reverse > * { direction: ltr; }
.investor-split__media {
  position: relative;
  min-height: 480px;
  background: var(--charcoal-800);
}
.investor-split__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.investor-split__body {
  padding: clamp(36px, 5vw, 64px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.investor-split__body .eyebrow { margin-bottom: 14px; }
.investor-split__body h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 20px; }
.investor-split__body p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.investor-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.investor-kpi {
  background: var(--bg-soft);
  padding: 18px 16px;
  text-align: center;
}
.investor-kpi strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  color: var(--charcoal-900);
  line-height: 1.1;
}
.investor-kpi span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pillar-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--charcoal-800); }
.pillar-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.pillar-card:hover .pillar-card__img img { transform: scale(1.05); }
.pillar-card__body { padding: 28px 26px 32px; }
.pillar-card__tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 10px;
}
.pillar-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.pillar-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.region-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.region-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.region-card:hover img { transform: scale(1.04); }
.region-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.1) 0%, rgba(17,17,17,.82) 55%, rgba(17,17,17,.95) 100%);
  z-index: 1;
}
.region-card__code {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.region-card__body {
  position: relative;
  z-index: 2;
  padding: 28px 26px 32px;
  color: #fff;
}
.region-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.region-card p { color: rgba(255,255,255,.75); margin: 0 0 14px; font-size: .94rem; }
.region-card ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,.65); font-size: .88rem; }
.region-card ul li { margin-bottom: 5px; }

.trading-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}
.trading-stat {
  background: #fff;
  padding: 28px 22px;
  text-align: center;
}
.trading-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trading-stat span {
  display: block;
  margin-top: 8px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section--charcoal {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
}
.section--charcoal::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-logo);
}
.section--charcoal h2, .section--charcoal h3 { color: #fff; }
.section--charcoal p { color: rgba(255,255,255,.68); }
.section--charcoal .eyebrow { color: var(--saffron-light); }
.section--charcoal .eyebrow::before { background: var(--gradient-logo); }

@media (max-width: 980px) {
  .investor-split, .investor-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .investor-split__media { min-height: 320px; }
  .investor-split__media img { min-height: 320px; }
  .pillar-grid, .region-grid { grid-template-columns: 1fr; }
  .investor-kpis, .trading-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .investor-kpis, .trading-stats { grid-template-columns: 1fr; }
}
