/* ============================================
   ADMACT GROUP - Corporate Style
   Inspired by holding company sites
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #38bdf8;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --bg: #ffffff;
  --accent-gold: #d97706;
  --success: #16a34a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin-top: 12px;
  border-radius: 2px;
}
.section-title.center {
  display: block;
  text-align: center;
}
.section-title.center::after { margin-left: auto; margin-right: auto; }

.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 700px;
  line-height: 1.7;
}

/* ============ NAV ============ */
.nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.nav-logo-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  padding-bottom: 2px;
}
.nav-logo-text .lg-bold {
  font-weight: 800;
  color: var(--dark);
}
.nav-logo-text .lg-light {
  font-weight: 300;
  color: var(--primary);
}
.nav-logo-bar {
  width: 58px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}
@media (max-width: 480px) {
  .nav-logo-text { font-size: 25px; }
  .nav-logo-bar { width: 48px; height: 2px; }
}

/* Footer logo (light on dark) */
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
  margin-bottom: 20px;
}
.footer-logo-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  padding-bottom: 2px;
}
.footer-logo-text .lg-bold { font-weight: 800; color: #ffffff; }
.footer-logo-text .lg-light { font-weight: 300; color: var(--primary-light); }
.footer-logo-bar {
  width: 54px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-light), rgba(56,189,248,0.3));
  border-radius: 2px;
}

.nav-logo img { height: 44px; width: auto; }
.nav-menu {
  display: none;
  gap: 4px;
  align-items: center;
}
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-menu a {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.nav-menu a:hover { color: var(--primary); background: var(--gray-50); }
.nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--primary);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white !important;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(245,158,11,0.25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,158,11,0.4);
}
.nav-cta svg { width: 14px; height: 14px; }

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dark);
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 6px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a.active { color: var(--primary); }
.mobile-menu .nav-cta-mobile {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  text-align: center;
  margin-top: 12px;
  border-bottom: none;
  padding: 14px;
  border-radius: 6px;
}

/* ============ HERO (with video background) ============ */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background: #0a0e1a;
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1) saturate(1.15);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,14,26,0.75) 0%, rgba(10,14,26,0.55) 50%, rgba(15,23,42,0.85) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(2,132,199,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(217,119,6,0.12), transparent 55%);
}
.hero-overlay-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 0;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12px;
  color: white;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 16px rgba(245,158,11,0.8);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 16px rgba(245,158,11,0.8); }
  50% { opacity: 0.6; box-shadow: 0 0 24px rgba(245,158,11,1); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero h1 span {
  color: #fbbf24;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 680px;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub strong { color: white; font-weight: 500; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
}
.btn-primary-blue {
  background: var(--primary);
  color: white;
}
.btn-primary-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(2,132,199,0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--dark);
  border-color: white;
}
.btn-dark {
  background: var(--dark);
  color: white;
}
.btn-dark:hover { background: var(--dark-2); }
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--dark); color: white; }

