/* ================================================================
   Shared Site Styles
   Neutral grayscale backbone for all live pages.
   ================================================================ */

:root {
  /* ── Neutral grayscale palette ── */
  --stone-50:  #fafafa;
  --stone-100: #f5f5f5;
  --stone-150: #efefef;
  --stone-200: #e5e5e5;
  --stone-300: #d4d4d4;
  --stone-400: #a3a3a3;
  --stone-500: #737373;
  --stone-600: #525252;
  --stone-700: #404040;
  --stone-800: #262626;
  --stone-900: #0a0a0a;

  /* ── Dark surfaces ── */
  --dark-bg:   #0a0a0a;
  --dark-card: #171717;
  --dark-hover:#262626;
  --dark-line: rgba(255, 255, 255, 0.08);

  /* ── Layout ── */
  --radius-lg:  20px;
  --radius-card:16px;
  --radius-sm:  8px;
  --max-w:      1080px;

  /* ── Shared shadow system ── */
  --shadow-card:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.06);
  --shadow-card-hover:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.07),
    0 24px 56px rgba(0, 0, 0, 0.09);
  --shadow-elevated:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 28px 64px rgba(0, 0, 0, 0.10);
  --shadow-statement:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.10);

}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--stone-900);
  background: var(--stone-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}


/* ── FLOATING NAV ──────────────────────── */

.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: rgba(20, 23, 22, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 8px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}
.site-header.header-hidden {
  transform: translateY(-150%);
}
.site-header a.logo {
  text-decoration: none;
}
.logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}
.logo span { color: #fff; }
.site-header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-header nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s ease;
}
.site-header nav a.active { color: #fff; }
.site-header nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}
.site-header nav a:hover {
  color: #fff;
}
.site-header nav a:not(.active):not(.nav-cta):hover::after {
  transform: scaleX(0.6);
  opacity: 0.5;
}
.site-header nav a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.site-header nav a.nav-cta {
  background: #fff;
  color: var(--stone-900) !important;
  padding: 9px 20px;
  border: 1px solid #fff;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  line-height: 1.2;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.site-header nav a.nav-cta::after { display: none !important; }
.site-header nav a.nav-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--stone-900) !important;
}
.site-header nav a.nav-cta.active {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 0 4px rgba(255, 255, 255, 0.12),
    0 0 16px rgba(255, 255, 255, 0.18);
}

