/* ==========================================================================
   Orca Consulting Group, LLC — design system
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand blues */
  --navy-900: #0E2A3A;
  --navy-800: #16455C;
  --blue-700: #35688C;
  --blue-600: #5B6FA3;
  --blue-500: #1E8FCB;
  --blue-400: #6FB3E0;
  --blue-200: #A9C2CF;

  /* Neutrals */
  --ink: #0F2231;
  --ink-70: #46617A;
  --ink-55: #6B839A;
  --line: #E2EAF0;
  --mist: #F4F8FB;
  --paper: #FFFFFF;

  /* Surfaces */
  --surface-deep: linear-gradient(165deg, #0B2130 0%, var(--navy-800) 55%, #1B5673 100%);

  /* Type */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --nav-h: 76px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 34, 49, .06), 0 4px 14px rgba(15, 34, 49, .05);
  --shadow-md: 0 2px 6px rgba(15, 34, 49, .06), 0 18px 42px rgba(15, 34, 49, .09);
  --shadow-lg: 0 30px 70px rgba(11, 33, 48, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-70);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 620; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); letter-spacing: -.015em; }
h4 { font-size: 1.02rem; letter-spacing: -.008em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-500); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy-800); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

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

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--blue-400); color: var(--navy-900); }

/* --- Layout helpers ------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 860px; }

.section { padding-block: clamp(64px, 9vw, 118px); }
.section--tight { padding-block: clamp(48px, 6vw, 78px); }
.section--mist { background: var(--mist); }

.section--deep {
  background: var(--surface-deep);
  color: var(--blue-200);
  position: relative;
  overflow: hidden;
}
.section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--paper);
  color: var(--navy-800);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* --- Eyebrow / section heads ---------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.section--deep .eyebrow { color: var(--blue-400); }
.section--deep .eyebrow::before { background: var(--blue-400); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.09rem; }

.lede { font-size: clamp(1.06rem, 1.5vw, 1.22rem); line-height: 1.62; color: var(--ink-70); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 560;
  letter-spacing: -.005em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 143, 203, .3);
}
.btn--primary:hover { background: #1780b7; color: #fff; box-shadow: 0 10px 28px rgba(30, 143, 203, .38); }

.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-900); color: #fff; }

.btn--outline {
  border-color: rgba(169, 194, 207, .45);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, .1); color: #fff; }

.btn--ghost { border-color: var(--line); color: var(--navy-800); background: var(--paper); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-500); }

.btn--sm { padding: 11px 20px; font-size: .88rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: .95rem;
  color: var(--blue-500);
}
.arrow-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* --- Navigation ----------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              backdrop-filter .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(14, 42, 58, .88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(169, 194, 207, .16);
  box-shadow: 0 10px 34px rgba(8, 26, 38, .22);
}

.nav__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand:hover { color: inherit; }
.brand__mark { width: 44px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 640;
  letter-spacing: .1em;
  color: #fff;
  text-transform: uppercase;
}
.brand__sub {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .225em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-top: 3px;
}

.nav__menu { display: flex; align-items: center; gap: 8px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links li { margin: 0; }
.nav__link {
  position: relative;
  display: block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 500;
  color: rgba(233, 242, 247, .82);
  border-radius: var(--radius-sm);
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-400);
}

.nav__cta { margin-left: 12px; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(169, 194, 207, .3);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  position: relative;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: background-color .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav.is-open { background: rgba(14, 42, 58, .96); }
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(169, 194, 207, .16);
    padding: 14px var(--gutter) 30px;
    display: none;
    box-shadow: 0 24px 50px rgba(8, 26, 38, .4);
  }
  .nav__menu.is-open { display: block; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 15px 6px; font-size: 1.05rem; border-bottom: 1px solid rgba(169, 194, 207, .12); border-radius: 0; }
  .nav__link[aria-current="page"]::after { left: 6px; right: auto; width: 22px; bottom: 8px; }
  .nav__cta { margin: 20px 0 0; display: flex; }
  .nav__cta .btn { width: 100%; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--surface-deep);
  color: var(--blue-200);
  padding-top: calc(var(--nav-h) + clamp(56px, 9vw, 104px));
  padding-bottom: clamp(70px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 140px;
  background: linear-gradient(to top, rgba(11, 33, 48, .55), transparent);
  z-index: -1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hero__bg svg { width: 100%; height: 100%; }

.hero__glow {
  position: absolute;
  top: -18%;
  right: -8%;
  width: 62vw;
  height: 62vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(30, 143, 203, .3) 0%, rgba(30, 143, 203, 0) 62%);
  z-index: -2;
  pointer-events: none;
}

.hero__watermark {
  position: absolute;
  right: -6%;
  bottom: -14%;
  width: min(46vw, 620px);
  opacity: .07;
  z-index: -1;
  pointer-events: none;
}

.hero__grid { display: grid; gap: clamp(38px, 5vw, 60px); align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.15fr .85fr; } }

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--blue-400), var(--blue-500) 60%, #9fd3f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.6;
  color: rgba(214, 231, 240, .9);
  max-width: 34em;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 26px;
  border: 1px solid rgba(169, 194, 207, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-200);
}
.hero__tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(111, 179, 224, .2);
}

/* Hero side panel */
.hero__panel {
  border: 1px solid rgba(169, 194, 207, .22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
}
.hero__panel h2 {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 20px;
}
.hero__panel ol { list-style: none; margin: 0; padding: 0; counter-reset: hp; }
.hero__panel li {
  counter-increment: hp;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(169, 194, 207, .16);
  margin: 0;
}
.hero__panel li:first-child { border-top: 0; padding-top: 0; }
.hero__panel li:last-child { padding-bottom: 0; }
.hero__panel li::before {
  content: "0" counter(hp);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue-400);
  padding-top: 3px;
}
.hero__panel .t { display: block; font-family: var(--font-display); font-weight: 560; color: #fff; font-size: 1.02rem; }
.hero__panel .d { display: block; font-size: .9rem; line-height: 1.5; color: rgba(196, 217, 229, .82); margin-top: 3px; }

/* --- Page header (inner pages) -------------------------------------------- */
.page-head {
  position: relative;
  background: var(--surface-deep);
  color: var(--blue-200);
  padding-top: calc(var(--nav-h) + clamp(52px, 7vw, 86px));
  padding-bottom: clamp(52px, 7vw, 86px);
  overflow: hidden;
  isolation: isolate;
}
.page-head__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(30, 143, 203, .26), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.page-head__watermark {
  position: absolute;
  right: -4%;
  bottom: -32%;
  width: min(38vw, 460px);
  opacity: .06;
  z-index: -1;
  pointer-events: none;
}
.page-head h1 { color: #fff; max-width: 16ch; margin-bottom: 18px; }
.page-head p { max-width: 60ch; font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: rgba(214, 231, 240, .88); }

.crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(169, 194, 207, .75);
  margin-bottom: 20px;
}
.crumbs a { color: rgba(169, 194, 207, .9); }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { opacity: .5; }

/* --- Cards ---------------------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* Two cards in a 3-up grid would stretch to ~590px each, making the 4:5
   portraits absurdly tall. Cap the track so each card matches the width it
   would have had as one of three, and centre the pair. */
.grid--duo { max-width: 790px; margin-inline: auto; }

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .97rem; }
.card__num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue-400);
  display: block;
  margin-bottom: 14px;
}
.card__foot { margin-top: 20px; }

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(30, 143, 203, .13), rgba(111, 179, 224, .13));
  color: var(--navy-800);
  border: 1px solid rgba(30, 143, 203, .16);
}
.icon-badge svg { width: 24px; height: 24px; }

