/* Modern Tile Company, round two, option Vesper.
   Tone: drawing-sheet modernism. The page is set like a tile layout drawing:
   paper sheet, a title block on the right edge, image courses laid in running
   bond with paper-colored joints. Tokens are the five logo colors plus one ink
   neutral and white; no other hue enters the page. */

/* ---------- tokens ---------- */
:root {
  /* brand tokens, sampled from the mark (hex kept exact; HSL noted) */
  --paper: #F8F8F8;      /* hsl(0 0% 97%)   */
  --charcoal: #4A4A4A;   /* hsl(0 0% 29%)   */
  --leaf: #87C767;       /* hsl(100 46% 59%) */
  --slate: #61828B;      /* hsl(193 18% 46%) */
  --sky: #C1E6F6;        /* hsl(198 75% 86%) */
  /* the one permitted deep neutral, and white */
  --ink: #1E2225;        /* hsl(206 10% 13%) */
  --white: #FFFFFF;

  /* semantic roles */
  --surface: var(--paper);
  --surface-2: var(--sky);
  --surface-dark: var(--ink);
  --text: var(--charcoal);
  --text-strong: var(--ink);
  --text-on-dark: var(--paper);
  --accent: var(--leaf);
  --accent-text: var(--ink);       /* leaf carries ink text: 7.9:1 */
  --rule: var(--charcoal);
  --rule-soft: rgba(74, 74, 74, 0.28);
  --joint: var(--paper);           /* grout joint between image tiles */
  --joint-w: 6px;

  /* type */
  --display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", "Courier New", monospace;

  /* spacing scale */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px;
  --s7: 48px; --s8: 64px; --s9: 96px; --s10: 144px;

  --gutter: clamp(16px, 4vw, 40px);
  --rail: 300px;
  --bar-h: 60px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  padding-bottom: var(--bar-h); /* room for the mobile action bar */
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--leaf);
}
.on-dark :focus-visible, .on-dark:focus-visible, .actionbar :focus-visible { outline-color: var(--sky); box-shadow: 0 0 0 6px var(--ink); }

.skip {
  position: absolute; left: var(--s4); top: -100px;
  background: var(--ink); color: var(--paper);
  padding: var(--s2) var(--s4); z-index: 100; font-family: var(--mono);
}
.skip:focus { top: var(--s4); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.h-xl { font-size: clamp(3.4rem, 10.5vw, 8.2rem); letter-spacing: -0.018em; }
.h-l  { font-size: clamp(2.6rem, 6.5vw, 5.2rem); letter-spacing: -0.015em; }
.h-m  { font-size: clamp(2rem, 4vw, 3.2rem); }
.h-s  { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: 0; }

.kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.on-dark .kicker { color: var(--sky); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; max-width: 38em; }
.mono { font-family: var(--mono); }
.todo {
  font-family: var(--mono);
  font-size: 0.85em;
  color: var(--ink);
  background: var(--sky);
  padding: 0 0.3em;
}
.on-dark .todo { background: var(--sky); color: var(--ink); }

/* the sample chip: three nested-square tiles, the mark reduced to a glyph */
.chip {
  display: inline-block; width: 16px; height: 16px; flex: none;
  background: var(--sky);
  box-shadow: inset 0 0 0 2px var(--leaf), inset 0 0 0 5px var(--slate);
  vertical-align: middle;
}
.chip.ch-c { box-shadow: inset 0 0 0 2px var(--leaf), inset 0 0 0 5px var(--charcoal); }
.chips { display: inline-flex; gap: 4px; vertical-align: middle; }

/* ---------- sheet frame ---------- */
.sheet { min-height: 100vh; }

/* faint module grid on paper surfaces: the layout lines under the tile */
.gridded {
  position: relative;
  background-color: var(--surface);
  background-image:
    linear-gradient(var(--rule-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}
/* the grid is drawn at 28% charcoal, then washed by a paper overlay */
.gridded > * { position: relative; z-index: 1; }
.gridded::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: rgba(248, 248, 248, 0.82);
  pointer-events: none;
}

/* noise on dark surfaces */
.on-dark {
  background-color: var(--surface-dark);
  color: var(--text-on-dark);
  position: relative;
}
.on-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.16;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}
.on-dark > * { position: relative; }
.on-dark .display { color: var(--paper); }

.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: var(--s8); padding-bottom: var(--s8); }
.section-head { display: grid; gap: var(--s3); margin-bottom: var(--s6); }
.section-head .kicker { display: flex; align-items: center; gap: var(--s3); }

.rule { border: 0; border-top: 2px solid var(--rule); margin: 0; }
.on-dark .rule { border-color: var(--paper); }