/* ============ WHO WE ARE ============ */
.about-section {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 64px; }
}
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary), var(--dark));
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-image-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: white;
  z-index: 2;
}
.about-image-text-num {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.about-image-text-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-content .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.about-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content p strong { color: var(--dark); font-weight: 600; }
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(2,132,199,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 20px; height: 20px; }
.highlight-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.highlight-text p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ============ STATS COUNTER ============ */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(56,189,248,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56,189,248,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 699px) {
  .stat-item:nth-child(2) { border-right: none; }
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ============ BUSINESSES GRID ============ */
.businesses-section { padding: 100px 0; background: var(--gray-50); }
.businesses-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.businesses-header p {
  font-size: 16px;
  color: var(--gray-600);
  margin-top: 20px;
  line-height: 1.7;
}
.businesses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .businesses-grid { grid-template-columns: repeat(2, 1fr); } }
.business-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.business-card-header {
  padding: 32px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.business-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.business-icon svg { width: 26px; height: 26px; }
.business-badge {
  padding: 4px 10px;
  background: rgba(16,163,74,0.1);
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.business-badge.soon {
  background: rgba(217,119,6,0.1);
  color: var(--accent-gold);
}
.business-card-body { padding: 24px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.business-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.business-tagline {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.business-card-body p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.business-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.business-service {
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
}
.business-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}
.business-link:hover { gap: 12px; }
.business-link svg { width: 14px; height: 14px; }

/* ============ SERVICES/CAPABILITIES ============ */
.capabilities-section { padding: 100px 0; background: white; }
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 700px) { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .capabilities-grid { grid-template-columns: repeat(3, 1fr); } }
.capability-card {
  padding: 32px 28px;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}
.capability-card:hover {
  background: white;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-left-color: var(--accent-gold);
}
.capability-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.capability-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 12px;
}
.capability-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============ IN MEDIA / NEWS ============ */
.media-section { padding: 100px 0; background: var(--gray-50); }
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 700px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .media-grid { grid-template-columns: repeat(3, 1fr); } }
.media-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.media-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
}
.media-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.media-body { padding: 24px; }
.media-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.media-tag {
  padding: 3px 10px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.media-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.media-body a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

/* ============ GLOBAL REACH ============ */
.global-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.global-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.global-section .container { position: relative; z-index: 2; }
.global-section .section-title { color: white; }
.global-section .section-title::after { background: linear-gradient(90deg, var(--primary-light), var(--accent-gold)); }
.global-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.global-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin: 24px 0 40px;
}
.global-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 700px) { .global-locations { grid-template-columns: repeat(4, 1fr); } }
.global-location {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
}
.global-location-flag { font-size: 32px; margin-bottom: 8px; }
.global-location-city {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.global-location-country {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: 80px 0;
  background:
    linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2,132,199,0.15), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip .btn-dark {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.cta-strip .btn-dark:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) { .cta-strip-inner { grid-template-columns: 2fr 1fr; gap: 40px; } }
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-top: 8px;
}
.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 900px) { .cta-strip-actions { justify-content: flex-end; } }
.cta-strip .btn-outline { border-color: white; }

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 380px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gray-300);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--primary-light); }
.footer-contact svg { width: 14px; height: 14px; color: var(--primary-light); }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 700px) { .footer-columns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  /* display:contents lifts each .footer-col out of .footer-columns so the
     brand block and all three link columns sit directly on the footer-top
     grid and share the full width evenly. */
  .footer-top { grid-template-columns: 1.9fr 1fr 1fr 0.8fr; column-gap: 56px; }
  .footer-columns { display: contents; }
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-500);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a { color: var(--gray-400); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ============ PAGE HEADER (sub pages) ============ */
.page-header {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 500px;
  height: 100%;
  background:
    radial-gradient(circle at 80% 50%, rgba(245,158,11,0.12), transparent 60%),
    radial-gradient(circle at 40% 30%, rgba(2,132,199,0.15), transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-header h1 span {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header .breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.page-header .breadcrumb a { color: #fbbf24; transition: color 0.2s; }
.page-header .breadcrumb a:hover { color: white; }
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  line-height: 1.7;
}

/* ============ CONTENT BLOCKS ============ */
.content-block { padding: 80px 0; }
.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--dark);
  margin: 40px 0 16px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin: 24px 0 12px;
}
.content-block p, .content-block li {
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
}
.content-block ul { padding-left: 24px; margin-bottom: 24px; }
.content-block strong { color: var(--dark); }
.content-block a { color: var(--primary); text-decoration: underline; }

/* Contact form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* Contact info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-info-card {
  padding: 28px;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}
.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-info-card p { color: var(--gray-600); font-size: 14px; margin-bottom: 12px; }
.contact-info-card a,
.contact-info-card .info-value {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

/* ============ MOBILE ============ */


/* ============ HOW WE WORK (principles) ============ */
.principles-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 48px auto 0;
}
@media (min-width: 768px) {
  .principles-row { grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
}
.principle-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.principle-marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--gray-200);
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.principle-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.principle-item p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}


