/* ============================================================
   PRAXIS Management Consultancy — Global Stylesheet
   style.css  |  v1.0
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:       #1B2A4A;
  --midnight:   #0F1A2E;
  --sand:       #C4A87C;
  --copper:     #B87333;
  --amber:      #D4943A;
  --warm-white: #F7F5F0;
  --stone:      #E8E2D8;

  /* Text */
  --text-primary:   #2D2D2D;
  --text-secondary: #5A5A5A;
  --text-light:     #9A9490;

  /* Spacing scale */
  --space-xs:  0.5rem;    /*  8px */
  --space-sm:  1rem;      /* 16px */
  --space-md:  1.5rem;    /* 24px */
  --space-lg:  2.5rem;    /* 40px */
  --space-xl:  4rem;      /* 64px */
  --space-2xl: 6rem;      /* 96px */
  --space-3xl: 8rem;      /* 128px */

  /* Layout */
  --container-max: 1280px;
  --container-pad: 1.5rem;

  /* Nav */
  --nav-height: 72px;
  --util-bar-height: 38px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15, 26, 46, 0.08);
  --shadow-md:  0 4px 16px rgba(15, 26, 46, 0.10);
  --shadow-lg:  0 8px 32px rgba(15, 26, 46, 0.14);
  --shadow-nav: 0 2px 12px rgba(15, 26, 46, 0.12);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--amber);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

/* ── Typography Scale ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
}

h4 {
  font-size: 1.3rem;
  font-weight: 500;
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  max-width: 68ch;
  color: var(--text-secondary);
}

p + p {
  margin-top: 1rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-2xl);
}

.section--sm {
  padding-block: var(--space-xl);
}

.section--lg {
  padding-block: var(--space-3xl);
}

/* Background variants */
.bg-white      { background-color: #FFFFFF; }
.bg-warm-white { background-color: var(--warm-white); }
.bg-stone      { background-color: var(--stone); }
.bg-navy       { background-color: var(--navy); }
.bg-midnight   { background-color: var(--midnight); }

/* Text color overrides for dark backgrounds */
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-midnight h1, .bg-midnight h2, .bg-midnight h3, .bg-midnight h4 {
  color: #FFFFFF;
}

.bg-navy p, .bg-midnight p {
  color: rgba(255, 255, 255, 0.72);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

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

/* Flex helpers */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap   { flex-wrap: wrap; }
.gap-sm      { gap: var(--space-sm); }
.gap-md      { gap: var(--space-md); }
.gap-lg      { gap: var(--space-lg); }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--copper);
  vertical-align: middle;
  margin-right: 8px;
}

