/* ===== Impact Reality — design system ===== */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-black: #07070a;
  --bg-dark: #0e0e13;
  --bg-card: #17171e;
  --bg-card-hover: #1e1e27;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --gold: #f0b429;
  --gold-bright: #ffd166;
  --orange: #ff6a1a;
  --orange-bright: #ff8a3d;

  --text: #f6f6f2;
  --text-muted: #a3a3ad;
  --text-dim: #6f6f7a;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 84px;
  --max-w: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--orange-bright);
  display: inline-block;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
}

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-sub {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: 18px;
  line-height: 1.7;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--bg-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14100a;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* ===== Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7,7,10,0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links > li > a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li > a:hover { opacity: 1; color: var(--gold-bright); }
.nav-links > li.current > a { color: var(--gold-bright); opacity: 1; }

.nav-caret { width: 9px; height: 9px; transition: transform 0.25s var(--ease); }
.nav-item--dropdown:hover .nav-caret,
.nav-item--dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s;
}
.nav-dropdown a:hover { background: rgba(240,180,41,0.08); }
.nav-dropdown img {
  height: 22px;
  width: 52px;
  object-fit: contain;
  object-position: left center;
}
.nav-dropdown .division-name { font-weight: 700; font-size: 0.9rem; }
.nav-dropdown .division-tag { display: block; font-size: 0.72rem; color: var(--text-dim); font-weight: 500; text-transform: none; letter-spacing: 0; margin-top: 1px; }

.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 32px; height: 24px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 90px);
  padding-bottom: 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 18% 0%, rgba(240,180,41,0.16), transparent 60%),
    radial-gradient(50% 45% at 90% 10%, rgba(255,106,26,0.12), transparent 60%),
    var(--bg-black);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 20%, black, transparent);
  z-index: -1;
}
.hero-inner { text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: var(--text);
}
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-platforms {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.75;
}
.hero-platforms i { font-size: 1.7rem; color: var(--text-muted); }
.hero-platforms span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }

/* ===== Section head ===== */
.section-head { margin-bottom: 56px; }

/* ===== Games carousel ("Games We've Worked With") ===== */
.games-carousel-wrap { position: relative; }
.games-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 48px 28px;
  margin: 0 -48px;
  scrollbar-width: none;
}
.games-carousel::-webkit-scrollbar { display: none; }
.game-card {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.game-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.game-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.game-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,0) 45%, rgba(7,7,10,0.92) 100%);
}
.game-card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange);
  color: #14100a;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}
.game-card-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.game-card-title { font-weight: 800; font-size: 1.02rem; line-height: 1.2; }
.game-card-studio { display: block; font-size: 0.76rem; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
.game-card-play {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #14100a;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.game-card:hover .game-card-play { background: var(--orange-bright); transform: scale(1.08); }
.game-card-play i { font-size: 0.82rem; margin-left: 2px; }

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.carousel-arrow:hover { background: var(--orange); border-color: var(--orange); color: #14100a; transform: scale(1.05); }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); transition: background 0.2s, width 0.2s; }
.carousel-dots span.active { background: var(--orange); width: 22px; border-radius: 5px; }

/* ===== Stats row (real, verified numbers only) ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.stat-cell {
  background: var(--bg-dark);
  padding: 34px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--gold-bright);
}
.stat-label { margin-top: 8px; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(240,180,41,0.4); background: var(--bg-card-hover); }
a.service-card { display: block; }

.divisions-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .divisions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .divisions-grid { grid-template-columns: 1fr; } }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(240,180,41,0.1);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.service-card h3 { font-family: var(--font-body); text-transform: none; font-weight: 700; font-size: 1.08rem; letter-spacing: 0; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 8px; line-height: 1.6; }

/* ===== About / team-is-your-team ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-transform: none;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: 0;
}
.about-body { margin-top: 22px; color: var(--text-muted); line-height: 1.8; font-size: 1.02rem; }
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.about-photo-grid img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-quote-mark { color: var(--gold); font-family: var(--font-display); font-size: 2.6rem; line-height: 1; margin-bottom: 6px; }
.testimonial-text { color: var(--text-muted); font-size: 0.96rem; line-height: 1.75; flex: 1; }
.testimonial-author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem; color: #14100a;
}
.testimonial-author-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-author-co { font-size: 0.8rem; color: var(--text-dim); }

/* ===== Partners marquee ===== */
.partners-marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.partners-marquee { display: flex; gap: 64px; width: max-content; animation: marquee 34s linear infinite; align-items: center; }
.partners-marquee img { height: 34px; width: auto; object-fit: contain; filter: grayscale(1) brightness(1.8); opacity: 0.55; transition: opacity 0.25s, filter 0.25s; }
.partners-marquee img:hover { opacity: 1; filter: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, rgba(240,180,41,0.12), rgba(255,106,26,0.08));
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 26px;
  padding: 64px 48px;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 76px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 36px; }
.footer-tagline { margin-top: 16px; color: var(--text-muted); font-size: 0.92rem; max-width: 240px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-bright); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 18px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-newsletter p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 16px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 0.88rem;
}
.footer-newsletter-form input:focus { outline: none; border-color: var(--gold); }
.footer-newsletter-form button {
  background: var(--gold); color: #14100a; border: none; border-radius: 10px;
  padding: 0 18px; font-weight: 700; font-size: 0.86rem;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--text-dim); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--gold-bright); }