.card-note {
  margin-top: 16px !important;
  padding: 13px 15px;
  background: var(--gray-50);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--gray-600) !important;
  flex-grow: 0 !important;
}
.card-note.amber { border-left-color: var(--accent-gold); }
.card-note strong { color: var(--dark); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Desktop 60% · Mobile 30% · Tablet 10%
   Breakpoints: ≥1280 large · 1024-1279 laptop
                768-1023 tablet · 481-767 large phone
                ≤480 phone
   ═══════════════════════════════════════════════════════════ */

/* Universal guards */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video, svg { max-width: 100%; }
.container { width: 100%; }

/* ───────── LARGE DESKTOP (≥1440px) ───────── */
@media (min-width: 1440px) {
  .container { max-width: 1340px; }
  .hero { min-height: 780px; }
  .hero-content { max-width: 900px; }
  .section, .businesses-section, .capabilities-section, .global-section { padding: 110px 0; }
}

/* ───────── LAPTOP (1024px – 1279px) ───────── */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container { padding: 0 40px; }
  .hero { min-height: 640px; }
  .hero-content { padding: 80px 0; max-width: 760px; }
  .nav-menu a { padding: 10px 12px; font-size: 14px; }
  .nav-cta { padding: 11px 18px; font-size: 13px; }
  .section, .businesses-section, .capabilities-section, .global-section { padding: 80px 0; }
  .about-grid { gap: 48px; }
}