/* ── Top Utility Bar ──────────────────────────────────────── */
.util-bar {
  background-color: var(--midnight);
  height: var(--util-bar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.util-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.util-bar__items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.util-bar__item {
  font-family: 'Inter', sans-serif;
  font-size: 0.765rem;
  color: var(--sand);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.util-bar__item a {
  color: var(--sand);
  transition: color var(--t-fast);
}

.util-bar__item a:hover {
  color: #FFFFFF;
}

.util-bar__separator {
  color: rgba(196, 168, 124, 0.35);
  font-size: 0.6rem;
  user-select: none;
}

.util-bar__arabic {
  font-size: 0.8rem;
  color: rgba(196, 168, 124, 0.65);
  letter-spacing: 0.02em;
  direction: rtl;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  height: var(--nav-height);
  border-bottom: 1px solid var(--stone);
  transition: box-shadow var(--t-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-nav);
  border-bottom-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Logo */
.nav__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo:hover {
  color: var(--navy);
}

.nav__logo span {
  color: var(--copper);
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background-color var(--t-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--navy);
  background-color: var(--warm-white);
}

/* Dropdown trigger */
.nav__dropdown-wrap {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-trigger .caret {
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast);
  opacity: 0.55;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav__dropdown-wrap:hover .caret {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--t-base), transform var(--t-base);
}

/* Invisible bridge between trigger and dropdown — keeps hover alive
   when the cursor crosses the 8px gap on its way to an item. */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: background-color var(--t-fast), color var(--t-fast);
}

.nav__dropdown-item:hover {
  background-color: var(--warm-white);
  color: var(--copper);
}

/* Nav CTA */
.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background-color var(--t-fast);
}

.nav__hamburger:hover {
  background-color: var(--warm-white);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--util-bar-height) + var(--nav-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 99;
  padding: var(--space-md);
  overflow-y: auto;
  border-top: 1px solid var(--stone);
}

.nav__mobile.open {
  display: block;
}

.nav__mobile-link {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--stone);
  transition: color var(--t-fast);
}

.nav__mobile-link:hover {
  color: var(--copper);
}

.nav__mobile-sub {
  padding-left: 1rem;
  padding-block: 0.25rem;
}

.nav__mobile-sub .nav__mobile-link {
  font-size: 0.94rem;
  color: var(--text-secondary);
  border-bottom-color: transparent;
  padding-block: 0.5rem;
}

.nav__mobile-cta {
  margin-top: var(--space-md);
}

@media (min-width: 1024px) {
  .nav__links   { display: flex; }
  .nav__hamburger { display: none; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — copper */
.btn--primary {
  background-color: var(--copper);
  color: #FFFFFF;
  border-color: var(--copper);
}

.btn--primary:hover {
  background-color: var(--amber);
  border-color: var(--amber);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(184, 115, 51, 0.35);
}

/* Secondary — navy outline */
.btn--secondary {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background-color: var(--navy);
  color: #FFFFFF;
}

/* Secondary on dark bg */
.btn--secondary-light {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--secondary-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* Ghost — copper text, no bg */
.btn--ghost {
  background: none;
  color: var(--copper);
  border-color: transparent;
  padding-inline: 0;
}

.btn--ghost:hover {
  color: var(--amber);
  transform: none;
}

.btn--ghost .arrow {
  transition: transform var(--t-fast);
}

.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* Size variants */
.btn--sm {
  font-size: 0.82rem;
  padding: 0.5rem 1.25rem;
}

.btn--lg {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

/* ── Placeholder Image Blocks ─────────────────────────────── */
.placeholder-img {
  background-color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.placeholder-img__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  padding: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Aspect ratios */
.aspect-3-2  { aspect-ratio: 3 / 2; }
.aspect-4-3  { aspect-ratio: 4 / 3; }
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-1-1  { aspect-ratio: 1 / 1; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.card__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.625rem;
}

.card__title {
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: none;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper);
  transition: gap var(--t-fast), color var(--t-fast);
}

.card__link:hover {
  gap: 10px;
  color: var(--amber);
}

.card__link .arrow {
  font-size: 1rem;
  line-height: 1;
}

/* Industry card — image fills top */
.industry-card .placeholder-img {
  width: 100%;
}

/* ── Feature / Service Columns ────────────────────────────── */
.feature {
  padding: var(--space-md);
}

.feature__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--stone);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}

.feature__title {
  margin-bottom: 0.625rem;
  font-size: 1.1rem;
}

.feature__text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  max-width: none;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--container-pad);
  max-width: calc(var(--container-max) / 2 + var(--container-pad));
  margin-inline: auto;
  width: 100%;
}

.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.hero__overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--copper);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.hero__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--sand);
  flex-shrink: 0;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image .placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 55fr 45fr;
  }

  .hero__content {
    max-width: none;
    padding: var(--space-lg) var(--space-xl) var(--space-lg) calc((100vw - var(--container-max)) / 2 + var(--container-pad));
    padding-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  }

  .hero__image .placeholder-img {
    min-height: 100%;
  }
}

/* ── Case Study / Split Sections ──────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
}

.split-section__content {
  padding: var(--space-xl) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section__image {
  min-height: 320px;
  overflow: hidden;
}

.split-section__image .placeholder-img {
  width: 100%;
  height: 100%;
}

.split-section__bullets {
  list-style: none;
  margin-block: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-section__bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.split-section__bullet-icon {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--sand);
  margin-top: 0.55rem;
}

.split-section__bullet strong {
  color: #FFFFFF;
  font-weight: 600;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 60fr 40fr;
  }

  .split-section__content {
    padding: var(--space-xl) var(--space-xl);
    padding-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  }

  .split-section--reverse {
    direction: rtl;
  }

  .split-section--reverse > * {
    direction: ltr;
  }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  padding-block: var(--space-lg);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.trust-bar__item::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--sand);
  flex-shrink: 0;
}

/* ── "Built Not Advised" / Service Columns ────────────────── */
.services-section__header {
  max-width: 620px;
  margin-bottom: var(--space-xl);
}

