@font-face {
  font-family: "Jersey 15";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/jersey-15-latin.woff2") format("woff2");
}

:root {
  --paper: #faf6ee;
  --paper-deep: #f2e8d8;
  --ink: #19120c;
  --muted: #5b5148;
  --line: #2a1b10;
  --accent: #cf3f0d;
  --magenta: #c8245c;
  --cyan: #2bbfc7;
  --gold: #f1a029;
  --content: 1080px;
  --narrow: 780px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgb(250 246 238 / 94%), rgb(250 246 238 / 94%)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgb(63 35 15 / 3%) 3px 4px),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), var(--narrow));
  margin-inline: auto;
}

.eyebrow,
.meta-line,
.site-nav,
.footer-nav,
.card-kicker {
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1;
}

.lead {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.header-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 260px;
  height: auto;
  object-fit: contain;
  image-rendering: pixelated;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
  font-size: 1.2rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  text-decoration: none;
}

.site-nav a:not(.button) {
  padding-inline: 4px;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call.button {
  display: none;
}

.signal-line {
  position: relative;
  height: 4px;
  background: var(--line);
}

.signal-line::before,
.signal-line::after,
.signal-node {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border: 2px solid var(--line);
  content: "";
}

.signal-line::before {
  left: 18%;
  background: var(--gold);
}

.signal-node {
  left: 50%;
  background: var(--magenta);
}

.signal-line::after {
  right: 18%;
  background: var(--cyan);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 2px solid var(--line);
  box-shadow: 4px 4px 0 var(--line);
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--line);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  box-shadow: none;
  font-size: 1.08rem;
}

.hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(78px, 10vw, 128px);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 780px);
}

.hero .hero-actions {
  display: grid;
  width: min(100%, 680px);
  gap: 12px;
  grid-template-columns: 1fr;
}

.hero-actions .button {
  width: 100%;
  min-height: 68px;
  font-size: 1.45rem;
}

.hero .meta-line {
  display: flex;
  margin: 24px 0 0;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}

.hero .meta-line::before {
  color: var(--accent);
  content: "◆";
  font-size: 0.8rem;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.08rem;
}

.hero-pitch {
  max-width: 720px;
}