/* ═══════════ TABLET (768px – 1023px) ═══════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  .container { padding: 0 32px; }

  /* Nav — burger appears here */
  .nav-inner { padding: 16px 0; }
  .nav-logo-text { font-size: 27px; }
  .nav-logo-bar { width: 52px; }

  /* Top bar stays but compact */

  /* Hero */
  .hero { min-height: 540px; }
  .hero-content { padding: 72px 0; max-width: 100%; }
  .hero h1 { font-size: clamp(40px, 6vw, 52px); }
  .hero-sub { font-size: 17px; max-width: 90%; }
  .hero-scroll { bottom: 24px; }

  /* Sections */
  .section, .businesses-section, .capabilities-section,
  .global-section, .content-block, .about-section { padding: 72px 0; }
  .stats-section { padding: 52px 0; }

  /* About — stack, image becomes a banner */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 21/9; max-height: 300px; }
  .about-image-text-num { font-size: 64px; }
  .about-highlights { grid-template-columns: repeat(2, 1fr); }

  /* Stats — 2x2 grid reads better than 4-across on tablet */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; padding: 18px 12px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 26px; }
  .stat-item:nth-child(n+3) { padding-top: 26px; }
  .stat-number { font-size: 46px; }

  /* Cards — 2 across */
  .businesses-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .business-card-header { padding: 26px 26px 0; }
  .business-card-body { padding: 22px 26px 26px; }
  .capability-card { padding: 28px 24px; }

  /* Global locations 2x2 */
  .global-locations { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Services page */
  .service-item { padding: 56px 0; }
  .service-item-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-item-num { font-size: 48px; margin-bottom: 12px; }
  .service-item-icon { width: 60px; height: 60px; margin-bottom: 0; }
  .service-features { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-strip { padding: 60px 0; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .cta-strip-actions { justify-content: flex-start; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .page-header { padding: 72px 0; }
}

/* ═══════════ MOBILE — ALL PHONES (≤767px) ═══════════ */
@media (max-width: 767px) {
  .container { padding: 0 20px; }

  /* ── Top bar: keep only essentials ── */

  /* ── Nav ── */
  .nav-inner { padding: 14px 0; }
  .nav-logo-text { font-size: 24px; }
  .nav-logo-bar { width: 46px; height: 2px; }
  .burger { width: 42px; height: 42px; margin-right: -8px; }

  .mobile-menu { padding: 12px 20px 24px; }
  .mobile-menu a {
    padding: 15px 4px;
    font-size: 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-menu .nav-cta-mobile {
    justify-content: center;
    margin-top: 16px;
    padding: 16px;
    font-size: 15px;
  }

  /* ── Hero ── */
  .hero { min-height: auto; }
  .hero-content { padding: 56px 0 64px; max-width: 100%; }
  .hero-eyebrow {
    font-size: 10px;
    padding: 8px 14px;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    line-height: 1.4;
  }
  .hero h1 {
    font-size: clamp(31px, 8.5vw, 42px);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-cta { flex-direction: column; gap: 10px; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  /* Lighten overlay slightly — video is dimmer on small screens */
  .hero-video-bg { filter: brightness(0.55) contrast(1.1) saturate(1.1); }

  /* ── Buttons: thumb-friendly ── */
  .btn { min-height: 48px; padding: 14px 22px; font-size: 15px; }
  .btn-lg { min-height: 52px; padding: 15px 26px; font-size: 15px; }

  /* ── Section rhythm ── */
  .section, .businesses-section, .capabilities-section,
  .media-section, .global-section, .content-block,
  .about-section { padding: 56px 0 !important; }
  .stats-section { padding: 40px 0; }
  .section-title { font-size: clamp(25px, 6.5vw, 32px); }
  .section-title::after { width: 48px; margin-top: 10px; }
  .section-sub, .businesses-header p { font-size: 15px; }
  .businesses-header { margin-bottom: 36px; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-image { aspect-ratio: 16/10; border-radius: 10px; }
  .about-image-text { bottom: 22px; left: 22px; right: 22px; }
  .about-image-text-num { font-size: 50px; }
  .about-image-text-label { font-size: 11px; }
  .about-content p { font-size: 15px; line-height: 1.75; }
  .about-highlights { grid-template-columns: 1fr; gap: 18px; margin-top: 26px; padding-top: 26px; }

  /* ── Stats: 2x2 ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .stat-item { padding: 18px 8px; border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-number { font-size: 38px; margin-bottom: 6px; }
  .stat-label { font-size: 12px; line-height: 1.35; }

  /* ── Cards ── */
  .businesses-grid, .capabilities-grid, .media-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .business-card { border-radius: 10px; }
  .business-card-header { padding: 24px 22px 0; }
  .business-card-body { padding: 20px 22px 24px; }
  .business-card-body h3 { font-size: 22px; }
  .business-card-body p { font-size: 14px; }
  .business-icon { width: 50px; height: 50px; }
  .business-icon svg { width: 23px; height: 23px; }
  .capability-card { padding: 26px 22px; border-radius: 10px; }
  .capability-card h4 { font-size: 20px; }
  .capability-card .num { font-size: 34px; margin-bottom: 12px; }
  /* Cards don't lift on touch — no hover state to reveal it */
  .business-card:hover, .capability-card:hover, .media-card:hover {
    transform: none;
  }

  .card-note { padding: 12px 13px; font-size: 12.5px !important; margin-top: 14px !important; }

  /* ── How we work ── */
  .principles-row { gap: 22px; margin-top: 34px; }
  .principle-item { gap: 15px; }
  .principle-marker { width: 38px; height: 38px; font-size: 14px; border-radius: 8px; }
  .principle-item h4 { font-size: 18px; margin-bottom: 6px; }
  .principle-item p { font-size: 14px; }

  /* ── Global reach ── */
  .global-content p { font-size: 15.5px; margin: 20px 0 32px; }
  .global-locations { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
  .global-location { padding: 20px 14px; }
  .global-location-flag { font-size: 26px; }
  .global-location-city { font-size: 16px; }
  .global-location-country { font-size: 10.5px; }

  /* ── Services page ── */
  .service-item { padding: 44px 0; }
  .service-item-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-item-num { font-size: 42px; margin-bottom: 10px; }
  .service-item-icon { width: 56px; height: 56px; margin-bottom: 0; }
  .service-item-icon svg { width: 26px; height: 26px; }
  .service-item h2 { font-size: clamp(26px, 7vw, 32px); }
  .service-item p { font-size: 15px; }
  .service-tagline { font-size: 11.5px; letter-spacing: 0.1em; }
  .service-features { grid-template-columns: 1fr; gap: 4px; margin-top: 20px; }
  .service-feature { font-size: 14px; padding: 7px 0; }
  .exclusive-badge { font-size: 10.5px; padding: 6px 12px; letter-spacing: 0.06em; }

  /* ── Contact ── */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 22px 20px; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  /* 16px prevents iOS Safari auto-zoom on focus */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; padding: 13px 14px; }
  .form-group textarea { min-height: 130px; }
  .contact-info-grid { gap: 14px; }
  .contact-info-card { padding: 22px 20px; }
  .contact-info-card h4 { font-size: 18px; }

  /* ── CTA strip ── */
  .cta-strip { padding: 48px 0; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 22px; }
  .cta-strip h2 { font-size: clamp(23px, 6vw, 28px); }
  .cta-strip p { font-size: 14.5px; }
  .cta-strip-actions { flex-direction: column; gap: 10px; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; }

  /* ── Page headers ── */
  .page-header { padding: 52px 0; }
  .page-header h1 { font-size: clamp(31px, 8vw, 40px); }
  .page-header p { font-size: 15px; }
  .page-header .breadcrumb { font-size: 11px; margin-bottom: 16px; }

  /* ── Legal / long-form content ── */
  .content-block h2 { font-size: clamp(22px, 5.5vw, 28px); margin: 32px 0 12px; }
  .content-block h3 { font-size: 19px; }
  .content-block p, .content-block li { font-size: 15px; line-height: 1.75; }
  .content-block ul { padding-left: 20px; }

  /* ── Footer ── */
  footer { padding: 52px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 30px; }
  .footer-logo-text { font-size: 25px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .footer-col h5 { font-size: 12.5px; margin-bottom: 14px; }
  .footer-col li { margin-bottom: 11px; }
  .footer-col a { font-size: 13.5px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
    font-size: 12px;
  }
  .footer-bottom-links { gap: 18px; }
}

/* ───────── SMALL PHONES (≤480px) ───────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }


  .nav-logo-text { font-size: 22px; }
  .nav-logo-bar { width: 42px; }

  .hero-content { padding: 46px 0 54px; }
  .hero h1 { font-size: clamp(28px, 9vw, 36px); }
  .hero-sub { font-size: 15px; }
  .hero-eyebrow { font-size: 9.5px; padding: 7px 12px; }

  .section-title { font-size: clamp(23px, 7vw, 28px); }

  .stats-grid { gap: 4px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 11px; }

  .business-card-header { padding: 22px 18px 0; }
  .business-card-body { padding: 18px 18px 22px; }
  .capability-card { padding: 22px 18px; }
  .contact-form { padding: 20px 16px; }
  .contact-info-card { padding: 20px 16px; }

  .global-locations { grid-template-columns: 1fr; }
  .footer-columns { display: grid; grid-template-columns: 1fr; gap: 26px; }

  .service-item-num { font-size: 36px; }
  .service-item h2 { font-size: clamp(24px, 8vw, 28px); }
}

/* ───────── LANDSCAPE PHONE ───────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; }
  .hero-content { padding: 40px 0; }
  .hero h1 { font-size: 30px; margin-bottom: 14px; }
  .hero-sub { font-size: 14px; margin-bottom: 20px; }
  .hero-cta { flex-direction: row; }
  .hero-cta .btn { width: auto; }
  .hero-eyebrow { margin-bottom: 16px; }
}

/* ───────── TOUCH DEVICES ───────── */
@media (hover: none) {
  /* Tap targets */
  .nav-menu a, .mobile-menu a, .footer-col a,
  .business-link, .btn { min-height: 44px; }
  .footer-col a { display: inline-block; padding: 3px 0; }

  /* Kill hover-only effects that stick on tap */
  .business-card:hover, .capability-card:hover, .media-card:hover {
    transform: none;
    box-shadow: none;
  }
  .btn:hover, .nav-cta:hover, .btn-primary:hover { transform: none; }
  .business-link:hover { gap: 8px; }
}

/* ───────── REDUCED MOTION ───────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-video-bg { display: none; }
  .hero { background: linear-gradient(135deg, #0a0e1a, #0f172a 50%, #1e293b); }
}

/* ───────── PRINT ───────── */
@media print {
  .nav, .mobile-menu, .hero-video-bg, .cta-strip, .hero-scroll { display: none !important; }
  .hero, .page-header { background: #fff !important; color: #000 !important; padding: 20px 0; }
  .hero h1, .page-header h1, .hero h1 span, .page-header h1 span {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
  }
  .hero-sub, .page-header p { color: #333 !important; }
  body { font-size: 11pt; }
}
