/* ============================================================
   SERIOUS MISSION — Shared case-study stylesheet
   Applied by every case-study HTML page via <link rel="stylesheet">.
   Any global visual change happens here once.
   ============================================================ */

/* ---------- @font-face ------------------------------------ */
@font-face { font-family: 'Intro Rust Bookbasel';
  src: url('../fonts/introrust/IntroRustBook-BaseL.woff') format('woff'),
       url('../fonts/introrust/IntroRustBook-BaseL.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: block; }
@font-face { font-family: 'Intro Rust Base';
  src: url('../fonts/introrust/IntroRust-Base.woff') format('woff'),
       url('../fonts/introrust/IntroRust-Base.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: block; }
@font-face { font-family: 'Proxima Nova';
  src: url('../fonts/proxima-nova/Proxima Nova Light.otf') format('opentype');
  font-weight: 300; font-display: swap; }
@font-face { font-family: 'Proxima Nova';
  src: url('../fonts/proxima-nova/Proxima Nova Reg.otf') format('opentype');
  font-weight: 400; font-display: swap; }
@font-face { font-family: 'Proxima Nova';
  src: url('../fonts/proxima-nova/Proxima Nova Sbold.otf') format('opentype');
  font-weight: 600; font-display: swap; }
@font-face { font-family: 'Proxima Nova';
  src: url('../fonts/proxima-nova/Proxima Nova Bold.otf') format('opentype');
  font-weight: 700; font-display: swap; }
@font-face { font-family: 'Proxima Nova';
  src: url('../fonts/proxima-nova/Proxima Nova Black.otf') format('opentype');
  font-weight: 900; font-display: swap; }

/* ---------- Design tokens --------------------------------- */
:root {
  --poppy: #FF4E00; --poppy-rich: #E70C00; --poppy-xlight: #FFF8F7;
  --teal: #00B3B3; --teal-rich: #00798F; --teal-vivid: #00D5D0; --teal-xlight: #F0FFFE;
  --grey: #849498; --grey-rich: #353636; --grey-vivid: #5E717B; --grey-light: #BFCBCE; --grey-xlight: #FEFEFE;
  --deep-space: #131320; --ink: #0A024B; --indigo: #0F008B; --reflex: #2903E3;
  --mustang-grape: #460032; --deep-magenta: #A31932; --red-dwarf: #CC0434;
  --font-h: 'Intro Rust Bookbasel', 'Montserrat', Georgia, serif;
  --font-sub: 'Intro Rust Base', 'Rubik Dirt', system-ui, sans-serif;
  --font-body: 'Proxima Nova', 'Inter', system-ui, -apple-system, sans-serif;
  --fs-display: clamp(48px, 6.8vw, 88px);
  --fs-h1: clamp(38px, 5vw, 64px);
  --fs-h2: clamp(28px, 3.4vw, 44px);
  --fs-h3: clamp(20px, 1.9vw, 26px);
  --fs-stat: clamp(64px, 9vw, 128px);
  --fs-body: 17px;
  --fs-lede: clamp(18px, 1.6vw, 22px);
}

/* ---------- Base ----------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.6;
  color: var(--ink); background: var(--grey-xlight);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2 { font-family: var(--font-h); font-weight: 200; line-height: 1.05; margin: 0; letter-spacing: -0.005em; font-synthesis: none; }
h3 { font-family: var(--font-sub); font-weight: 400; line-height: 1.2; margin: 0; }
p { margin: 0 0 1em; }
a { color: var(--reflex); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ---------- Utilities ------------------------------------ */
.eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 20px;
}
.eyebrow.on-dark { color: var(--teal-light); }
.eyebrow.on-dark-poppy { color: var(--poppy); }
.eyebrow.on-dark-teal { color: var(--teal-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) {
  .container, .container-narrow, .container-wide { padding: 0 64px; }
}

.section { padding: 96px 0; }
.section--lg { padding: 160px 0; }
.section--md { padding: 128px 0; }
.section--ink { background: var(--ink); color: white; }
.section--ink h2, .section--ink h3 { color: white; }
.section--deep { background: var(--deep-space); color: white; }
.section--deep h2, .section--deep h3 { color: white; }
.section--cream { background: var(--poppy-xlight); }
.section--teal-tint { background: var(--teal-xlight); }

/* ---------- Header --------------------------------------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 30px 0;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1440px; margin: 0 auto; padding: 0 30px;
}
@media (min-width: 1024px) { .site-header__inner { padding: 0 64px; } }
.site-header__logo { display: inline-flex; align-items: center; padding: 0; }
.site-header__logo img { height: 36px; width: auto; display: block; }
.site-nav { display: none; gap: 40px; align-items: center; }
@media (min-width: 900px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: white; text-decoration: none;
}
.site-nav a:not(.btn):hover { color: var(--teal-light); }
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover { color: white; }

/* ---------- Buttons -------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
  padding: 14px 28px; border-radius: 4px; border: 2px solid transparent;
  transition: all 150ms ease;
}
.btn-primary { background: var(--poppy); color: white; }
.btn-primary:hover { background: var(--poppy-rich); transform: translateY(-1px); color: white; }
.btn-secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: white; }
.btn-secondary.on-dark { border-color: white; color: white; }
.btn-secondary.on-dark:hover { background: white; color: var(--ink); }
.btn-nav { padding: 10px 20px; font-size: 12px; }

/* ---------- Hero ---------------------------------------- */
.cs-hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end; overflow: hidden;
  color: white; padding-bottom: 96px;
}
.cs-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; filter: saturate(0.85); }
.cs-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(10,2,75,0.85) 0%, rgba(10,2,75,0.55) 40%, rgba(19,19,32,0.30) 78%, rgba(19,19,32,0.1) 100%),
    linear-gradient(180deg, rgba(19,19,32,0.55) 0%, rgba(19,19,32,0.0) 30%, rgba(19,19,32,0.75) 100%);
}
.cs-hero__content { position: relative; z-index: 2; padding-top: 160px; max-width: 900px; }
.cs-hero__h1 { font-size: var(--fs-display); color: white; margin: 0 0 32px; }
.cs-hero__h1 em { font-style: normal; color: var(--poppy); }
.cs-hero__deck { font-size: var(--fs-lede); line-height: 1.45; color: rgba(255,255,255,0.92); max-width: 62ch; margin-bottom: 40px; }

