/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #FFFFFF;
  --bg-alt:     #F4F4F4;
  --bg-ocean:   #EAF4FB;
  --ink:        #0D2E42;
  --ink-muted:  #3D6478;
  --ocean:      #5FA8D3;
  --ocean-deep: #0D2E42;
  --sand:       #62B6CB;
  --rule:       rgba(13,46,66,.1);
  --font-head:  'Manrope', system-ui, sans-serif;
  --font-body:  'Manrope', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul, ol { list-style: none; }


/* ─────────────────────────────────────────────
   CHARACTER DRIFT ANIMATION
───────────────────────────────────────────── */
.drift { overflow: hidden; display: block; }
.drift-word { display: inline-block; overflow: hidden; }
.drift-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.8em) translateZ(0);
  transition: opacity .9s linear, transform .9s cubic-bezier(.215,.61,.355,1);
}

.state-loaded .drift-char,
.drift-in .drift-char {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.215,.61,.355,1);
}
.reveal-up.visible { opacity: 1; transform: none; }

.reveal-fade {
  opacity: 0;
  transition: opacity .9s ease;
}
.reveal-fade.visible { opacity: 1; }

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────── */
.l-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width:600px) { .l-wrap { padding: 0 20px; } }

.l-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width:760px) {
  .l-grid-2 { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(13,46,66,.2); border-radius: 4px; }

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.c-header.scrolled {
  padding: 16px 40px;
  background: rgba(240,247,250,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--rule);
}
@media(max-width:768px) {
  .c-header { padding: 20px 24px; }
  .c-header.scrolled { padding: 14px 24px; }
}

.c-header__logo {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.c-header__nav a {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
  position: relative;
}
.c-header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--ocean);
  transition: width .25s ease;
}
.c-header__nav a:hover { color: var(--ocean); }
.c-header__nav a:hover::after { width: 100%; }
.c-header__nav a.active { color: var(--ocean); }
.c-header__nav a.active::after { width: 100%; }
.c-header__nav .c-header__cta-link {
  color: var(--bg);
  background: var(--ink);
  padding: 7px 18px;
  border-radius: 3px;
  transition: background .2s ease;
}
.c-header__nav .c-header__cta-link::after { display: none; }
.c-header__nav .c-header__cta-link:hover { background: var(--ocean); color: var(--bg); }
.c-header__nav .c-header__cta-link.active { background: var(--ocean); color: var(--bg); }

.c-header__menu-btn {
  width: 36px; height: 36px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.c-header__menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform .4s cubic-bezier(.215,.61,.355,1), opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.c-header__menu-btn span:first-child { width: 100%; }
.c-header__menu-btn span:last-child  { width: 60%; }

.state-menu-open .c-header__menu-btn span:first-child {
  transform: translateY(7.5px) rotate(45deg);
  width: 100%;
}
.state-menu-open .c-header__menu-btn span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 100%;
}

@media(max-width: 768px) {
  .c-header__nav { display: none; }
  .c-header__menu-btn { display: flex; }
}

/* ─────────────────────────────────────────────
   FULL-SCREEN MENU OVERLAY
───────────────────────────────────────────── */
.c-menu {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 40px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.state-menu-open .c-menu {
  opacity: 1;
  pointer-events: all;
}
@media(max-width:600px) { .c-menu { padding: 80px 20px 40px; } }

.c-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-menu__link {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  line-height: 1.05;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: color .25s ease, opacity .6s cubic-bezier(.215,.61,.355,1), transform .6s cubic-bezier(.215,.61,.355,1);
}
.c-menu__link:hover { color: #fff; }

.state-menu-open .c-menu__link { opacity: 1; transform: none; }
.state-menu-open .c-menu__link:nth-child(1) { transition-delay: .08s; }
.state-menu-open .c-menu__link:nth-child(2) { transition-delay: .14s; }
.state-menu-open .c-menu__link:nth-child(3) { transition-delay: .20s; }
.state-menu-open .c-menu__link:nth-child(4) { transition-delay: .26s; }
.state-menu-open .c-menu__link:nth-child(5) { transition-delay: .32s; }

.c-menu__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-menu__footer p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-body);
}
.c-menu__footer a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color .2s;
}
.c-menu__footer a:hover { color: rgba(255,255,255,.9); }

.state-menu-open .c-header__logo { color: #fff; }
.state-menu-open .c-header__menu-btn span { background: #fff; }

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.accent-word {
  color: var(--ocean);
  font-weight: 600;
  font-style: normal;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.c-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 80px;
  position: relative;
  background: var(--bg);
}
@media(max-width:600px) { .c-hero { padding: 0 20px 60px; min-height: 100dvh; } }

.c-hero__cover {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.6) brightness(.82);
  z-index: 0;
}
.c-hero__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(240,247,250,.80) 0%,
    rgba(240,247,250,.92) 100%
  );
  z-index: 1;
}

