/* =============================================================
   CDN GROUP — Editorial dark, premium M&A advisory
   ============================================================= */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-elev: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #f4efe6;
  --ink-soft: rgba(244, 239, 230, 0.72);
  --ink-mute: rgba(244, 239, 230, 0.5);
  --ink-faint: rgba(244, 239, 230, 0.28);

  --gold: #c9a35b;
  --gold-soft: #a98648;
  --gold-glow: rgba(201, 163, 91, 0.22);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
em { font-style: italic; }

::selection { background: var(--gold); color: #111; }

/* =====================
   GRAIN OVERLAY
   ===================== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* =====================
   HEADER
   ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 76px; width: auto;
  filter: invert(1) brightness(1.05);
  transition: transform 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 60px; }
.brand:hover .brand-logo { transform: scale(1.04); }

.nav-desktop {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.nav-link .nav-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover .nav-num { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cta-pill svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.cta-pill:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.cta-pill:hover svg { transform: translateX(3px); }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 110px var(--gutter) 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mm-link {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 400;
  color: var(--ink);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mm-link span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
}
.mm-link:hover { color: var(--gold); padding-left: 10px; }
.mm-footer {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.mm-footer a:hover { color: var(--gold); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 200px var(--gutter) 140px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 22s var(--ease) infinite alternate;
}
.hero-orb--1 {
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold), transparent 60%);
}
.hero-orb--2 {
  bottom: -180px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1f3a8a, transparent 60%);
  opacity: 0.25;
  animation-delay: -8s;
}
@keyframes drift {
  to { transform: translate(40px, -30px) scale(1.08); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.6;
}

.hero-meta {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 8.2vw, 130px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 1200px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > span {
  display: inline-block;
}
.js .reveal-line > span {
  transform: translateY(110%);
  opacity: 0;
}
.js body.is-loaded .reveal-line > span {
  animation: lineUp 1s var(--ease-out) forwards;
}
.js .reveal-line:nth-child(1) > span { animation-delay: 0.1s; }
.js .reveal-line:nth-child(2) > span { animation-delay: 0.25s; }
.js .reveal-line:nth-child(3) > span { animation-delay: 0.4s; }
@keyframes lineUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  position: relative; z-index: 2;
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-actions {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 40px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: var(--gold);
  color: #111;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: 70px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 20px;
  background: var(--gold);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -20px; }
  100% { top: 100%; }
}

.hero-ticker {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}
.ticker-track {
  display: inline-flex; gap: 24px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ticker-track span:not(:nth-child(2n)) { color: var(--ink); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* =====================
   GENERIC SECTION
   ===================== */
.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.section-eyebrow .num {
  color: var(--gold);
}
.section-eyebrow::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--line-strong), transparent);
  max-width: 280px;
}

/* =====================
   ADN
   ===================== */
.section--adn {
  border-top: 1px solid var(--line);
}
.adn-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.adn-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.adn-title em { color: var(--gold); font-style: italic; }
.adn-title .hl {
  background: linear-gradient(180deg, transparent 65%, var(--gold-glow) 65%);
  padding: 0 4px;
}

.adn-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.adn-body strong { color: var(--ink); font-weight: 500; }
.adn-body em { color: var(--gold); font-style: italic; }

.adn-bullets {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.adn-bullets li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  transition: padding-left 0.3s var(--ease), color 0.3s var(--ease);
}
.adn-bullets li span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.adn-bullets li:hover {
  padding-left: 10px;
  color: var(--gold);
}
.adn-bullets li:hover span { transform: scale(1.4); }

/* =====================
   STATS
   ===================== */
.section--stats {
  border-top: 1px solid var(--line);
}
.stats-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin-bottom: 80px;
}
.stats-title em { color: var(--gold); font-style: italic; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stat {
  position: relative;
  padding: 60px 30px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex; align-items: baseline;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.stat-line {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-out);
}
.stat.is-visible .stat-line { transform: scaleX(1); }

.americas {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-top: 100px;
}
.americas-map {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.americas-map img {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg) brightness(1.1) contrast(1.05);
  z-index: 1;
  animation: mapFloat 8s ease-in-out infinite;
}
.map-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; aspect-ratio: 1 / 1.4;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  animation: haloPulse 4s ease-in-out infinite;
}
@keyframes mapFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

.americas-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.americas-copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.americas-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
}

/* =====================
   SERVICES
   ===================== */
.section--services {
  border-top: 1px solid var(--line);
}
.services-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin-bottom: 80px;
}
.services-title em { color: var(--gold); font-style: italic; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-head { margin-bottom: 32px; }
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 18px;
}
.service-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-head p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.service-steps {
  list-style: none;
  border-top: 1px solid var(--line);
}
.service-steps li {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.service-steps li:last-child { border-bottom: none; }
.step-n {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-steps li:hover .step-n {
  background: var(--gold); color: #111;
}
.service-steps h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--ink);
}
.service-steps p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
}

.service-tags {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-tags span {
  display: block;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.service-tags span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =====================
   CONTACT
   ===================== */
.section--contact {
  border-top: 1px solid var(--line);
}
.contact-wrap { max-width: 1200px; }
.contact-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 60px;
}
.contact-title em { color: var(--gold); font-style: italic; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex; flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.contact-card::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.contact-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-elev);
  transform: translateY(-3px);
}
.contact-card:hover::after { transform: scaleX(1); }
.cc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.cc-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin: 4px 0 10px;
}
.cc-action {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--gold);
  margin-top: auto;
}
.cc-action svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.contact-card:hover .cc-action svg { transform: translateX(4px); }

.confidential-note {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}
.confidential-note svg {
  width: 16px; height: 16px;
  color: var(--gold);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 30px;
  background: var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  height: 40px;
  filter: invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 360px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-cols h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-cols a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  max-width: var(--container);
  margin: 30px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.js .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .cta-pill { display: none; }
  .menu-toggle { display: flex; }

  .adn-grid { grid-template-columns: 1fr; }
  .americas { grid-template-columns: 1fr; gap: 40px; }
  .americas-map svg { max-width: 160px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding-top: 110px; padding-bottom: 140px; min-height: auto; }
  .hero-scroll { display: none; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-logo { height: 56px; }
  .site-header.is-scrolled .brand-logo { height: 44px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-eyebrow::after { display: none; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cell { padding: 24px 14px; min-height: 130px; }
}
