/* ==================================================
   P3RE — Shared styles (v0.2)
   Identity inherited from M|B|P
   Wordmark: P³|RE (L1 · mid-lift superscript)
   ================================================== */

:root {
  --cream: #F2EFEA;
  --cream-2: #EBE8E2;
  --white: #FFFFFF;
  --blue: #3E6CAD;
  --blue-deep: #005A96;
  --blue-hover: #2F5489;
  --blue-soft: rgba(0, 114, 187, 0.08);
  --blue-faint: rgba(0, 114, 187, 0.04);
  --ink: #1A1A1A;
  --muted: #5A5A58;
  --faint: #9A9A96;
  --rule: #D9D3C7;

  --font-mono: 'IBM Plex Mono', 'Menlo', monospace;
  --font-body: 'Satoshi', 'IBM Plex Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --max-narrow: 820px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: 32px;
}
.container--narrow { max-width: var(--max-narrow); }

@media (max-width: 720px) {
  .container { padding-inline: 20px; }
}

/* ====================================================
   LOCKED MARK — P³|RE (L1 · mid-lift)
   ==================================================== */
.mark {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
}
.mark .sup-3 {
  display: inline-block;
  font-size: 0.48em;
  font-weight: 700;
  position: relative;
  top: -0.7em;
  letter-spacing: 0;
  margin-right: 0.04em;
}
.mark .pipe {
  font-weight: 400;
  margin: 0 0.06em;
  color: inherit;
}

.icon-disc {
  background: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 239, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo { display: flex; align-items: center; gap: 12px; color: var(--blue) !important; }
.site-logo .mark,
.site-logo .mark .pipe { font-size: 22px; color: var(--blue) !important; }
.footer-brand .mark,
.footer-brand .mark .pipe { color: var(--blue) !important; }

.nav-primary {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}
@media (min-width: 860px) {
  .nav-primary { display: flex; }
}
.nav-primary a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.nav-primary a:hover,
.nav-primary a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream) !important;
  background: var(--blue);
  padding: 16px 32px !important;
  margin-left: 24px;
  transition: background 180ms ease;
  border-bottom: none !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--blue-hover); border-bottom: none !important; }

.mobile-toggle {
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  padding: 8px;
  display: flex;
}
@media (min-width: 860px) {
  .mobile-toggle { display: none; }
}

/* Mobile nav drawer (toggle target for the hamburger) */
@media (max-width: 859px) {
  .nav-primary.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
    padding: 8px 24px 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    z-index: 100;
  }
  .nav-primary.is-open li { width: 100%; }
  .nav-primary.is-open a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--rule);
  }
  .nav-primary.is-open .nav-cta {
    margin: 16px 0 0;
    padding: 16px 28px;
    text-align: center;
    border-bottom: none !important;
  }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero .eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--blue);
}
.hero h1 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 2.5vw + 28px, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 16ch;
}
.hero .subhead {
  font-size: clamp(17px, 0.5vw + 16px, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 48px;
}
.hero .subhead strong { color: var(--ink); font-weight: 500; }

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream) !important;
  background: var(--blue);
  padding: 18px 28px;
  transition: background 180ms ease, transform 180ms ease;
  border: none;
  cursor: pointer;
}
.cta-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }
.cta-primary .arrow { font-size: 18px; line-height: 1; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 3px;
  transition: opacity 180ms ease;
}
.cta-secondary:hover { opacity: 0.7; }

/* Golden ratio motif */
.hero-motif {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 380px;
  height: 380px;
  opacity: 0.08;
  color: var(--blue);
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-motif { width: 260px; height: 260px; right: -80px; opacity: 0.06; }
}

/* ====================================================
   ALBATROSS BLOCK
   ==================================================== */
.albatross {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
}
.albatross .quote {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(22px, 1.5vw + 18px, 34px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 24ch;
  margin-bottom: 48px;
}
.albatross .def {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(242, 239, 234, 0.75);
  max-width: 56ch;
}
.albatross .def strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--cream);
  font-size: 20px;
  letter-spacing: 0.02em;
}

/* ====================================================
   SCOPE LINE
   ==================================================== */