.c-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.c-hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8.5vw, 9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--ink);
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 40px;
}
.c-hero__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 120px; height: 3px;
  background: var(--ocean);
}
@media(max-width:600px) {
  .c-hero__heading { margin-bottom: 32px; padding-bottom: 28px; }
}

.c-hero__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}
@media(max-width:700px) {
  .c-hero__sub { grid-template-columns: 1fr; gap: 24px; }
}

.c-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
}

.c-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
@media(max-width:700px) {
  .c-hero__cta { align-items: flex-start; }
}

.c-hero__arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
  letter-spacing: -.01em;
}
.c-hero__arrow-btn:hover { color: var(--ocean); border-color: var(--ocean); gap: 16px; }

.c-hero__down {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
@media(max-width:600px) { .c-hero__down { display: none; } }

.c-hero__down-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--ink-muted));
  animation: lineGrow 1s ease forwards .5s;
  transform-origin: top;
  transform: scaleY(0);
}
@keyframes lineGrow {
  to { transform: scaleY(1); }
}
.c-hero__down svg { animation: bounceDown 2s ease-in-out infinite; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─────────────────────────────────────────────
   PAGE HERO (non-home pages)
───────────────────────────────────────────── */
.c-page-hero {
  padding: 160px 40px 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
@media(max-width:600px) { .c-page-hero { padding: 120px 20px 56px; } }

.c-page-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.c-page-hero__label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 20px;
}

.c-page-hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 32px;
}
.c-page-hero__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 2px;
  background: var(--ocean);
  opacity: .55;
}

.c-page-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ─────────────────────────────────────────────
   VISUAL SPLASH
───────────────────────────────────────────── */
.c-splash {
  position: relative;
  background: var(--bg);
  padding: 20px 40px 80px;
}
@media(max-width:600px) { .c-splash { padding: 20px 20px 60px; } }

.c-splash__inner {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-ocean);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-splash__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(.75) brightness(.88);
}
.c-splash__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(95,168,211,.72) 0%, rgba(13,46,66,.75) 100%);
  z-index: 1;
}

.c-splash__text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.c-splash__label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(202,233,255,.85);
  display: block;
  margin-bottom: 16px;
}

.c-splash__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.25;
  max-width: 700px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

/* ─────────────────────────────────────────────
   CAPABILITIES
───────────────────────────────────────────── */
.c-capabilities {
  padding: 0;
}

.c-cap__item {
  border-top: 1px solid var(--rule);
  padding: 80px 40px;
}
.c-cap__item:last-child { border-bottom: 1px solid var(--rule); }
@media(max-width:600px) { .c-cap__item { padding: 60px 20px; } }

.c-cap__item .l-wrap { max-width: 1320px; }

.c-cap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.c-cap__grid--reverse { direction: rtl; }
.c-cap__grid--reverse > * { direction: ltr; }
@media(max-width:760px) {
  .c-cap__grid { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
}

.c-cap__num {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 20px;
}

.c-cap__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.c-cap__desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}

.c-cap__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}
.c-cap__list li {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.c-cap__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-size: .8rem;
}

.c-cap__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(95,168,211,.09), 0 0 0 1px rgba(95,168,211,.11);
}

.c-cap__media-inner {
  position: absolute;
  inset: 0;
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
}
.c-cap__item:hover .c-cap__media-inner { transform: scale(1.025); }

.cap-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.215,.61,.355,1);
}
.c-cap__item:hover .cap-photo { transform: scale(1.04); }

.cap-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(95,168,211,.12) 0%, rgba(240,247,250,.3) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   INDUSTRIES / SECTORS
───────────────────────────────────────────── */
.c-sectors {
  background: var(--bg-alt);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.c-sectors__header {
  padding: 0 40px;
  max-width: 1320px;
  margin: 0 auto 48px;
}
@media(max-width:600px) { .c-sectors__header { padding: 0 20px; } }

.c-sectors__heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.c-sectors__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  max-width: 400px;
  line-height: 1.6;
}

.c-sectors__track-wrap { overflow: hidden; }
.c-sectors__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: sectorScroll 36s linear infinite;
}
.c-sectors__track:hover { animation-play-state: paused; }
.c-sectors__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
}

@keyframes sectorScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.c-sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease;
}
.c-sector-pill:hover { border-color: var(--ocean); background: var(--bg-ocean); }

