/* Solid Ratio — site styles
   Type: Manrope (display + text)
   Colors: navy #202D42, orange #EB7F31, light #DEE9EC, steel #546FA1, lime #94C200
*/

:root {
  --navy: #202D42;
  --navy-80: #2A3850;
  --navy-60: rgba(32, 45, 66, 0.6);
  --orange: #EB7F31;
  --orange-dark: #D26F25;
  --white: #FFFFFF;
  --steel: #546FA1;
  --lime: #94C200;
  --bg: #DEE9EC;
  --bg-soft: #ECF1F3;
  --paper: #F7F4EE;
  --rule: rgba(32, 45, 66, 0.14);
  --rule-on-dark: rgba(255, 255, 255, 0.18);

  --serif: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --pad-section: clamp(72px, 9vw, 120px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

::selection { background: var(--orange); color: var(--white); }

/* ───────── Container ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--pad-section) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--soft { background: var(--bg); color: var(--navy); }
.section--paper { background: var(--paper); color: var(--navy); }

/* ───────── Type system ───────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--steel { color: var(--steel); }
.eyebrow--white { color: rgba(255,255,255,0.7); }
.eyebrow--white::before { background: var(--orange); width: 36px; height: 1px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: normal;
  color: inherit;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

.display {
  font-size: clamp(52px, 7.8vw, 112px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.display em {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
}

h1 { font-size: clamp(44px, 6.4vw, 92px); letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 4.8vw, 64px); letter-spacing: -0.03em; font-weight: 700; }
h3 { font-size: clamp(24px, 2.3vw, 32px); line-height: 1.18; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 21px; line-height: 1.2; font-weight: 600; letter-spacing: -0.015em; }

p { margin: 0 0 1em; max-width: 65ch; }
.lede {
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
  max-width: 60ch;
}
.section--dark .lede { color: rgba(255,255,255,0.82); }

.small { font-size: 14px; }
.muted { color: var(--navy-60); }
.section--dark .muted { color: rgba(255,255,255,0.6); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 24px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
  border-radius: 2px;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-dark); }

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost-dark:hover { background: var(--navy); color: var(--white); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--text {
  padding: 0;
  background: transparent;
  color: var(--orange);
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 4px;
}
.btn--text:hover { color: var(--orange-dark); transform: translateY(-1px); }

.btn .arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ───────── Header ───────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.site-header__logo img { height: 72px; width: auto; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header nav a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color .15s ease;
  letter-spacing: 0.01em;
}
.site-header nav a:hover,
.site-header nav a.is-current { color: var(--white); }
.site-header nav a.is-current {
  position: relative;
}
.site-header nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--orange);
}
.site-header nav .btn { margin-left: 12px; padding: 14px 22px; font-size: 15px; font-weight: 600; }

/* ───────── Hero (home) ───────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(96px, 13vw, 160px) 0 clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 8.6vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--white);
  margin: 18px 0 0;
}
.hero__title em { font-style: normal; color: var(--orange); font-weight: 700; }
.hero__title .ampersand { font-style: normal; color: var(--orange); font-weight: 700; }
.hero__right p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  margin-bottom: 28px;
}
.hero__rule {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin-top: 24px;
  margin-bottom: 18px;
}
.hero__tagline {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ───────── Logo band (scrolling marquee) ───────── */
.logo-band {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 44px 0 52px;
  overflow: hidden;
  position: relative;
}
.logo-band__label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 36px;
}
.logo-band__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-band__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-slide 140s linear infinite;
  will-change: transform;
}
.logo-band__marquee:hover .logo-band__track {
  animation-play-state: paused;
}
.logo-band__track img {
  flex: 0 0 auto;
  max-height: 64px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 44px;
  opacity: 0.9;
  transition: opacity .2s ease;
}
.logo-band__track img:hover { opacity: 1; }

/* Optical balance — square/badge marks scaled up to match wordmark weight */
.logo-band__track img[src*="image11"] { max-height: 92px; max-width: 92px; }    /* Humble Seed */
.logo-band__track img[src*="image22"] { max-height: 110px; max-width: 118px; }  /* XLVII Bakery */
.logo-band__track img[src*="image23"] { max-height: 92px; max-width: 170px; }   /* ROVR */
.logo-band__track img[src*="image25"] { max-height: 96px; max-width: 110px; }   /* KickStand */
.logo-band__track img[src*="image35"] { max-height: 92px; max-width: 92px; }    /* Frenchies */

@media (max-width: 760px) {
  .logo-band__track img[src*="image11"] { max-height: 66px; max-width: 66px; }
  .logo-band__track img[src*="image22"] { max-height: 80px; max-width: 86px; }
  .logo-band__track img[src*="image23"] { max-height: 66px; max-width: 120px; }
  .logo-band__track img[src*="image25"] { max-height: 70px; max-width: 80px; }
  .logo-band__track img[src*="image35"] { max-height: 66px; max-width: 66px; }
}

@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-band__track { animation: none; }
  .logo-band__marquee { overflow-x: auto; }
}

