

:root {
  /* Core Colors */
  --navy: #10241C;
  --navy-deep: #0A1813;
  --navy-surface: #163027;
  --navy-card: #1A3A2F;
  --navy-border: rgba(255, 255, 255, 0.08);
  --navy-border-hover: rgba(47, 122, 86, 0.45);

  --charcoal: #1C2A22;
  --charcoal-light: #33463B;
  --slate: #5C6B62;
  --slate-light: #8A978E;
  --slate-subtle: #C9D2CB;

  /* Accents */
  --teal: #1B7A5A;
  --teal-dark: #146348;
  --teal-glow: #3D9B74;
  --teal-soft: #E8F4EE;
  --teal-subtle: rgba(27, 122, 90, 0.12);

  --emerald: #2F7A4F;
  --emerald-dark: #1F5A38;
  --emerald-glow: #5CBA84;
  --emerald-soft: #EAF5EE;

  --cyan: #3A8A7A;
  --amber: #C4A35A;
  --sage: #7A9474;
  --sand: #E8E0D0;

  /* Surfaces & Backgrounds */
  --bg-page: #F6F3EC;
  --bg-page-alt: #EEE8DC;
  --bg-white: #FCFBF7;
  --line: #DDD6C8;
  --line-strong: #C9C0AE;

  /* Radius & Shadows — precise, not playful */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 12px 32px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-card-hover: 0 24px 48px -8px rgba(15, 23, 42, 0.12), 0 8px 20px -4px rgba(15, 23, 42, 0.04);
  --shadow-stack: 0 -24px 60px rgba(10, 17, 32, 0.09);
  --shadow-dark-card: 0 16px 36px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(13, 148, 136, 0.2);

  /* Container */
  --container-max: 1280px;
  --header-height: 76px;
}

/* --------------------------------------
   Base & Reset
-------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: clip;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background-color: var(--bg-page);
  background-image:
    linear-gradient(rgba(16, 36, 28, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 28, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--teal);
  color: #ffffff;
}

/* --------------------------------------
   Typography Hierarchy
-------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Newsreader', 'Plus Jakarta Sans', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.display-hero {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.038em;
  color: var(--navy);
}

.display-section {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.032em;
  color: var(--navy);
}

.display-sub {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.text-lead {
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--slate);
  font-weight: 400;
}

.text-lead-navy {
  color: var(--charcoal-light);
  font-weight: 450;
}

.text-body {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--slate);
}

.text-teal {
  color: var(--teal);
}

/* --------------------------------------
   Layout Container & Sections
-------------------------------------- */
.container-main {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-main {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.section-padding {
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
  position: relative;
}

.section-padding-sm {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
}

.section-dark {
  background:
    radial-gradient(circle at 90% 0%, rgba(61, 155, 116, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(196, 163, 90, 0.1) 0%, transparent 38%),
    var(--navy);
  color: #FFFFFF;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #FFFFFF;
}

.section-dark .text-body, .section-dark .text-lead {
  color: var(--slate-subtle);
}

.section-alt {
  background-color: var(--bg-page-alt);
}

.section-white {
  background-color: var(--bg-white);
}

/* --------------------------------------
   KSHEMA-STYLE STACKING SECTION OVERLAYS
-------------------------------------- */
.stack-section {
  position: relative;
  z-index: 1;
  background-clip: padding-box;
}

.stack-section:first-of-type {
  margin-top: 0;
}

/* Progressive elevation stack */
.stack-section:nth-of-type(1) { z-index: 5; }
.stack-section:nth-of-type(2) { z-index: 10; }
.stack-section:nth-of-type(3) { z-index: 15; }
.stack-section:nth-of-type(4) { z-index: 20; }
.stack-section:nth-of-type(5) { z-index: 25; }
.stack-section:nth-of-type(6) { z-index: 30; }

/* Page Hero Section for Multi-Page Layout */
.page-hero-section {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: clamp(4rem, 6.5vw, 6rem);
  position: relative;
  background:
    radial-gradient(circle at 88% 8%, rgba(27, 122, 90, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(196, 163, 90, 0.1) 0%, transparent 40%),
    var(--bg-page);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 36, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 28, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* --------------------------------------
   Badges & Eyebrows
-------------------------------------- */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--teal-subtle);
  color: var(--teal-dark);
  border: 1px solid rgba(13, 148, 136, 0.2);
  margin-bottom: 1.25rem;
}

.eyebrow-badge-dark {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-glow);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* --------------------------------------
   Buttons
-------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--navy);
  color: #F6F3EC;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  color: #F6F3EC;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.25);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--navy);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------
   Header & Navigation
-------------------------------------- */
.gds-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(246, 243, 236, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, color 300ms ease;
  display: flex;
  align-items: center;
}

.gds-header.is-scrolled {
  background: rgba(252, 251, 247, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(16, 36, 28, 0.06);
}

.gds-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gds-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.gds-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6F3EC;
  font-size: 1.05rem;
  box-shadow: none;
  transition: background-color 200ms ease;
}

.gds-brand:hover .gds-brand-mark {
  transform: scale(1.04);
}

.gds-brand-text {
  display: flex;
  flex-direction: column;
}

.gds-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gds-brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.gds-nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.gds-nav-cta {
  display: flex;
}

.gds-nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color 180ms ease;
  position: relative;
  padding: 0.4rem 0;
}

.gds-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--navy);
  transition: width 200ms ease;
}