.scope {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
.scope p {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(18px, 0.8vw + 16px, 26px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 38ch;
}
.scope p .div {
  color: var(--blue);
  font-weight: 400;
  margin: 0 0.4em;
}

/* ====================================================
   SECTIONS — common
   ==================================================== */
section.block { padding: 120px 0; }
section.block + section.block { border-top: 1px solid var(--rule); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.section-head h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(28px, 1.8vw + 22px, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
}
.section-head .section-sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 40ch;
  margin-top: 8px;
}

/* ====================================================
   PAGE HERO (non-home pages)
   ==================================================== */
.page-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-hero .eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--blue);
}
.page-hero h1 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 2vw + 28px, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 20ch;
}
.page-hero .lead {
  font-size: clamp(17px, 0.5vw + 16px, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}
.page-hero .lead strong { color: var(--ink); font-weight: 500; }

/* ====================================================
   FEATURED WORK — 3 cards
   ==================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 960px) {
  .work-grid { grid-template-columns: 1fr; }
}

.project-card {
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
}
.project-card .photo-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-card .photo-placeholder .pattern {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(0, 114, 187, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 114, 187, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card .photo-placeholder .label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--cream);
  padding: 4px 10px;
  border: 1px solid var(--rule);
}

.project-card .body {
  padding: 24px 24px 28px;
}
.project-card .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.project-card h3 {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.project-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.work-foot {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

/* ====================================================
   METHODOLOGY GRID
   ==================================================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .method-grid { grid-template-columns: 1fr; }
}

.phase {
  padding: 40px 28px;
  background: var(--white);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.phase:last-child { border-right: none; }
@media (max-width: 860px) {
  .phase:nth-child(2n) { border-right: none; }
  .phase:nth-child(1), .phase:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 480px) {
  .phase { border-right: none; border-bottom: 1px solid var(--rule); }
  .phase:last-child { border-bottom: none; }
}

.phase .phase-n {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.phase .phase-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.phase .phase-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.phase .phase-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: auto;
}

/* ====================================================
   METHODOLOGY FULL — step lists
   ==================================================== */
.method-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 48px;
  padding: 40px 0;
}
@media (max-width: 860px) {
  .method-full { grid-template-columns: 1fr; gap: 56px; }
}

.phase-detail {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 40px 32px;
}
.phase-detail .phase-n {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.phase-detail h3 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.phase-detail .phase-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.phase-detail ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.phase-detail ol li {
  counter-increment: step;
  padding: 20px 0 20px 52px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.phase-detail ol li:last-child { border-bottom: none; }
.phase-detail ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.phase-detail ol li strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.phase-detail ol li .desc {
  font-size: 14px;
  color: var(--muted);
}

/* ====================================================
   CASE STUDIES — Work page
   ==================================================== */
.case-study {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.case-study:last-child { border-bottom: none; }
.case-study .case-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .case-study .case-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.case-study .case-photo {
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.case-study .case-photo .pattern {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(0, 114, 187, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 114, 187, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study .case-photo .label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--cream);
  padding: 4px 10px;
  border: 1px solid var(--rule);
}

.case-study .meta-row {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.case-study h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(28px, 1.5vw + 22px, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}

.case-study .case-body dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 32px;
  margin-bottom: 8px;
}
.case-study .case-body dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 4px;
  min-width: 13ch;
}
.case-study .case-body dd {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.case-study .case-body dd + dt { border-top: 1px solid var(--rule); padding-top: 24px; }
.case-study .case-body dt + dd { }
.case-study .case-body dd {
  padding-bottom: 4px;
}

.case-study .audience-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 10px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ====================================================
   FOUNDERS MINI (home)
   ==================================================== */
.founders {
  background: var(--cream-2);
}
.founders .lede {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(18px, 0.9vw + 16px, 26px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 40ch;
  margin-bottom: 48px;
}
.founder-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .founder-pair { grid-template-columns: 1fr; }
}
.founder {
  padding: 28px 28px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
}
.founder .name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 6px;
}
.founder .role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.founder .bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ====================================================
   FULL BIO — Who We Are page
   ==================================================== */
.bio-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.bio-block:last-of-type { border-bottom: none; }
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .bio-layout { grid-template-columns: 1fr; gap: 32px; }
}
.bio-portrait {
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.bio-portrait .pattern {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(0, 114, 187, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 114, 187, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-portrait .label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--cream);
  padding: 4px 10px;
  border: 1px solid var(--rule);
}
.bio-body .name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(28px, 1.5vw + 22px, 40px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.bio-body .role {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
}
.bio-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 62ch;
}
.bio-body p:last-child { margin-bottom: 0; }

/* ====================================================
   CONTACT / INTAKE FORM
   ==================================================== */
.intake-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 80px 0 120px;
  align-items: start;
}
@media (max-width: 960px) {
  .intake-layout { grid-template-columns: 1fr; gap: 48px; }
}

.intake-intro h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(24px, 1.4vw + 18px, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.intake-intro p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 20px;
}
.intake-intro .scope-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--rule);
}
.intake-intro .scope-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.intake-intro .scope-list li::before {
  content: '—';
  color: var(--blue);
  font-weight: 700;
}