.cs-facts {
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right; gap: 18px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.cs-facts > div { display: block; }
.cs-facts dt {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-vivid); margin-bottom: 4px;
}
.cs-facts dd { margin: 0; font-family: var(--font-sub); font-size: 17px; color: white; line-height: 1.3; max-width: 44ch; }

/* ---------- Ask ---------------------------------------- */
.ask h2, .approach h2, .outcome h2, .principles h2, .artifacts h2, .related h2 {
  font-size: var(--fs-h2); margin-bottom: 32px;
}
.ask__body p { font-size: var(--fs-lede); line-height: 1.5; color: var(--grey-rich); margin-bottom: 24px; }
.ask__body p:first-of-type { color: var(--ink); }

/* ---------- Approach ------------------------------------ */
.approach { background: var(--grey-xlight); }
.approach-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-top: 24px; }
@media (min-width: 800px) { .approach-grid { grid-template-columns: repeat(2, 1fr); gap: 56px; } }
.approach-step { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 2px solid var(--poppy); }
.approach-step__num { font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: 0.16em; color: var(--poppy); }
.approach-step h3 { color: var(--ink); margin-bottom: 4px; }
.approach-step p { color: var(--grey-rich); font-size: 16px; line-height: 1.55; margin: 0; }

/* ---------- Outcome ------------------------------------- */
.outcome { background: var(--ink); color: white; }
.outcome__stats { display: grid; gap: 40px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 800px) { .outcome__stats { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: 32px 0; border-top: 2px solid var(--poppy); }
.stat__num {
  display: block; font-family: var(--font-h); font-weight: 400;
  font-size: var(--fs-stat); line-height: 1; letter-spacing: -0.02em;
  color: white; margin-bottom: 16px;
}
.stat__label { font-family: var(--font-body); font-size: 15px; line-height: 1.4; color: rgba(255,255,255,0.85); }
.stat__note { font-size: 12px; color: var(--teal-vivid); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; display: block; }

/* ---------- Pull quote ---------------------------------- */
.pullquote { padding: 96px 0; position: relative; color: white; text-align: center; background-size: cover; background-position: center; }
.pullquote::before { content: ''; position: absolute; inset: 0; background: rgba(10, 2, 75, 0.55); }
.pullquote__inner { position: relative; z-index: 2; }
.pullquote blockquote {
  font-family: var(--font-h); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15;
  color: white; max-width: 24ch; margin: 0 auto 24px;
}
.pullquote__attr { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-vivid); }

