/* ============================================================
   BRAND — GEO LANDING PAGES
   ============================================================ */

.geo-hero {
  background: var(--brand-700);
  padding-top: calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.geo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(255,255,255,.015) 80px, rgba(255,255,255,.015) 81px
  );
}

.geo-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-12);
  align-items: start;
}

.geo-hero__breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.geo-hero__breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.geo-hero__breadcrumb a:hover { color: rgba(255,255,255,.8); }

.geo-hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin-bottom: var(--sp-3);
}

.geo-hero__h1 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--sp-5);
}

.geo-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--sp-8);
}

.geo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Sidebar stats */
.geo-sidebar {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
}

.geo-sidebar__title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin-bottom: var(--sp-5);
}

.geo-sidebar__stat {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.geo-sidebar__stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.geo-sidebar__stat-num {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.geo-sidebar__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  margin-top: var(--sp-1);
  line-height: 1.4;
}

/* ── GEO Content ─────────────────────────────────────────────── */
.geo-content {
  padding-block: var(--sp-24);
}

.geo-body {
  max-width: 720px;
}

.geo-body h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--color-text);
}

.geo-body h2:first-child { margin-top: 0; }

.geo-body p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  max-width: 680px;
}

/* ── Other Locations ─────────────────────────────────────────── */
.geo-other-locations {
  background: var(--st-100);
  padding-block: var(--sp-12);
}

.geo-other-locations__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}

.geo-location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ── GEO CTA ─────────────────────────────────────────────────── */
.geo-cta {
  background: var(--brand-800);
  padding-block: var(--sp-16);
}

.geo-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-10);
  align-items: center;
}

.geo-cta__h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.geo-cta__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.geo-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-end;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .geo-hero__inner { grid-template-columns: 1fr; }
  .geo-sidebar { display: none; }
  .geo-cta__inner { grid-template-columns: 1fr; }
  .geo-cta__actions { align-items: flex-start; }
}