.services-section__header p {
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 56ch;
}

.service-col {
  padding: var(--space-md);
  border-left: 2px solid var(--stone);
  transition: border-color var(--t-base);
}

.service-col:hover {
  border-color: var(--copper);
}

.service-col__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.service-col__title {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.service-col__text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  max-width: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background-color: var(--midnight);
  padding-top: var(--space-2xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl) var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo span {
  color: var(--copper);
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 28ch;
  line-height: 1.6;
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
  line-height: 1.5;
}

.footer__link:hover {
  color: #FFFFFF;
}

.footer__contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--sand);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}

.footer__contact-item a:hover {
  color: #FFFFFF;
}

.footer__bottom {
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--t-fast);
}

.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background-color: var(--stone);
  border: none;
}

.divider--sand {
  background-color: var(--sand);
  height: 2px;
  width: 48px;
  margin-bottom: var(--space-md);
  border: none;
}

/* ── Stat Blocks ──────────────────────────────────────────── */
.stat {
  text-align: center;
  padding: var(--space-md);
}

.stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat__label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 20ch;
  margin-inline: auto;
}

/* ── Scroll Fade-In Animations ────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }

/* ── Utility classes ──────────────────────────────────────── */
.text-copper  { color: var(--copper) !important; }
.text-sand    { color: var(--sand) !important; }
.text-navy    { color: var(--navy) !important; }
.text-white   { color: #FFFFFF !important; }
.text-muted   { color: var(--text-secondary) !important; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Section accent border ────────────────────────────────── */
.accent-border-top {
  border-top: 3px solid var(--sand);
}

.accent-border-left {
  border-left: 3px solid var(--copper);
  padding-left: 1.25rem;
}

/* ============================================================
   MOBILE LAYOUT  (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* ── Utility bar: stack or simplify ────────────────────── */
  .util-bar {
    height: auto;
    padding-block: 6px;
  }

  .util-bar__inner {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .util-bar__items {
    justify-content: center;
    gap: 0.5rem;
  }

  .util-bar__separator {
    display: none;
  }

  .util-bar__item {
    font-size: 0.7rem;
  }

  .util-bar__arabic {
    font-size: 0.72rem;
  }

  /* ── Nav ───────────────────────────────────────────────── */
  .nav {
    height: 60px;
    --nav-height: 60px;
  }

  .nav__logo {
    font-size: 1.3rem;
  }

  /* ── Mobile menu position fix ──────────────────────────── */
  .nav__mobile {
    top: calc(var(--util-bar-height, 52px) + 60px);
    padding: var(--space-sm);
  }

  .nav__mobile-link {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  /* ── Hero ──────────────────────────────────────────────── */
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: var(--space-md) var(--container-pad) var(--space-sm);
  }

  .hero__overline {
    margin-bottom: 0.875rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.15;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
  }

  /* Side-by-side CTAs on mobile — saves vertical space
     without crushing typography. Falls back to stacked below 375px. */
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: var(--space-sm);
  }

  .hero__actions .btn {
    flex: 1 1 45%;
    width: auto;
    min-width: 0;
    justify-content: center;
    padding-inline: 1rem;
  }

  .hero__trust {
    font-size: 0.72rem;
    gap: 0.375rem 0.75rem;
  }

  .hero__image .placeholder-img {
    min-height: 220px;
  }

  /* ── Sections ─────────────────────────────────────────── */
  .section {
    padding-block: var(--space-xl);
  }

  .section--sm {
    padding-block: var(--space-lg);
  }

  /* ── Grids ────────────────────────────────────────────── */
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* ── Cards ────────────────────────────────────────────── */
  .card__body {
    padding: var(--space-sm) var(--space-sm) var(--space-md);
  }

  .card__title {
    font-size: 1.1rem;
  }

  .card__text {
    font-size: 0.88rem;
  }

  /* ── Split sections (case study etc.) ──────────────────── */
  .split-section__content {
    padding: var(--space-lg) var(--container-pad);
  }

  .split-section__image {
    min-height: 240px;
  }

  .split-section__bullet {
    font-size: 0.88rem;
  }

  /* ── Services / "Built not advised" ───────────────────── */
  .services-section__header h2 {
    font-size: 1.5rem;
  }

  .services-section__header p {
    font-size: 0.95rem;
  }

  .service-col {
    padding: var(--space-sm);
  }

  /* ── Trust bar ────────────────────────────────────────── */
  .trust-bar__inner {
    gap: 1rem 1.5rem;
  }

  .trust-bar__item {
    font-size: 0.75rem;
  }

  .trust-bar__item::before {
    width: 16px;
  }

  /* ── Buttons — full width on mobile ───────────────────── */
  .btn--lg {
    font-size: 0.94rem;
    padding: 0.85rem 1.75rem;
  }

  /* ── Footer ───────────────────────────────────────────── */
  .footer {
    padding-top: var(--space-xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* ── Industry hero ────────────────────────────────────── */
  .industry-hero {
    min-height: auto;
  }

  .industry-hero__content {
    padding: var(--space-lg) var(--container-pad);
  }

  /* ── Page hero ────────────────────────────────────────── */
  .page-hero {
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
  }

  /* ── Process steps (how-we-work) ──────────────────────── */
  .process-step {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
  }

  .process-step__number {
    font-size: 1.5rem;
    width: auto;
    text-align: left;
  }

  .process-arrow {
    width: auto;
    text-align: center;
    padding: 0;
  }

  .process-step__deliverables-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  /* ── Sensored page ────────────────────────────────────── */
  .sensored-step {
    padding: var(--space-md);
  }

  .specs-table th,
  .specs-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.85rem;
  }

  .specs-table td:first-child {
    white-space: normal;
    width: 40%;
  }

  /* ── About page ───────────────────────────────────────── */
  .about-overview__text p {
    font-size: 0.95rem;
  }

  .credentials-list__item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .credentials-list__label {
    min-width: auto;
  }

  /* ── Contact page ─────────────────────────────────────── */
  .contact-layout {
    gap: var(--space-xl);
  }

  .contact-details {
    position: static;
  }

  .contact-form__submit {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__submit .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Insights page ────────────────────────────────────── */
  .insights-filters {
    gap: 0.375rem;
  }

  .insights-filter {
    font-size: 0.82rem;
    padding: 0.375rem 0.875rem;
  }

  .insights-subscribe {
    flex-direction: column;
    text-align: center;
  }

  /* ── CTA block ────────────────────────────────────────── */
  .cta-block__download {
    flex-direction: column;
  }

  /* ── Typography tighten ───────────────────────────────── */
  h2 {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
  }

  h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  }

  /* ── Stat blocks ──────────────────────────────────────── */
  .stat {
    padding: var(--space-sm);
  }

  .stat__value {
    font-size: 1.75rem;
  }

  /* ── Fade-in: reduce travel distance on mobile ────────── */
  .fade-in {
    transform: translateY(16px);
  }

  /* ── Belief block (about page) ────────────────────────── */
  .belief-block__quote-mark {
    width: 40px;
  }
}

/* ── Extra-small phones (max-width: 374px) ─────────────────── */
@media (max-width: 374px) {

  html {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero__overline {
    font-size: 0.68rem;
  }

  .container {
    padding-inline: 1rem;
  }

  .btn--lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }

  /* On the very narrowest phones, revert CTAs to stacked
     so labels breathe. The vertical loss is acceptable here. */
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* ── Print ────────────────────────────────────────────────── */
@media print {
  .nav, .util-bar, .nav__mobile { display: none; }
  body { font-size: 12pt; }
  h1, h2, h3 { page-break-after: avoid; }
}


/* ============================================================
   INDUSTRY PAGES
   ============================================================ */

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--t-fast);
}

.breadcrumb__link:hover {
  color: var(--sand);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.30);
  font-size: 0.9rem;
}