/* ===== Page header (Team / Contact) ===== */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 56px;
  text-align: center;
}
.page-hero .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Team page ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(240,180,41,0.35); }
.team-photo { aspect-ratio: 4/3.4; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.team-linkedin {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(7,7,10,0.65); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); border: 1px solid var(--border-strong);
  transition: background 0.2s, color 0.2s;
}
.team-linkedin:hover { background: var(--gold); color: #14100a; }
.team-info { padding: 20px 20px 24px; }
.team-name { font-weight: 800; font-size: 1.08rem; }
.team-title { color: var(--gold-bright); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.team-bio { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; line-height: 1.65; }

/* ===== Contact page ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.contact-card:hover { transform: translateY(-6px); }
.contact-card img { height: 30px; width: auto; margin-bottom: 22px; object-fit: contain; object-position: left; }
.contact-card h3 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 1.15rem; letter-spacing: 0; }
.contact-card .contact-role { color: var(--text-dim); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 14px; line-height: 1.6; flex: 1; }
.contact-card .btn { margin-top: 22px; align-self: flex-start; }
.contact-card--flat2vr:hover { border-color: rgba(80,140,255,0.4); }
.contact-card--inked:hover { border-color: rgba(190,110,255,0.4); }
.contact-card--labs:hover { border-color: rgba(0,236,138,0.4); }

/* --- Global Presence map --- */
.gp-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 30px 0 46px;
  flex-wrap: wrap;
}
.gp-tab {
  background: none; border: none;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  transition: color 0.2s;
}
.gp-tab.active { color: var(--gold-bright); }
.gp-tab:hover { color: var(--text); }
.gp-sep { color: var(--border-strong); font-size: 0.9rem; }

.gp-map-frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: radial-gradient(120% 100% at 50% 0%, #14141c, var(--bg-dark));
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1000/460;
}
.gp-map-frame svg { width: 100%; height: 100%; display: block; }
.gp-map-frame .gp-viewport {
  width: 100%; height: 100%;
  transition: transform 0.85s var(--ease);
  transform-origin: 0 0;
}
.gp-landmass { fill: #1c3f52; stroke: none; }
.gp-grid-line { stroke: rgba(255,255,255,0.06); stroke-width: 1; }

.gp-dot { cursor: pointer; }
.gp-dot circle.core { fill: var(--gold-bright); }
.gp-dot circle.ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  opacity: 0.7;
  animation: gp-pulse 2.4s ease-out infinite;
  transform-origin: center;
}
@keyframes gp-pulse {
  0% { r: 4; opacity: 0.75; }
  100% { r: 16; opacity: 0; }
}
.gp-dot-label {
  fill: var(--text);
  font-family: var(--font-body);
  font-size: 5px;
  font-weight: 700;
}
.gp-dot:hover .gp-dot-label { fill: var(--gold-bright); }

.gp-legend {
  margin-top: 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.86rem;
}

/* ===== Mobile ===== */
@media (max-width: 1080px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 0 22px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--bg-black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li > a { padding: 18px 4px; justify-content: space-between; }
  .nav-item--dropdown .nav-dropdown {
    position: static; transform: none; width: auto; opacity: 1; visibility: visible;
    pointer-events: none; max-height: 0; overflow: hidden; border: none; padding: 0;
    transition: max-height 0.3s var(--ease);
  }
  .nav-item--dropdown.open .nav-dropdown { max-height: 300px; pointer-events: auto; padding-bottom: 10px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gp-map-frame { aspect-ratio: 4/5; }
}