/* ---------- Principles ---------------------------------- */
.principles { background: var(--poppy-xlight); }
.principles-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 800px) { .principles-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.principle { background: white; border: 1px solid var(--grey-light); border-radius: 4px; padding: 32px; }
.principle__num { font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: 0.16em; color: var(--poppy); display: block; margin-bottom: 12px; }
.principle h3 { font-family: var(--font-sub); font-size: 22px; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.principle p { color: var(--grey-rich); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- Artifacts ----------------------------------- */
.artifacts { padding: 96px 0; }
.artifacts-note {
  padding: 24px 32px; background: var(--teal-xlight);
  border-left: 4px solid var(--teal-rich);
  font-size: 14px; color: var(--grey-rich); line-height: 1.5; margin: 0;
}
.artifacts-note strong { color: var(--ink); }
.needs-erica {
  background: #FFF3E0; border-left: 4px solid var(--poppy);
  padding: 16px 24px; margin: 16px 0;
  font-size: 14px; color: var(--grey-rich); line-height: 1.5;
}
.needs-erica strong { color: var(--poppy-rich); }

/* ---------- Gallery / Carousel ----------
   One featured slide at a time. Handles images, gifs, mp4/m4v/webm.
   Left/right nav, keyboard arrows, touch swipe, autoplay-on-active-slide.
   ------------------------------------------- */
.gallery { position: relative; margin: 32px 0 0; }
.gallery-viewport {
  position: relative; overflow: hidden;
  border-radius: 4px; background: white;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--grey-light);
}
.gallery-track {
  display: flex; height: 100%;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 24px;
}
/* 2-up modifier: two slides visible per position */
.gallery[data-per-view="2"] .gallery-slide { flex: 0 0 50%; padding: 24px 12px; }
.gallery[data-per-view="2"] .gallery-viewport { aspect-ratio: 16 / 9; }
.gallery-slide img,
.gallery-slide video {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.94); border: none;
  color: var(--ink); font-size: 22px; line-height: 1; font-weight: 400;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 150ms ease;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.3);
}
.gallery-nav:hover:not(:disabled) { background: white; transform: translateY(-50%) scale(1.05); }
.gallery-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.gallery-nav--prev { left: 12px; }
.gallery-nav--next { right: 12px; }
@media (min-width: 800px) {
  .gallery-nav { width: 56px; height: 56px; font-size: 26px; }
  .gallery-nav--prev { left: 20px; }
  .gallery-nav--next { right: 20px; }
}
.gallery-caption {
  margin-top: 16px; text-align: center;
  font-size: 14px; color: var(--grey-rich); line-height: 1.4;
  min-height: 1.5em;
}
.gallery-counter {
  margin-top: 8px; text-align: center;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-vivid);
}
.gallery:focus-visible { outline: 2px solid var(--reflex); outline-offset: 4px; border-radius: 4px; }

/* ---------- Work / Case-studies index cards ---------- */
.work-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; overflow: hidden;
  color: white; padding: 160px 0 96px;
}
.work-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(0.85); }
.work-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(10,2,75,0.85) 0%, rgba(10,2,75,0.55) 45%, rgba(19,19,32,0.35) 80%, rgba(19,19,32,0.15) 100%),
    linear-gradient(180deg, rgba(19,19,32,0.55) 0%, rgba(19,19,32,0.0) 30%, rgba(19,19,32,0.7) 100%);
}
.work-hero__content { position: relative; z-index: 2; max-width: 900px; }
.work-hero__h1 { font-size: var(--fs-display); color: white; margin: 0 0 24px; }
.work-hero__h1 em { font-style: normal; color: var(--poppy); }
.work-hero__deck { font-size: var(--fs-lede); line-height: 1.45; color: rgba(255,255,255,0.92); max-width: 60ch; }

.work-index-section { padding: 96px 0; }
.work-index-section--tint { background: var(--poppy-xlight); }
.work-index-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
  padding-bottom: 24px; border-bottom: 2px solid var(--ink);
}
.work-index-head h2 { font-size: var(--fs-h1); }
.work-index-head__count {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-vivid);
  white-space: nowrap;
}
.work-index-blurb {
  max-width: 68ch;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--grey-rich);
  margin: -32px 0 48px;
}