.section--deep .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(169, 194, 207, .2);
  color: rgba(203, 223, 234, .88);
}
.section--deep .card:hover { background: rgba(255, 255, 255, .08); border-color: rgba(169, 194, 207, .32); }
.section--deep .icon-badge {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(169, 194, 207, .24);
  color: var(--blue-400);
}

/* --- Split (text + media) ------------------------------------------------- */
.split { display: grid; gap: clamp(32px, 5vw, 66px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first .split__media { order: -1; }
}

.split__body ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.split__body ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: .99rem;
}
.split__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(30, 143, 203, .12);
  border: 1px solid rgba(30, 143, 203, .3);
}
.split__body ul li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .72em;
  width: 6px;
  height: 3px;
  border-left: 1.8px solid var(--blue-500);
  border-bottom: 1.8px solid var(--blue-500);
  transform: rotate(-45deg);
}
.section--deep .split__body ul li::before { background: rgba(111, 179, 224, .14); border-color: rgba(111, 179, 224, .4); }
.section--deep .split__body ul li::after { border-color: var(--blue-400); }

/* --- Photo placeholders --------------------------------------------------- */
/* Drop a real file at the src path and it replaces the placeholder
   automatically; if the file is missing the <img> removes itself
   (see the inline onerror) and the styled placeholder shows through. */
