/* Homepage anchor refinements kept outside the prebuilt Vite stylesheet. */

/* Keep the editorial pace, but avoid a full desktop screen of air between
   consecutive ideas. This stylesheet is homepage-only. */
:root {
  --sect: clamp(76px, 8vw, 120px);
  --radius-ui: 8px;
}

#start {
  scroll-margin-top: 96px;
}

#start:focus {
  outline: none;
}

/* The homepage uses the bundled stylesheet rather than mileo.css, so the
   analytics notice needs its shared presentation here as well. */
.analytics-consent {
  position: fixed;
  right: clamp(12px, 2.5vw, 28px);
  bottom: clamp(12px, 2.5vw, 28px);
  z-index: 9998;
  width: min(420px, calc(100vw - 24px));
  padding: 16px;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid rgba(244, 240, 230, .35);
  border-radius: var(--radius-ui);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
}
.analytics-consent p { margin: 0; color: var(--cream-faint); font-size: .86rem; line-height: 1.5; }
.analytics-consent b,
.analytics-consent a { color: var(--cream); }
.analytics-consent a { text-decoration: underline; text-underline-offset: 2px; }
.analytics-consent div { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 13px; }
.analytics-consent button {
  appearance: none;
  border: 1px solid rgba(244, 240, 230, .6);
  background: transparent;
  color: var(--cream);
  font: 500 10px/1 var(--f-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: var(--radius-ui);
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.analytics-consent button[data-consent="accepted"] { background: var(--cream); color: var(--ink); }
.analytics-consent button:hover,
.analytics-consent button:focus-visible {
  transform: translateY(-2px);
  background: rgba(244, 240, 230, .12);
  box-shadow: 0 8px 20px -14px rgba(0, 0, 0, .7);
}
.analytics-consent button[data-consent="accepted"]:hover,
.analytics-consent button[data-consent="accepted"]:focus-visible { background: var(--paper-2); }
.analytics-consent button:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

/* One shared corner language for interactive controls on the bundled home. */
.btn {
  border-radius: var(--radius-ui);
  transition: background-color .25s, color .25s, border-color .25s, transform .2s, box-shadow .2s;
}
[data-magnetic] { will-change: auto; }
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -14px rgba(26, 46, 34, .72);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.btn-short { display: none; }

.wordmark {
  border-radius: var(--radius-ui);
  transition: color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wordmark:hover,
.wordmark:focus-visible {
  color: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px var(--ink-line-soft);
}

/* The homepage bundle owns the base header; this adds a compact, accessible
   service dropdown without rebuilding that navigation. */
.nav-links { align-items: center; }
.nav-links > a,
.nav-services-trigger {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 8px;
  border-radius: var(--radius-ui);
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s, background-color .2s, transform .2s;
}
.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-services-trigger:hover,
.nav-services-trigger:focus-visible {
  background: var(--ink-line-soft);
  transform: translateY(-1px);
}
.nav-services { position: relative; display: flex; align-items: center; }
.nav-services-trigger {
  appearance: none;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-services-trigger span { font-size: 0.9em; transition: transform 0.25s ease; }
.nav-services-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: min(340px, 86vw);
  padding: 8px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-ui);
  background: color-mix(in srgb, var(--paper) 97%, transparent);
  box-shadow: 0 18px 50px rgba(26, 46, 34, 0.13);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
}
.nav-services.is-open .nav-services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-services.is-open .nav-services-trigger span { transform: rotate(180deg); }
.nav-services-menu a,
.nav.invert .nav-services-menu a {
  display: grid;
  gap: 1px;
  padding: 11px 12px;
  border: 0;
  border-radius: var(--radius-ui);
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}
.nav-services-menu a::after { display: none; }
.nav-services-menu a:hover,
.nav-services-menu a:focus-visible,
.nav.invert .nav-services-menu a:hover,
.nav.invert .nav-services-menu a:focus-visible { background: var(--paper-2); color: var(--ink); }
.nav-services-menu a[aria-current="page"] { color: var(--ink); background: var(--paper-2); }
.nav-services-menu strong { font-family: var(--f-sans); font-size: 13px; font-weight: 600; }
.nav-services-menu small { font-family: var(--f-sans); font-size: 11px; line-height: 1.35; color: var(--ink-soft); }
.nav-services-menu .nav-services-overview {
  margin-bottom: 4px;
  border-bottom: 1px solid var(--ink-line);
}
.nav.invert .nav-services-trigger { color: var(--cream-faint); }
.nav.invert .nav-services-trigger:hover,
.nav.invert .nav-services-trigger:focus-visible {
  color: var(--cream);
  background: var(--cream-line);
}
.nav-services-trigger.is-current { color: var(--ink); }
.nav-services-trigger.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle {
  border-radius: var(--radius-ui);
  transition: background-color .2s ease, transform .2s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { background: var(--ink-line-soft); transform: translateY(-1px); }

/* The legacy bundle contains several different corner values. These are all
   ordinary interface surfaces, so they share the same token; circles, pills
   and illustrated device silhouettes remain intentional exceptions. */
.skip-link,
.cap-grid,
.rt-panel,
.rt-node,
.shot-frame,
.case-media,
.price-grid,
.seat,
.lightbox img,
.solve-grid,
.field input,
.field textarea { border-radius: var(--radius-ui); }
.section.contact { border-radius: var(--radius-ui) var(--radius-ui) 0 0; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[type="checkbox"]:focus-visible,
[data-magnetic]:focus-visible,
.shot-frame:focus-visible { border-radius: var(--radius-ui); }

/* Early homepage route into the focused service pages. */
.service-wayfinder {
  position: relative;
  z-index: 5;
  padding-block: clamp(56px, 6vw, 80px);
  border-block: 1px solid var(--ink-line);
  background: var(--paper-2);
}
.service-wayfinder-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.service-wayfinder .eyebrow { margin-bottom: 0; }
.service-wayfinder h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  font-weight: 550;
  line-height: 1.04;
  letter-spacing: -0.018em;
  max-width: 17ch;
}
.service-wayfinder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-ui);
  background: var(--ink-line);
  overflow: hidden;
}
.service-wayfinder-card {
  position: relative;
  min-height: 198px;
  padding: clamp(22px, 2.5vw, 32px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.service-wayfinder-card:hover,
.service-wayfinder-card:focus-visible { background: var(--ink); color: var(--cream); }
.service-wayfinder-card .num { margin-bottom: auto; }
.service-wayfinder-card strong {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 550;
  line-height: 1.1;
  margin: 32px 0 10px;
}
.service-wayfinder-card small { color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.service-wayfinder-card:hover small,
.service-wayfinder-card:focus-visible small,
.service-wayfinder-card:hover .num,
.service-wayfinder-card:focus-visible .num { color: var(--cream-faint); }
.service-wayfinder-card i {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--f-mono);
  font-style: normal;
  transition: transform 0.3s var(--ease-out);
}
.service-wayfinder-card:hover i,
.service-wayfinder-card:focus-visible i { transform: translate(3px, -3px); }
.service-wayfinder-more { margin-top: 22px; color: var(--ink-soft); }
.service-wayfinder-more a,
.home-proof figcaption a,
.selected-work-more a,
.process-more a {
  color: var(--ink);
  border-radius: var(--radius-ui);
  padding: 2px 3px;
  text-underline-offset: 4px;
  transition: background-color .2s, box-shadow .2s;
}
.service-wayfinder-more a:hover,
.service-wayfinder-more a:focus-visible,
.home-proof figcaption a:hover,
.home-proof figcaption a:focus-visible,
.selected-work-more a:hover,
.selected-work-more a:focus-visible,
.process-more a:hover,
.process-more a:focus-visible {
  background: var(--ink-line-soft);
  box-shadow: 0 0 0 3px var(--ink-line-soft);
}

/* Public client work as evidence, without relying on lifestyle photography. */
.home-proof {
  width: min(100%, 1040px);
  margin: clamp(30px, 4vw, 50px) auto 0;
  overflow: hidden;
  border-radius: var(--radius-ui);
  box-shadow: 18px 18px 0 rgba(26, 46, 34, .04);
}
.home-proof-mobile {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.home-proof-phone {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: 0;
  background: var(--paper-2);
  padding: 9px;
}
.home-proof-phone-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 27px;
  padding: 0 8px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .04em;
}
.home-proof-phone-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}
.home-proof-phone-bar b {
  overflow: hidden;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-proof img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: grayscale(.54) sepia(.18) saturate(.9) contrast(.98);
  transition: filter .45s var(--ease-out), transform .65s var(--ease-out);
}
.home-proof-phone:hover img,
.home-proof-phone:focus-visible img {
  filter: grayscale(.18) sepia(.08) saturate(.96) contrast(1);
}
.home-proof figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--ink-line);
  border-left: 0;
  border-radius: 0;
  background: var(--paper-2);
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .035em;
  color: var(--ink-soft);
}
.home-proof-kicker {
  margin-bottom: clamp(28px, 5vw, 52px);
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-proof figcaption strong {
  max-width: 17ch;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: -.018em;
}
.home-proof-copy { max-width: 46ch; }
.home-proof-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: clamp(26px, 4vw, 42px);
}
.home-proof-systems i {
  padding: 7px 9px;
  border: 1px solid var(--ink-line);
  color: var(--ink);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .06em;
  border-radius: var(--radius-ui);
}
.home-proof figcaption a {
  margin-top: clamp(28px, 4vw, 42px);
  color: var(--ink);
  white-space: nowrap;
  text-underline-offset: 4px;
}

