/* ── base.css ── */
/* ═══════════════════════════════════════════════════════════════════════════
   BASE — CSS reset, design tokens (:root variables), font declarations.
   Cross-device compatibility (100dvh, tap highlights, text-size-adjust).
   Edit here to change global colour tokens, spacing scale, or font stack.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

:root {
  --blue:      #326BCD;
  --blue-dark: #326BCD;
  --blue-mid:  #1a2a2b;
  --blue-lt:   #e8f0f8;
  --blue-xl:   #f4f6fb;
  --ink:       #0d1a1b;
  --ink-60:    rgba(50,107,205,0.6);
  --ink-35:    rgba(50,107,205,0.35);
  --ink-12:    rgba(50,107,205,0.08);
  --white:     #ffffff;
  --off:       #f2f5f5;
  --border:    #d0d8e8;
  --accent:    #326BCD;
  --nav-h:     80px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}


/* ── Hamburger button ──────────────────────── */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 500;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger svg {
  display: block;
  width: 24px;
  height: 18px;
  pointer-events: none;
}
/* Legacy span support (fallback) */
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
/* Hide hamburger on wide screens, force show on mobile */
@media (min-width: 901px) { .nav-hamburger { display: none !important; } }
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 600 !important;
  }
}


/* ── CROSS-DEVICE COMPATIBILITY ─────────────────────────── */

/* Hide custom cursor only when NO fine pointer (mouse/trackpad) is available.
   (any-pointer: fine) is true if a mouse is connected even on hybrid touch devices
   like Surface Pro or iPad with Bluetooth mouse. */
@media not (any-pointer: fine) {
  .cursor, .cursor-ring { display: none !important; }
}

/* 100dvh progressive enhancement — fixes iOS Safari address-bar clipping. */
@supports (height: 100dvh) {
  .card,
  #whatwedo,
  .wds-section,
  .proj-inner { height: 100dvh; }
  .proj-banner { min-height: 100dvh; height: auto; }
}

/* Momentum scrolling on iOS for scroll containers */
#whatwedo,
.proj-inner,
.wds-content-panel {
  -webkit-overflow-scrolling: touch;
}

/* Prevent text size inflation on orientation change (iOS/Android) */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Tap highlight removal on interactive elements (Android/iOS) */
a, button, [onclick], .card-cta, .dot, .nav-hamburger, .home-wwd-cta {
  -webkit-tap-highlight-color: transparent;
}
/* ── END CROSS-DEVICE COMPATIBILITY ──────────────────────── */




/* ── nav.css ── */
/* ═══════════════════════════════════════════════════════════════════════════
   NAV — Fixed top navbar, desktop dropdown menus, Book CTA button.
         Hamburger button, mobile full-screen overlay.
   Edit here for any navigation or header styling.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────── */
.nav-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 48px;
  gap: 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav-top.scrolled {
  background: #0B0B0D;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-top.page-blue {
  background: linear-gradient(120deg, #0B0B0D 0%, #326BCD 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; margin-right: 48px;
  cursor: pointer;
}
.nav-logo-mark {
  width: 52px; height: 52px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; color: #ffffff;
}
.nav-logo-text span { color: #ffffff; }

.nav-links {
  display: flex; align-items: center; flex: 1; height: 100%;
  list-style: none; gap: 0;
}
.nav-links > li {
  height: 100%; display: flex; align-items: center;
  position: relative;
}
.nav-links > li > a, .nav-links > li > button {
  display: flex; align-items: center; gap: 5px;
  height: 100%; padding: 0 18px;
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85);
  text-decoration: none; background: none; border: none; cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.nav-links > li > a::after, .nav-links > li > button::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: #88AB3C;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links > li:hover > a, .nav-links > li:hover > button { color: #88AB3C; }
.nav-links > li:hover > a::after, .nav-links > li:hover > button::after { transform: scaleX(1); }

.nav-chevron { font-size: 0.6rem; opacity: 0.5; transition: transform 0.2s; }
.nav-links > li:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  min-width: 280px;
  background: #0d1117;
  border: 1px solid rgba(50,107,205,0.25);
  border-top: 3px solid #326BCD;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 8px 0 12px;
  z-index: 300;
  border-radius: 0 0 8px 8px;
}
.nav-links > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 24px;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
  letter-spacing: 0.01em;
  position: relative;
}
.nav-dropdown a::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: #326BCD; flex-shrink: 0;
  opacity: 0; transition: opacity 0.15s;
}
.nav-dropdown a:hover {
  background: rgba(50,107,205,0.12);
  color: #ffffff;
  border-left-color: #88AB3C;
  padding-left: 20px;
}
.nav-dropdown a:hover::before { opacity: 1; }

.nav-dropdown-label {
  padding: 12px 24px 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #326BCD;
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.nav-dropdown-label::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(50,107,205,0.25);
}
/* Thin separator between label groups */
.nav-dropdown hr {
  border: none; border-top: 1px solid rgba(255,255,255,0.06);
  margin: 6px 0;
}