.media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(30, 143, 203, .1), rgba(91, 111, 163, .12) 55%, rgba(169, 194, 207, .2)),
    var(--mist);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.media--wide { aspect-ratio: 16 / 10; }
.media--tall { aspect-ratio: 3 / 4; }

.media__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}
.media__ph svg { width: 30px; height: 30px; opacity: .5; }
.media__ph small {
  display: block;
  text-transform: none;
  letter-spacing: .01em;
  font-size: .78rem;
  font-weight: 400;
  color: var(--ink-55);
  max-width: 30ch;
  line-height: 1.5;
}

.media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(53, 104, 140, .3);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 1;
}
.media:has(img)::after { display: none; }

.media__caption {
  margin-top: 12px;
  font-size: .83rem;
  color: var(--ink-55);
  letter-spacing: .01em;
}

/* --- Stats ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(169, 194, 207, .25);
  border: 1px solid rgba(169, 194, 207, .25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: var(--paper); padding: clamp(26px, 3vw, 36px); }
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 620;
  letter-spacing: -.03em;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__l { font-size: .93rem; color: var(--ink-55); line-height: 1.45; }

.section--deep .stats { background: rgba(169, 194, 207, .18); border-color: rgba(169, 194, 207, .2); }
.section--deep .stat { background: rgba(11, 33, 48, .35); }
.section--deep .stat__n { color: #fff; }
.section--deep .stat__l { color: rgba(184, 209, 223, .82); }

/* --- Steps / process ------------------------------------------------------ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.step {
  position: relative;
  display: grid;
  gap: clamp(14px, 3vw, 40px);
  padding: clamp(26px, 3.4vw, 38px) 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .step { grid-template-columns: 90px 1fr 1.1fr; align-items: start; } }
.step__n {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: .06em;
}
.step h3 { margin-bottom: 0; }
.step p { font-size: .99rem; margin: 0; }
.section--deep .step { border-color: rgba(169, 194, 207, .2); }
.section--deep .step:last-child { border-bottom-color: rgba(169, 194, 207, .2); }

/* --- Service detail blocks ------------------------------------------------ */
.service-block { scroll-margin-top: calc(var(--nav-h) + 30px); }
.service-block + .service-block { margin-top: clamp(56px, 7vw, 96px); padding-top: clamp(56px, 7vw, 96px); border-top: 1px solid var(--line); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 24px 0 0; }
.tags li {
  margin: 0;
  font-size: .84rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--blue-700);
  background: rgba(30, 143, 203, .08);
  border: 1px solid rgba(30, 143, 203, .16);
  border-radius: 999px;
  padding: 6px 14px;
}

.deliverables {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
}
.deliverables h4 {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 18px;
}
.deliverables ul { list-style: none; padding: 0; margin: 0; }
.deliverables li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  margin: 0;
}
.deliverables li:first-child { border-top: 0; padding-top: 0; }
.deliverables li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  margin-top: .62em;
}