.gds-nav-link:hover, .gds-nav-link.is-active {
  color: var(--navy);
}

.gds-nav-link:hover::after, .gds-nav-link.is-active::after {
  width: 100%;
}

.gds-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #FFFFFF;
  color: var(--navy);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gds-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.gds-mobile-menu.hidden,
.gds-menu-toggle .hidden {
  display: none;
}

@media (max-width: 1023px) {
  .gds-nav-links,
  .gds-nav-cta {
    display: none;
  }

  .gds-menu-toggle {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .gds-mobile-menu {
    display: none;
  }
}

.gds-mobile-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.gds-mobile-link:last-of-type {
  border-bottom: none;
}

/* --------------------------------------
   Hero Section
-------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: clamp(4.5rem, 8.5vw, 8rem);
  position: relative;
  background:
    radial-gradient(circle at 86% 12%, rgba(27, 122, 90, 0.14) 0%, transparent 46%),
    radial-gradient(circle at 8% 86%, rgba(196, 163, 90, 0.12) 0%, transparent 42%),
    var(--bg-page);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 36, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 28, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-section > .container-main,
.page-hero-section > .container-main {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero Data & Geospatial Visual Card */
.hero-intel-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(10, 17, 32, 0.35);
  position: relative;
  color: #FFFFFF;
}

.hero-intel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
}

.intel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.intel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-glow);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.intel-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-glow);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.intel-radar-view {
  background: radial-gradient(circle at center, rgba(13, 148, 136, 0.15) 0%, rgba(10, 17, 32, 0.85) 75%),
              #070D18;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.intel-radar-grid {
  position: absolute;
  inset: 0;
  background-size: 24px 24px;
  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);
}

.intel-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.intel-metric-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.intel-metric-label {
  font-size: 0.72rem;
  color: var(--slate-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.intel-metric-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.intel-metric-status {
  font-size: 0.75rem;
  color: var(--teal-glow);
  font-weight: 600;
}

/* --------------------------------------
   Introduction Section
-------------------------------------- */
.intro-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-box {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-page) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-card);
  position: relative;
}

.intro-lead-text {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: -0.015em;
}

/* --------------------------------------
   Core Service Pillars Cards (Snapshot)
-------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 250ms ease;
}

.pillar-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-subtle);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: all 200ms ease;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--teal);
  color: #FFFFFF;
  transform: scale(1.05);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.pillar-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--slate);
  flex-grow: 1;
}

/* --------------------------------------
   Detailed Service Elements
-------------------------------------- */
.service-offers-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.service-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}

.service-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-subtle);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.why-it-matters-card {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(16, 185, 129, 0.08) 100%);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
}

.why-it-matters-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.why-it-matters-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
  font-weight: 500;
}

.service-block {
  max-width: 52rem;
}

.service-block-kicker {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 0.75rem;
  line-height: 1.4;
}

.service-block-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1.75rem;
}

.contact-info-wrap {
  max-width: 44rem;
}