.c-sector-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   WORK / CASE STUDIES
───────────────────────────────────────────── */
.c-work {
  padding: 100px 40px;
}
@media(max-width:600px) { .c-work { padding: 80px 20px; } }

.c-work__inner { max-width: 1320px; margin: 0 auto; }

.c-work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.c-work__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.c-work__all {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.c-work__all:hover { color: var(--ocean); border-color: var(--ocean); }

.c-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media(max-width:700px) { .c-work__grid { grid-template-columns: 1fr; } }

/* Full work page grid */
.c-work__grid--full {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.c-work__grid--full .c-thumb--wide {
  grid-column: span 2;
}
.c-work__grid--full .c-thumb--wide .c-thumb__img {
  aspect-ratio: 21/9;
}
@media(max-width:700px) {
  .c-work__grid--full { grid-template-columns: 1fr; }
  .c-work__grid--full .c-thumb--wide { grid-column: span 1; }
  .c-work__grid--full .c-thumb--wide .c-thumb__img { aspect-ratio: 16/9; }
}

/* Work category filter */
.c-work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.c-work-filter__btn {
  background: none;
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.c-work-filter__btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.c-work-filter__btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Filtering state */
.c-thumb[hidden] { display: none; }
.c-thumb.is-hidden { display: none; }

.c-work__empty {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-muted);
  padding: 60px 0;
  text-align: center;
}

/* Fade-in after filter */
.c-thumb.filter-reveal {
  animation: filterFadeIn .35s ease forwards;
}
@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.c-thumb {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-thumb__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  transition: transform .4s cubic-bezier(.215,.61,.355,1);
}
.c-thumb:hover .c-thumb__img { transform: scale(.99); }

.thumb-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
  filter: saturate(.88) brightness(.98);
}
.c-thumb:hover .thumb-photo { transform: scale(1.05); }

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,46,66,.35) 100%);
  z-index: 1;
}

/* Multiple tags in a row */
.c-thumb__tags {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.c-thumb__tag {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.c-thumb__tag.ocean { background: var(--ocean); color: #fff; }

/* Footer row below image */
.c-thumb__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.c-thumb__stat {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ocean);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.c-thumb:hover .c-thumb__stat { opacity: 1; transform: translateX(0); }

.c-thumb__title {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color .2s ease;
}
.c-thumb:hover .c-thumb__title { color: var(--ocean); }

.c-thumb__sub {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 300;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.c-faq {
  background: var(--bg-alt);
  padding: 100px 40px;
}
@media(max-width:600px) { .c-faq { padding: 80px 20px; } }

.c-faq__inner { max-width: 1320px; margin: 0 auto; }

.c-faq__heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 48px;
}

.c-faq__question {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  transition: color .2s ease;
}
.c-faq__question:hover { color: var(--ocean); }

.c-faq__question-text {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .2s ease;
  line-height: 1.3;
}
.c-faq__question:hover .c-faq__question-text { color: var(--ocean); }

.c-faq__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform .4s cubic-bezier(.215,.61,.355,1);
}
.c-faq__icon line { transition: transform .4s cubic-bezier(.215,.61,.355,1), opacity .3s ease; }
.c-faq__item.open .c-faq__icon { transform: rotate(45deg); }

.c-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.215,.61,.355,1), padding .3s ease;
}
.c-faq__item.open .c-faq__answer { max-height: 400px; padding-bottom: 28px; }

.c-faq__answer p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 680px;
}

.c-faq__item:last-child .c-faq__question { border-bottom: 1px solid var(--rule); }

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.c-testimonials {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.c-testimonials__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.7) brightness(.55);
}

.c-testimonials__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,46,66,.1)  0%,
    rgba(13,46,66,.55) 40%,
    rgba(13,46,66,.88) 100%
  );
}

.c-testimonials__stage {
  position: relative;
  z-index: 2;
  padding: 80px 40px 64px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
@media(max-width:600px) { .c-testimonials__stage { padding: 60px 20px 48px; } }

.c-testimonials__glyph {
  font-family: var(--font-head);
  font-size: 10rem;
  line-height: .6;
  color: var(--ocean);
  opacity: .5;
  display: block;
  margin-bottom: 24px;
  user-select: none;
}

.c-testimonials__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.01em;
  line-height: 1.5;
  color: #fff;
  max-width: 900px;
  margin-bottom: 40px;
  transition: opacity .5s ease, transform .5s cubic-bezier(.215,.61,.355,1);
}
.c-testimonials__quote.fading {
  opacity: 0;
  transform: translateY(12px);
}