/* --- Team ----------------------------------------------------------------- */
.person {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }

.person__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #1B4E68 0%, var(--blue-700) 52%, #5B6FA3 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.person__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.person__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .16), transparent 45%),
    radial-gradient(circle at 78% 88%, rgba(111, 179, 224, .22), transparent 50%);
  z-index: 1;
}
.person__initials {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .5);
}
.person__ph-label {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  z-index: 1;
  text-align: center;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.person__body { padding: 24px clamp(20px, 2.4vw, 28px) 28px; }
.person__name { font-size: 1.16rem; margin-bottom: 4px; }
.person__role {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 560;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.person__bio { font-size: .94rem; line-height: 1.6; margin: 0; }
.person__links { display: flex; gap: 14px; margin-top: 18px; font-size: .88rem; }

/* --- Values / principles -------------------------------------------------- */
.principle {
  display: grid;
  gap: 6px 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(169, 194, 207, .22);
}
@media (min-width: 720px) { .principle { grid-template-columns: 1fr 1.5fr; } }
.principle h3 { font-size: 1.18rem; margin: 0; }
.principle p { margin: 0; font-size: .99rem; }

/* --- Contact -------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(32px, 4vw, 56px); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.15fr .85fr; } }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.2vw, 40px);
  box-shadow: var(--shadow-sm);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 560;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .req { color: var(--blue-500); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 138px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2346617A' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(30, 143, 203, .13);
}
.field input::placeholder, .field textarea::placeholder { color: #9CB0C1; }
.field--error input, .field--error select, .field--error textarea { border-color: #C2412F; }
.field__err { display: none; font-size: .82rem; color: #C2412F; margin-top: 7px; }
.field--error .field__err { display: block; }

.field-row { display: grid; gap: 0 18px; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: .85rem; color: var(--ink-55); margin-top: 18px; line-height: 1.55; }

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: .93rem;
  background: rgba(30, 143, 203, .07);
  border: 1px solid rgba(30, 143, 203, .25);
  color: var(--navy-800);
}
.form-status.is-visible { display: block; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.info-list li:first-child { border-top: 0; padding-top: 0; }
.info-list .icon-badge { width: 42px; height: 42px; margin: 0; flex: none; border-radius: 11px; }
.info-list .icon-badge svg { width: 19px; height: 19px; }
.info-list h4 { margin-bottom: 3px; }
.info-list p { font-size: .95rem; margin: 0; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 560;
  color: var(--ink);
  letter-spacing: -.012em;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-500); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq .faq__a { padding: 0 44px 24px 0; font-size: .99rem; }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--surface-deep);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(40px, 5.5vw, 72px);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  width: 760px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(30, 143, 203, .34), transparent 65%);
  z-index: -1;
}
.cta-band__mark { width: 74px; margin: 0 auto 24px; opacity: .85; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(207, 226, 237, .9); max-width: 54ch; margin: 0 auto 30px; font-size: 1.06rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --- Footer --------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(178, 203, 217, .8);
  padding-top: clamp(52px, 6vw, 78px);
  font-size: .94rem;
}
.footer a { color: rgba(196, 217, 229, .85); }
.footer a:hover { color: #fff; }

.footer__grid {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(40px, 5vw, 58px);
}
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer__brand .brand { margin-bottom: 18px; }
.footer__blurb { max-width: 34ch; font-size: .93rem; line-height: 1.62; }

.footer h4 {
  color: #fff;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 11px; }

.footer__bar {
  border-top: 1px solid rgba(169, 194, 207, .16);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(169, 194, 207, .6);
}
.footer__bar p { margin: 0; }

/* --- Reveal animation ----------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- Utilities ------------------------------------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.mt-lg { margin-top: clamp(34px, 4.5vw, 56px); }
.text-center { text-align: center; }
.no-scroll { overflow: hidden; }