.contact-info-card {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.contact-info-email {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-info-email:hover {
  color: var(--teal-dark);
}

/* Visual Pipeline & Process Diagram */
.process-diagram-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  box-shadow: var(--shadow-dark-card);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.process-diagram-header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-steps-flow {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.process-step-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  transition: all 200ms ease;
}

.process-step-node:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateX(4px);
}

.process-node-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.18);
  color: var(--teal-glow);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-node-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  flex-grow: 1;
}

.process-flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-glow);
  font-size: 0.85rem;
  height: 12px;
}

/* --------------------------------------
   About Us & Mission Cards
-------------------------------------- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 300ms ease;
}

.mission-card-dark {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.mission-card-dark h3, .mission-card-dark h2 {
  color: #FFFFFF;
}

.mission-card-dark p {
  color: var(--slate-subtle);
}

/* What Sets Us Apart */
.apart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .apart-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .apart-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.apart-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.apart-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: var(--shadow-card-hover);
}

.apart-card-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate-subtle);
  margin-bottom: 1rem;
  line-height: 1;
}

.apart-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.apart-card-desc {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}

/* --------------------------------------
   Who We Serve
-------------------------------------- */
.who-serve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .who-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.who-serve-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.who-serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--teal);
}

.who-serve-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.who-serve-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.who-serve-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--slate);
}

/* --------------------------------------
   Why Choose GDS
-------------------------------------- */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all 300ms ease;
}

.why-choose-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-4px);
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.why-choose-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.why-choose-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate-subtle);
}

/* --------------------------------------
   Final CTA Section
-------------------------------------- */
.cta-banner {
  background: radial-gradient(circle at 100% 0%, rgba(13, 148, 136, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
              var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(10, 17, 32, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 1.5rem;
}

.cta-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-glow);
  font-weight: 600;
  font-size: 1rem;
  transition: color 150ms ease;
}

.cta-email-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* --------------------------------------
   Footer
-------------------------------------- */
.gds-footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(61, 155, 116, 0.12) 0%, transparent 36%),
    var(--navy-deep);
  color: var(--slate-subtle);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 50;
}

.gds-footer .gds-brand-name {
  color: #FFFFFF;
}

.gds-footer .gds-brand-mark {
  background: rgba(246, 243, 236, 0.12);
  color: #FFFFFF;
}

.gds-footer-sub {
  color: rgba(246, 243, 236, 0.55);
}

.gds-footer-blurb {
  max-width: 22rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(201, 210, 203, 0.78);
}

.gds-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .gds-footer-top {
    grid-template-columns: 1.2fr 2fr;
  }
}

.gds-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .gds-footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gds-footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.gds-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gds-footer-col a {
  font-size: 0.92rem;
  color: var(--slate-light);
  transition: color 150ms ease;
}

.gds-footer-col a:hover {
  color: var(--teal-glow);
}

.gds-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  font-size: 0.88rem;
  color: var(--slate);
}

@media (min-width: 640px) {
  .gds-footer-bottom {
    flex-direction: row;
  }
}

/* --------------------------------------
   Back to top button
-------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  transition: all 200ms ease;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

/* --------------------------------------
   SCROLL REVEAL (plays once)
-------------------------------------- */
.r-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.r-fade {
  opacity: 0;
  transition: opacity 480ms ease;
}

.r-up.is-in,
.r-fade.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .r-up,
  .r-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------
   Thematic visuals (data / agri / climate)
-------------------------------------- */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-card-hover);
  background: var(--navy);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 19, 0.15) 0%, rgba(10, 24, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(16, 36, 28, 0.2) 0%, transparent 50%);
}

.hero-visual-chart {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(252, 251, 247, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-visual-chart svg {
  width: 100%;
  height: 88px;
}

.hero-visual-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.hero-chip {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid rgba(27, 122, 90, 0.18);
  border-radius: var(--radius-full);
  padding: 0.28rem 0.65rem;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 240px;
  background: var(--navy-surface);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.visual-frame-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 24, 19, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.75rem;
}

.service-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .service-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
  }

  .service-split.is-flip {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .service-split.is-flip .service-split-media {
    order: 2;
  }
}

.service-block {
  max-width: none;
}

.theme-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 160px 160px;
  gap: 0.75rem;
}

