@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Jost:wght@200;300;400;500;600&display=swap');

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

:root {
  /* Core palette */
  --navy:       #080e1a;
  --navy-mid:   #0d1829;
  --navy-rich:  #111f3a;
  --navy-glass: rgba(8,14,26,0.82);
  --crimson:    #6b1a1a;
  --crimson2:   #8b2020;
  --crimson-glow: rgba(107,26,26,0.18);
  --white:      #f8f4ef;
  --white-pure: #ffffff;
  --gold-thin:  rgba(232,215,183,0.18);
  --gold-line:  rgba(232,215,183,0.35);
  --gold-text:  #c8a96e;
  --muted:      #6b7a96;
  --text:       #b8c4d8;

  /* Suede/gloss texture variables */
  --gloss: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 60%);
  --suede: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.08) 100%);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Grain texture overlay — the "suede" feel */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* Subtle grid */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 76px;
  background: var(--navy-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: 0 1px 40px rgba(0,0,0,0.4);
}

.logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  position: relative; z-index: 2;
}

.logo-img-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 18px rgba(107,26,26,0.45), 0 0 0 2px rgba(200,169,110,0.08);
  transition: box-shadow 0.3s;
}
.logo-img-wrap:hover {
  box-shadow: 0 0 28px rgba(107,26,26,0.65), 0 0 0 2px rgba(200,169,110,0.2);
}
.logo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logo-wordmark {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-wordmark span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--white-pure); letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-wordmark span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 300;
  color: var(--gold-text); letter-spacing: 4px;
  text-transform: uppercase; margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold-text);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-family: 'Jost', sans-serif !important;
  font-size: 10px !important; font-weight: 500 !important;
  letter-spacing: 2.5px !important; text-transform: uppercase !important;
  color: var(--gold-text) !important;
  border: 1px solid var(--gold-line) !important;
  padding: 10px 24px !important;
  transition: all 0.3s !important;
  background: transparent !important;
}
.nav-cta:hover {
  background: rgba(200,169,110,0.1) !important;
  border-color: var(--gold-text) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all 0.3s; }

/* ── PAGE WRAPPER ── */
.page { position: relative; z-index: 1; }

/* ── LUXURY SECTION COMMONS ── */
.section {
  position: relative; z-index: 1;
  padding: 110px 8%;
  max-width: 1160px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-text);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--gold-text); flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700; color: var(--white-pure);
  line-height: 1.12; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--crimson2); }

.section-body {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.85;
  max-width: 500px; margin-bottom: 56px;
}

/* ── LUXURY RULE ── */
.rule {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.rule::before { content: ''; display: block; width: 40px; height: 1px; background: var(--crimson2); }
.rule::after  { content: ''; display: block; width: 8px;  height: 8px; border: 1px solid var(--gold-line); transform: rotate(45deg); }

/* ── GLASS CARDS ── */
.glass-card {
  background: linear-gradient(145deg, rgba(17,31,58,0.9), rgba(8,14,26,0.95));
  border: 1px solid var(--gold-thin);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.4), transparent);
}
.glass-card:hover {
  border-color: rgba(200,169,110,0.35);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,169,110,0.1);
  transform: translateY(-2px);
}

/* ── CRIMSON ACCENT TAG ── */
.tag {
  display: inline-block;
  font-size: 9px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-text);
  border: 1px solid var(--gold-thin);
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; padding: 16px 36px;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(107,26,26,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover {
  background: var(--crimson2);
  box-shadow: 0 8px 32px rgba(107,26,26,0.6);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-text);
  border: 1px solid var(--gold-line);
}
.btn-ghost:hover {
  background: rgba(200,169,110,0.08);
  border-color: var(--gold-text);
  color: var(--white);
}

/* ── STATS STRIP ── */
.stats-strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--gold-thin);
  border-bottom: 1px solid var(--gold-thin);
  background: linear-gradient(180deg, rgba(13,24,41,0.8) 0%, rgba(8,14,26,0.9) 100%);
}
.stat-item {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid var(--gold-thin);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 20px;
  background: linear-gradient(180deg, var(--crimson2), transparent);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 900;
  color: var(--white-pure); line-height: 1;
  margin-bottom: 8px;
}
.stat-value sup { font-size: 24px; color: var(--crimson2); vertical-align: super; }
.stat-label {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-text);
  font-weight: 500; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 15px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-thin);
  border-bottom-color: rgba(200,169,110,0.25);
  color: var(--white); font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 300; outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-text);
  background: rgba(200,169,110,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); font-weight: 300; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Inline email form */
.inline-form {
  display: flex; max-width: 500px; width: 100%;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 40px rgba(107,26,26,0.15);
}
.inline-form input {
  flex: 1; padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: none; color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 13px; outline: none;
}
.inline-form input::placeholder { color: var(--muted); }
.inline-form button {
  padding: 18px 30px; background: var(--crimson); color: var(--white);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s;
  white-space: nowrap;
}
.inline-form button:hover { background: var(--crimson2); }