.nav-right {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.btn-nav-ghost {
  font-size: 0.84rem; font-weight: 600; color: #326BCD;
  background: none; border: 1.5px solid #326BCD;
  padding: 8px 20px; cursor: pointer;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
  border-radius: 2px;
}
.btn-nav-ghost:hover { background: #1a2a2b; color: white; }
.btn-nav-solid {
  font-size: 0.84rem; font-weight: 600; color: white;
  background: #1a2a2b; border: 1.5px solid var(--blue);
  padding: 8px 20px; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
  border-radius: 2px;
}
.btn-nav-solid:hover { background: #88AB3C; border-color: #88AB3C; }


/* ── Mobile full-screen nav overlay ─────────── */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: #0B0B0D;
  z-index: 450;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  overflow-y: auto;
  /* Safari iOS fix: transforms do not move the hit-test area.
     Must disable pointer-events when off-screen or it blocks all taps. */
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateX(0);
  pointer-events: all;
}
.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  cursor: pointer;
}
.nav-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile-links a {
  display: block;
  padding: 20px 0;
  color: #fff;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-mobile-links a:hover { color: #88AB3C; }
.btn-mobile-cta {
  margin-top: 32px;
  background: #88AB3C !important;
  color: #fff !important;
  padding: 16px 0 !important;
  text-align: center;
  border-radius: 4px;
  letter-spacing: 0.1em !important;
}

/* ── Responsive overrides ───────────────────── */
@media (max-width: 900px) {
  /* ── NAV: transparent at top, solid when scrolled — same as desktop ── */
  .nav-top {
    padding: 0 20px !important;
  }
  .nav-top.scrolled {
    background: #0B0B0D !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5) !important;
  }
  .nav-links { display: none !important; }
  .nav-right { display: none !important; }
  .nav-hamburger { display: flex !important; }

  /* ── LAYOUT ── */
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { min-height: 80vh; padding: 80px 24px 60px; }
  .hero-body { max-width: 100%; }
  .home-mission { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 32px; }
  .cap-strip { grid-template-columns: repeat(2, 1fr); }
  .engage-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-side { display: none; }
  .wd-intro-inner { grid-template-columns: 1fr; }
  .wd-feature-row { flex-direction: column; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { display: none; }
}
@media (max-width: 680px) {
  .engage-grid { grid-template-columns: 1fr; }
  .cap-strip { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 16px 60px; }
  .hero-left h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .home-mission-left h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .wd-hero-headline { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .services-hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .page-banner h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .cta-full h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cta-full .cta-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .cta-full .cta-actions a, .cta-full .cta-actions button { text-align: center; width: 100%; }
}



/* ── shared.css ── */
/* ═══════════════════════════════════════════════════════════════════════════
   SHARED — Elements used across more than one page:
   page container defaults (.page), buttons, capability strip, section chrome,
   CTA banners, page-banner headers, footer, toast notification.
   Global responsive overrides at the bottom.
   Edit here only for shared/reused components.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   PAGES — multi-page architecture
──────────────────────────────────────────── */
/* Pages that have their own full-bleed hero/header start at the very top */
#home, #services, #contact, #whatwedo,
#privacy-policy, #terms-of-use, #cookie-policy { padding-top: 0; }
/* Pages without a full-bleed hero need space below the fixed navbar */
#projects, #attributions { padding-top: var(--nav-h); }


/* ────────────────────────────────────────────
   CAPABILITY STRIP
──────────────────────────────────────────── */
.cap-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(13,26,27,0.08);
  border-bottom: 1px solid rgba(13,26,27,0.08);
  background: #fff;
}
.cap-strip-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(13,26,27,0.08);
  display: flex; flex-direction: row; align-items: center;
  gap: 16px;
  cursor: pointer; transition: background 0.2s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.cap-strip-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, #326BCD, #88AB3C);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.cap-strip-item:last-child { border-right: none; }
.cap-strip-item:hover { background: #f5f8ff; }
.cap-strip-item:hover::after { transform: scaleX(1); }
.cap-strip-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #eef3f3;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.cap-strip-item:hover .cap-strip-icon-wrap {
  background: #dde8ff;
  transform: scale(1.08);
}
.cap-strip-img {
  width: 26px; height: 26px;
  object-fit: contain; display: block;
}
.cap-strip-content { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.cap-strip-title { font-weight: 700; font-size: 0.88rem; color: #0d1a1b; line-height: 1.3; }
.cap-strip-link {
  font-size: 0.72rem; font-weight: 600; color: #326BCD;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none; letter-spacing: 0.01em;
}
.cap-strip-link .arr { transition: transform 0.2s; font-size: 0.85rem; }
.cap-strip-item:hover .cap-strip-link .arr { transform: translateX(4px); }
.cap-strip-sub { display: none; }

/* ────────────────────────────────────────────
   SECTION CHROME
──────────────────────────────────────────── */
.section { padding: 88px 80px; }
.section.alt { background: #f2f5f5; }
.section.dark { background: #1a2a2b; color: white; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #326BCD; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #88AB3C; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px;
}
.section-title em { font-style: normal; color: #88AB3C; }
.dark .section-title em { color: #326BCD; }
.section-sub {
  font-size: 1rem; color: var(--ink-60); line-height: 1.75;
  max-width: 600px; margin-bottom: 52px;
}
.dark .section-sub { color: rgba(255,255,255,0.6); }


/* ────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────── */
.cta-full {
  background: linear-gradient(110deg, #0d1a1b 0%, #326BCD 100%);
  padding: 80px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  position: relative; overflow: hidden;
}
.cta-full::before {
  content: '';
  position: absolute; right: -60px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-full::after {
  content: '';
  position: absolute; right: 40px; top: -20px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.cta-full-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700;
  color: white; margin-bottom: 12px; letter-spacing: -0.02em;
}
.cta-full-sub { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.btn-cta-white {
  font-size: 0.875rem; font-weight: 700; color: var(--blue);
  background: white; border: none;
  padding: 16px 36px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}
.btn-cta-white:hover { background: #e8f0ff; transform: translateY(-2px); }

/* ────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(120deg, #0B0B0D 0%, #326BCD 100%);
  padding: 80px 80px 72px;
  position: relative; overflow: hidden;
}
.page-banner::before { display: none; }
.page-banner::after  { display: none; }
.page-banner-logo {
  position: absolute;
  right: -60px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px;
  opacity: 0.18;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.page-banner-logo img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.page-banner-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.page-banner-eyebrow::before { content: ''; width: 20px; height: 1px; background: #5b9cff; }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700;
  color: white; letter-spacing: -0.02em; line-height: 1.1; max-width: 700px;
}
.page-banner h1 em { font-style: normal; color: #88AB3C; }
.page-banner p {
  margin-top: 20px; font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 560px;
}

/* About two-col intro */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-split-left .lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700; line-height: 1.4;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 28px;
}
.about-split-left .lead em { font-style: normal; color: var(--blue); }
.about-split p { font-size: 0.95rem; color: var(--ink-60); line-height: 1.8; margin-bottom: 18px; }

.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid #d0d8e8; margin-top: 52px;
}
.value-card {
  padding: 36px; border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: #eef3f3; }
.value-icon { font-size: 1.6rem; margin-bottom: 14px; }
.value-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 8px; }
.value-body { font-size: 0.82rem; color: var(--ink-60); line-height: 1.65; }


/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer {
  background: #0B0B0D;
  padding: 60px 80px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 48px; height: 48px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 0; flex-shrink: 0;
}
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-logo-name {
  font-weight: 700; font-size: 1rem; color: white;
}
.footer-tagline { font-size: 0.82rem; color: rgba(145,204,217,0.6); line-height: 1.6; }
.footer-col-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col-links { list-style: none; }
.footer-col-links li { margin-bottom: 10px; }
.footer-col-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s; cursor: pointer;
}
.footer-col-links a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: rgba(255,255,255,0.3); text-decoration: none;
  cursor: pointer; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 64px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-geo { display: none; }
  .hero-left { min-height: 80vh; }
  .cap-strip { grid-template-columns: repeat(2, 1fr); }
  .cap-strip-item { padding: 22px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
  .engage-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .clients-grid { grid-template-columns: 1fr; }
  .client-card { border-right: none; border-bottom: 1px solid var(--border); }
  .cta-full { grid-template-columns: 1fr; padding: 56px 40px; }
  /* Single-column grid stretches children by default — opt the button out */
  .cta-full .btn-cta-white { justify-self: center; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--border); }
  /* projects responsive handled above */
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-banner { padding: 100px 40px 60px; }
  .contact-form-area { padding: 48px 40px; }
  .contact-sidebar { padding: 48px 40px; }
}
@media (max-width: 900px) {
  .nav-top { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 680px) {
  .section { padding: 48px 24px; }
  .page-banner { padding: 104px 24px 48px; }
  .cta-full { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 0 0 40px; }
  footer { padding: 48px 24px 24px; }
  .contact-form-area { padding: 36px 24px; }
  .contact-sidebar { padding: 36px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
/* Steps grid single-col breakpoint is handled in home.css at 620px (section-specific) */

/* Animate in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; }

/* ─────────────────────────────────────────── */

/* ── Global pointer cursor ─────────────────── */
a, button, [onclick], .card-cta, .dot, .proj-close, .proj-dot-item,
.nav-hamburger, .nav-mobile-close, .nav-mobile a { cursor: pointer !important; }
.nav-dropdown-label { cursor: default; }