.theme-mosaic .visual-frame:first-child {
  grid-row: 1 / span 2;
  min-height: 100%;
}

.theme-mosaic .visual-frame:first-child img {
  min-height: 100%;
}

@media (max-width: 700px) {
  .theme-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.contact-page {
  min-height: calc(100vh - var(--header-height));
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.status-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
}

.status-card {
  max-width: 36rem;
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-card);
}

.status-code {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

/* =========================================================
   PREMIUM EXPERIENCE LAYER
   ========================================================= */
.gds-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
}

.is-home .gds-header {
  background: transparent;
  border-bottom-color: transparent;
}

.is-home .gds-header:not(.is-scrolled) .gds-brand-name,
.is-home .gds-header:not(.is-scrolled) .gds-nav-link {
  color: #F6F3EC;
}

.is-home .gds-header:not(.is-scrolled) .gds-brand-sub,
.is-home .gds-header:not(.is-scrolled) .gds-nav-link {
  color: rgba(246, 243, 236, 0.78);
}

.is-home .gds-header:not(.is-scrolled) .gds-nav-link:hover,
.is-home .gds-header:not(.is-scrolled) .gds-nav-link.is-active {
  color: #F6F3EC;
}

.is-home .gds-header:not(.is-scrolled) .gds-nav-link::after {
  background-color: #C4A35A;
}

.is-home .gds-header:not(.is-scrolled) .gds-menu-toggle {
  background: rgba(246, 243, 236, 0.08);
  border-color: rgba(246, 243, 236, 0.2);
  color: #F6F3EC;
}

.is-home .gds-header.is-scrolled .gds-brand-name {
  color: var(--navy);
}

.is-home .gds-header.is-scrolled .gds-brand-sub {
  color: var(--slate);
}

.is-home .gds-header.is-scrolled .gds-nav-link {
  color: var(--charcoal-light);
}

.hero-cinematic {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 3rem) 0 5.5rem;
  background: var(--navy-deep);
  color: #F6F3EC;
  overflow: hidden;
}

.hero-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.55);
}

.hero-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 243, 236, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 236, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 72%);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
}

.hero-cinematic.has-webgl .hero-stage canvas {
  opacity: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cinematic.has-webgl .hero-fallback {
  opacity: 0;
  pointer-events: none;
}

.hero-cinematic .container-main {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
}

.hero-cinematic .hero-copy {
  max-width: 36rem;
  opacity: 1;
  transform: none;
}

.hero-cinematic .display-hero,
.hero-cinematic .eyebrow-badge {
  color: #F6F3EC;
}

.hero-cinematic .display-hero {
  font-size: clamp(2.15rem, 4.4vw, 3.6rem);
}

.hero-cinematic .eyebrow-badge {
  background: rgba(246, 243, 236, 0.08);
  border-color: rgba(246, 243, 236, 0.18);
}

.hero-cinematic .text-lead {
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  color: rgba(246, 243, 236, 0.78);
}

.hero-readout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  margin-top: 3rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(246, 243, 236, 0.16);
}

.hero-readout span {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
}

.hero-readout b {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F6F3EC;
}

.hero-cinematic .btn-outline-navy {
  color: #F6F3EC;
  border-color: rgba(246, 243, 236, 0.35);
}

.hero-cinematic .btn-outline-navy:hover {
  background: #F6F3EC;
  color: var(--navy);
  border-color: #F6F3EC;
}

.intro-editorial {
  background: var(--bg-page);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.intro-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: center;
}

.intro-editorial .intro-lead-text {
  max-width: 40rem;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.intro-editorial-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 16 / 9;
  background: var(--navy-surface);
}

.intro-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04) sepia(0.08);
}

@media (min-width: 900px) {
  .intro-editorial-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}

.service-stages {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.pillar-index-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.pillar-index-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.pillar-col {
  display: block;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.pillar-col .service-stage-index {
  margin-bottom: 0.85rem;
}

.pillar-col .pillar-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.pillar-col .pillar-desc {
  margin: 0;
  max-width: 22rem;
}

.pillar-col:hover .pillar-title {
  color: var(--teal-dark);
}

@media (min-width: 900px) {
  .pillar-index-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--line-strong);
  }

  .pillar-col {
    padding: 2rem 1.5rem 2.25rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .pillar-col:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .pillar-col:first-child {
    padding-left: 0;
  }

  .pillar-col + .pillar-col {
    padding-left: 1.75rem;
  }
}

.gds-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.gds-domain {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(252, 251, 247, 0.8);
  padding: 0.4rem 0.7rem;
}

.service-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(252, 251, 247, 0.86);
  border: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 350ms ease, background-color 350ms ease;
}