.c-testimonials__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  transition: opacity .5s ease;
}
.c-testimonials__meta.fading { opacity: 0; }

.c-testimonials__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.c-testimonials__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: -.01em;
}
.c-testimonials__role {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.c-testimonials__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-testimonials__counter {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  min-width: 44px;
}
.c-testimonials__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.c-testimonials__btn:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.16);
}

.c-testimonials__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.1);
}
.c-testimonials__progress-bar {
  height: 100%;
  background: var(--ocean);
  transition: width .5s cubic-bezier(.215,.61,.355,1);
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.c-process {
  background: var(--ink);
  padding: 100px 40px;
  color: #fff;
}
@media(max-width:600px) { .c-process { padding: 80px 20px; } }

.c-process__inner { max-width: 1320px; margin: 0 auto; }

.c-process__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 72px;
}

.c-process__items { display: flex; flex-direction: column; gap: 0; }

.c-process__item {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.c-process__item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
@media(max-width:760px) {
  .c-process__item { grid-template-columns: 1fr; gap: 12px; }
}

.c-process__num {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding-top: 4px;
}

.c-process__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}

.c-process__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
.c-cta {
  border-top: 1px solid var(--rule);
  padding: 80px 40px;
  background: var(--bg);
}
@media(max-width:600px) { .c-cta { padding: 60px 20px; } }

.c-cta__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.c-cta__text {
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}

.c-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
  letter-spacing: -.01em;
}
.c-cta__btn:hover { color: var(--ocean); border-color: var(--ocean); gap: 18px; }

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.c-contact {
  background: var(--bg-alt);
  padding: 100px 40px;
}
@media(max-width:600px) { .c-contact { padding: 80px 20px; } }

.c-contact__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media(max-width:760px) { .c-contact__inner { grid-template-columns: 1fr; gap: 48px; } }

.c-contact__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.c-contact__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 40px;
}
.c-contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.c-contact__detail a {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid rgba(95,168,211,.3);
  transition: border-color .2s ease;
}
.c-contact__detail a:hover { border-color: var(--ocean); }

.c-form { display: flex; flex-direction: column; gap: 20px; }

.c-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:500px) { .c-form__row { grid-template-columns: 1fr; } }

.c-form__field { display: flex; flex-direction: column; gap: 6px; }

.c-form__label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.c-form input,
.c-form select,
.c-form textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
  -webkit-appearance: none;
}
.c-form input::placeholder,
.c-form textarea::placeholder { color: var(--ink-muted); opacity: .5; }
.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(95,168,211,.1);
}
.c-form textarea { resize: none; min-height: 120px; }

.c-form__submit {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--ink);
  padding: 0 0 4px 0;
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
  letter-spacing: -.01em;
}
.c-form__submit:hover { color: var(--ocean); border-color: var(--ocean); gap: 18px; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.c-footer {
  border-top: 1px solid var(--rule);
  padding: 32px 40px;
  background: var(--bg);
}
@media(max-width:600px) { .c-footer { padding: 28px 20px; } }

.c-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.c-footer__logo {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.c-footer__copy {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--ink-muted);
}

.c-footer__up {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.c-footer__up:hover { color: var(--ink); }

/* ─────────────────────────────────────────────
   CASE STUDY PAGES
───────────────────────────────────────────── */
.c-case__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
  margin: 48px 0 0;
}
@media(max-width:700px) { .c-case__meta { grid-template-columns: 1fr 1fr; row-gap: 28px; } }

.c-case__meta-label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.c-case__meta-value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.4;
}

.c-case__stats {
  background: var(--bg-alt);
  padding: 72px 40px;
  border-bottom: 1px solid var(--rule);
}
@media(max-width:600px) { .c-case__stats { padding: 56px 20px; } }

.c-case__stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
}
@media(max-width:700px) { .c-case__stats-inner { grid-template-columns: 1fr; border-left: none; } }

.c-case__stats-inner > div {
  padding: 0 40px;
  border-right: 1px solid var(--rule);
}
@media(max-width:700px) {
  .c-case__stats-inner > div { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .c-case__stats-inner > div:last-child { border-bottom: none; }
}

.c-case__stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.c-case__stat-label {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 10px;
  display: block;
  line-height: 1.5;
  max-width: 220px;
}

.c-case__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 40px;
}
@media(max-width:600px) { .c-case__body { padding: 56px 20px; } }

.c-case__body > *:first-child { margin-top: 0; }

.c-case__body p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 20px;
}

.c-case__body p:last-of-type { margin-bottom: 0; }

.c-case__body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 48px 0 14px;
}