.work-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.work-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: white; border: 1px solid var(--grey-light); border-radius: 4px;
  overflow: hidden;
  transition: all 250ms ease;
}
.work-card:hover {
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(10,2,75,0.25);
  transform: translateY(-4px);
  color: inherit;
}
.work-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  background-color: var(--deep-space);
  transition: transform 400ms ease;
  overflow: hidden;
}
/* Unifying blue wash so all card thumbnails feel like a set */
.work-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(150deg, rgba(10, 2, 75, 0.72) 0%, rgba(19, 19, 32, 0.55) 55%, rgba(10, 2, 75, 0.80) 100%);
  transition: opacity 250ms ease;
  pointer-events: none;
}
.work-card:hover .work-card__media { transform: scale(1.02); }
.work-card:hover .work-card__media::after { opacity: 0.6; }
.work-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.work-card__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--reflex);
  margin: 0;
}
.work-card__title {
  font-family: var(--font-sub); font-size: 22px; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.work-card__desc {
  color: var(--grey-rich); font-size: 15px; line-height: 1.5; margin: 0;
}
.work-card__link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
}
.work-card__link::after { content: '→'; transition: transform 150ms ease; }
.work-card:hover .work-card__link { color: var(--reflex); }
.work-card:hover .work-card__link::after { transform: translateX(3px); }

/* ---------- Process page ---------- */
.process-intro { padding: 96px 0 40px; }
.process-intro__eyebrow { color: var(--poppy); }
.process-intro h2 { font-size: var(--fs-h1); max-width: 20ch; }
.process-intro__deck {
  max-width: 68ch;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--grey-rich);
  margin: 24px 0 0;
}

.process-phases { padding: 40px 0 96px; }
.process-phase {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--grey-light);
  align-items: start;
}
.process-phase:first-child { border-top: none; padding-top: 24px; }
@media (max-width: 800px) {
  .process-phase { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
}
.process-phase__marker {
  display: flex; align-items: flex-start;
}
.process-phase__icon {
  width: 62px; height: 62px;
}
@media (max-width: 800px) {
  .process-phase__icon { width: 52px; height: 52px; }
}
.process-phase__num {
  display: block;
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 22px;
  color: var(--poppy);
  line-height: 1;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.process-phase__body h3 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.process-phase__body p {
  color: var(--grey-rich);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 62ch;
}
.process-phase__body ul {
  color: var(--grey-rich);
  font-size: 17px;
  line-height: 1.55;
  padding-left: 24px;
  margin: 0 0 16px;
  max-width: 60ch;
}
.process-phase__body li { margin-bottom: 6px; }

/* ---------- Services page ---------- */
.services-section { padding: 96px 0; }
.services-section--tint { background: var(--poppy-xlight); }

/* Clarity offerings — three expanded "drawer" cards */
.clarity-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 900px) { .clarity-grid { grid-template-columns: repeat(3, 1fr); } }
.clarity-card {
  background: white; border: 1px solid var(--grey-light); border-radius: 4px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color 200ms ease;
}
.clarity-card:hover { border-color: var(--ink); }
.clarity-card__title {
  font-family: var(--font-sub); font-weight: 400;
  font-size: 22px; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.clarity-card__body {
  color: var(--grey-rich); font-size: 15px; line-height: 1.55;
  margin: 0; flex: 1;
}
.clarity-card__outcome {
  padding-top: 16px; border-top: 1px solid var(--grey-light);
}
.clarity-card__outcome p {
  margin: 0; font-size: 14px; color: var(--grey-rich); line-height: 1.5;
}
.clarity-card__meta-label {
  display: block; font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--poppy);
  margin-bottom: 6px;
}
.clarity-card__price {
  padding-top: 16px; border-top: 1px solid var(--grey-light);
  font-family: var(--font-h); font-weight: 400; font-size: 26px;
  color: var(--teal); line-height: 1;
  letter-spacing: -0.005em;
}
.clarity-card__price-note {
  display: block;
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  font-style: italic; color: var(--grey-vivid);
  letter-spacing: 0; text-transform: none;
  margin-top: 8px;
}
.clarity-card__cta { align-self: flex-start; margin-top: 4px; }

/* Four service categories — larger 2-up cards */
.service-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: white; border: 1px solid var(--grey-light); border-radius: 4px;
  padding: 40px; display: flex; flex-direction: column; gap: 20px;
  transition: all 200ms ease;
}
.service-card:hover {
  border-color: var(--ink);
  box-shadow: 0 16px 32px -20px rgba(10,2,75,0.25);
  transform: translateY(-2px);
}
.service-card__name {
  font-family: var(--font-h); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.05;
  color: var(--ink); margin: 0;
  letter-spacing: -0.005em;
}
.service-card__tagline {
  font-family: var(--font-sub); font-weight: 400;
  font-size: clamp(19px, 1.6vw, 22px); line-height: 1.25;
  color: var(--ink); margin: 0;
}
.service-card__desc {
  color: var(--grey-rich); font-size: 16px; line-height: 1.55; margin: 0;
}
.service-card__includes {
  padding-top: 20px; border-top: 1px solid var(--grey-light);
  font-size: 14px; color: var(--ink); line-height: 1.5;
  margin: 0;
}
.service-card__includes-label {
  display: block; font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--poppy);
  margin-bottom: 6px;
}
.service-card__cta { margin-top: 8px; align-self: flex-start; }