@media (min-width: 860px) {
  .service-stage {
    grid-template-columns: 220px 1fr;
    min-height: 168px;
  }
}

.service-stage:hover {
  border-color: rgba(16, 36, 28, 0.35);
  background: var(--bg-white);
}

.service-stage-viz {
  position: relative;
  min-height: 148px;
  background: var(--navy-deep);
}

.service-stage-viz canvas {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 148px;
}

.service-stage-copy {
  padding: 1.6rem 1.75rem;
}

.service-stage-index {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-dark);
  margin-bottom: 0.45rem;
}

.service-stage-copy .pillar-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
  transition: transform 280ms ease;
}

.service-stage:hover .service-stage-copy .pillar-title {
  transform: translateX(3px);
}

.editorial-page {
  padding-top: calc(var(--header-height) + 4.5rem);
}

.editorial-measure {
  max-width: 38rem;
}

.editorial-hero-head {
  max-width: 46rem;
  margin-bottom: 3.5rem;
}

.editorial-bleed {
  position: relative;
  margin: 0 0 5rem;
  overflow: hidden;
  height: clamp(280px, 42vw, 520px);
}

.editorial-bleed img,
.service-media-stack img,
.visual-frame img {
  filter: saturate(0.72) contrast(1.04) sepia(0.08);
}

.editorial-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.editorial-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 860px) {
  .editorial-pair {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.editorial-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.apart-list {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.apart-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.apart-row-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
  font-weight: 700;
}

.serve-editorial {
  display: grid;
  gap: 2.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .serve-editorial {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.serve-editorial h3 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.why-page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 0;
  background: var(--bg-page);
}

.why-page-hero .editorial-bleed {
  margin-bottom: 0;
}

.why-sequence-wrap {
  background: var(--bg-page);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.why-sequence {
  position: relative;
  max-width: 46rem;
}

.why-sequence-rail {
  position: absolute;
  left: 1.15rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--line);
}

.why-sequence-progress {
  width: 100%;
  height: 0;
  background: var(--teal);
  transform-origin: top;
  transition: height 400ms ease;
}

.why-step {
  position: relative;
  padding: 0 0 3.25rem 4.25rem;
  opacity: 0.38;
  transition: opacity 450ms ease;
}

.why-step:last-child {
  padding-bottom: 0;
}

.why-step.is-active {
  opacity: 1;
}

.why-step-num {
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--slate);
  background: var(--bg-page);
  padding: 0.15rem 0;
  transition: color 350ms ease;
}

.why-step.is-active .why-step-num {
  color: var(--teal-dark);
}

.why-step h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 0.65rem;
}

.why-step p {
  max-width: 34rem;
}

.contact-closing {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(27, 122, 90, 0.08) 0%, transparent 40%),
    var(--bg-page);
  padding: calc(var(--header-height) + 3rem) 0 5rem;
}

.contact-closing .display-section {
  max-width: 18ch;
}

.contact-closing .text-lead {
  max-width: 36rem;
  margin-top: 1.5rem;
}

.contact-email-xl {
  display: inline-block;
  margin-top: 3rem;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  border-bottom: 1px solid rgba(16, 36, 28, 0.2);
  padding-bottom: 0.15rem;
  transition: color 280ms ease, border-color 280ms ease;
}

.contact-email-xl:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.service-media-stack {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--navy-deep);
}

.service-media-stack img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.38;
  transition: opacity 400ms ease, transform 800ms ease;
}

.service-split:hover .service-media-stack img {
  opacity: 0.22;
  transform: scale(1.03);
}

.service-media-stack canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic .hero-copy,
  .service-stage,
  .service-stage-copy .pillar-title,
  .service-media-stack img {
    transition: none;
    transform: none;
  }

  .hero-cinematic .hero-copy {
    opacity: 1;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