.c-case__body h3:first-child { margin-top: 0; }

.c-case__next {
  border-top: 1px solid var(--rule);
  padding: 64px 40px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 24px;
  transition: background .25s ease;
}
.c-case__next:hover { background: var(--bg-alt); }
@media(max-width:600px) { .c-case__next { padding: 48px 20px; } }

.c-case__next-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 8px;
}

.c-case__next-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  transition: color .2s ease;
}
.c-case__next:hover .c-case__next-title { color: var(--ocean); }

.c-case__next-arrow {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.215,.61,.355,1), color .2s ease;
}
.c-case__next:hover .c-case__next-arrow { transform: translateX(8px); color: var(--ocean); }

/* ─────────────────────────────────────────────
   CASE STUDY FIGURES & VISUALS
───────────────────────────────────────────── */
.c-case__figure {
  padding: 64px 40px 72px;
}
@media(max-width:600px) { .c-case__figure { padding: 48px 20px 56px; } }

.c-case__figure-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
}

.c-case__figure-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/7;
  object-fit: cover;
  filter: saturate(.88) brightness(.94);
}

.c-case__figure-caption {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: .01em;
  line-height: 1.6;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.c-case__figure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
}
@media(max-width:660px) { .c-case__figure-grid { grid-template-columns: 1fr; } }

.c-case__figure-grid .c-case__figure-img {
  border-radius: 0;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}

/* Pull-quote inside case body */
.c-case__pullquote {
  border-left: 2px solid var(--ocean);
  margin: 40px 0;
  padding: 2px 0 2px 24px;
}

.c-case__pullquote p {
  font-family: var(--font-serif) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
  line-height: 1.75 !important;
  font-style: italic;
  margin: 0 !important;
}

/* Process steps inside case study */
.c-case__process {
  background: var(--bg-alt);
  padding: 72px 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media(max-width:600px) { .c-case__process { padding: 56px 20px; } }

.c-case__process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.c-case__process-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 40px;
}

.c-case__process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
@media(max-width:700px) { .c-case__process-steps { grid-template-columns: 1fr 1fr; } }
@media(max-width:400px) { .c-case__process-steps { grid-template-columns: 1fr; } }

.c-case__process-step {
  background: var(--bg-alt);
  padding: 32px 28px;
  transition: background .2s;
}
.c-case__process-step:hover { background: var(--bg); }

.c-case__process-step-num {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ocean);
  display: block;
  margin-bottom: 12px;
}

.c-case__process-step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.c-case__process-step-desc {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CASE STUDY — UNIQUE INSIGHT SECTIONS
   Each project gets a structurally different
   section that reflects its actual method.
───────────────────────────────────────────── */

/* Shared wrapper */
.c-case__insight-section {
  padding: 72px 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media(max-width:600px) { .c-case__insight-section { padding: 56px 20px; } }

.c-case__insight-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.c-case__insight-eyebrow {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 36px;
}

/* ── User voices grid ── */
.c-case__voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
@media(max-width:700px) { .c-case__voices-grid { grid-template-columns: 1fr; } }

.c-case__voice {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--rule);
  transition: background .2s;
}
.c-case__voice:last-child { border-right: none; }
@media(max-width:700px) {
  .c-case__voice { border-right: none; border-bottom: 1px solid var(--rule); }
  .c-case__voice:last-child { border-bottom: none; }
}
.c-case__voice:hover { background: var(--bg-alt); }

.c-case__voice-num {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ocean);
  margin-bottom: 16px;
}

.c-case__voice-quote {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}