/* ---------- header ---------- */
.top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0 var(--s4);
  padding-top: var(--s3); padding-bottom: 0;
  border-bottom: 2px solid var(--rule);
  background: var(--paper);
}
.top .logo { display: block; width: 150px; margin-bottom: var(--s3); }
.top .logo img { width: 150px; height: 57px; }
/* below 700px the section links take their own course under the logo, wrapping
   as needed, drawn under a soft rule: nothing scrolls, nothing hides */
.top-nav {
  display: flex; flex-wrap: wrap; gap: 0 var(--s3);
  flex: 1 0 100%; order: 3; min-width: 0;
  border-top: 1px solid var(--rule-soft);
}
.top-nav a {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; white-space: nowrap; padding: 0 var(--s1); min-height: 44px;
}
.top-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.top-tel { display: none; align-items: center; min-height: 44px; margin-bottom: var(--s3); font-family: var(--mono); font-size: 0.9rem; text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(92vh, 900px);
  min-height: min(92svh, 900px);
  display: grid; align-items: end;
  color: var(--paper);
}
.hero-img { position: absolute; inset: 0; z-index: -2; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(30, 34, 37, 0.35) 0%, rgba(30, 34, 37, 0) 30%),
    linear-gradient(20deg, rgba(30, 34, 37, 0.94) 0%, rgba(30, 34, 37, 0.74) 42%, rgba(30, 34, 37, 0.08) 78%);
}
.hero-body {
  padding-top: var(--s9); padding-bottom: var(--s7);
  display: grid; gap: var(--s5);
  max-width: 62rem;
}
.hero .kicker { color: var(--sky); display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.hero .display { color: var(--paper); }
.hero .display .line { display: inline; } /* natural wrap under 700px; forced courses from 700px up */
.hero .display .em { color: var(--leaf); }
.hero .lede { color: var(--paper); max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero-todo { font-size: 0.85rem; color: var(--paper); max-width: 34em; }

/* the tile frame: a leaf band along the hero's left edge with a slate stripe,
   the mark's frame-and-band read at page scale */
.hero-edge {
  position: absolute; left: 0; top: 0; bottom: 0; width: 10px; z-index: 0;
  background: linear-gradient(90deg, var(--leaf) 0 6px, var(--slate) 6px 10px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 48px; padding: var(--s3) var(--s5);
  font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.btn-accent { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }
.btn-accent:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-ghost:hover { background: rgba(248, 248, 248, 0.12); }
.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: rgba(30, 34, 37, 0.06); }
.btn-sky { background: var(--sky); color: var(--ink); border-color: var(--sky); }
/* a button with no file behind it yet: drawn as a dashed future-work line, not a live control */
.btn:disabled { background: transparent; color: var(--charcoal); border: 2px dashed var(--charcoal); cursor: not-allowed; }

/* ---------- lines of work ---------- */
.lines { display: grid; gap: var(--s8); }
.line { display: grid; gap: var(--s5); }
.line-img { background: var(--slate); }
.line-img img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.line-body { display: grid; gap: var(--s4); align-content: start; }
.line-body .h-m { margin-bottom: var(--s1); }
.terms { display: grid; gap: var(--s2); font-size: 0.95rem; }
.terms li { padding-left: var(--s5); position: relative; }
.terms li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 10px; height: 10px;
  background: var(--sky); box-shadow: inset 0 0 0 2px var(--leaf);
}
.line-note { font-size: 0.95rem; max-width: 36em; }

/* ---------- image wall, running bond ---------- */
.wall {
  display: grid; gap: var(--joint-w); background: var(--joint);
  grid-template-columns: repeat(2, 1fr);
}
.wall figure { margin: 0; background: var(--slate); overflow: hidden; }
.wall img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.wall .w-a { grid-column: span 2; }
.wall .w-b { grid-column: span 1; }
.wall .w-c { grid-column: span 1; }
.wall .w-d { grid-column: span 2; }
.wall .w-e { grid-column: span 1; }
.wall .w-f { grid-column: span 1; }
.wall .w-b img, .wall .w-c img, .wall .w-e img, .wall .w-f img { aspect-ratio: 1 / 1; }

/* ---------- where ---------- */
.where { background: var(--surface-2); color: var(--ink); }
.where .display { color: var(--ink); }
.cities { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); align-items: baseline; }
.cities li { font-family: var(--display); font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; }
.cities li:nth-child(1), .cities li:nth-child(2) { font-size: clamp(3rem, 9vw, 6.8rem); }
.counties { display: grid; gap: var(--s3); max-width: 40em; }
.counties p { font-size: 1rem; }
.counties strong { font-weight: 600; color: var(--ink); }
.where-grid { display: grid; gap: var(--s6); }

/* ---------- context ---------- */
.context { display: grid; gap: var(--s5); }
.context li { border-top: 2px solid var(--rule); padding-top: var(--s3); font-size: 1rem; max-width: 30em; }
.context li strong { display: block; font-family: var(--display); font-size: 1.6rem; line-height: 1; text-transform: uppercase; color: var(--ink); margin-bottom: var(--s2); letter-spacing: 0; }

/* ---------- named work ---------- */
.projects { columns: 1; column-gap: var(--s7); }
.sector { break-inside: avoid; margin-bottom: var(--s6); }
.sector h3 {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 2px solid var(--rule); padding-bottom: var(--s2); margin-bottom: var(--s3);
  display: flex; align-items: center; gap: var(--s2);
}
.sector li { display: flex; justify-content: space-between; gap: var(--s3); align-items: baseline; padding: 5px 0; border-bottom: 1px solid var(--rule-soft); font-size: 0.95rem; }
.sector li span:first-child { flex: 1 1 auto; }
.sector li .amt { font-family: var(--mono); font-size: 0.85rem; white-space: nowrap; color: var(--ink); }
.sector li .yr { font-family: var(--mono); font-size: 0.85rem; white-space: nowrap; }
.projects-note { font-size: 0.9rem; margin-top: var(--s4); max-width: 40em; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: var(--joint-w); background: var(--joint); }
.quote { background: var(--white); padding: var(--s6) var(--s5); display: grid; gap: var(--s4); align-content: space-between; border-top: 6px solid var(--slate); }
.quote.lead { border-top-color: var(--leaf); }
.quote p { font-size: 1.05rem; line-height: 1.5; }
.quote.lead p { font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.35; color: var(--ink); }
.quote .attrib { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.03em; }
.quote .attrib strong { display: block; font-weight: 600; color: var(--ink); }

/* ---------- prequalification (spec sheet) ---------- */
.spec { display: grid; gap: var(--s5); }
.spec-list { display: grid; }
.spec-list div { display: grid; grid-template-columns: 1fr; gap: var(--s1); padding: var(--s3) 0; border-top: 1px solid rgba(248, 248, 248, 0.35); }
.spec-list dt { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); }
.spec-list dd { font-size: 1rem; color: var(--paper); }
.spec-list dd.mono { font-size: 0.95rem; }
.spec-foot { font-size: 0.9rem; color: rgba(248, 248, 248, 0.85); max-width: 40em; }