.alert {
  padding: 14px 20px; font-size: 13px; margin-top: 14px; display: none;
}
.alert-success { background: rgba(200,169,110,0.08); border: 1px solid var(--gold-line); color: var(--gold-text); }
.alert-error   { background: rgba(107,26,26,0.1); border: 1px solid rgba(107,26,26,0.4); color: #c97070; }

/* ── PARTNER / CREDIBILITY SECTION ── */
.credibility-section {
  position: relative; z-index: 1;
  padding: 90px 8%;
  background: linear-gradient(180deg, rgba(13,24,41,0.6) 0%, rgba(8,14,26,0.4) 100%);
  border-top: 1px solid var(--gold-thin);
  border-bottom: 1px solid var(--gold-thin);
  overflow: hidden;
}
.credibility-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(107,26,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gold-thin);
  margin-top: 56px;
}

.partner-tile {
  background: linear-gradient(145deg, rgba(13,24,41,0.95), rgba(8,14,26,0.98));
  padding: 36px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; min-height: 150px;
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.partner-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gloss);
  pointer-events: none;
}
.partner-tile:hover {
  background: linear-gradient(145deg, rgba(17,31,58,0.98), rgba(13,24,41,1));
}
.partner-tile:hover .partner-abbr { color: var(--white-pure); }

.partner-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--gold-text); letter-spacing: 1px;
  line-height: 1; margin-bottom: 10px;
  transition: color 0.3s;
}
.partner-name {
  font-size: 9px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); line-height: 1.5;
}
.partner-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--crimson); margin: 10px auto 0;
}

/* Last row — span if odd */
.partner-tile.span-half {
  grid-column: span 2;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative; z-index: 1;
  padding: 170px 8% 100px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.page-hero-inner { max-width: 700px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900; color: var(--white-pure);
  line-height: 1.08; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.page-hero h1 em { font-style: italic; color: var(--crimson2); }
.page-hero p {
  font-size: 16px; font-weight: 300;
  color: var(--muted); max-width: 520px; line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-thin);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding: 80px 8% 56px;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand p {
  font-size: 13px; color: var(--muted);
  margin-top: 20px; max-width: 260px; line-height: 1.8;
}
.footer-col h4 {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-text);
  font-weight: 500; margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--gold-thin);
  padding: 22px 8%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(139,32,32,0.4); }
  50%      { opacity:0.8; transform:scale(1.2); box-shadow: 0 0 0 6px rgba(139,32,32,0); }
}

.anim   { animation: fadeUp 0.8s ease both; }
.anim-1 { animation-delay: 0.12s; }
.anim-2 { animation-delay: 0.22s; }
.anim-3 { animation-delay: 0.32s; }
.anim-4 { animation-delay: 0.42s; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .partner-grid { grid-template-columns: repeat(2,1fr); }
  .partner-tile.span-half { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gold-thin); }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: rgba(8,14,26,0.98); padding: 28px 8%; gap: 24px; border-bottom: 1px solid var(--gold-thin); backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .inline-form { flex-direction: column; }
  .section { padding: 80px 6%; }
  .page-hero { padding: 140px 6% 80px; }
}