.c-case__voice-theme {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ── Flowork: before/after comparison ── */
.c-case__compare-section {
  padding: 72px 40px;
  background: var(--ink);
  color: #fff;
}
@media(max-width:600px) { .c-case__compare-section { padding: 56px 20px; } }

.c-case__compare-eyebrow {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: 40px;
}

.c-case__compare-cols {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media(max-width:700px) {
  .c-case__compare-cols { grid-template-columns: 1fr; }
  .c-case__compare-divider { display: none; }
}

.c-case__compare-col {
  padding: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
}

.c-case__compare-col--before { border-color: rgba(255,255,255,.08); }
.c-case__compare-col--after  { border-color: rgba(95,168,211,.4); background: rgba(95,168,211,.07); }

.c-case__compare-state {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.c-case__compare-col--before .c-case__compare-state { color: rgba(255,255,255,.35); }
.c-case__compare-col--after  .c-case__compare-state { color: var(--ocean); }

.c-case__compare-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-case__compare-col li {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.c-case__compare-col--before li { color: rgba(255,255,255,.45); }
.c-case__compare-col--before li::before { content: '×'; position: absolute; left: 0; color: rgba(255,255,255,.2); }
.c-case__compare-col--after  li { color: rgba(255,255,255,.85); }
.c-case__compare-col--after  li::before { content: '✓'; position: absolute; left: 0; color: var(--ocean); }

.c-case__compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: rgba(255,255,255,.2);
  padding-top: 60px;
}

/* ── Vesper: competitive gap ── */
.c-case__gap-cols {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media(max-width:700px) {
  .c-case__gap-cols { grid-template-columns: 1fr; }
  .c-case__gap-divider { display: none; }
}

.c-case__gap-col {
  padding: 36px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--bg);
}

.c-case__gap-side {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.c-case__gap-col:last-child .c-case__gap-side { color: var(--ocean); }

.c-case__gap-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-case__gap-col li {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink-muted);
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 2px solid transparent;
  line-height: 1.45;
}
.c-case__gap-col:last-child li {
  color: var(--ink);
  border-left-color: var(--ocean);
  background: rgba(95,168,211,.05);
}

.c-case__gap-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--ink-muted);
  padding-top: 52px;
}

/* ── Orion: audit severity bars ── */
.c-case__audit-bars {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-case__audit-row {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  gap: 16px;
  align-items: center;
}
@media(max-width:600px) { .c-case__audit-row { grid-template-columns: 64px 1fr 28px; gap: 10px; } }

.c-case__audit-level {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: right;
}

.c-case__audit-bar-wrap {
  height: 10px;
  background: var(--rule);
  border-radius: 100px;
  overflow: hidden;
}

.c-case__audit-fill {
  height: 100%;
  width: var(--bar-w, 100%);
  border-radius: 100px;
  background: var(--ink);
  transform-origin: left;
  animation: barGrow .8s cubic-bezier(.215,.61,.355,1) forwards;
}
.c-case__audit-fill--high { background: #5FA8D3; }
.c-case__audit-fill--med  { background: rgba(95,168,211,.45); }
.c-case__audit-fill--low  { background: rgba(95,168,211,.2); }

@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.c-case__audit-count {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-align: center;
}

.c-case__audit-note-row {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--ink-muted);
  font-weight: 300;
  display: block;
  margin-top: 4px;
  grid-column: 2 / 4;
}

.c-case__audit-footer {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CLIENTS STRIP
───────────────────────────────────────────── */
.c-clients {
  padding: 56px 40px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
@media(max-width:600px) { .c-clients { padding: 48px 20px; } }

.c-clients__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.c-clients__label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.c-clients__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.c-clients__name {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.015em;
  padding: 8px 20px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: transparent;
  transition: border-color .2s, background .2s;
}
.c-clients__name:hover { border-color: var(--ocean); background: var(--bg-ocean); }

/* ─────────────────────────────────────────────
   ABOUT SNIPPET (home page teaser)
───────────────────────────────────────────── */
.c-about-snap {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
@media(max-width:600px) { .c-about-snap { padding: 80px 20px; } }

.c-about-snap__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media(max-width:760px) { .c-about-snap__inner { grid-template-columns: 1fr; gap: 48px; } }

.c-about-snap__heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.c-about-snap__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.c-about-snap__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--bg-alt);
}
.c-about-snap__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.92);
  transition: transform .6s cubic-bezier(.215,.61,.355,1);
}
.c-about-snap__img:hover img { transform: scale(1.04); }

.c-about-snap__team-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.c-about-snap__avatars {
  display: flex;
  margin-right: 4px;
}

.c-about-snap__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  overflow: hidden;
  margin-left: -10px;
  background: var(--bg-alt);
}
.c-about-snap__avatar:first-child { margin-left: 0; }
.c-about-snap__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.c-about-snap__team-label {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.4;
}
.c-about-snap__team-label strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: -.01em;
}
.c-about-snap__team-label a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 400;
  font-size: .82rem;
  transition: opacity .2s;
}
.c-about-snap__team-label a:hover { opacity: .7; }

/* ─────────────────────────────────────────────
   TEAM SECTION (about page)
───────────────────────────────────────────── */
.c-team {
  padding: 100px 40px;
  background: var(--bg);
}
@media(max-width:600px) { .c-team { padding: 80px 20px; } }

.c-team__inner { max-width: 1320px; margin: 0 auto; }

.c-team__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 64px;
}

.c-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media(max-width:900px) { .c-team__grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .c-team__grid { grid-template-columns: 1fr; } }

.c-team__card {}