/* ---------- contact ---------- */
.contact { display: grid; gap: var(--s6); align-items: start; }
.contact-photo { width: 100%; max-width: 360px; }
.contact-photo img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.contact-photo figcaption { font-family: var(--mono); font-size: 0.8rem; margin-top: var(--s2); }
.contact-body { display: grid; gap: var(--s4); }
.contact-lines { display: grid; gap: var(--s2); font-size: 1.05rem; }
.contact-lines a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; text-underline-offset: 4px; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines .lab { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; display: inline-block; min-width: 6.5em; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* ---------- footer ---------- */
.foot { border-top: 2px solid var(--rule); padding-top: var(--s6); padding-bottom: var(--s6); display: grid; gap: var(--s4); font-size: 0.9rem; }
.foot .logo img { width: 130px; height: 50px; }
.foot .disclosure { font-family: var(--mono); font-size: 0.8rem; }

/* ---------- title block (right rail) ---------- */
.titleblock { display: none; }

/* ---------- mobile action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--ink); border-top: 2px solid var(--ink);
  height: var(--bar-h);
}
.actionbar a { min-height: 44px; border-radius: 0; font-size: 0.85rem; }

/* ---------- motion: one orchestrated reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); transition-delay: calc(var(--i, 0) * 90ms); }
.js .hero-img img { animation: heroIn 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.js .hero-body > * { animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.js .hero-body > :nth-child(1) { animation-delay: 0.25s; }
.js .hero-body > :nth-child(2) { animation-delay: 0.4s; }
.js .hero-body > :nth-child(3) { animation-delay: 0.55s; }
.js .hero-body > :nth-child(4) { animation-delay: 0.7s; }
.js .hero-body > :nth-child(5) { animation-delay: 0.8s; }
.js .titleblock > * { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.js .titleblock > :nth-child(1) { animation-delay: 0.5s; }
.js .titleblock > :nth-child(2) { animation-delay: 0.6s; }
.js .titleblock > :nth-child(3) { animation-delay: 0.7s; }
.js .titleblock > :nth-child(4) { animation-delay: 0.8s; }
.js .titleblock > :nth-child(5) { animation-delay: 0.9s; }
@keyframes heroIn { from { transform: scale(1.06); opacity: 0.6; } to { transform: none; opacity: 1; } }
@keyframes rise { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero-img img, .js .hero-body > *, .js .titleblock > * { animation: none; }
  .btn { transition: none; }
}

/* ---------- tablet ---------- */
@media (min-width: 700px) {
  .top { flex-wrap: nowrap; }
  .top-tel { display: inline-flex; }
  .top-nav { flex: 0 1 auto; order: 0; margin-left: auto; margin-bottom: var(--s3); border-top: 0; gap: 0 var(--s4); justify-content: flex-end; }
  .hero .display .line { display: block; }
  .line { grid-template-columns: repeat(12, 1fr); align-items: start; }
  .line-img { grid-column: 1 / span 7; }
  .line-body { grid-column: 8 / span 5; }
  .line:nth-child(2) .line-img { grid-column: 6 / span 7; grid-row: 1; }
  .line:nth-child(2) .line-body { grid-column: 1 / span 5; grid-row: 1; }
  .line:nth-child(3) .line-img { grid-column: 3 / span 6; }
  .line:nth-child(3) .line-body { grid-column: 9 / span 4; }

  .wall { grid-template-columns: repeat(6, 1fr); }
  .wall .w-a { grid-column: span 4; }
  .wall .w-b { grid-column: span 2; }
  .wall .w-c { grid-column: span 3; }
  .wall .w-d { grid-column: span 3; }
  .wall .w-e { grid-column: span 2; }
  .wall .w-f { grid-column: span 4; }
  .wall img { aspect-ratio: 3 / 2; }
  .wall .w-b img, .wall .w-e img { aspect-ratio: 3 / 2; }
  .wall .w-c img, .wall .w-d img, .wall .w-f img { aspect-ratio: 3 / 2; }

  .where-grid { grid-template-columns: 7fr 5fr; align-items: end; }
  .context { grid-template-columns: repeat(12, 1fr); }
  .context li:nth-child(1) { grid-column: 1 / span 7; }
  .context li:nth-child(2) { grid-column: 8 / span 5; }
  .context li:nth-child(3) { grid-column: 1 / span 5; }
  .context li:nth-child(4) { grid-column: 6 / span 7; }

  .projects { columns: 2; }
  .quotes { grid-template-columns: repeat(12, 1fr); }
  .quote.lead { grid-column: 1 / span 7; grid-row: 1 / span 2; }
  .quote:nth-child(2) { grid-column: 8 / span 5; }
  .quote:nth-child(3) { grid-column: 8 / span 5; }
  .quote:nth-child(4) { grid-column: 1 / span 12; }
  .spec-list div { grid-template-columns: 14rem 1fr; gap: var(--s4); }
  .contact { grid-template-columns: 4fr 8fr; }
  .foot { grid-template-columns: auto 1fr; align-items: end; }
  .foot .disclosure { grid-column: 1 / -1; }
}

/* ---------- desktop with title block ---------- */
@media (min-width: 1100px) {
  body { padding-right: var(--rail); padding-bottom: 0; }
  .actionbar { display: none; }
  .top-nav { display: none; }
  .top .logo { width: 176px; }
  .top .logo img { width: 176px; height: 67px; }

  .titleblock {
    display: grid; align-content: start;
    position: fixed; top: 0; right: 0; bottom: 0; width: var(--rail); z-index: 40;
    background: var(--paper); color: var(--ink);
    border-left: 3px solid var(--ink);
    overflow-y: auto;
  }
  .tb-cell { padding: var(--s4) var(--s5); border-bottom: 2px solid var(--ink); display: grid; gap: var(--s2); }
  .tb-cell:last-child { border-bottom: 0; }
  .tb-lab { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
  .tb-val { font-family: var(--display); font-size: 1.6rem; line-height: 1; text-transform: uppercase; letter-spacing: 0; }
  .tb-sub { font-size: 0.9rem; line-height: 1.4; }
  .tb-mark { display: block; width: 64px; height: 30px; }
  .tb-index a { display: block; font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--rule-soft); min-height: 24px; }
  .tb-index a:last-child { border-bottom: 0; }
  .tb-index a:hover { color: var(--slate); }
  .tb-index a[aria-current="true"] { color: var(--ink); font-weight: 600; }
  .tb-index a[aria-current="true"]::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--leaf); margin-right: 8px; vertical-align: 1px; }
  .tb-cta { display: grid; gap: var(--s2); }
  .tb-cta .btn { width: 100%; }
  .tb-tel { font-family: var(--mono); font-size: 1rem; text-decoration: none; }
  .tb-fact { font-size: 0.85rem; }

  .projects { columns: 3; }
  .hero-body { padding-top: var(--s10); }
  .section { padding-top: var(--s9); padding-bottom: var(--s9); }
  .section-head { grid-template-columns: 1fr; max-width: 60rem; }
  .quote.lead { grid-column: 1 / span 7; grid-row: 1 / span 2; }
  .quote:nth-child(4) { grid-column: 1 / span 12; }
}

@media (min-width: 1440px) {
  :root { --gutter: 56px; --rail: 320px; }
}