form.intake {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 40px;
}
@media (max-width: 720px) {
  form.intake { padding: 28px 20px; }
}
form.intake .field {
  margin-bottom: 24px;
}
form.intake .field:last-of-type { margin-bottom: 32px; }
form.intake label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
form.intake label .req { color: var(--blue); margin-left: 4px; }
form.intake input[type="text"],
form.intake input[type="email"],
form.intake input[type="tel"],
form.intake select,
form.intake textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 12px 14px;
  transition: border-color 180ms ease, background 180ms ease;
}
form.intake input:focus,
form.intake select:focus,
form.intake textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
form.intake textarea {
  min-height: 120px;
  resize: vertical;
}
form.intake .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  form.intake .row { grid-template-columns: 1fr; gap: 0; }
  form.intake .row .field { margin-bottom: 24px; }
}
form.intake .note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ====================================================
   CTA BLOCK
   ==================================================== */
.cta-block {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
}
.cta-block h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 2vw + 28px, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 14ch;
}
.cta-block .intro {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(242, 239, 234, 0.75);
  max-width: 56ch;
  margin-bottom: 48px;
}
.cta-block .disqualifiers {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  border-top: 1px solid rgba(242, 239, 234, 0.15);
}
.cta-block .disqualifiers li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(242, 239, 234, 0.15);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(242, 239, 234, 0.85);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 48ch;
}
.cta-block .disqualifiers li::before {
  content: '—';
  color: var(--blue);
  font-weight: 700;
}
.cta-block .cta-primary {
  background: var(--blue);
}
.cta-block .cta-primary:hover { background: var(--blue-hover); }
.cta-block .direct {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(242, 239, 234, 0.55);
}
.cta-block .direct a {
  color: var(--cream);
  border-bottom: 1px solid rgba(242, 239, 234, 0.4);
  padding-bottom: 1px;
}

/* ====================================================
   FOOTER
   ==================================================== */
footer.site-footer {
  background: var(--cream);
  padding: 64px 0 40px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .mark {
  color: var(--ink);
  font-size: 26px;
  margin-bottom: 16px;
}
.footer-brand .mark .pipe { color: var(--blue); }
.footer-brand .tagline {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 32ch;
}
.footer-brand .tagline a {
  color: var(--blue);
  border-bottom: 1px solid rgba(0, 114, 187, 0.3);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  transition: color 180ms ease;
}
.footer-col a:hover { color: var(--blue); }

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--faint);
}

/* ====================================================
   UTILITY
   ==================================================== */
.flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 2px 6px;
  vertical-align: middle;
  margin-left: 8px;
}

.tbd-flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--muted);
  padding: 3px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ====================================================
   IMAGE-FORWARD HERO (mbpcompanies.com inheritance)
   ==================================================== */
.hero--image {
  padding: 0;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
}
.hero--image .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero--image .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 41, 75, 0.35) 0%,
    rgba(0, 41, 75, 0.55) 55%,
    rgba(0, 41, 75, 0.85) 100%
  );
}
.hero--image .container {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}
.hero--image .eyebrow {
  color: var(--cream);
  opacity: 0.9;
}
.hero--image .eyebrow::before {
  background: var(--cream);
  opacity: 0.7;
}
.hero--image h1 {
  color: var(--cream);
  max-width: 18ch;
}
.hero--image .subhead {
  color: rgba(242, 239, 234, 0.82);
  max-width: 56ch;
}
.hero--image .subhead strong { color: var(--cream); }

/* Full-bleed case study photo support */
.case-photo img,
.bio-portrait img,
.project-card .photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card .photo-placeholder {
  overflow: hidden;
}

/* Blue accent rule */
.blue-rule {
  height: 2px;
  width: 64px;
  background: var(--blue);
  margin: 40px 0;
}

/* Blue inline accent — used on sections */
.accent-blue {
  color: var(--blue);
  font-weight: 500;
}

/* Quote block — mbpcompanies homage */
.pull-quote {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
}
.pull-quote .quote-text {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(22px, 1.5vw + 18px, 34px);
  line-height: 1.4;
  color: var(--cream);
  max-width: 32ch;
  margin-bottom: 40px;
}
.pull-quote .attribution {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Section header — bolder blue eyebrow variant */
.section-head.blue-bar .eyebrow {
  color: var(--blue);
  font-weight: 700;
}