.c-team__photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  position: relative;
  margin-bottom: 20px;
}
.c-team__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.8) brightness(.95);
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
}
.c-team__card:hover .c-team__photo img { transform: scale(1.04); }

.c-team__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,46,66,.25) 100%);
}

.c-team__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.c-team__role {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}

.c-team__bio {
  font-family: var(--font-body);
  font-size: .9625rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.c-team__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid rgba(95,168,211,.25);
  transition: border-color .2s, opacity .2s;
}
.c-team__linkedin:hover { border-color: var(--ocean); opacity: .8; }
.c-team__linkedin svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────
   VALUES SECTION (about page)
───────────────────────────────────────────── */
.c-values {
  background: var(--ink);
  padding: 100px 40px;
  color: #fff;
}
@media(max-width:600px) { .c-values { padding: 80px 20px; } }

.c-values__inner { max-width: 1320px; margin: 0 auto; }

.c-values__heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 72px;
}

.c-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media(max-width:700px) { .c-values__grid { grid-template-columns: 1fr; } }

.c-values__item {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 48px 0;
}
.c-values__item:nth-child(odd) { padding-right: 60px; border-right: 1px solid rgba(255,255,255,.12); }
.c-values__item:nth-child(even) { padding-left: 60px; }
.c-values__item:last-child,
.c-values__item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid rgba(255,255,255,.12); }
@media(max-width:700px) {
  .c-values__item:nth-child(odd),
  .c-values__item:nth-child(even) { padding: 36px 0; border-right: none; }
  .c-values__item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
}

.c-values__num {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 20px;
}

.c-values__title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.c-values__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 380px;
}

/* ─────────────────────────────────────────────
   STUDIO STORY (about page)
───────────────────────────────────────────── */
.c-story {
  padding: 100px 40px;
  background: var(--bg-alt);
}
@media(max-width:600px) { .c-story { padding: 80px 20px; } }

.c-story__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media(max-width:760px) { .c-story__inner { grid-template-columns: 1fr; gap: 48px; } }

.c-story__label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 24px;
}

.c-story__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0;
}

.c-story__body {
  padding-top: 8px;
}

.c-story__body p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.c-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.c-story__stat-num {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  display: block;
}

.c-story__stat-label {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-top: 6px;
  display: block;
}

/* ─────────────────────────────────────────────
   CONTACT INFO COLUMNS (contact page)
───────────────────────────────────────────── */
.c-contact-cols {
  padding: 80px 40px 0;
  background: var(--bg-alt);
}
@media(max-width:600px) { .c-contact-cols { padding: 60px 20px 0; } }

.c-contact-cols__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
@media(max-width:700px) { .c-contact-cols__inner { grid-template-columns: 1fr; } }

.c-contact-col {
  background: var(--bg-alt);
  padding: 40px 36px;
  transition: background .2s;
}
.c-contact-col:hover { background: var(--bg); }

.c-contact-col__label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 12px;
}