/* ---------- Contact page ---------- */
.contact-methods { padding: 96px 0; }
.contact-grid {
  display: grid; gap: 56px; grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }

.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info__item { display: flex; flex-direction: column; gap: 8px; }
.contact-info__label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--poppy);
}
.contact-info__link {
  font-family: var(--font-sub); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink); line-height: 1.2; word-break: break-word;
  text-decoration: none;
  transition: color 150ms ease;
}
.contact-info__link:hover { color: var(--reflex); }
.contact-info__note { font-size: 14px; color: var(--grey-vivid); margin: 0; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
}
.contact-form__required { color: var(--poppy); margin-left: 2px; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body); font-size: 16px;
  color: var(--ink); background: white;
  border: 1.5px solid var(--grey-light); border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
  max-width: 60%;
}
@media (max-width: 640px) {
  .contact-form input,
  .contact-form textarea { max-width: 100%; }
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--reflex);
  box-shadow: 0 0 0 3px rgba(41, 3, 227, 0.12);
}
.contact-form input::placeholder { color: var(--grey); font-weight: 400; }
.contact-form__submit { align-self: flex-start; margin-top: 8px; }
.contact-form__hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.booking-section { background: var(--poppy-xlight); padding: 96px 0; }
.booking-head { text-align: center; margin-bottom: 40px; }
.booking-head h2 { font-size: var(--fs-h1); }
.booking-head__deck {
  max-width: 60ch; margin: 16px auto 0;
  color: var(--grey-rich);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
}
.booking-embed {
  background: white; border: 1px solid var(--grey-light);
  border-radius: 4px; overflow: hidden;
}
.booking-embed iframe {
  display: block; width: 100%; border: 0; height: 780px;
}
@media (min-width: 1024px) {
  .booking-embed iframe { height: 800px; }
}

/* ---------- Home page ---------- */
.home-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  color: white;
}
.home-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; filter: saturate(0.92); }
.home-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(10,2,75,0.78) 0%, rgba(10,2,75,0.55) 38%, rgba(19,19,32,0.20) 75%, rgba(19,19,32,0.0) 100%),
    linear-gradient(180deg, rgba(19,19,32,0.5) 0%, rgba(19,19,32,0.0) 35%, rgba(19,19,32,0.7) 100%);
}
.home-hero__content { position: relative; z-index: 2; padding: 200px 0 120px; max-width: 900px; }
.home-hero__h1 {
  font-size: clamp(48px, 7.2vw, 96px);
  color: white; margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.home-hero__h1 em { font-style: normal; color: var(--poppy); }
.home-hero__deck {
  font-size: clamp(18px, 1.65vw, 22px); line-height: 1.45;
  color: rgba(255,255,255,0.94); max-width: 58ch; margin-bottom: 40px;
}
.home-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Mission band — centered brand thesis */
.home-mission { padding: 128px 0; background: var(--grey-xlight); text-align: center; }
.home-mission__quote {
  font-family: var(--font-h); font-weight: 200; font-synthesis: none;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.15;
  color: var(--ink); max-width: 22ch; margin: 0 auto 32px;
  letter-spacing: -0.005em;
}
.home-mission__body {
  color: var(--grey-rich); max-width: 60ch; margin: 0 auto;
  font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55;
}

/* Section head — reusable for home sections */
.home-section { padding: 128px 0; }
.home-section--tint { background: var(--poppy-xlight); }
.home-section--ink { background: var(--ink); color: white; }
.home-section--ink h2 { color: white; }
.home-section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
  padding-bottom: 24px; border-bottom: 2px solid var(--ink);
}
.home-section--ink .home-section__head { border-bottom-color: rgba(255,255,255,0.25); }
.home-section__head h2 { font-size: var(--fs-h1); max-width: 20ch; }
.home-section__head-right { max-width: 40ch; }
.home-section__head-right p { color: var(--grey-rich); font-size: 17px; line-height: 1.55; margin: 0; }
.home-section--ink .home-section__head-right p { color: rgba(255,255,255,0.8); }