.breadcrumb__current {
  color: var(--sand);
}


/* ── Industry Hero ────────────────────────────────────────── */
.industry-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 440px;
}

.industry-hero__content {
  padding: var(--space-xl) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.industry-hero__image {
  display: none;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .industry-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }

  .industry-hero__content {
    padding: var(--space-xl) var(--space-xl) var(--space-xl) max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad)));
    max-width: none;
    margin: 0;
  }

  .industry-hero__image {
    display: block;
  }
}


/* ── Split Text (two-column challenge block) ──────────────── */
.split-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.split-text__left .section-label {
  display: block;
  margin-bottom: var(--space-sm);
}

.split-text__left h2 {
  margin: 0;
}

.split-text__right p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .split-text {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-xl);
    align-items: start;
  }
}


/* ── Service Card (2-col grid variant) ────────────────────── */
.service-card {
  border-top: 3px solid var(--sand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card .card__body {
  padding: var(--space-lg) var(--space-md);
}

.service-card .service-col__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sand);
  margin-bottom: var(--space-sm);
}

.service-card .card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-card .card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.70;
}


/* ── CTA Block ────────────────────────────────────────────── */
.cta-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.cta-block__download,
.cta-block__contact {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.cta-block__download {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  border-top: 3px solid var(--stone);
}

.cta-block__contact {
  border-top: 3px solid var(--sand);
}

.cta-block__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--sand);
}

