/* =========================================================
   Swish Development
   Restraint is the brand. Hairlines, asymmetric grids, no shadows.
   ========================================================= */

:root {
  --bone: #F5F1E8;
  --cream: #FAF7F1;
  --ink: #1F1B16;
  --stone: #6B6557;
  --sandstone: #B89968;
  --forest: #1F3530;
  --forest-deep: #152521;
  --soft-stone: #E5DFD0;

  --serif: 'Newsreader', 'Iowan Old Style', 'Hoefler Text', 'Times New Roman', serif;
  --ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container: 1280px;
  --pad-x: clamp(24px, 6vw, 96px);
  --pad-y: clamp(72px, 12vh, 120px);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--ui);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body { background: var(--bone); color: var(--ink); }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
textarea { font-family: var(--ui); }

::selection { background: var(--forest); color: var(--bone); }

a:focus-visible, button:focus-visible {
  outline: 1px solid var(--forest);
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 18px;
  z-index: 1000;
  font-family: var(--ui);
  font-size: 14px;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

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

/* ── Type ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}
.eyebrow-sand { color: var(--sandstone); letter-spacing: 0.14em; font-size: 11px; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 36px 0 0;
  max-width: 20ch;
  text-wrap: balance;
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  color: var(--stone);
}

/* ── Section numerals ──────────────────────────────────── */
.section-num {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  margin: 0;
}
.section-num .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--sandstone);
}
.section-num .num-sep {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--stone);
}
.section-num .num-label {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Buttons / links ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}
.btn .arrow { transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--forest); color: var(--bone); }
.btn-primary:hover { background: var(--forest-deep); }

.btn-light { background: var(--bone); color: var(--forest); }
.btn-light:hover { background: var(--cream); }

.tertiary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--sandstone);
  padding-bottom: 2px;
  transition: border-color 180ms ease;
  align-self: flex-start;
}
.tertiary-link:hover { border-color: var(--ink); }
.tertiary-link .arrow { font-size: 13px; }

.inline-link {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--sandstone);
}

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.88);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--soft-stone);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(20px, 2vw, 28px) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
}
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-tag {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.primary-nav ul {
  display: flex;
  gap: 28px;
}
.nav-link {
  position: relative;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sandstone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  padding: clamp(120px, 14vh, 180px) var(--pad-x) clamp(80px, 12vh, 120px);
}
.hero .display { margin-top: 36px; }
.hero-figure {
  margin: clamp(80px, 10vh, 120px) 0 0;
}
.hero-figure img {
  width: 100%;
  height: auto;
}

/* ── Generic section ───────────────────────────────────── */
.section {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--soft-stone);
}
.section-cream { background: var(--cream); }

/* ── Asymmetric grids ──────────────────────────────────── */
.grid-7-5 {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
}
.grid-5-7 {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 96px);
}

/* ── About ─────────────────────────────────────────────── */
.about-grid {
  margin-top: 56px;
  align-items: start;
}
.about-title {
  max-width: 16ch;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 12px;
  max-width: 52ch;
}
.about-copy p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* ── What We Do ────────────────────────────────────────── */
.what-title {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.15;
  margin-top: 40px;
  max-width: 14ch;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(56px, 8vh, 96px);
}
.what-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--soft-stone);
}
.what-item .item-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--sandstone);
  line-height: 1;
}
.what-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 0;
}
.item-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.45;
  color: var(--stone);
  margin: 0;
  letter-spacing: -0.005em;
}
.item-body {
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone);
  margin: 4px 0 0;
}
.what-coda {
  margin: clamp(56px, 8vh, 88px) 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--soft-stone);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--stone);
  letter-spacing: -0.005em;
  max-width: 64ch;
  text-wrap: balance;
}

/* ── Callout ───────────────────────────────────────────── */
.callout {
  padding: clamp(64px, 10vh, 120px) var(--pad-x);
  border-top: 1px solid var(--soft-stone);
  border-bottom: 1px solid var(--soft-stone);
}
.callout-grid { align-items: end; }
.callout-grid .h-display {
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.callout-lede {
  font-family: var(--ui);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--stone);
  margin: 0 0 28px;
}