@media (max-width: 760px) {
  .logo-band__track img { max-height: 46px; max-width: 180px; margin: 0 28px; }
}

/* ───────── Section header ───────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head--single {
  display: block;
  text-align: left;
  max-width: 880px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head h2 {
  margin-top: 18px;
}

/* ───────── Service grid (home) ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.section--dark .services-grid {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.12);
}
.service-tile {
  background: var(--white);
  padding: 40px 32px 44px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
}
.section--dark .service-tile { background: var(--navy); color: var(--white); }
.service-tile__num {
  font-family: var(--serif);
    font-size: 16px;
  color: var(--orange);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.service-tile h3 {
  font-family: var(--serif);
  font-weight: 600;
  margin-bottom: 14px;
}
.service-tile p {
  font-size: 15.5px;
  color: var(--navy-60);
  margin: 0;
  line-height: 1.55;
}
.section--dark .service-tile p { color: rgba(255,255,255,0.7); }
.service-tile__arrow {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.section--dark .service-tile__arrow { color: var(--white); }
.service-tile__arrow::after {
  content: "→";
  font-family: var(--sans);
  transition: transform .18s ease;
}
.service-tile:hover .service-tile__arrow::after { transform: translateX(4px); }

@media (max-width: 920px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ───────── Process: build / run / refine ───────── */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}
.process__phase {
  padding: 48px 36px 56px;
  border-right: 1px solid var(--rule-on-dark);
  position: relative;
}
.process__phase:last-child { border-right: 0; }
.process__num {
  font-family: var(--serif);
    font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 12px;
}
.process__name {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.process__name .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  display: inline-block;
  border-radius: 50%;
}
.process__phase p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 920px) {
  .process { grid-template-columns: 1fr; }
  .process__phase { border-right: 0; border-bottom: 1px solid var(--rule-on-dark); }
  .process__phase:last-child { border-bottom: 0; }
}

/* ───────── Recognition list (when to bring us in) ───────── */
.signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.signal {
  background: var(--white);
  padding: 32px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.signal__mark {
  flex: 0 0 auto;
  width: 22px;
  height: 2px;
  background: var(--orange);
  margin-top: 12px;
}
.signal p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 400;
}
@media (max-width: 760px) {
  .signals { grid-template-columns: 1fr; }
}

/* ───────── Why grid ───────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(48px, 7vw, 96px);
}
.why-grid__item h3 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.why-grid__item h3 .index {
    font-size: 16px;
  color: var(--orange);
  font-weight: 400;
}
.why-grid__item p {
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ───────── Testimonials ───────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.quote {
  position: relative;
  padding-top: 36px;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -22px; left: -10px;
  font-family: var(--serif);
  font-size: 110px;
  line-height: 1;
  color: var(--orange);
    font-weight: 700;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--navy);
    margin: 0 0 18px;
}
.section--dark .quote p { color: rgba(255,255,255,0.95); }
.quote__attr {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  font-style: normal;
}
.section--dark .quote__attr { color: rgba(255,255,255,0.55); }
@media (max-width: 920px) {
  .quotes { grid-template-columns: 1fr; gap: 56px; }
}

/* ───────── Closing CTA band ───────── */
.cta-band {
  background: var(--orange);
  color: var(--navy);
}
.cta-band .container {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.cta-band p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(32,45,66,0.85);
}
.cta-band .btn--primary {
  background: var(--navy);
  color: var(--white);
}
.cta-band .btn--primary:hover { background: #0E1726; }
@media (max-width: 760px) {
  .cta-band .container { grid-template-columns: 1fr; }
}

/* ───────── Footer ───────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__brand img { height: 36px; margin-bottom: 22px; }
.site-footer__brand p {
  font-family: var(--serif);
    color: rgba(255,255,255,0.7);
  font-size: 20px;
  line-height: 1.35;
  max-width: 30ch;
  font-weight: 500;
}
.site-footer__col h5 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 10px; font-size: 15px; }
.site-footer__col a { color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.site-footer__bottom a { color: inherit; text-decoration: none; }
@media (max-width: 920px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ───────── Sub-hero (used on services + about) ───────── */
.subhero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(96px, 13vw, 160px) 0 clamp(72px, 9vw, 112px);
}
.subhero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.subhero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7.8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 22px 0 0;
}
.subhero h1 em { font-style: normal; color: var(--orange); font-weight: 700; }
.subhero__right p {
  font-size: clamp(17px, 1.3vw, 19px);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* ───────── Outcomes (services hero list) ───────── */
.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.outcome {
  background: var(--white);
  padding: 36px 28px;
}
.outcome__mark {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 20px;
}
.outcome p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--navy);
}
@media (max-width: 920px) {
  .outcomes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .outcomes { grid-template-columns: 1fr; }
}