.cta-block__icon svg {
  width: 100%;
  height: 100%;
}

.cta-block__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.cta-block__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.60;
}

@media (min-width: 768px) {
  .cta-block {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   INNER PAGES — how-we-work, sensored, about, insights, contact
   ============================================================ */

/* ── Active Nav Link ──────────────────────────────────────── */
.nav__link--active {
  color: var(--copper);
}

.nav__link--active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--copper);
  border-radius: 1px;
}

/* ── Page Hero (text-only, navy, no split image) ──────────── */
.page-hero {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.page-hero .breadcrumb {
  margin-bottom: var(--space-md);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero .hero__lead {
  margin-bottom: 0;
}

/* ── Page CTA (centered, on navy bg) ─────────────────────── */
.page-cta {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Process Steps (how-we-work) ─────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 168, 124, 0.45);
}

.process-step--loop {
  border-color: var(--sand);
}

.process-step__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  padding-top: 4px;
  transition: color var(--t-base);
}

.process-step:hover .process-step__number {
  color: var(--sand);
}

.process-step__body {
  flex: 1;
}

.process-step__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.process-step__desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 68ch;
  margin-bottom: var(--space-sm);
}

.process-step__deliverables {
  background-color: var(--warm-white);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  margin-top: var(--space-sm);
}

.process-step__deliverables-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
  max-width: none;
}

.process-step__deliverables-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.5rem;
  list-style: none;
}

.process-step__deliverables-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 0.875rem;
}

.process-step__deliverables-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sand);
}

.process-step__loop-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.04em;
}

/* Arrow connector between steps */
.process-arrow {
  font-size: 1.5rem;
  color: var(--stone);
  text-align: center;
  padding: 0.375rem 0;
  width: 56px;
  margin-left: 0;
}

/* Standards grid */
.standards-grid,
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.standard-badge,
.integration-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  background-color: var(--warm-white);
  transition: border-color var(--t-fast), background-color var(--t-fast);
}

.standard-badge:hover,
.integration-badge:hover {
  border-color: var(--sand);
  background-color: #FFFFFF;
}

/* ── Sensored Page ────────────────────────────────────────── */
.sensored-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  background-color: rgba(196, 168, 124, 0.12);
  border: 1px solid rgba(196, 168, 124, 0.3);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
}

.sensored-badge em {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(196, 168, 124, 0.8);
}

.sensored-step {
  padding: var(--space-lg);
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--sand);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.sensored-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.sensored-step__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sand);
  margin-bottom: 0.875rem;
}

.sensored-step__title {
  font-size: 1.1rem;
  margin-bottom: 0.625rem;
}

.sensored-step__text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: none;
}