/* A compact portfolio index on the homepage. The detailed evidence stays on
   /work; this section shows the breadth without diluting the Lionhead story. */
.selected-work {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--ink-line);
  background: var(--paper-2);
}

.selected-work-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 16px clamp(28px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.selected-work-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.selected-work-head .h2 { margin: 0; }
.selected-work-head .body-lg { max-width: 46ch; margin: 0; color: var(--ink-soft); }

.selected-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 18px;
}

.selected-work-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-ui);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 14px 14px 0 rgba(26, 46, 34, .035);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.selected-work-card:hover,
.selected-work-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 18px 20px 0 rgba(26, 46, 34, .055);
}

.selected-work-card--email {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  grid-template-rows: minmax(320px, auto);
}

.selected-work-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-width: 0;
  background: #e7f3fb;
}

.selected-work-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .65s var(--ease-out), filter .45s var(--ease-out);
}

.selected-work-card:hover .selected-work-visual > img,
.selected-work-card:focus-visible .selected-work-visual > img { transform: scale(1.018); }

.selected-work-visual--phone {
  padding: 30px 24px 0;
  background:
    radial-gradient(circle at 20% 5%, rgba(255,255,255,.72), transparent 32%),
    linear-gradient(145deg, var(--paper-2), #ded7c7);
}

.selected-work-visual--phone > img {
  width: min(72%, 230px);
  height: auto;
  align-self: end;
  border: 5px solid #111;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 22px 40px -26px rgba(24, 36, 88, .7);
}

.selected-work-visual--email {
  min-height: 320px;
  padding: 28px 28px 0;
  background:
    linear-gradient(rgba(20,20,20,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,20,.045) 1px, transparent 1px),
    #eeeae3;
  background-size: 30px 30px, 30px 30px, auto;
}

.selected-work-visual--email > img {
  width: min(68%, 250px);
  height: auto;
  align-self: end;
  border: 1px solid #222;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
  box-shadow: 0 24px 44px -30px rgba(0,0,0,.72);
}

.selected-work-visual--email > b {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 10px;
  border: 1px solid #222;
  background: rgba(255,255,255,.75);
  color: #222;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.selected-work-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.6vw, 38px);
}

.selected-work-copy small {
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.selected-work-copy > strong,
.selected-work-copy > .brand-descriptor {
  margin: clamp(24px, 4vw, 44px) 0 12px;
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -.02em;
}

.selected-work-copy > .brand-descriptor { font-weight: 400; }
.selected-work-copy > .brand-descriptor > strong { font-weight: 700; }

.selected-work-copy em {
  max-width: 38ch;
  color: var(--ink-soft);
  font-style: normal;
  font-size: .98rem;
  line-height: 1.55;
}

.selected-work-copy i {
  margin-top: auto;
  padding-top: clamp(26px, 4vw, 46px);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .05em;
}

.selected-work-more { margin: 26px 0 0; color: var(--ink-soft); }
.selected-work-more a { color: var(--ink); text-underline-offset: 4px; }

/* The dark contact cap already provides a strong transition. A second large
   empty lead-in made the end of the homepage feel detached from the FAQ. */
.section.contact { margin-top: clamp(32px, 3vw, 48px); }

@media (max-width: 900px) {
  .service-wayfinder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-wayfinder-head { grid-template-columns: 1fr; align-items: start; }
  .selected-work-head { grid-template-columns: 1fr; align-items: start; }
  .selected-work-grid { grid-template-columns: 1fr; }
  .selected-work-card,
  .selected-work-card--email {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, auto) auto;
  }
}

@media (min-width: 641px) and (max-width: 800px) {
  .nav-inner { gap: 12px; }
  .nav-links { gap: 6px; }
  .nav-links > a,
  .nav-services-trigger { padding-inline: 6px; }
  .btn-nav { padding: 9px 13px; font-size: 13px; }
  .btn-nav .btn-long { display: none; }
  .btn-nav .btn-short { display: inline; }
  .nav-services-menu {
    left: 0;
    width: min(340px, calc(100vw - 32px));
    transform: translate(0, -8px);
  }
  .nav-services.is-open .nav-services-menu { transform: translate(0, 0); }
}

@media (max-width: 640px) {
  .btn-nav { margin-left: auto; padding: 9px 13px; font-size: 13px; }
  .btn-nav .btn-long { display: none; }
  .btn-nav .btn-short { display: inline; }
  .nav .nav-links { visibility: hidden; }
  .nav.menu-open .nav-links { visibility: visible; }
  .nav .nav-links > a,
  .nav-services-trigger {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-services { display: block; width: 100%; }
  .nav.invert.menu-open .nav-services-trigger { color: var(--ink); }
  .nav-services-menu {
    position: static;
    left: auto;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    display: none;
    grid-template-columns: 1fr;
  }
  .nav-services.is-open .nav-services-menu { display: grid; }
  .nav-services-menu a,
  .nav.invert .nav-services-menu a { padding: 9px 8px; border-top: 1px solid var(--ink-line-soft); }
  .nav-services-menu small { display: none; }
  .service-wayfinder-grid { grid-template-columns: 1fr; }
  .service-wayfinder-card { min-height: 150px; }
  .home-proof {
    width: min(100%, 360px);
    margin-inline: auto;
    box-shadow: 10px 10px 0 rgba(26, 46, 34, .04);
  }
  .home-proof-mobile { grid-template-columns: 1fr; justify-items: stretch; }
  .home-proof-phone {
    width: 100%;
    border-radius: 0;
  }
  .home-proof figcaption {
    padding: 22px;
    border-top: 0;
    border-left: 1px solid var(--ink-line);
    border-radius: 0;
  }
  .home-proof-kicker { margin-bottom: 22px; }
  .home-proof figcaption strong { margin-bottom: 12px; font-size: 1.75rem; }
  .home-proof-systems { margin-top: 20px; }
  .home-proof figcaption a { margin-top: 22px; }
  .home-proof figcaption a { white-space: normal; }
  .selected-work-card { grid-template-rows: minmax(220px, auto) auto; }
  .selected-work-visual--email { min-height: 250px; }
  .selected-work-copy { padding: 24px; }
  .selected-work-copy > strong,
  .selected-work-copy > .brand-descriptor { margin-top: 24px; }
  .selected-work-copy i { padding-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .selected-work-card,
  .selected-work-visual > img { transition: none; }
}

/* 2026-09-01 · Short homepage pass
   Home now previews the offer and proof; detailed stories stay on /work. */
.service-wayfinder {
  padding-block: clamp(44px, 5vw, 66px);
}

.service-wayfinder-head {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.service-wayfinder-card {
  min-height: 166px;
  padding: clamp(19px, 2vw, 26px);
}

.service-wayfinder-card strong {
  margin-top: 24px;
}

.selected-work {
  padding-block: clamp(64px, 7vw, 96px);
}

.selected-work-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 18px clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.selected-work-head .h2 {
  max-width: 14ch;
}

.selected-work-head .body-lg {
  max-width: 38ch;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.selected-work-grid {
  grid-template-columns:
    minmax(0, 1.24fr)
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, .78fr);
  gap: 12px;
}

.selected-work-card,
.selected-work-card--email {
  grid-column: auto;
  grid-template-columns: 1fr;
  grid-template-rows: 178px auto;
  min-height: 0;
  box-shadow: none;
}

.selected-work-card:hover,
.selected-work-card:focus-visible {
  box-shadow: 8px 10px 0 rgba(26, 46, 34, .05);
}

.selected-work-visual,
.selected-work-visual--email {
  min-height: 0;
}

.selected-work-visual--phone {
  padding: 18px 15px 0;
}

.selected-work-visual--phone > img {
  width: min(70%, 150px);
  border-width: 4px;
  border-radius: 18px 18px 0 0;
}

.selected-work-visual--email {
  padding: 16px 16px 0;
}

.selected-work-visual--email > img {
  width: min(76%, 138px);
  border-radius: 8px 8px 0 0;
}

.selected-work-visual--email > b {
  top: 12px;
  right: 10px;
  padding: 6px 7px;
  font-size: 8px;
}

.selected-work-copy {
  min-height: 232px;
  padding: 19px;
}

.selected-work-copy > strong,
.selected-work-copy > .brand-descriptor {
  margin: 17px 0 9px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.selected-work-card--email .selected-work-copy > strong,
.selected-work-card--email .selected-work-copy > .brand-descriptor {
  font-size: clamp(1.2rem, 1.7vw, 1.52rem);
}

.selected-work-copy em {
  font-size: .87rem;
  line-height: 1.45;
}

.selected-work-copy i {
  padding-top: 18px;
  font-size: 9px;
}

.selected-work-more {
  margin-top: 22px;
}

.process-more {
  margin-top: 22px;
  color: var(--ink-soft);
}

.process-more a {
  color: var(--ink);
}

@media (max-width: 1050px) {
  .selected-work-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .selected-work-card,
  .selected-work-card--email {
    flex: 0 0 min(72vw, 320px);
    grid-template-rows: 178px auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .service-wayfinder-head {
    gap: 10px;
  }

  .service-wayfinder h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .service-wayfinder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-wayfinder-card {
    min-height: 142px;
    padding: 17px;
  }

  .service-wayfinder-card strong {
    margin: 24px 0 0;
    font-size: 1.08rem;
  }

  .service-wayfinder-card small {
    display: none;
  }

  .selected-work-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .selected-work-head .h2 {
    max-width: 13ch;
  }

  .selected-work-card,
  .selected-work-card--email {
    flex-basis: min(82vw, 310px);
    grid-template-rows: 168px auto;
  }

  .selected-work-copy {
    min-height: 220px;
  }
}

/* 2026-09-02 · Trust-first homepage pass
   Put one inspectable build directly after a shorter hero, then keep the
   remaining proof and commercial terms compact. */
.hero {
  min-height: min(860px, 86svh);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.hero-ctas { margin-bottom: 20px; }

.hero-assurance {
  max-width: 64ch;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero-scroll { display: none; }

#featured-work { scroll-margin-top: 78px; }

.featured-proof {
  padding-block: clamp(54px, 7vw, 92px) !important;
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper);
}

.featured-proof .home-proof { margin-top: 0; }

.featured-proof .home-proof-phone img {
  height: clamp(430px, 46vw, 520px);
  object-fit: cover;
  object-position: top;
}

.featured-proof .home-proof-kicker { margin-bottom: clamp(20px, 3vw, 30px); }

.home-proof figcaption h2 {
  max-width: 17ch;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: -.018em;
}

.selected-work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.confidence-strip {
  position: relative;
  z-index: 4;
  padding-block: clamp(40px, 5vw, 62px);
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper);
}

.confidence-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  align-items: stretch;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-ui);
  background: var(--ink-line);
  overflow: hidden;
}

.confidence-strip p,
.confidence-strip a {
  min-width: 0;
  margin: 0;
  padding: 20px;
  background: var(--paper-2);
}

.confidence-strip p { display: grid; gap: 6px; }

.confidence-strip strong {
  font-family: var(--f-serif);
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.2;
}

.confidence-strip span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.confidence-strip a {
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.confidence-strip a:hover,
.confidence-strip a:focus-visible { background: #294637; color: #fff; }

/* Footer punctuation: middots divide groups; colons live inside the labelled
   contact groups in the HTML. Each link also reacts independently. */
.footer-emails { gap: 4px 14px; }
.footer-emails a {
  gap: 14px;
  padding: 6px;
  white-space: nowrap;
  border-radius: var(--radius-ui);
  border-bottom: 1px solid transparent;
  transition: color .2s, background-color .2s, border-color .2s;
}
.footer-emails a + a::before { content: "·"; color: var(--cream-faint); }
.footer-emails a:hover,
.footer-emails a:focus-visible {
  color: var(--cream);
  background: rgba(244, 240, 230, .08);
  border-bottom-color: var(--cream);
}
.footer-bottom a {
  border-radius: var(--radius-ui);
  transition: color .2s, background-color .2s;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible { color: var(--cream); background: rgba(244, 240, 230, .08); }

@media (max-width: 900px) {
  .footer-emails a + a::before { display: none; }
  .confidence-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .confidence-strip a { min-height: 76px; }
}

@media (max-width: 640px) {
  .footer-emails { display: grid; grid-template-columns: 1fr; justify-items: start; gap: 2px; }
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero-eyebrow { margin-bottom: 20px; }
  .hero-h1 { margin-bottom: 20px; }
  .hero-lede { margin-bottom: 24px; }
  .hero-ctas { margin-bottom: 18px; }
  .hero-assurance { font-size: 9px; }

  .featured-proof .home-proof { width: min(100%, 420px); }
  .featured-proof .home-proof-phone img { height: 410px; }
  .home-proof figcaption h2 { margin-bottom: 12px; font-size: 1.75rem; }

  .confidence-strip-inner { grid-template-columns: 1fr; }
  .confidence-strip p,
  .confidence-strip a { padding: 17px; }
}