.header-current-page {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.header-hamburger {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.hamburger-bar {
  display: block;
  width: 17px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.header-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(20, 23, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.header-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.header-menu-nav a {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.header-menu-nav a.active,
.header-menu-nav a:hover {
  color: #fff;
}

.header-menu-nav a.disabled {
  pointer-events: none;
  opacity: 0.45;
}


/* ── SHARED ─────────────────────────────── */

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.28s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.36s; }



/* ================================================================
   VP1 — HERO (dark)
   ================================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #484848 0%, #2a2a2a 60%, #151515 100%);
}
.hero-img img, .hero-img video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.32) 40%,
    rgba(10, 10, 10, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 88px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  max-width: 680px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--stone-900);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 15px 34px;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover {
  background: var(--stone-700);
  transform: translateY(-1px);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%;
  width: 1px; height: 100%;
  background: rgba(255, 255, 255, 0.65);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{top:-100%} 100%{top:100%} }


/* ================================================================
   VP2 — EVIDENCE (light)
   Premium split layout:
   left carousel on patterned track + right white narrative panel.
   ================================================================ */

.evidence {
  position: relative;
  background: var(--stone-50);
  min-height: 100svh;
  overflow: hidden;
}

.evidence-layout {
  --evidence-panel-width: clamp(300px, 30vw, 500px);
  --evidence-card-gap: clamp(12px, 1vw, 18px);
  --evidence-left-visible: calc(100vw - var(--evidence-panel-width));
  --evidence-card-width: calc((var(--evidence-left-visible) - (var(--evidence-card-gap) * 3)) / 3.5);
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(92px, 11vh, 130px) 0 clamp(66px, 8vh, 94px);
}

.evidence-media {
  width: 100%;
  position: relative;
  z-index: 1;
}

.evidence-carousel-shell {
  position: relative;
  background: var(--stone-50);
  border-top-right-radius: 34px;
  border-bottom-right-radius: 34px;
  overflow: hidden;
  padding: clamp(20px, 3vh, 30px) 0 clamp(22px, 3vh, 30px);
}

.evidence-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(14px, 2.5vh, 24px) calc(var(--evidence-panel-width) + clamp(24px, 3vw, 42px)) 0 clamp(24px, 3vw, 42px);
}

.evidence-carousel-controls {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.evidence-carousel-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(20, 23, 22, 0.8);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.evidence-carousel-btn:hover {
  background: rgba(56, 56, 56, 0.88);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.evidence-carousel {
  display: flex;
  gap: var(--evidence-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(20px, 3vw, 42px);
  padding:
    clamp(38px, 5vh, 58px)
    calc(var(--evidence-panel-width) + clamp(24px, 3vw, 42px))
    0
    clamp(24px, 3vw, 42px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.evidence-carousel::-webkit-scrollbar {
  display: none;
}

.evidence-carousel .project-card {
  position: relative;
  display: block;
  flex: 0 0 var(--evidence-card-width);
  width: var(--evidence-card-width);
  height: clamp(320px, 50vh, 560px);
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(165deg, #2f3439 0%, #171a1d 100%);
  scroll-snap-align: start;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  cursor: grab;
}
.evidence-carousel .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.38);
  filter: saturate(1.08);
}
.evidence-carousel.is-grabbing,
.evidence-carousel.is-grabbing .project-card {
  cursor: grabbing;
}
.evidence-carousel.is-grabbing .project-card {
  pointer-events: none;
}
.evidence-carousel.is-grabbing {
  /* Disable native scroll snap while the user is actively dragging so
     the movement feels continuous; snapping is handled manually on release. */
  scroll-snap-type: none;
}

.evidence-carousel .project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.evidence-carousel .project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 23, 22, 0.92) 0%,
    rgba(20, 23, 22, 0.24) 58%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 26px;
}
.card-type {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
}
.card-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.evidence-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--stone-900);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.evidence-link:hover {
  color: var(--stone-700);
  gap: 12px;
}

.evidence-panel {
  position: absolute;
  top: 10%;
  right: 0;
  width: var(--evidence-panel-width);
  height: 80%;
  z-index: 5;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: transparent;
}

.evidence-panel-inner {
  width: calc(100% - clamp(12px, 1.6vw, 24px));
  height: 100%;
  background: var(--stone-50);
  border-radius: 30px 0 0 30px;
  box-shadow:
    -22px 0 42px rgba(0, 0, 0, 0.16),
    -1px 0 0 rgba(255, 255, 255, 0.55) inset;
  padding: clamp(36px, 5vh, 62px) clamp(24px, 2.8vw, 42px);
  display: flex;
  align-items: center;
}

.evidence-narrative {
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.36;
  color: var(--stone-600);
  margin: 0;
}
.evidence-narrative strong {
  color: var(--stone-900);
  font-weight: 700;
}

/* ================================================================
   VALUE MESSAGE SECTION
   Big outlined message card with pattern background.
   Visually straddles section boundary: ~70% above / ~30% below.
   ================================================================ */

.value-message-section {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(52px, 7vh, 84px) 24px clamp(42px, 6vh, 68px);
  background: linear-gradient(
    to bottom,
    var(--stone-50) 0%,
    #f4f4f4 14%,
    #f0f0f0 30%,
    #f0f0f0 100%
  );
}

.value-message-wrap {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-message-container {
  position: relative;
  width: 100%;
  border: 2px solid var(--stone-300);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-statement);
  background: linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86));
  padding: clamp(42px, 6vw, 64px) clamp(26px, 5vw, 56px);
}

.value-message-text {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stone-900);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.value-message-text .value-teal { font-weight: 800; }

.value-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--stone-900);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.value-cta:hover {
  color: var(--stone-700);
  gap: 12px;
}



/* ================================================================
  VP3 — CAPABILITIES (light)
  White cards, dark text, shared shadow system.
  ================================================================ */

.capabilities {
  position: relative;
  background: var(--stone-50);
}

.cap-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 32px;
}

.cap-narrative {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--stone-500);
  max-width: 600px;
  margin-bottom: 52px;
}
.cap-narrative strong {
  color: var(--stone-900);
  font-weight: 700;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cap-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.cap-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--stone-300);
}
.cap-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--stone-400);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}
.cap-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.cap-card p {
  font-size: 14px;
  color: var(--stone-500);
  line-height: 1.6;
}

.cap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stone-900);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.cap-link:hover {
  color: var(--stone-700);
  gap: 12px;
}


/* ================================================================
  VP4 — CTA (light)
  Segmented routing with white cards and dark text.
  ================================================================ */

.cta-section {
  position: relative;
  background: var(--stone-50);
}

.cta-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 32px;
}

.cta-narrative {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--stone-500);
  text-align: center;
  margin-bottom: 52px;
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seg-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.seg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--stone-300);
}
.seg-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--stone-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.seg-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--stone-900);
  margin-bottom: 10px;
}
.seg-card p {
  font-size: 14px;
  color: var(--stone-500);
  line-height: 1.6;
  flex: 1;
}
.seg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--stone-900);
  transition: gap 0.2s;
}
.seg-card:hover .seg-btn {
  gap: 12px;
  color: var(--stone-900);
}