/* Specs table */
.specs-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.specs-table th {
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background-color: var(--warm-white);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--stone);
}

.specs-table td {
  padding: 0.875rem 1.25rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--stone);
  vertical-align: top;
  line-height: 1.6;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  width: 30%;
}

.specs-table tr:nth-child(even) td {
  background-color: rgba(247, 245, 240, 0.5);
}

/* ── About Page ───────────────────────────────────────────── */
.about-overview {
  max-width: 780px;
}

.about-overview__text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Belief block */
.belief-block {
  padding-block: var(--space-2xl);
}

.belief-block__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
}

.belief-block__quote-mark {
  position: absolute;
  top: -1rem;
  right: var(--container-pad);
  width: 64px;
  opacity: 0.5;
}

.belief-block__quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  border-left: 3px solid var(--sand);
  padding-left: var(--space-md);
  max-width: none;
}

/* Team cards */
.team-card {
  background: #FFFFFF;
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-card__photo .placeholder-img {
  width: 100%;
}

.team-card__body {
  padding: var(--space-md);
}

.team-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 0.5rem;
  max-width: none;
}

.team-card__credential,
.team-card__domain {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: none;
  margin-bottom: 0.25rem;
}

/* Credentials list */
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.credentials-list__item {
  display: flex;
  gap: 0.875rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone);
}

.credentials-list__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-width: 120px;
  flex-shrink: 0;
}

.credentials-list__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
}

/* ── Insights Page ────────────────────────────────────────── */
.insights-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.insights-filter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--stone);
  background: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background-color var(--t-fast);
}

.insights-filter:hover {
  border-color: var(--sand);
  color: var(--navy);
}

.insights-filter--active {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #FFFFFF;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .insights-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 0;
  }
  .insights-card--featured .insights-card__image {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  .insights-card--featured .insights-card__image .placeholder-img {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  .insights-card--featured .insights-card__body {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .insights-card--featured .insights-card__title {
    font-size: 1.5rem;
  }
}

.insights-card {
  background: #FFFFFF;
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.insights-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.insights-card__image .placeholder-img {
  width: 100%;
}

.insights-card__body {
  padding: var(--space-md);
}

.insights-card__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.insights-card__category {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.insights-card__category--technical {
  color: var(--navy);
  background-color: rgba(27, 42, 74, 0.08);
}

.insights-card__category--industry {
  color: #1A5C3A;
  background-color: rgba(26, 92, 58, 0.08);
}

.insights-card__category--whitepaper {
  color: var(--copper);
  background-color: rgba(184, 115, 51, 0.08);
}

.insights-card__date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.insights-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

.insights-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

.insights-card__title a:hover {
  color: var(--copper);
}

.insights-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  max-width: none;
}

.insights-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper);
  transition: gap var(--t-fast), color var(--t-fast);
}

.insights-card__link:hover {
  gap: 10px;
  color: var(--amber);
}

.insights-card__link--download {
  gap: 6px;
}

/* Insights subscribe strip */
.insights-subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 60fr 40fr;
    align-items: start;
  }
}

/* Form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 560px) {
  .contact-form__row--2col {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.contact-form__required {
  color: var(--copper);
  font-size: 0.75rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text-primary);
  background-color: #FFFFFF;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(196, 168, 124, 0.18);
}

.contact-form__input::placeholder {
  color: var(--text-light);
}

.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpolyline points='2,4 7,10 12,4' fill='none' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.contact-form__commit {
  font-size: 0.84rem;
  color: var(--text-light);
  font-style: italic;
  max-width: none;
}

/* Contact details panel */
.contact-details {
  position: sticky;
  top: calc(var(--nav-height) + var(--util-bar-height) + var(--space-md));
}

.contact-detail-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--stone);
}

.contact-detail-block:last-of-type {
  border-bottom: none;
}

.contact-detail-block__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.contact-detail-block__address,
.contact-detail-block__value {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
  max-width: none;
}

.contact-detail-block__value a {
  color: var(--copper);
}

.contact-map-placeholder {
  margin-top: var(--space-lg);
  overflow: hidden;
  border-radius: var(--radius-md);
}