/* Process snapshot — 6 phases compact grid */
.home-process-grid {
  display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr);
  margin-top: 8px;
}
@media (min-width: 700px)  { .home-process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .home-process-grid { grid-template-columns: repeat(6, 1fr); gap: 24px; } }
.home-process-step {
  display: flex; flex-direction: column; gap: 20px;
}
.home-process-step__icon { width: 48px; height: 48px; }
.home-process-step__meta {
  padding-top: 16px;
  border-top: 2px solid var(--teal-light);
  display: flex; flex-direction: column; gap: 8px;
}
.home-process-step__num {
  font-family: var(--font-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.14em; color: var(--teal-light);
}
.home-process-step__title {
  font-family: var(--font-sub); font-size: 16px; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.home-section--ink .home-process-step__title { color: white; }

/* Home services overview — compact 4-up */
.home-services-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 700px)  { .home-services-grid { grid-template-columns: repeat(2, 1fr); } }
.home-service-card {
  display: flex; flex-direction: column; gap: 12px;
  background: white; border: 1px solid var(--grey-light); border-radius: 4px;
  padding: 28px 28px 24px;
  text-decoration: none; color: inherit;
  transition: all 200ms ease;
}
.home-service-card:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 28px -18px rgba(10,2,75,0.25);
  transform: translateY(-2px); color: inherit;
}
.home-service-card__name {
  font-family: var(--font-h); font-weight: 200; font-synthesis: none;
  font-size: clamp(22px, 2vw, 28px); line-height: 1.1;
  color: var(--ink); margin: 0; letter-spacing: -0.005em;
}
.home-service-card__desc {
  color: var(--grey-rich); font-size: 15px; line-height: 1.5; margin: 0;
}
.home-service-card__link {
  margin-top: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.home-service-card__link::after { content: '→'; transition: transform 150ms ease; }
.home-service-card:hover .home-service-card__link { color: var(--reflex); }
.home-service-card:hover .home-service-card__link::after { transform: translateX(3px); }

/* Related services ---------------------------- */
/* ---------- Bio / Meet Erica page ---------- */
.bio-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  color: white;
}
.bio-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 25%; filter: saturate(0.9); }
.bio-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.bio-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(115deg, rgba(10,2,75,0.72) 0%, rgba(10,2,75,0.42) 45%, rgba(19,19,32,0.15) 80%, rgba(19,19,32,0.1) 100%),
    linear-gradient(180deg, rgba(19,19,32,0.45) 0%, rgba(19,19,32,0.0) 40%, rgba(19,19,32,0.55) 100%);
}
.bio-hero__content { position: relative; z-index: 2; padding: 200px 0 120px; max-width: 900px; }
.bio-hero__headline-row {
  display: flex; align-items: flex-start; gap: 32px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.bio-hero__portrait {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
}
.bio-hero__headline-text { flex: 1 1 auto; min-width: 200px; }
.bio-hero__h1 {
  font-size: clamp(48px, 7.2vw, 96px);
  color: white; margin: 0;
  letter-spacing: -0.01em;
}
.bio-hero__h1 em { font-style: normal; color: var(--poppy); }
.bio-hero__role {
  font-family: var(--font-sub); font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.3;
  color: rgba(255,255,255,0.92);
  margin: 12px 0 0;
}
.bio-hero__deck {
  font-size: clamp(18px, 1.65vw, 22px); line-height: 1.45;
  color: rgba(255,255,255,0.94); max-width: 58ch; margin: 0 0 20px;
}
.bio-hero__deck + .bio-hero__deck { margin-top: 0; }

/* Mission intro */
.bio-mission { padding: 128px 0; background: var(--grey-xlight); text-align: center; }
.bio-mission__h2 {
  font-family: var(--font-h); font-weight: 200; font-synthesis: none;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.15;
  color: var(--ink); max-width: 24ch; margin: 0 auto 24px;
  letter-spacing: -0.005em;
}
.bio-mission__body {
  color: var(--grey-rich); max-width: 65ch; margin: 0 auto 20px;
  font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55;
  text-align: left;
}
@media (min-width: 900px) { .bio-mission__body { text-align: center; } }
.bio-mission__caps {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--poppy);
  max-width: 60ch; margin: 32px auto 0;
}