.hero-summary {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-compact {
  padding: clamp(48px, 6vw, 72px) 0;
}

.section-tint {
  border-block: 1px solid rgb(42 27 16 / 22%);
  background: rgb(242 232 216 / 46%);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(38px, 6vw, 58px);
  align-items: center;
  gap: 18px;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  text-align: center;
}

.section-heading::before,
.section-heading::after {
  height: 3px;
  background: var(--line);
  content: "";
}

.section-heading h2 {
  margin: 0;
}

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.scope-card,
.care-card {
  position: relative;
  padding: 30px;
  border: 2px solid var(--line);
  background: rgb(250 246 238 / 80%);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.card-icon {
  width: auto;
  height: auto;
  max-width: 82px;
  max-height: 62px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  image-rendering: pixelated;
}

.service-card:nth-child(1) .feature-list li::before {
  background: var(--gold);
}

.service-card:nth-child(2) .feature-list li::before {
  background: var(--magenta);
}

.service-card:nth-child(3) .feature-list li::before {
  background: var(--cyan);
}

.direct-note,
.care-fit {
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.direct-note {
  margin: 48px auto 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-align: center;
}

.accent-note,
.care-fit {
  color: var(--accent);
}

.scope-card {
  min-height: 260px;
  padding: 24px;
}

.scope-card .card-icon {
  image-rendering: auto;
}

.scope-price {
  position: absolute;
  top: 24px;
  right: 24px;
}

.scope-card .scope-time {
  margin-bottom: 10px;
  font-family: "Jersey 15", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.scope-card-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.care-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-card {
  display: flex;
  min-height: 260px;
  padding: 24px;
  flex-direction: column;
}

.care-card > :last-child {
  margin-bottom: 0;
}

.care-card-header {
  display: flex;
  margin-bottom: 20px;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.care-card-header h3 {
  margin-bottom: 0;
}

.care-price {
  margin-bottom: 0;
  font-family: "Jersey 15", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.care-fit {
  min-height: 2.8em;
  margin-bottom: 18px;
  font-size: 1.18rem;
  line-height: 1.4;
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--line);
  background: var(--gold);
  content: "";
}

.care-card:nth-child(2) .feature-list li::before {
  background: var(--magenta);
}

.care-card:nth-child(3) .feature-list li::before {
  background: var(--cyan);
}

#care .feature-list li {
  display: flex;
  padding-left: 0;
  align-items: center;
  gap: 10px;
}

#care .feature-list li::before {
  position: static;
  flex: 0 0 auto;
}

.faq-list {
  border-top: 2px solid var(--line);
}

.faq-list details {
  border-bottom: 2px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 54px 22px 0;
  cursor: pointer;
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: 0.035em;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--accent);
  content: "+";
  font-size: 2rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -2px 54px 22px 0;
  color: var(--muted);
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 2px solid var(--line);
}

.site-footer-home,
.site-footer-landscape {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgb(250 246 238 / 0%) 0%, rgb(242 232 216 / 52%) 100%);
}

.site-footer-home {
  padding-top: 40px;
}

.site-footer-compact {
  padding-top: 28px;
}

.site-footer-compact .footer-bottom {
  padding-top: 0;
}

.footer-cta {
  position: relative;
  display: grid;
  align-items: start;
  align-content: start;
  gap: 32px;
  padding: 12px 0 36px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-scene {
  position: relative;
  left: 50%;
  width: max(100vw, 900px);
  margin-top: -12px;
  transform: translateX(-50%);
  line-height: 0;
}

.footer-art {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.footer-copy,
.footer-actions {
  position: relative;
  z-index: 1;
}

.footer-copy {
  max-width: 560px;
  padding: 2px 0 24px;
}

.footer-copy h2 {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.footer-copy p {
  max-width: 500px;
  margin-bottom: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-footer-home .footer-bottom,
.site-footer-landscape .footer-bottom {
  padding: 12px 0 14px;
}

.footer-identity {
  display: grid;
  gap: 1px;
}

.footer-kicker {
  color: var(--accent);
  line-height: 1.25;
}

.footer-kicker-line {
  display: block;
}

.footer-copyright {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal {
  padding: 64px 0 96px;
}

.legal h2 {
  margin-top: 48px;
  font-size: 2rem;
}

.legal .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
}

.not-found .button-row {
  justify-content: center;
}

@media (max-width: 900px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 1.08rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .grid-3,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .scope-card,
  .care-card {
    min-height: 0;
  }

  #services,
  #pricing,
  #care {
    padding-block: 52px;
  }

  #services .section-heading,
  #pricing .section-heading,
  #care .section-heading {
    margin-bottom: 28px;
  }

  #services .grid-3,
  #pricing .grid-3 {
    gap: 14px;
  }

  #care .care-grid {
    gap: 14px;
  }

  .service-card,
  .scope-card {
    display: grid;
    padding: 18px 20px;
    align-items: center;
    gap: 18px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .scope-price {
    top: 18px;
    right: 20px;
  }

  .service-card .card-icon,
  .scope-card .card-icon {
    width: auto;
    max-width: 68px;
    max-height: 58px;
    margin: 0 auto;
    object-position: center;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
  }

  .scope-card h3 {
    margin-bottom: 6px;
    font-size: 1.55rem;
  }

  .scope-card .scope-time {
    margin-bottom: 4px;
  }

  .scope-card-copy > p:last-child {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .service-card .feature-list {
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .service-card .feature-list li {
    padding-left: 16px;
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .service-card .feature-list li::before {
    top: 0.48em;
    width: 7px;
    height: 7px;
  }

  #services .direct-note,
  #pricing .direct-note,
  #care .direct-note {
    margin-top: 24px;
  }

  .footer-cta {
    padding-bottom: 32px;
  }

}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 110px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    min-height: 92px;
  }

  .brand img {
    width: 205px;
    height: auto;
  }

  .header-call.button {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    margin-left: auto;
    padding: 9px 15px;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
  }


  .signal-line::before {
    left: 12%;
  }

  .signal-line::after {
    right: 12%;
  }

  .hero {
    padding-top: 54px;
  }

  .section-heading {
    gap: 10px;
    grid-template-columns: 26px minmax(0, auto) 26px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .footer-cta {
    padding: 4px 0 32px;
    grid-template-columns: 1fr;
  }

  .footer-copy {
    max-width: 520px;
  }

  .footer-actions {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 86px;
  }

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 3.55rem);
  }

  .brand img {
    width: 174px;
  }

  .header-call.button {
    min-height: 40px;
    padding: 7px 12px;
    font-size: 1rem;
  }

  .hero {
    padding: 28px 0 58px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero h1 {
    margin-bottom: 16px;
    line-height: 0.9;
  }

  .hero-summary {
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .hero-pitch {
    margin-bottom: 22px;
  }

  .button-row,
  .button-row .button,
  .footer-actions .button {
    width: 100%;
  }

  .hero .hero-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .hero .hero-actions .button {
    width: 100%;
    min-height: 58px;
    padding: 10px 14px;
    font-size: 1.2rem;
  }

  .hero .meta-line {
    display: none;
  }

  #services,
  #pricing,
  #care {
    padding: 52px 0 36px;
  }

  #services .section-heading,
  #pricing .section-heading,
  #care .section-heading {
    margin-bottom: 22px;
    gap: 8px;
    grid-template-columns: 16px minmax(0, auto) 16px;
  }

  .section-heading h2 {
    font-size: 2.08rem;
  }

  #services .section-heading h2,
  #pricing .section-heading h2,
  #care .section-heading h2 {
    white-space: nowrap;
  }

  #services .grid-3,
  #pricing .grid-3 {
    gap: 12px;
  }

  #care .care-grid {
    gap: 12px;
  }

  .service-card,
  .scope-card,
  .care-card {
    padding: 24px;
  }

  .care-card {
    padding: 16px;
  }

  .care-card-header {
    margin-bottom: 12px;
  }

  .care-card-header h3 {
    font-size: 1.38rem;
  }

  .care-price {
    font-size: 1.12rem;
  }

  .care-card .feature-list {
    gap: 5px;
  }

  .care-card .feature-list li {
    padding-left: 16px;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .care-card .feature-list li::before {
    top: 0.48em;
    width: 7px;
    height: 7px;
  }

  .care-fit {
    min-height: 0;
    margin-bottom: 14px;
    font-size: 0.95rem;
  }

  .service-card {
    padding: 14px 16px;
    gap: 12px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .scope-card {
    padding: 14px 16px;
    gap: 12px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .scope-price {
    top: 14px;
    right: 16px;
    font-size: 1.12rem;
  }

  .service-card .card-icon,
  .scope-card .card-icon {
    max-width: 46px;
    max-height: 46px;
  }

  .service-card h3 {
    margin-bottom: 7px;
    font-size: 1.38rem;
  }

  .scope-card h3 {
    margin-bottom: 5px;
    font-size: 1.38rem;
  }

  .scope-card .scope-time,
  .scope-card-copy > p:last-child {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .service-card .feature-list {
    gap: 5px;
  }

  .service-card .feature-list li {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  #services .direct-note,
  #pricing .direct-note,
  #care .direct-note {
    max-width: 340px;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  #care {
    padding: 30px 0 24px;
  }

  #care .section-heading {
    margin-bottom: 14px;
  }

  #care .care-grid {
    gap: 8px;
  }

  #care .care-card {
    padding: 12px 14px;
  }

  #care .care-card-header {
    margin-bottom: 7px;
  }

  #care .care-fit {
    margin-bottom: 8px;
    line-height: 1.2;
  }

  #care .feature-list {
    gap: 3px;
  }

  #care .feature-list li {
    line-height: 1.2;
  }

  #care .direct-note {
    max-width: none;
    margin-top: 14px;
    line-height: 1.2;
  }


  .footer-cta {
    gap: 18px;
    padding: 0 0 18px;
    grid-template-columns: 1fr;
  }

  .site-footer-home {
    padding-top: 28px;
  }

  .footer-copy {
    padding-bottom: 0;
  }

  .footer-copy h2 {
    max-width: 15ch;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 11vw, 2.9rem);
    line-height: 0.92;
  }

  .footer-copy p {
    line-height: 1.5;
  }

  .footer-scene {
    width: 760px;
    height: 126px;
    margin-top: -6px;
    overflow: hidden;
  }

  .footer-art {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .footer-actions,
  .footer-actions .button {
    width: 100%;
  }

  .site-footer-home .footer-bottom,
  .site-footer-landscape .footer-bottom {
    padding: 10px 0 8px;
  }

  .footer-identity {
    gap: 2px;
  }

  .footer-kicker {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .footer-kicker-line:first-child {
    white-space: nowrap;
  }

  .footer-copyright {
    font-size: 1rem;
  }

  .footer-nav {
    display: grid;
    width: 100%;
    justify-content: stretch;
    gap: 0 18px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-nav a {
    min-height: 30px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 150px;
  }

  .header-call {
    padding-inline: 10px;
    font-size: 0.96rem;
  }

  #services .section-heading,
  #pricing .section-heading,
  #care .section-heading {
    grid-template-columns: 10px minmax(0, auto) 10px;
  }

  .section-heading h2 {
    font-size: 1.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Compact project summaries. */
.projects-home-link { margin: 18px 0 0; text-align: center; }
.projects-home-link a { display: inline-block; padding-block: 6px; margin-left: 4px; }
.projects-page { padding-block: 56px 64px; }
.projects-intro h1 { max-width: 760px; margin-bottom: 24px; }
.projects-intro .lead { margin-bottom: 36px; color: var(--muted); }
.project-summary { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 48px; border-top: 1px solid var(--line); padding-block: 32px; }
.project-summary .eyebrow { margin-bottom: 14px; color: var(--accent); }
.project-summary h2 { max-width: 440px; margin-bottom: 0; }
.project-summary-copy p { margin: 0 0 16px; }
.project-scope { display: grid; gap: 4px; margin: 0; padding-left: 18px; list-style-type: square; font-size: .95rem; }
.project-scope li::marker { color: var(--accent); }
.projects-note { margin: 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
@media (max-width: 760px) {
  html { scroll-padding-top: 140px; }
  .header-inner { flex-wrap: wrap; gap: 0 12px; padding-top: 8px; }
  .site-nav { display: flex; width: 100%; justify-content: center; gap: 28px; margin-left: 0; }
  .site-nav .button { display: none; }
  .site-nav a { min-height: 40px; }
  .projects-page { padding-block: 32px 40px; }
  .projects-intro .lead { margin-bottom: 28px; }
  .project-summary { grid-template-columns: minmax(0, 1fr); gap: 18px; padding-block: 26px; }
}