/* ───────── Service detail rows (services page) ───────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service-detail:last-of-type { border-bottom: 1px solid var(--rule); }
.service-detail__left {
  position: sticky;
  top: 110px;
}
.service-detail__num {
  font-family: var(--serif);
    font-size: 16px;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.service-detail__title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.service-detail__outcome {
  background: var(--bg-soft);
  border-left: 2px solid var(--orange);
  padding: 18px 20px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--navy);
}
.service-detail__outcome strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.service-detail__right { }
.service-detail__block { margin-bottom: 36px; }
.service-detail__block:last-child { margin-bottom: 0; }
.service-detail__label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.service-detail__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
}
.service-detail__list li::before {
  content: "";
  display: block;
  width: 8px; height: 8px;
  background: var(--lime);
  margin-top: 8px;
}
.service-detail__fit {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 32px;
  margin-top: 8px;
}
.service-detail__fit .service-detail__list li::before { background: var(--orange); }

@media (max-width: 920px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__left { position: static; }
}

/* ───────── Service nav (sticky toc on services hero) ───────── */
.service-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-top: 32px;
}
.service-toc a {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: all .15s ease;
}
.service-toc a:hover {
  color: var(--white);
  border-color: var(--orange);
  background: rgba(235,127,49,0.12);
}

/* ───────── About: values ───────── */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.value {
  background: var(--white);
  padding: 40px 36px 44px;
  position: relative;
}
.value__num {
  font-family: var(--serif);
    color: var(--orange);
  font-size: 18px;
  margin-bottom: 16px;
  display: block;
}
.value h3 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 32px);
}
.value p {
  margin: 0;
  font-size: 16px;
  color: var(--navy-60);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; }
}

/* ───────── About: team ───────── */
.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.partner__photo {
  aspect-ratio: 4 / 5;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.partner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0%);
  transition: filter .25s ease;
}
.partner__meta {
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  margin-top: 22px;
}
.partner__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.partner__role {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 6px 0 0;
}
@media (max-width: 760px) {
  .partners { grid-template-columns: 1fr; max-width: 460px; }
}

/* ───────── About: team list (full roster) ───────── */
.roster {
  border-top: 1px solid var(--rule);
}
.roster__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.roster__num {
  font-family: var(--serif);
    color: var(--orange);
  font-size: 15px;
}
.roster__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.roster__role {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy-60);
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .roster__row { grid-template-columns: 1fr; gap: 4px; }
  .roster__role { grid-column: 1; }
}

/* ───────── About: pull quote (hero adjacent) ───────── */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 22ch;
}
.pullquote em { font-style: normal; color: var(--orange); }

/* ───────── Phase callout (about page run→build→refine) ───────── */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}
.phases__item {
  border-top: 1px solid var(--rule);
  padding: 28px 28px 28px 0;
  padding-right: 24px;
}
.phases__item:not(:last-child) {
  border-right: 1px solid var(--rule);
}
.phases__item:not(:first-child) { padding-left: 28px; }
.phases__num {
  font-family: var(--serif);
    color: var(--orange);
  font-size: 14px;
  margin-bottom: 10px;
}
.phases__name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.phases__copy {
  font-size: 15px;
  color: var(--navy-60);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .phases { grid-template-columns: 1fr; }
  .phases__item { border-right: 0 !important; padding-left: 0 !important; }
}

/* ───────── Stat / proof inline ───────── */
.statline {
  display: flex;
  gap: clamp(36px, 4vw, 80px);
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-on-dark);
}
.statline__item .num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.statline__item .lab {
  display: block;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* ───────── Anchor offset for sticky header ───────── */
[id] { scroll-margin-top: 140px; }

/* ───────── Contact form ───────── */
.contact-section {
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px, 10vw, 132px) 0 clamp(80px, 10vw, 132px);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}
.contact-section__copy h2 {
  color: var(--white);
  margin-top: 18px;
}
.contact-section__copy .lede {
  color: rgba(255,255,255,0.78);
  margin-top: 24px;
}
.contact-section__direct {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-on-dark);
}
.contact-section__direct .small-eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
.contact-section__direct a {
  font-family: var(--sans);
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: border-color .15s ease;
}
.contact-section__direct a:hover { border-color: var(--orange); }

.contact-form {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-form__label .req {
  color: var(--orange);
  font-weight: 700;
}
.contact-form__help {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--navy-60);
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .15s ease, background .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(32,45,66,0.35);
  font-weight: 400;
}
.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(32,45,66,0.32);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #FFF9F3;
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(235,127,49,0.35);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.5;
}
.contact-form__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}
.contact-form__fineprint {
  font-size: 14px;
  color: var(--navy-60);
  margin: 0;
  max-width: 36ch;
  line-height: 1.45;
}
.contact-form .btn {
  align-self: flex-start;
}
.contact-form__status {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--steel);
  min-height: 1.2em;
}
.contact-form__status.is-success { color: #2E7D3B; }
.contact-form__status.is-error { color: #C0392B; }

@media (max-width: 900px) {
  .contact-section__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ───────── Utility ───────── */
.text-center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }

@media (max-width: 760px) {
  .site-header__inner { height: 88px; }
  .site-header__logo img { height: 54px; }
  .site-header nav { gap: 18px; }
  .site-header nav a:not(.btn) { display: none; }
  .hero__grid, .subhero__inner { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
}