.c-contact-col__heading {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.c-contact-col__desc {
  font-family: var(--font-body);
  font-size: .9425rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.c-contact-col__link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid rgba(95,168,211,.3);
  transition: border-color .2s;
  display: inline-block;
}
.c-contact-col__link:hover { border-color: var(--ocean); }

/* ─────────────────────────────────────────────
   FOOTER v2 — rich multi-column
───────────────────────────────────────────── */
.c-footer {
  background: var(--ink);
  padding: 72px 40px 0;
}
@media(max-width:600px) { .c-footer { padding: 60px 20px 0; } }

.c-footer__top {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media(max-width:960px) { .c-footer__top { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .c-footer__top { grid-template-columns: 1fr; gap: 36px; } }

.c-footer__logo {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.c-footer__tagline {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 28px;
}

.c-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-footer__location {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
}

.c-footer__email {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.c-footer__email:hover { color: #fff; }

.c-footer__col-label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: 20px;
}

.c-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-footer__nav a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.c-footer__nav a:hover { color: #fff; }

.c-footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.c-footer__social-link:hover { color: #fff; }

.c-footer__social-link svg {
  width: 16px; height: 16px;
  opacity: .6;
  transition: opacity .2s;
  flex-shrink: 0;
}
.c-footer__social-link:hover svg { opacity: 1; }

.c-footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.c-footer__copy {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.c-footer__up {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.c-footer__up:hover { color: rgba(255,255,255,.8); }

/* ─────────────────────────────────────────────
   MERRIWEATHER — DISPLAY HEADINGS
───────────────────────────────────────────── */
.c-hero__heading,
.c-page-hero__heading,
.c-cap__title,
.c-story__heading,
.c-values__title,
.c-team__heading,
.c-process__heading,
.c-work__heading,
.c-case__body h3,
.c-sectors__heading,
.c-thumb__title,
.c-faq__heading,
.c-cta__text,
.c-about-snap__heading,
.c-values__heading,
.c-story__stat-num {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -.01em;
}

/* ─────────────────────────────────────────────
   MOBILE RESPONSIVENESS FIXES
───────────────────────────────────────────── */

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; }

/* Clients strip: stack label + names on mobile */
@media(max-width:600px) {
  .c-clients__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .c-clients__label { white-space: normal; }
}

/* Splash: taller on small screens so text doesn't crop */
@media(max-width:500px) {
  .c-splash__inner { aspect-ratio: 4/3; }
}

/* Sectors marquee: prevent bleed */
.c-sectors__track-wrap { overflow: hidden; max-width: 100%; }

/* Footer: ensure proper stacking */
@media(max-width:560px) {
  .c-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Work header: stack on small screens */
@media(max-width:480px) {
  .c-work__header { flex-direction: column; align-items: flex-start; }
}

/* Case study meta: 2 cols on tiny screens */
@media(max-width:400px) {
  .c-case__meta { grid-template-columns: 1fr 1fr; }
}

/* Cap grid: ensure no overflow on tablet */
@media(max-width:760px) {
  .c-cap__grid { grid-template-columns: 1fr; gap: 32px; }
  .c-cap__media { order: -1; }
  .c-cap__grid--reverse .c-cap__media { order: -1; }
}

/* Page hero: more breathing room on mobile */
@media(max-width:400px) {
  .c-page-hero { padding: 110px 16px 48px; }
  .c-page-hero__heading { font-size: clamp(2rem, 9vw, 3.5rem); }
}

/* ─────────────────────────────────────────────
   AVAILABILITY SIGNAL
───────────────────────────────────────────── */
.c-hero__avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-family: var(--font-body);
  color: var(--ink-muted);
  letter-spacing: .01em;
}
.c-hero__avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3db57a;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(61,181,122,.4);
  animation: avail-pulse 2.4s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(61,181,122,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(61,181,122,0); }
}

/* ─────────────────────────────────────────────
   WHO WE WORK WITH (c-fit)
───────────────────────────────────────────── */
.c-fit {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.c-fit__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
}
.c-fit__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 48px;
  color: var(--ink);
}
.c-fit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media(max-width:760px) {
  .c-fit__grid { grid-template-columns: 1fr; gap: 28px; }
}
.c-fit__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.c-fit__icon {
  font-size: 1.1rem;
  color: var(--ocean);
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-body);
}
.c-fit__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.c-fit__desc {
  font-size: .9625rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────
   SCOPE SIGNAL (services page)
───────────────────────────────────────────── */
.c-scope {
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.c-scope__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
}
.c-scope__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 48px;
  color: var(--ink);
}
.c-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media(max-width:900px) {
  .c-scope__grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:500px) {
  .c-scope__grid { grid-template-columns: 1fr; }
}
.c-scope__item {
  border-top: 2px solid var(--ocean);
  padding-top: 24px;
}
.c-scope__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.c-scope__duration {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.c-scope__desc {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────
   FOOTER LEGAL NAV
───────────────────────────────────────────── */
.c-footer__legal {
  display: flex;
  gap: 16px;
}
.c-footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.c-footer__legal a:hover { color: rgba(255,255,255,.75); }

/* ─────────────────────────────────────────────
   MENU FOOTER LINKEDIN
───────────────────────────────────────────── */
.c-menu__footer a + a {
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   CASE STUDY PAGES
───────────────────────────────────────────── */
.c-case-hero { position: relative; }
.c-case-hero__back {
  display: inline-block;
  font-size: .85rem;
  font-family: var(--font-body);
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color .2s;
}
.c-case-hero__back:hover { color: var(--ink); }
.c-case-hero__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.c-case-cover {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.c-case-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-case-body {
  padding: 64px 0 80px;
}
.c-case-body__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 60px);
}
.c-case-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
@media(max-width:560px) {
  .c-case-meta { grid-template-columns: 1fr 1fr; }
}
.c-case-meta__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.c-case-meta__value {
  display: block;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
}
.c-case-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.c-case-section__heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.c-case-section__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  max-width: 68ch;
}

/* ─────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .drift-char { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal-up  { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal-fade { opacity: 1 !important; transition: none !important; }
  .c-sectors__track { animation: none !important; }
  .c-hero__down-line { animation: none !important; transform: scaleY(1); }
  .c-hero__down svg { animation: none !important; }
  * { transition-duration: .01ms !important; }
}