/* ══════════════════════════════════════════
   GLOBE BAND
══════════════════════════════════════════ */
.footer-globe-band {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 380px 1fr;
  gap: 80px; align-items: center;
  padding: 90px 8%;
  background: linear-gradient(160deg, #00020c 0%, #000818 60%, #000208 100%);
  border-top: 1px solid var(--gold-thin);
  overflow: hidden;
}
.footer-globe-band::before {
  content: '';
  position: absolute; top: 50%; left: 280px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(107,26,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.globe-wrap {
  position: relative;
  width: 340px; height: 340px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
#atg-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px !important; height: 520px !important;
  pointer-events: none;
  z-index: 1;
}
#atg-globe {
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(0,220,200,0.3),
    0 0 40px rgba(0,220,200,0.55),
    0 0 90px rgba(0,180,255,0.35),
    0 0 160px rgba(0,120,200,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  display: block;
}
.globe-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(75deg);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.12);
  pointer-events: none;
  animation: globe-ring-spin 18s linear infinite;
}
.globe-ring-2 {
  width: 480px; height: 480px;
  border-color: rgba(107,26,26,0.1);
  animation-duration: 28s;
  animation-direction: reverse;
}
@keyframes globe-ring-spin {
  from { transform: translate(-50%,-50%) rotateX(75deg) rotateZ(0deg); }
  to   { transform: translate(-50%,-50%) rotateX(75deg) rotateZ(360deg); }
}

.globe-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,3vw,46px); font-weight: 900;
  color: var(--white-pure); line-height: 1.1; margin-bottom: 18px;
}
.globe-headline em { font-style: italic; color: var(--crimson2); }
.globe-body { font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 32px; max-width: 520px; }
.globe-stats { display: flex; gap: 36px; }
.gstat { display: flex; flex-direction: column; }
.gstat-val { color: #00ffee; text-shadow: 0 0 18px rgba(0,255,230,.85), 0 0 40px rgba(0,200,220,.4); font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--white-pure); line-height: 1; }
.gstat-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════
   TRUST BELT
══════════════════════════════════════════ */
.trust-belt {
  position: relative; z-index: 1;
  background: rgba(8,14,26,0.9);
  border-top: 1px solid var(--gold-thin);
  border-bottom: 1px solid var(--gold-thin);
  padding: 16px 8%; overflow: hidden;
}
.trust-belt-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.tb-item { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 400; white-space: nowrap; }
.tb-sep  { color: rgba(200,169,110,0.2); }

/* ══════════════════════════════════════════
   MEGA FOOTER
══════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  background: var(--navy-mid);
}

.mega-footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 40px;
  padding: 70px 8% 50px;
  max-width: 1400px; margin: 0 auto;
  border-bottom: 1px solid var(--gold-thin);
}

.mf-brand-desc { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; max-width: 260px; }

.mf-social { display: flex; gap: 10px; }
.mf-social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-thin);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.25s; text-decoration: none;
}
.mf-social-btn:hover { border-color: var(--gold-text); color: var(--gold-text); background: rgba(200,169,110,0.06); }

.mf-col { }
.mf-col-title {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-text); font-weight: 600; margin-bottom: 18px;
}
.mf-list { list-style: none; }
.mf-list li { margin-bottom: 10px; }
.mf-list li a {
  font-size: 12.5px; color: var(--muted); text-decoration: none;
  transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.mf-list li a:hover { color: var(--white); }

.badge-soon {
  font-size: 8px; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(107,26,26,0.5); color: var(--crimson2);
  border: 1px solid rgba(107,26,26,0.4);
  padding: 2px 6px; border-radius: 2px;
}

/* ── SDG Accordion ── */
.sdg-accordion { margin-top: 20px; }
.sdg-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: rgba(200,169,110,0.05);
  border: 1px solid var(--gold-thin);
  padding: 9px 14px; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-text); font-weight: 500;
  transition: background 0.2s;
}
.sdg-trigger:hover { background: rgba(200,169,110,0.1); }
.sdg-chevron { transition: transform 0.2s; }
.sdg-panel {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  background: rgba(6,10,18,0.7);
  border: 1px solid var(--gold-thin); border-top: none;
}
.sdg-goal {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 14px; border-bottom: 1px solid rgba(200,169,110,0.07);
}
.sdg-goal:last-child { border-bottom: none; }
.sdg-badge {
  flex-shrink: 0; font-size: 8px; font-weight: 700;
  letter-spacing: 0.5px; padding: 4px 7px;
  white-space: nowrap; margin-top: 2px;
}
.sdg3  { background: rgba(76,175,80,0.2);  color:#81c784; border:1px solid rgba(76,175,80,0.3); }
.sdg9  { background: rgba(255,152,0,0.2);  color:#ffb74d; border:1px solid rgba(255,152,0,0.3); }
.sdg11 { background: rgba(255,193,7,0.15); color:#ffd54f; border:1px solid rgba(255,193,7,0.3); }
.sdg13 { background: rgba(33,150,243,0.2); color:#64b5f6; border:1px solid rgba(33,150,243,0.3); }
.sdg-goal strong { display: block; font-size: 10px; color: var(--text); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.3px; }
.sdg-goal p { font-size: 10.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Language row ── */
.mf-language-row {
  border-bottom: 1px solid var(--gold-thin);
  padding: 18px 8%;
  background: rgba(6,10,18,0.5);
}
.mf-language-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
.mf-lang-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-text); font-weight: 500; white-space: nowrap;
}
.lang-options { display: flex; gap: 4px; flex-wrap: wrap; }
.lang-btn {
  background: transparent; border: 1px solid rgba(200,169,110,0.12);
  color: var(--muted); font-family: 'Jost', sans-serif;
  font-size: 10px; padding: 5px 12px; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.5px;
}
.lang-btn:hover { border-color: var(--gold-text); color: var(--gold-text); }
.lang-btn.active { background: rgba(200,169,110,0.1); border-color: var(--gold-text); color: var(--gold-text); }

/* ── Bottom bar ── */
.mf-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 8%;
  max-width: 1400px; margin: 0 auto;
}
.mf-bottom p { font-size: 11px; color: var(--muted); letter-spacing: 0.3px; }
.mf-bottom-right { color: var(--gold-text) !important; }
.mf-bottom-links { display: flex; gap: 20px; }
.mf-bottom-links a {
  font-size: 11px; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.mf-bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   RESPONSIVE MEGA FOOTER
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mega-footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-globe-band { grid-template-columns: 1fr; text-align: center; }
  .globe-wrap { margin: 0 auto; }
  .globe-body { max-width: 100%; }
  .globe-stats { justify-content: center; }
}
@media (max-width: 700px) {
  .mega-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mf-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .mf-bottom-links { justify-content: center; }
  .globe-wrap { width: 260px; height: 260px; }
  #atg-globe { width: 260px; height: 260px; }
}
@media (max-width: 420px) {
  .mega-footer-top { grid-template-columns: 1fr; }
}