/* ── Shared Pre-footer CTA (homepage + detail pages) ── */
.cta-close {
  position: relative;
  background: var(--dark-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  margin: 0 16px 16px;
  padding: clamp(56px, 8vh, 88px) 32px;
  text-align: center;
}
.cta-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 55%, rgba(255, 255, 255, 0.06), transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 40%, rgba(255, 255, 255, 0.03), transparent 60%);
  pointer-events: none;
}
.cta-close::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  pointer-events: none;
}
.cta-close-inner {
  position: relative;
  z-index: 1;
}
.cta-close-text {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-close-sub {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 32px;
}
.cta-close .btn-primary {
  min-width: 220px;
}
.cta-close--inset {
  margin: 40px 0 0;
}


/* ── FOOTER ─────────────────────────────── */

/* ── Shared site footer ── */
.site-footer {
  background: var(--dark-bg);
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fafafa;
  transition: color 0.3s;
}

.footer-logo:hover {
  color: #fff;
}

.footer-logo span {
  color: inherit;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 250, 250, 0.7);
  max-width: 280px;
  line-height: 1.55;
}

.footer-contact-block {
  margin-top: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-decoration: none;
  color: #fafafa;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: #fafafa;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.3s;
}

.footer-contact-item:hover svg {
  stroke: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  fill: currentColor;
}

.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(250, 250, 250, 0.6);
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-group a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fafafa;
  transition: color 0.3s;
}

.footer-nav-group a:hover {
  color: #fff;
}

.footer-divider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-divider-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-area {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.5);
}


/* ── STICKY PHONE ──────────────────────── */

.phone-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--stone-900);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
  transition: background 0.25s, transform 0.25s;
}
.phone-sticky:hover {
  background: var(--stone-700);
  transform: translateY(-2px);
}
.phone-sticky svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}


/* ── RESPONSIVE ─────────────────────────── */

/* Tablet */
@media (max-width: 980px) {
  .cap-grid,
  .cap-row-2,
  .seg-grid {
    grid-template-columns: 1fr;
  }
  .evidence {
    min-height: auto;
  }

  .evidence-layout {
    --evidence-panel-width: 100%;
    --evidence-left-visible: 100vw;
    --evidence-card-width: min(66vw, 360px);
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 72px 0 64px;
  }

  .evidence-panel {
    position: relative;
    width: 100%;
    height: auto;
    order: 1;
    box-shadow: none;
    border-bottom: none;
  }

  .evidence-media {
    order: 2;
  }

  .evidence-panel-inner {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border-bottom: none;
    padding: 0 20px 14px;
  }

  .evidence-narrative {
    max-width: 760px;
    font-size: clamp(24px, 4.8vw, 31px);
  }

  .evidence-carousel-shell {
    padding: 12px 0 18px;
  }

  .evidence-carousel {
    padding: 18px 20px 0 20px;
  }

  .evidence-carousel-footer {
    padding: 10px 20px 0 20px;
  }

  .value-message-section {
    margin: 0;
    padding: clamp(34px, 6vh, 54px) 20px clamp(30px, 5vh, 44px);
  }

  .value-message-container {
    padding: clamp(30px, 6vw, 44px) clamp(18px, 4vw, 28px);
  }

}

@media (max-width: 768px) {
  .site-header {
    top: 10px; left: 10px; right: 10px;
    padding: 12px 18px;
    gap: 10px;
  }

  .header-nav {
    display: none !important;
  }

  .header-current-page {
    display: block !important;
    flex: 1;
    font-size: 13px;
    text-align: center;
    color: #fff;
  }

  .header-hamburger {
    display: inline-flex !important;
    flex: 0 0 auto;
  }

  .header-menu-overlay {
    display: flex !important;
  }

  .header-menu-nav .nav-cta {
    margin-top: 8px;
    padding: 10px 24px;
  }

  .inner, .cap-inner, .cta-inner { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 0 20px 64px; }
  .evidence-layout {
    --evidence-card-width: min(78vw, 320px);
  }

  .evidence-carousel-controls {
    justify-content: flex-end;
  }

  .evidence-carousel-footer {
    padding-top: 8px;
  }

  .evidence-carousel .project-card {
    height: clamp(300px, 46vh, 440px);
  }

  .value-message-section {
    margin: 0;
    padding: 26px 14px 24px;
  }

  .value-message-text {
    font-size: clamp(24px, 8vw, 34px);
  }

  .cta-close {
    margin: 0 10px 10px;
    padding: 48px 20px;
  }
  .cta-close--inset {
    margin: 32px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px 32px;
  }

  .footer-divider {
    padding: 0 20px;
  }

  .footer-bottom {
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── FOCUS-VISIBLE ────────────────────────── */
*:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.4);
  outline-offset: 2px;
}

/* ── PREFERS 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;
  }
}