/* ── Work With Us ──────────────────────────────────────── */
.work-head { align-items: end; margin-top: 56px; }
.work-head .h-display { max-width: 18ch; }
.work-lede {
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--stone);
  margin: 0;
  max-width: 40ch;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px) clamp(32px, 5vw, 80px);
  margin-top: clamp(56px, 8vh, 96px);
}
.work-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--soft-stone);
}
.work-item .item-num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sandstone);
  line-height: 1;
}
.work-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 0;
}
.item-who {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sandstone);
  line-height: 1.4;
  margin: 0;
}
.work-item .item-body {
  font-family: var(--ui);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--stone);
  margin: 4px 0 12px;
}
.work-item .tertiary-link { margin-top: auto; }

/* ── Review bar ────────────────────────────────────────── */
.reviewbar {
  background: var(--forest);
  padding: clamp(40px, 7vh, 72px) var(--pad-x);
}
.reviewbar-grid { align-items: center; }
.reviewbar-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 16px 0 0;
  max-width: 24ch;
  text-wrap: balance;
}
.reviewbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.reviewbar-right p {
  font-family: var(--ui);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.78);
  margin: 0;
  max-width: 44ch;
}

/* ── Projects (Canopy) ─────────────────────────────────── */
.project-title {
  font-size: clamp(36px, 4.2vw, 56px);
  margin-top: 40px;
  max-width: none;
}
.project-grid {
  margin-top: clamp(56px, 8vh, 96px);
  align-items: start;
}
.project-figure figure { margin: 0; }
.project-image {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--soft-stone);
  overflow: hidden;
  background: var(--bone);
}
.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-figure figcaption {
  margin-top: 14px;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.project-figure .project-body {
  font-family: var(--ui);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink);
  margin: clamp(28px, 3vw, 40px) 0 0;
  max-width: 56ch;
}

.project-meta { display: flex; flex-direction: column; }
.meta-eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}
.project-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 10px 0 0;
}
.project-descriptor {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.45;
  color: var(--stone);
  letter-spacing: -0.005em;
  margin: 12px 0 0;
}
.project-facts {
  display: grid;
  margin: clamp(40px, 5vw, 56px) 0 0;
  padding: 0;
}
.project-facts > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--soft-stone);
}
.project-facts dt {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}
.project-facts dd {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin: 0;
}

/* Follow-along */
.follow-along { margin-top: clamp(36px, 4vw, 48px); }
.follow-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 10px 0 20px;
  max-width: 24ch;
}
.follow-form { display: flex; flex-direction: column; gap: 8px; }
.follow-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}
.follow-row input[type="email"] {
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--soft-stone);
  padding: 12px 0;
  outline: none;
  width: 100%;
  transition: border-color 180ms ease;
}
.follow-row input[type="email"]:focus { border-bottom-color: var(--forest); }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid { margin-top: 56px; align-items: start; }
.contact-title {
  font-size: clamp(36px, 4vw, 52px);
  max-width: 12ch;
}
.contact-lede {
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--stone);
  margin: 28px 0 40px;
  max-width: 36ch;
}
.contact-meta {
  padding-top: 28px;
  border-top: 1px solid var(--soft-stone);
  display: grid;
  gap: 24px;
  margin: 0;
}
.contact-meta > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
}
.contact-meta dt {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}
.contact-meta dd {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}
.contact-meta a {
  color: var(--ink);
  border-bottom: 1px solid var(--sandstone);
  padding-bottom: 1px;
  transition: border-color 180ms ease;
}
.contact-meta a:hover { border-bottom-color: var(--ink); }

/* Form */
.contact-form { display: grid; gap: 28px; }
.field-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.field .optional {
  text-transform: none;
  letter-spacing: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--stone);
}
.field input,
.field select,
.field textarea {
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--soft-stone);
  padding: 12px 0;
  outline: none;
  width: 100%;
  border-radius: 0;
  transition: border-color 180ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--forest);
}

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 24px;
  color: var(--ink);
}
.select-wrap select:invalid { color: var(--stone); }
.select-caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--stone);
  font-size: 12px;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}