/* Capabilities grid — reuse home-services-grid but with icons */
.bio-caps-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 700px) { .bio-caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bio-caps-grid { grid-template-columns: repeat(3, 1fr); } }
.bio-cap {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px;
  background: white; border: 1px solid var(--grey-light); border-radius: 4px;
}
.bio-cap__icon { width: 52px; height: 52px; margin-bottom: 4px; }
.bio-cap__name {
  font-family: var(--font-sub); font-weight: 400;
  font-size: 20px; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.bio-cap__desc { color: var(--grey-rich); font-size: 15px; line-height: 1.55; margin: 0; }

/* Experience timeline */
.bio-timeline { padding-top: 40px; }
.bio-role {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  padding: 40px 0; border-top: 1px solid var(--grey-light);
}
@media (min-width: 800px) {
  .bio-role { grid-template-columns: 180px 1fr; gap: 48px; padding: 48px 0; }
}
.bio-role:first-of-type { border-top: 0; padding-top: 8px; }
.bio-role__dates {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--poppy);
  padding-top: 6px;
}
.bio-role__body h3 {
  font-family: var(--font-h); font-weight: 200; font-synthesis: none;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1;
  color: var(--ink); margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.bio-role__body h4 {
  font-family: var(--font-sub); font-weight: 400;
  font-size: 18px; line-height: 1.2; color: var(--reflex);
  margin: 0 0 16px;
}
.bio-role__body p { color: var(--grey-rich); font-size: 16px; line-height: 1.6; margin: 0 0 12px; max-width: 62ch; }
.bio-role__body a { color: var(--reflex); }

/* FAQ */
.bio-faq { padding: 128px 0; background: var(--poppy-xlight); }
.bio-faq details {
  border-top: 1px solid var(--grey-light);
  padding: 20px 0;
}
.bio-faq details:last-of-type { border-bottom: 1px solid var(--grey-light); }
.bio-faq summary {
  font-family: var(--font-sub); font-weight: 400;
  font-size: 20px; line-height: 1.3; color: var(--ink);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.bio-faq summary::-webkit-details-marker { display: none; }
.bio-faq summary::after {
  content: '+';
  font-family: var(--font-body); font-weight: 400;
  font-size: 28px; color: var(--poppy);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.bio-faq details[open] summary::after { transform: rotate(45deg); }
.bio-faq details > *:not(summary) {
  color: var(--grey-rich); font-size: 16px; line-height: 1.6;
  margin: 12px 0 0; max-width: 68ch;
}
.bio-faq details ul { padding-left: 24px; }
.bio-faq details li { margin-bottom: 4px; }

/* ---------- Related services ---------------------------- */
.related { background: var(--grey-xlight); padding: 96px 0; }
.related-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
  background: white; border: 1.5px solid var(--ink); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none;
  transition: all 150ms ease;
}
.chip:hover { background: var(--ink); color: white; }
.chip::after { content: '→'; transition: transform 150ms ease; }
.chip:hover::after { transform: translateX(3px); }

/* ---------- Next / CTA ---------------------------------- */
.next-band { background: var(--deep-space); color: white; padding: 96px 0; }
.next-band__inner { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .next-band__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
.next-band h2 { font-size: var(--fs-h2); color: white; margin-bottom: 16px; }
.next-band p { color: rgba(255,255,255,0.85); max-width: 40ch; margin-bottom: 24px; }
.next-band__cta { text-align: right; }
@media (max-width: 899px) { .next-band__cta { text-align: left; } }

/* ---------- Footer -------------------------------------- */
.site-footer { background: var(--deep-space); color: rgba(255,255,255,0.7); padding: 40px 0 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; font-size: 13px; }
.footer-inner a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-inner a:hover { color: var(--teal-vivid); }