.form-note {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--stone);
  margin: 0;
  letter-spacing: 0.01em;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  padding: clamp(48px, 6vh, 72px) var(--pad-x);
  border-top: 1px solid var(--soft-stone);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-brand .brand-name { font-size: 28px; }
.footer-meta {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--stone);
  margin: 0;
  line-height: 1.7;
  text-align: right;
}

/* ── Block review page ─────────────────────────────────── */
.review-hero {
  padding: clamp(140px, 16vh, 200px) var(--pad-x) clamp(72px, 10vh, 120px);
  border-bottom: 1px solid var(--soft-stone);
}
.review-hero-grid {
  margin-top: 36px;
  align-items: end;
}
.review-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.review-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 44ch;
}
.review-lede {
  font-family: var(--ui);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--stone);
  margin: 0;
}
.hero-note {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--stone);
  margin: 0;
  letter-spacing: 0.01em;
}

.review-head {
  margin-top: 56px;
  align-items: end;
}
.review-head .h-display {
  max-width: 16ch;
}
.review-head-lede {
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--stone);
  margin: 0;
  max-width: 40ch;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(40px, 5vw, 80px);
  margin-top: clamp(56px, 8vh, 96px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(56px, 8vh, 96px);
}

/* Sample review card */
.sample-review {
  margin-top: clamp(48px, 6vh, 72px);
  background: var(--cream);
  border: 1px solid var(--soft-stone);
  padding: clamp(32px, 5vw, 64px);
  max-width: 880px;
}
.sample-header {
  padding-bottom: clamp(24px, 3vh, 36px);
  margin-bottom: clamp(28px, 4vh, 44px);
  border-bottom: 1px solid var(--soft-stone);
}
.sample-address {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 12px 0 28px;
}
.sample-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  margin: 0;
}
.sample-facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
}
.sample-facts dt {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}
.sample-facts dd {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}
.sample-body h4 {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sandstone);
  margin: 28px 0 10px;
}
.sample-body h4:first-child { margin-top: 0; }
.sample-body p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 4px;
  max-width: 64ch;
}

/* The honest bit */
.honest-grid { align-items: start; margin-top: 56px; }
.honest-prose {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 56ch;
}
.honest-prose p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--stone);
  margin: 0;
}

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

@media (max-width: 760px) {
  .deliverables-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .sample-facts { grid-template-columns: 1fr; gap: 8px; }
  .sample-facts > div { grid-template-columns: 110px 1fr; }
  .review-title { max-width: none; }
}

/* ── Reveal-on-scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 600ms cubic-bezier(.2,.6,.2,1) var(--delay, 0ms),
    transform 600ms cubic-bezier(.2,.6,.2,1) var(--delay, 0ms);
}
.reveal.is-shown {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Container padding for sections that aren't .section ── */
.hero .container,
.section .container,
.callout .container,
.reviewbar .container { padding-left: 0; padding-right: 0; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-7-5,
  .grid-5-7 { grid-template-columns: 1fr; gap: 40px; }
  .what-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: var(--pad-x);
    left: var(--pad-x);
    background: var(--cream);
    border: 1px solid var(--soft-stone);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .primary-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
  }
  .primary-nav .nav-link {
    display: block;
    padding: 14px 12px;
  }
  .primary-nav .nav-link::after { display: none; }

  .what-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .field-row.two { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; gap: 16px; }
  .form-foot .btn { justify-content: center; }
  .follow-row { grid-template-columns: 1fr; }
  .follow-row .btn { justify-content: center; }

  .project-facts > div { grid-template-columns: 110px 1fr; gap: 16px; }
  .contact-meta > div { grid-template-columns: 80px 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .display { font-size: clamp(40px, 11vw, 56px); }
  .h-display { font-size: clamp(28px, 8vw, 40px); }
  .project-facts > div { grid-template-columns: 1fr; gap: 4px; }
  .contact-meta > div { grid-template-columns: 1fr; gap: 4px; }
  .reviewbar-right p { max-width: none; }
}
