:root {
  --paper: #FAF7F2;
  --paper-raised: #F2EDE4;
  --ink: #1A1714;
  --ink-soft: #6B645B;
  --line: #E4DDD1;
  --spine: #1F4A3D;
  --spine-dark: #17372e;
  --ember: #B8532E;
  --white: #fffaf4;
  --shadow: 0 24px 70px rgba(26, 23, 20, .08);
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --display: "Fraunces", Georgia, serif;
  --body: "General Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(31, 74, 61, .08), transparent 32rem),
    linear-gradient(180deg, rgba(250, 247, 242, 1), rgba(242, 237, 228, .52) 72%, rgba(250, 247, 242, 1));
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
}
body.nav-compact .site-header {
  box-shadow: 0 1px 0 rgba(228, 221, 209, .9);
  background: rgba(250, 247, 242, .92);
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--ink);
  text-decoration-color: rgba(31, 74, 61, .35);
  text-underline-offset: .22em;
  transition: color 150ms var(--ease), text-decoration-color 150ms var(--ease);
}
a:hover { color: var(--spine); text-decoration-color: var(--spine); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(31, 74, 61, .34);
  outline-offset: 3px;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--ink);
  overflow-wrap: break-word;
}
h1 { font-size: clamp(3rem, 9vw, 6.9rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
h4 { font-size: 1.15rem; letter-spacing: -.01em; }
small, .caption { font-size: .82rem; line-height: 1.45; color: var(--ink-soft); }
::selection { background: rgba(31, 74, 61, .18); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--spine);
  color: var(--paper);
  border-radius: 999px;
}
.skip-link:focus { left: var(--gutter); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, .84);
  border-bottom: 1px solid rgba(228, 221, 209, .75);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease);
}
.nav-wrap {
  width: min(var(--max), calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  display: grid;
  line-height: 1.05;
}
.brand-text strong {
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.brand-text span {
  color: var(--ink-soft);
  font-size: 13px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--spine);
  color: var(--paper) !important;
  text-decoration: none;
}
.mobile-menu-button { display: none; }

main { overflow: hidden; }
.container {
  width: min(var(--max), calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
}
.section {
  padding: clamp(72px, 10vw, 132px) 0;
  border-top: 1px solid rgba(228, 221, 209, .68);
}
.section:first-child { border-top: 0; }
.section.tight { padding: clamp(48px, 7vw, 84px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--spine);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--spine);
}
.lede {
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 780px;
}
.measure { max-width: 780px; }
.grid {
  display: grid;
  gap: 24px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}
.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}
.stack > * + * { margin-top: 22px; }
.kicker {
  color: var(--ink-soft);
  font-size: .95rem;
  letter-spacing: .02em;
}

.hero {
  padding: clamp(76px, 13vw, 158px) 0 clamp(56px, 9vw, 110px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}
.hero h1 { max-width: 960px; }
.hero .lede { margin-top: 26px; }
.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: background 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease), transform 150ms var(--ease);
}
.button:hover {
  color: var(--ink);
  border-color: rgba(31, 74, 61, .42);
  background: rgba(31, 74, 61, .06);
}
.button.primary {
  background: var(--spine);
  border-color: var(--spine);
  color: var(--paper);
}
.button.primary:hover {
  background: var(--spine-dark);
  color: var(--paper);
}
.button.text {
  border: 0;
  padding-inline: 4px;
  border-radius: 0;
  text-decoration: underline;
  text-decoration-color: rgba(31, 74, 61, .35);
  text-underline-offset: .28em;
}
.button.text:hover { background: transparent; color: var(--spine); }
.hero-card {
  background: rgba(242, 237, 228, .82);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(22px, 4vw, 34px);
  min-height: 440px;
  display: grid;
  align-content: space-between;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -26% -36% 18%;
  height: 220px;
  background: radial-gradient(circle, rgba(31, 74, 61, .16), transparent 68%);
  pointer-events: none;
}

.hero-photo-card {
  padding: 0;
  min-height: clamp(360px, 42vw, 520px);
  background: var(--ink);
  overflow: hidden;
}
.hero-photo-card::after {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(26, 23, 20, .02), rgba(26, 23, 20, .16));
  z-index: 1;
}
.hero-photo-card picture,
.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.hero-photo-card img {
  object-fit: cover;
  object-position: center;
}

.browser-frame {
  border: 1px solid rgba(26, 23, 20, .13);
  border-radius: 22px;
  background: var(--paper);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.browser-top {
  height: 38px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser-body {
  min-height: 250px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(31,74,61,.1), transparent 42%),
    var(--paper);
}
.mock-headline {
  width: 70%;
  height: 54px;
  background: var(--ink);
  border-radius: 18px;
}
.mock-lines { margin-top: 18px; display: grid; gap: 8px; }
.mock-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}
.mock-lines span:nth-child(2) { width: 76%; }
.mock-lines span:nth-child(3) { width: 58%; }
.mock-card-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mock-tile {
  min-height: 72px;
  border-radius: 18px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
}

.card {
  background: rgba(242, 237, 228, .72);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
}
.card.white { background: rgba(250, 247, 242, .76); }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--ink-soft); }
.project-card {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  min-height: 410px;
  overflow: hidden;
  padding: 0;
}
.project-card .project-media {
  min-height: 320px;
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 24px;
}
.project-card .project-body {
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  align-content: space-between;
  gap: 28px;
}
.project-label {
  color: var(--spine);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  padding: 6px 10px;
  font-size: .78rem;
  background: rgba(250, 247, 242, .56);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.stat span { color: var(--ink-soft); font-size: .92rem; }

.quote-band {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}
.quote-band h2, .quote-band p { color: var(--paper); }
.quote-band p { opacity: .78; }
.quote-band .button { border-color: rgba(250,247,242,.24); color: var(--paper); }
.quote-band .button.primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.quote-form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field { display: grid; gap: 7px; }
label {
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(250, 247, 242, .82);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.form-note {
  color: var(--ink-soft);
  font-size: .9rem;
}
.form-status {
  min-height: 24px;
  color: var(--spine);
  font-weight: 700;
}
.turnstile-slot {
  min-height: 74px;
  border: 1px solid rgba(31, 74, 61, .2);
  border-radius: 18px;
  display: grid;
  align-items: center;
  padding: 12px;
  color: var(--ink-soft);
  font-size: .92rem;
  background: linear-gradient(135deg, rgba(255,250,244,.96), rgba(226,241,235,.72));
  box-shadow: 0 12px 34px rgba(31, 27, 22, .08);
}
.turnstile-slot[data-state="verified"] {
  border-color: rgba(31, 87, 72, .32);
  background: rgba(226, 241, 235, .72);
}
.turnstile-slot[data-state="error"] {
  border-color: rgba(138, 45, 26, .38);
  background: rgba(255, 244, 240, .82);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
}
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card.featured h3, .price-card.featured p, .price-card.featured li { color: var(--paper); }
.price {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.price span { font-family: var(--body); font-size: .95rem; color: var(--ink-soft); }
.price-card.featured .price span { color: rgba(250,247,242,.68); }
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.clean-list li {
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.clean-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--spine);
  position: absolute;
  left: 0;
  top: .72em;
}
.featured .clean-list li::before { background: var(--ember); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .72fr .88fr 1fr;
  gap: 34px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a { color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--spine); text-decoration: underline; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: .86rem;
}
.chat-link {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  z-index: 35;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(26,23,20,.18);
}
.chat-link:hover { color: var(--paper); background: var(--spine); }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.case-hero {
  padding: clamp(48px, 7vw, 92px) 0 clamp(42px, 5vw, 72px);
}
.case-hero h1 {
  text-wrap: balance;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.case-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(242,237,228,.52);
}
.feature-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row h3 { font-size: clamp(1.4rem, 2.4vw, 2.1rem); }
.industry-list {
  display: grid;
  gap: 12px;
}
.industry-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.industry-list span { color: var(--ink-soft); }

.callback-form-layout { display: grid; gap: 16px; }
.callback-form-row { display: grid; gap: 14px; }
.callback-form-row--contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.callback-form-row--contact .field:nth-child(3) { grid-column: 1 / -1; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status[hidden], .turnstile-slot[hidden] { display: none; }
.form-status.is-error { color: #8A2D1A; }
.form-status.is-success { color: var(--spine); }
.quote-embed-actions { display: flex; justify-content: flex-start; }
button[disabled] { opacity: .64; cursor: wait; }
@media (max-width: 760px) { .callback-form-row--contact, .callback-form-row--details { grid-template-columns: 1fr; } .quote-embed-actions { display: block; } }


/* Pre-deploy stabilization: callback forms and legal disclosure pages. */
.callback-form--embed {
  width: 100%;
}
.callback-form-row--details {
  grid-template-columns: minmax(190px, .35fr) minmax(0, .65fr);
  align-items: start;
}
.field--call-time select {
  min-height: 50px;
}
.callback-form-turnstile {
  min-width: 0;
}

/* Pass 10: premium legal-page restyle. */
.legal-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(31, 74, 61, .08), transparent 24rem),
    linear-gradient(180deg, rgba(250, 247, 242, .92), rgba(242, 237, 228, .34) 45%, rgba(250, 247, 242, .96));
}
.legal-hero {
  position: relative;
  padding: clamp(72px, 12vw, 136px) 0 clamp(42px, 7vw, 78px);
  border-bottom: 1px solid rgba(228, 221, 209, .74);
  background:
    linear-gradient(135deg, rgba(31, 74, 61, .075), transparent 44%),
    linear-gradient(180deg, rgba(255, 250, 244, .78), rgba(250, 247, 242, .18));
  overflow: hidden;
}
.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto var(--gutter) 0;
  height: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(31, 74, 61, .32), transparent);
}
.legal-hero .container {
  max-width: 980px;
}
.legal-hero h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}
.legal-hero .lede {
  max-width: 780px;
}
.legal-hero .form-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 12px;
  border: 1px solid rgba(228, 221, 209, .95);
  border-radius: 999px;
  background: rgba(255, 250, 244, .72);
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.35;
}
.legal-section {
  padding: clamp(42px, 7vw, 84px) 0 clamp(82px, 11vw, 132px);
  border-top: 0;
}
.legal-panel {
  max-width: 930px;
  padding: clamp(30px, 5.5vw, 68px);
  border: 1px solid rgba(228, 221, 209, .95);
  border-radius: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, .86), rgba(242, 237, 228, .56)),
    var(--paper-raised);
  box-shadow: 0 28px 90px rgba(26, 23, 20, .065);
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.74;
}
.legal-panel h2 {
  margin: clamp(32px, 5vw, 52px) 0 12px;
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(228, 221, 209, .9);
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -.032em;
}
.legal-panel h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-panel p,
.legal-panel li {
  max-width: 72ch;
}
.legal-panel ul {
  display: grid;
  gap: 10px;
  max-width: 72ch;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.legal-panel li {
  position: relative;
  padding-left: 22px;
}
.legal-panel li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--spine);
  opacity: .72;
}
.legal-panel a {
  color: var(--spine);
  font-weight: 700;
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}
@media (max-width: 760px) {
  .legal-hero {
    padding: 58px 0 38px;
  }
  .legal-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }
  .legal-panel {
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 16px 50px rgba(26, 23, 20, .055);
  }
  .legal-panel h2 {
    margin-top: 34px;
    padding-top: 30px;
  }
}

.project-mini {
  display: grid;
  align-content: start;
  min-height: 100%;
}


/* Visual QA polish pass: current live rebuild, quote flow, work proof cards, and mobile hierarchy. */
#quote .split {
  align-items: center;
}
.quote-form.card {
  background: rgba(242, 237, 228, .9);
  box-shadow: 0 18px 54px rgba(26, 23, 20, .055);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  background: rgba(255, 250, 244, .9);
}
.quote-form textarea {
  min-height: 154px;
}
.project-card .project-media {
  background:
    radial-gradient(circle at 30% 18%, rgba(250, 247, 242, .13), transparent 28rem),
    linear-gradient(145deg, #1A1714, #100E0C);
}
.project-card .project-media .browser-frame {
  width: min(100%, 430px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}
.project-card .project-media .browser-body {
  min-height: 280px;
}
.project-card .project-body .button {
  width: 100%;
}
.case-hero .hero-card {
  align-self: stretch;
}
.case-hero .hero-card .browser-frame {
  width: 100%;
}
.case-hero .caption {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}
.price-card {
  min-height: 100%;
}
.price-card.featured {
  box-shadow: 0 24px 70px rgba(26, 23, 20, .14);
}

@media (min-width: 941px) {
  #quote .split {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  }
}

@media (max-width: 940px) {
  .hero-grid, .split, .split.reverse, .grid.two, .grid.three, .grid.four, .pricing-grid, .quote-band, .project-card, .footer-grid {
    grid-template-columns: 1fr;
  }
  .project-card { min-height: 0; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .feature-row { grid-template-columns: 1fr; gap: 12px; }
  .hero-card { min-height: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-wrap { min-height: 68px; }
  .brand-text span { display: none; }
  .mobile-menu-button {
    display: inline-flex;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
  }
  .nav-links {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links[aria-hidden="true"] { display: none; }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 0;
  }
  .nav-cta { width: 100%; }
  body.nav-open { overflow: hidden; }
  .hero { padding-top: 56px; }
  .hero-actions, .cta-row { align-items: stretch; }
  .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .chat-link {
    left: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 10px));
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    font-size: 0;
    line-height: 1;
    text-align: center;
    border: 1px solid rgba(250, 247, 242, .16);
    box-shadow: 0 14px 34px rgba(26, 23, 20, .2);
  }
  .chat-link::before {
    content: "Chat";
    font: 800 .74rem/1 var(--body);
    letter-spacing: .01em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile visual QA polish: prevent cramped quote fields and reduce floating-chat obstruction. */
@media (max-width: 760px) {
  .section {
    padding: clamp(58px, 14vw, 86px) 0;
  }
  .section.tight {
    padding: clamp(42px, 11vw, 66px) 0;
  }
  .hero {
    padding: 54px 0 46px;
  }
  .hero h1,
  .case-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.55rem);
    line-height: .99;
  }
  .hero-card {
    border-radius: 26px;
    padding: 18px;
  }
  .hero-photo-card {
    padding: 0;
    min-height: 320px;
  }
  .browser-body {
    min-height: 220px;
    padding: 16px;
  }
  .mock-headline {
    height: 44px;
    border-radius: 14px;
  }
  .mock-card-grid {
    gap: 10px;
  }
  .mock-tile {
    min-height: 58px;
    border-radius: 14px;
  }
  .project-card {
    border-radius: 26px;
  }
  .project-card .project-media {
    min-height: 230px;
    padding: 18px;
  }
  .project-card .project-media .browser-frame {
    width: min(100%, 320px);
  }
  .project-card .project-media .browser-body {
    min-height: 220px;
  }
  .project-card .project-body {
    padding: 22px;
  }
  .industry-list a {
    display: grid;
    align-items: start;
    gap: 6px;
    padding: 16px 0;
  }
  .industry-list span {
    font-size: .94rem;
    line-height: 1.45;
  }
  .quote-band {
    border-radius: 28px;
    padding: 28px 22px;
  }
  .quote-form.card {
    border-radius: 24px;
    padding: 18px;
    box-shadow: none;
  }
  .callback-form-row--contact,
  .callback-form-row--details {
    grid-template-columns: 1fr !important;
  }
  .callback-form-row--contact .field:nth-child(3) {
    grid-column: auto;
  }
  .quote-form textarea {
    min-height: 150px;
  }
  .quote-embed-actions .button {
    width: 100%;
  }
  .chat-link {
    left: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 10px));
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    padding: 0;
    font-size: 0;
    line-height: 1;
    border: 1px solid rgba(250, 247, 242, .16);
    box-shadow: 0 14px 34px rgba(26, 23, 20, .2);
  }
  .footer-grid {
    gap: 28px;
  }
}

/* Quote form visual polish pass: make the callback form feel intentional and fix cramped project details. */
.quote-form.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(31, 74, 61, .16);
  background:
    radial-gradient(circle at 92% 8%, rgba(184, 83, 46, .12), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(31, 74, 61, .10), transparent 22rem),
    linear-gradient(180deg, rgba(250, 247, 242, .96), rgba(242, 237, 228, .92));
  box-shadow: 0 24px 70px rgba(26, 23, 20, .075);
}
.quote-form.card::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 250, 244, .62), transparent 42%);
}
.quote-form.card > * {
  position: relative;
  z-index: 1;
}
.quote-form .callback-form-layout {
  gap: 18px;
}
.quote-form .callback-form-row {
  gap: 16px;
}
.quote-form .field {
  min-width: 0;
  gap: 8px;
}
.quote-form label {
  font-size: .78rem;
  letter-spacing: .045em;
  line-height: 1.15;
  text-transform: uppercase;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 56px;
  border-color: rgba(31, 74, 61, .15);
  border-radius: 18px;
  background: rgba(255, 250, 244, .94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .58);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(31, 74, 61, .42);
  background: rgba(255, 250, 244, 1);
}
.quote-form .callback-form-row--details {
  grid-template-columns: 1fr !important;
}
.quote-form .field--call-time {
  width: min(100%, 280px);
}
.quote-form textarea {
  width: 100%;
  min-height: 180px;
  line-height: 1.55;
}
.quote-form .quote-embed-actions {
  margin-top: 4px;
}
.quote-form .quote-embed-actions .button {
  min-height: 52px;
  padding-inline: 24px;
}

@media (max-width: 760px) {
  .quote-form.card {
    padding: 20px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(26, 23, 20, .06);
  }
  .quote-form .field--call-time {
    width: 100%;
  }
  .quote-form textarea {
    min-height: 170px;
  }
}

/* Screenshot QA pass: improve dark-surface label contrast and align industry rows. */
.quote-band .eyebrow,
.price-card.featured .project-label {
  color: #A8D7C6;
}
.quote-band .eyebrow::before {
  background: #A8D7C6;
}
.industry-list a {
  display: grid;
  grid-template-columns: minmax(8.25rem, .32fr) minmax(0, 1fr);
  justify-content: initial;
  align-items: start;
  column-gap: clamp(22px, 3.4vw, 42px);
}
.industry-list strong {
  display: block;
  line-height: 1.32;
}
.industry-list span {
  line-height: 1.55;
}

@media (max-width: 760px) {
  .industry-list a {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

/* Pass 03 homepage premium rebuild: source-owned homepage sections. */
.homepage-hero {
  position: relative;
  padding: clamp(48px, 6.5vw, 88px) 0 clamp(54px, 7vw, 94px);
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 84% 20%, rgba(31, 74, 61, .18), transparent 30rem),
    radial-gradient(circle at 15% 82%, rgba(184, 83, 46, .08), transparent 24rem),
    linear-gradient(135deg, rgba(250, 247, 242, .98), rgba(242, 237, 228, .74));
}
.homepage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 242, .92), rgba(250, 247, 242, .28) 64%, rgba(250, 247, 242, .08)),
    repeating-linear-gradient(135deg, rgba(31, 74, 61, .045) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.homepage-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100vw - var(--gutter) * 2));
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.homepage-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 5.8vw, 5.35rem);
  line-height: .94;
  letter-spacing: -.062em;
}
.homepage-hero-copy .lede {
  max-width: 660px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}
.homepage-hero .hero-actions {
  margin-top: clamp(24px, 3vw, 32px);
}
.homepage-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 30px);
}
.homepage-principles span {
  border: 1px solid rgba(31, 74, 61, .2);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(250, 247, 242, .76);
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(26, 23, 20, .05);
}
.homepage-hero-photo {
  min-height: clamp(390px, 36vw, 560px);
  isolation: isolate;
  border-radius: clamp(28px, 3vw, 38px);
  box-shadow: 0 32px 90px rgba(26, 23, 20, .17);
  transform: translateY(6px);
}
.homepage-hero-photo::after {
  background: linear-gradient(180deg, rgba(26, 23, 20, .02), rgba(26, 23, 20, .34));
}
.homepage-hero-note {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2.4vw, 26px);
  right: clamp(16px, 2.4vw, 26px);
  bottom: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(250, 247, 242, .26);
  border-radius: 22px;
  background: rgba(26, 23, 20, .66);
  color: var(--paper);
  padding: 16px 18px;
  backdrop-filter: blur(14px);
}
.homepage-hero-note strong,
.homepage-hero-note span {
  display: block;
}
.homepage-hero-note span {
  color: rgba(250, 247, 242, .78);
  margin-top: 4px;
  font-size: .94rem;
  line-height: 1.45;
}
.homepage-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.homepage-proof-grid > div {
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid var(--line);
}
.homepage-proof-grid > div:last-child {
  border-right: 0;
}
.homepage-proof-grid strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.homepage-proof-grid p {
  color: var(--ink-soft);
  font-size: .96rem;
}
.section-intro {
  max-width: 860px;
  margin-bottom: clamp(30px, 5vw, 54px);
}
.homepage-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}
.homepage-work-card {
  display: grid;
  gap: 22px;
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(250, 247, 242, .66), rgba(242, 237, 228, .9));
}
.homepage-work-card h3 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}
.homepage-work-card > p {
  max-width: 42rem;
  font-size: clamp(1.03rem, 1.4vw, 1.14rem);
  color: var(--ink-soft);
}
.work-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.work-card-topline a {
  color: var(--spine);
  font-size: .9rem;
  font-weight: 800;
  text-decoration-thickness: .08em;
}
.work-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(31, 74, 61, .16);
}
.work-facts div {
  display: grid;
  grid-template-columns: minmax(8.5rem, .36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 74, 61, .16);
}
.work-facts dt {
  color: var(--spine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.work-facts dd {
  margin: 0;
  color: var(--ink-soft);
}
.method-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 74, 61, .12), transparent 20rem),
    rgba(242, 237, 228, .78);
}
.homepage-quote .split {
  align-items: center;
}

@media (max-width: 940px) {
  .homepage-hero {
    min-height: auto;
  }
  .homepage-hero-grid,
  .homepage-work-grid,
  .homepage-proof-grid {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100vw - var(--gutter) * 2));
  }
  .homepage-proof-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .homepage-proof-grid > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .homepage-hero {
    padding: 42px 0 58px;
  }
  .homepage-hero-copy h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.75rem);
    line-height: .96;
  }
  .homepage-hero-copy .lede {
    font-size: 1.05rem;
  }
  .homepage-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .homepage-principles span {
    width: 100%;
  }
  .homepage-hero-photo {
    min-height: min(360px, 82vw);
    border-radius: 26px;
    transform: none;
  }
  .homepage-hero-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 18px;
    padding: 14px;
  }
  .homepage-work-card {
    border-radius: 26px;
    padding: 22px;
  }
  .work-card-topline {
    display: grid;
    align-items: start;
    gap: 8px;
  }
  .work-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Pass 04 work index implementation: proof hub without fabricated screenshots. */
.work-index-hero {
  padding-bottom: clamp(48px, 8vw, 96px);
}
.work-index-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}
.work-index-principle {
  min-height: 280px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 74, 61, .14), transparent 18rem),
    linear-gradient(180deg, rgba(250, 247, 242, .78), rgba(242, 237, 228, .92));
}
.work-index-principle p {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.9vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.work-index-list {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}
.work-index-card {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(31, 74, 61, .16);
  border-radius: 34px;
  background: rgba(242, 237, 228, .72);
}
.work-index-panel {
  min-height: 420px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(250, 247, 242, .08), transparent 44%),
    radial-gradient(circle at 24% 20%, rgba(184, 83, 46, .34), transparent 18rem),
    linear-gradient(145deg, #1A1714, #132F27);
}
.work-index-panel--system {
  background:
    linear-gradient(135deg, rgba(250, 247, 242, .08), transparent 44%),
    radial-gradient(circle at 76% 18%, rgba(31, 74, 61, .52), transparent 18rem),
    linear-gradient(145deg, #1A1714, #2D241D);
}
.work-index-panel span {
  color: rgba(250, 247, 242, .72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.work-index-panel strong {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.work-index-body {
  display: grid;
  align-content: center;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(28px, 5vw, 58px);
}
.work-index-body h3 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}
.work-index-body > p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.07rem, 1.6vw, 1.22rem);
}
.work-index-note .split {
  align-items: start;
}

@media (max-width: 940px) {
  .work-index-hero-grid,
  .work-index-card {
    grid-template-columns: 1fr;
  }
  .work-index-card {
    min-height: 0;
  }
  .work-index-panel {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .work-index-principle {
    min-height: 220px;
    border-radius: 26px;
  }
  .work-index-card {
    border-radius: 28px;
  }
  .work-index-panel {
    min-height: 260px;
    padding: 24px;
  }
  .work-index-panel strong {
    max-width: 13ch;
    font-size: clamp(2.4rem, 12vw, 3.9rem);
  }
  .work-index-body {
    padding: 24px;
  }
}


/* Pass 05 Frame Platinum case study: craft-only proof page without fabricated screenshots. */
.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, .9fr);
  gap: clamp(28px, 5.5vw, 72px);
  align-items: center;
}
.case-hero--frame {
  position: relative;
  overflow: hidden;
}
.case-hero--frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 74, 61, .12), transparent 24rem),
    linear-gradient(180deg, rgba(242, 237, 228, .42), rgba(250, 247, 242, 0));
}
.case-hero--frame > .container {
  position: relative;
  z-index: 1;
}
.text-link {
  color: var(--spine);
  font-weight: 800;
  text-decoration-thickness: .08em;
  text-underline-offset: .24em;
}
.case-snapshot-card {
  min-height: 520px;
  display: grid;
  align-content: end;
  gap: 24px;
  padding: clamp(28px, 4.5vw, 52px);
  border: 1px solid rgba(31, 74, 61, .16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(250, 247, 242, .1), transparent 48%),
    radial-gradient(circle at 22% 18%, rgba(184, 83, 46, .22), transparent 20rem),
    linear-gradient(145deg, #1A1714, #132F27);
  color: var(--paper);
  box-shadow: 0 26px 80px rgba(26, 23, 20, .12);
}
.case-snapshot-card .eyebrow {
  color: rgba(250, 247, 242, .72);
}
.case-snapshot-title {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.case-snapshot-list {
  display: grid;
  gap: 16px;
  margin: 6px 0 0;
}
.case-snapshot-list div {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(250, 247, 242, .16);
}
.case-snapshot-list dt {
  color: rgba(250, 247, 242, .64);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-snapshot-list dd {
  margin: 0;
  color: var(--paper);
  font-weight: 750;
}
.section-kicker {
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 56px);
}
.case-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-decision-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(242, 237, 228, .64);
}
.case-decision-card span {
  color: var(--spine);
  font-weight: 850;
  letter-spacing: .12em;
}
.case-decision-card p {
  color: var(--ink-soft);
}
.case-interface-panel {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(31, 74, 61, .14);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(242, 237, 228, .84), rgba(250, 247, 242, .7));
}
.case-interface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-interface-grid div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.case-interface-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}
.case-interface-grid p {
  color: var(--ink-soft);
}
.case-proof-note .split {
  align-items: start;
}
.case-proof-note .lede {
  color: var(--ink-soft);
}

@media (max-width: 940px) {
  .case-hero-grid,
  .case-decision-grid,
  .case-interface-panel,
  .case-interface-grid {
    grid-template-columns: 1fr;
  }
  .case-snapshot-card {
    min-height: 420px;
  }
  .case-decision-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .case-snapshot-card,
  .case-interface-panel {
    border-radius: 28px;
    padding: 24px;
  }
  .case-snapshot-card {
    min-height: 340px;
  }
  .case-snapshot-title {
    max-width: 13ch;
    font-size: clamp(2.35rem, 11.5vw, 3.85rem);
  }
}

/* Pass 06 Utah Camping Gear Rentals case study: custom app proof without fabricated screenshots. */
.case-hero--rental {
  position: relative;
  overflow: hidden;
}
.case-hero--rental::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 16%, rgba(184, 83, 46, .11), transparent 24rem),
    radial-gradient(circle at 16% 70%, rgba(31, 74, 61, .10), transparent 24rem),
    linear-gradient(180deg, rgba(242, 237, 228, .42), rgba(250, 247, 242, 0));
}
.case-hero--rental > .container {
  position: relative;
  z-index: 1;
}
.case-snapshot-card--rental {
  background:
    linear-gradient(135deg, rgba(250, 247, 242, .1), transparent 48%),
    radial-gradient(circle at 78% 16%, rgba(31, 74, 61, .42), transparent 20rem),
    radial-gradient(circle at 18% 72%, rgba(184, 83, 46, .25), transparent 18rem),
    linear-gradient(145deg, #1A1714, #2D241D);
}
.case-study-section .case-decision-card h3 {
  max-width: 12ch;
}
@media (max-width: 760px) {
  .case-study-section .case-decision-card h3 {
    max-width: none;
  }
}



/* Pass 06B proof-layer asset repair: captured work imagery from live project screenshots. */
.homepage-work-media {
  overflow: hidden;
  margin: 0 0 8px;
  border: 1px solid rgba(31, 74, 61, .14);
  border-radius: 24px;
  background: var(--paper-raised);
  aspect-ratio: 4 / 3;
}
.homepage-work-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  background: var(--paper-raised);
}
.work-index-panel--capture {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
}
.work-index-panel--capture img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: fill;
}
.work-index-panel--capture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 23, 20, .02), rgba(26, 23, 20, .7));
  pointer-events: none;
}
.work-index-panel--capture figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  display: grid;
  gap: 10px;
}
.work-index-panel--capture span {
  color: rgba(250, 247, 242, .72);
}
.work-index-panel--capture strong {
  max-width: 12ch;
}
.case-proof-hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 520px;
  border: 1px solid rgba(31, 74, 61, .16);
  border-radius: 34px;
  background: var(--paper-raised);
  box-shadow: 0 26px 80px rgba(26, 23, 20, .12);
}
.case-proof-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: fill;
}
.case-proof-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 23, 20, 0), rgba(26, 23, 20, .72));
  pointer-events: none;
}
.case-proof-hero figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  display: grid;
  gap: 8px;
  color: var(--paper);
}
.case-proof-hero figcaption span,
.case-capture figcaption span {
  color: rgba(250, 247, 242, .72);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-proof-hero figcaption strong {
  max-width: 18rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.case-capture-section {
  padding-top: 0;
}
.case-capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}
.case-capture {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 360px;
  border: 1px solid rgba(31, 74, 61, .14);
  border-radius: 30px;
  background: var(--paper-raised);
}
.case-capture--wide {
  grid-row: span 2;
}
.case-capture--mobile {
  min-height: 620px;
}
.case-capture img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: fill;
}
.case-capture-grid--rental {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
.case-capture-grid--rental .case-capture {
  min-height: 0;
  aspect-ratio: 14 / 9;
}
.case-capture-grid--rental .case-capture--wide {
  grid-row: auto;
}
.case-capture-grid--rental .case-capture--mobile {
  grid-column: 2 / span 1;
  justify-self: center;
  width: 100%;
  max-width: 420px;
  min-height: 0;
  aspect-ratio: 4 / 7;
}
.case-capture-grid--rental .case-capture img {
  min-height: 0;
  object-fit: cover;
}
.case-capture-grid--frame {
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, .68fr);
  align-items: start;
}
.case-capture-grid--frame .case-capture,
.case-capture-grid--frame .case-capture--wide,
.case-capture-grid--frame .case-capture--mobile {
  grid-row: auto;
  min-height: 0;
}
.case-capture-grid--frame .case-capture:not(.case-capture--mobile) {
  aspect-ratio: 14 / 9;
}
.case-capture-grid--frame .case-capture--mobile {
  justify-self: center;
  width: 100%;
  max-width: 330px;
  aspect-ratio: 4 / 7;
}
.case-capture-grid--frame .case-capture img {
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}
.case-capture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 23, 20, 0), rgba(26, 23, 20, .70));
  pointer-events: none;
}
.case-capture figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 7px;
  color: var(--paper);
}
.case-capture figcaption strong {
  max-width: 28rem;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.35;
}
@media (max-width: 940px) {
  .case-capture-grid {
    grid-template-columns: 1fr;
  }
  .case-capture-grid--frame {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-capture-grid--frame .case-capture--mobile {
    grid-column: 1 / -1;
    max-width: min(100%, 360px);
  }
  .case-capture-grid--rental {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-capture-grid--rental .case-capture--mobile {
    grid-column: auto;
    max-width: none;
  }
  .case-capture--wide {
    grid-row: auto;
  }
  .case-proof-hero,
  .case-proof-hero img {
    min-height: 420px;
  }
}
@media (max-width: 760px) {
  .homepage-work-media,
  .work-index-panel--capture,
  .case-proof-hero,
  .case-capture {
    border-radius: 24px;
  }
  .case-capture-grid--frame,
  .case-capture-grid--rental {
    grid-template-columns: 1fr;
    max-width: min(100%, 430px);
  }
  .case-capture-grid--frame .case-capture--mobile,
  .case-capture-grid--rental .case-capture--mobile {
    grid-column: auto;
    max-width: 100%;
  }
  .work-index-panel--capture img {
    min-height: 300px;
  }
  .case-proof-hero,
  .case-proof-hero img {
    min-height: 340px;
  }
  .case-capture,
  .case-capture img {
    min-height: 300px;
  }
  .case-capture--mobile,
  .case-capture--mobile img {
    min-height: 560px;
  }
}


/* Pass 07 process page: practical premium method page. */
.process-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 132px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 84% 18%, rgba(31, 74, 61, .14), transparent 28rem),
    radial-gradient(circle at 12% 84%, rgba(184, 83, 46, .08), transparent 24rem),
    linear-gradient(180deg, rgba(250, 247, 242, .98), rgba(242, 237, 228, .58));
}
.process-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(31, 74, 61, .04) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.process-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}
.process-hero-copy h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: .95;
  letter-spacing: -.062em;
}
.process-hero-copy .lede {
  max-width: 720px;
}
.process-brief {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 83, 46, .25), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(31, 74, 61, .38), transparent 22rem),
    linear-gradient(145deg, #1A1714, #17372E);
  color: var(--paper);
  box-shadow: 0 30px 90px rgba(26, 23, 20, .16);
}
.process-brief h2,
.process-brief p,
.process-brief dd {
  color: var(--paper);
}
.process-brief h2 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}
.process-brief > p {
  color: rgba(250, 247, 242, .78);
}
.process-brief .project-label {
  color: #A8D7C6;
}
.process-brief-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.process-brief-list div {
  display: grid;
  grid-template-columns: minmax(5.5rem, .32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(250, 247, 242, .16);
}
.process-brief-list dt {
  color: #A8D7C6;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-brief-list dd {
  margin: 0;
  color: rgba(250, 247, 242, .82);
}
.process-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.process-step {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, rgba(250, 247, 242, .78), rgba(242, 237, 228, .88));
}
.process-step-number {
  color: var(--spine);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.process-step h3 {
  max-width: 11ch;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.process-decision-panel {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  padding: clamp(30px, 5.5vw, 66px);
  border: 1px solid rgba(31, 74, 61, .16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(31, 74, 61, .13), transparent 24rem),
    linear-gradient(180deg, rgba(242, 237, 228, .88), rgba(250, 247, 242, .7));
}
.process-decision-panel h2 {
  max-width: 11ch;
}
.process-decision-list {
  display: grid;
  gap: 0;
}
.process-decision-list div {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.process-decision-list div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.process-decision-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.25;
}
.process-decision-list p {
  color: var(--ink-soft);
}
.process-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.process-lanes .card {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.process-lanes .project-label {
  margin-bottom: 0;
}
.process-proof-link .split {
  align-items: center;
}
.process-proof-link .card h3 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

@media (max-width: 940px) {
  .process-hero-grid,
  .process-step-grid,
  .process-decision-panel,
  .process-lanes {
    grid-template-columns: 1fr;
  }
  .process-brief,
  .process-step,
  .process-lanes .card {
    min-height: 0;
  }
  .process-decision-panel h2 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .process-hero {
    padding: 50px 0 60px;
  }
  .process-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4.05rem);
    line-height: .97;
  }
  .process-brief,
  .process-decision-panel {
    border-radius: 28px;
    padding: 22px;
  }
  .process-brief-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .process-step h3 {
    max-width: none;
  }
  .process-lanes .card,
  .process-step {
    gap: 16px;
  }
}

/* Pass 08 pricing page: premium-led pricing, source-confirmed anchors, and mobile one-column hierarchy. */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 0 clamp(48px, 6vw, 76px);
  background:
    radial-gradient(circle at 88% 14%, rgba(31, 74, 61, .16), transparent 30rem),
    radial-gradient(circle at 6% 88%, rgba(184, 83, 46, .08), transparent 24rem),
    linear-gradient(180deg, rgba(250, 247, 242, .99), rgba(242, 237, 228, .56));
}
.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.pricing-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.3vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.pricing-hero .lede {
  max-width: 760px;
}
.pricing-logic-card {
  display: grid;
  gap: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 83, 46, .22), transparent 19rem),
    radial-gradient(circle at 0% 100%, rgba(31, 74, 61, .34), transparent 20rem),
    linear-gradient(145deg, #1A1714, #17372E);
  color: var(--paper);
  box-shadow: 0 30px 90px rgba(26, 23, 20, .16);
}
.pricing-logic-card h2,
.pricing-logic-card p,
.pricing-logic-card dd,
.pricing-logic-card strong,
.pricing-logic-card span {
  color: var(--paper);
}
.pricing-logic-card h2 {
  max-width: 13ch;
  font-size: clamp(2.05rem, 3.1vw, 3.1rem);
  text-wrap: balance;
}
.pricing-logic-card .project-label,
.pricing-tier--featured .project-label {
  color: #A8D7C6;
}
.pricing-logic-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.pricing-logic-list div {
  display: grid;
  grid-template-columns: minmax(2.8rem, .18fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(250, 247, 242, .16);
}
.pricing-logic-list dt {
  color: #A8D7C6;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.pricing-logic-list dd {
  display: grid;
  gap: 5px;
  margin: 0;
}
.pricing-logic-list span {
  color: rgba(250, 247, 242, .76);
}
.pricing-packages-section .section-heading {
  max-width: 800px;
}
.pricing-tier-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .96fr) minmax(0, .82fr);
  gap: 18px;
  align-items: stretch;
}
.pricing-tier {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 20px;
  background: linear-gradient(180deg, rgba(250, 247, 242, .76), rgba(242, 237, 228, .86));
}
.pricing-tier--featured {
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 83, 46, .2), transparent 19rem),
    linear-gradient(145deg, #1A1714, #17372E);
  color: var(--paper);
  border-color: rgba(26, 23, 20, .78);
  box-shadow: 0 28px 78px rgba(26, 23, 20, .16);
}
.pricing-tier--starter {
  background: rgba(242, 237, 228, .56);
}
.pricing-tier--featured h3,
.pricing-tier--featured p,
.pricing-tier--featured li,
.pricing-tier--featured .pricing-description {
  color: var(--paper);
}
.pricing-tier--featured .clean-list li::before {
  background: var(--ember);
}
.pricing-tier-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.pricing-tier-topline .project-label {
  margin: 0;
}
.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(168, 215, 198, .14);
  color: #A8D7C6;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-description {
  color: var(--ink-soft);
}
.pricing-amount {
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  line-height: 1;
  letter-spacing: -.052em;
  color: var(--ink);
}
.pricing-tier--featured .pricing-amount {
  color: var(--paper);
}
.pricing-tier--starter .pricing-amount {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
}
.pricing-factor-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  padding: clamp(30px, 5.5vw, 66px);
  border: 1px solid rgba(31, 74, 61, .16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(31, 74, 61, .13), transparent 24rem),
    linear-gradient(180deg, rgba(242, 237, 228, .88), rgba(250, 247, 242, .7));
}
.pricing-factor-panel h2 {
  max-width: 12ch;
}
.pricing-factor-list {
  display: grid;
  gap: 0;
}
.pricing-factor-list div {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.pricing-factor-list div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.pricing-factor-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.25;
}
.pricing-factor-list p {
  color: var(--ink-soft);
}
.pricing-care-card {
  background: linear-gradient(180deg, rgba(250, 247, 242, .78), rgba(242, 237, 228, .9));
}
.pricing-quote-section .split {
  align-items: center;
}

@media (max-width: 940px) {
  .pricing-hero-grid,
  .pricing-tier-grid,
  .pricing-factor-panel {
    grid-template-columns: 1fr;
  }
  .pricing-factor-panel h2 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .pricing-hero {
    padding: 44px 0 54px;
  }
  .pricing-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: .99;
  }
  .pricing-logic-card,
  .pricing-factor-panel {
    border-radius: 28px;
    padding: 22px;
  }
  .pricing-logic-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .pricing-tier {
    gap: 16px;
  }
  .pricing-tier-topline {
    align-items: flex-start;
  }
  .pricing-amount {
    font-size: clamp(2.1rem, 12vw, 3.15rem);
  }
}

/* Pass 09 industry page system: de-cloned trade pages, honest proof context, and mobile one-column hierarchy. */
.industry-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(42px, 5vw, 72px);
}
.industry-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .78fr);
  gap: clamp(28px, 5.5vw, 70px);
  align-items: center;
}
.industry-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.35vw, 5.45rem);
  line-height: .97;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.industry-hero .lede {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.45vw, 1.28rem);
}
.industry-snapshot {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(31, 74, 61, .08), rgba(242, 237, 228, .86)),
    rgba(242, 237, 228, .9);
  box-shadow: 0 22px 70px rgba(26, 23, 20, .07);
}
.industry-checklist {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.industry-checklist li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid rgba(228, 221, 209, .86);
  color: var(--ink);
  font-weight: 650;
  line-height: 1.42;
}
.industry-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.38em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--spine);
  box-shadow: 0 0 0 5px rgba(31, 74, 61, .1);
}
.industry-direction-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}
.industry-point-list {
  display: grid;
  gap: 18px;
}
.industry-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
}
.industry-point .industry-number {
  grid-row: span 2;
  min-width: 44px;
  color: var(--spine);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.industry-point h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}
.industry-point p {
  margin: 0;
}
.industry-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(26, 23, 20, .96);
  color: var(--paper);
  overflow: hidden;
  position: relative;
}
.industry-proof-panel::after {
  content: "";
  position: absolute;
  inset: -40% -15% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(184, 83, 46, .24), transparent 70%);
  pointer-events: none;
}
.industry-proof-panel > * {
  position: relative;
  z-index: 1;
}
.industry-proof-panel h2,
.industry-proof-panel p {
  color: var(--paper);
}
.industry-proof-panel p {
  opacity: .78;
  max-width: 780px;
}
.industry-proof-panel .eyebrow {
  color: #b8f3df;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .34);
}
.industry-proof-panel .eyebrow::before {
  background: #b8f3df;
  opacity: .92;
}
.industry-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.industry-proof-actions .button {
  color: var(--paper);
  border-color: rgba(250, 247, 242, .24);
}
.industry-proof-actions .button.primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.section-intro {
  max-width: 880px;
  margin-bottom: clamp(24px, 5vw, 44px);
}
.industry-need-grid .card {
  min-height: 100%;
}
.industry-need-grid .card .project-label {
  margin-bottom: 14px;
}
@media (max-width: 940px) {
  .industry-hero-grid,
  .industry-direction-grid,
  .industry-proof-panel,
  .industry-need-grid {
    grid-template-columns: 1fr;
  }
  .industry-proof-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .industry-hero {
    padding-top: clamp(44px, 12vw, 68px);
  }
  .industry-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.55rem);
    line-height: .99;
  }
  .industry-snapshot,
  .industry-point,
  .industry-proof-panel,
  .industry-need-grid .card {
    border-radius: 22px;
  }
  .industry-point {
    grid-template-columns: 1fr;
  }
  .industry-point .industry-number {
    grid-row: auto;
  }
  .industry-proof-actions .button,
  .industry-hero .hero-actions .button {
    width: 100%;
  }
}


/* 20260530 work page portrait proof swap: supplied portrait visuals fill the work-index media frames without changing case-study hero proof assets. */
.work-index-panel--capture img[src*="work-page-portrait"] {
  min-height: 560px;
  object-fit: fill;
}

@media (max-width: 940px) {
  .work-index-panel--capture img[src*="work-page-portrait"] {
    min-height: 680px;
  }
}

@media (max-width: 560px) {
  .work-index-panel--capture img[src*="work-page-portrait"] {
    min-height: 560px;
  }
}

/* 20260530 screenshot-directed UCGR work-card frame repair: capture panels fill from the very top with no inherited grid letterbox. */
.work-index-panel--capture {
  display: block;
}

.work-index-panel--capture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: fill;
  object-position: center top;
}

.work-index-panel--capture.work-index-panel--system {
  min-height: 560px;
}

@media (max-width: 940px) {
  .work-index-panel--capture.work-index-panel--system {
    min-height: 680px;
  }
}

@media (max-width: 560px) {
  .work-index-panel--capture.work-index-panel--system {
    min-height: 560px;
  }
}

/* 20260530 frame-fill override: absolute-fill capture images should not reserve internal height that creates visual cropping or letterbox gaps. */
.work-index-panel--capture img[src*="work-page-portrait"],
.work-index-panel--capture img[src*="work-index-family-camping"] {
  min-height: 0;
}


/* Local office, Google Business Profile, and map embed pass. */
.local-office {
  border-top-color: rgba(31, 74, 61, .1);
}
.local-office-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(31, 74, 61, .16);
  border-radius: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(circle at 5% 8%, rgba(184, 83, 46, .16), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(31, 74, 61, .13), transparent 24rem),
    linear-gradient(145deg, rgba(255, 250, 244, .98), rgba(242, 237, 228, .92));
  box-shadow: 0 28px 90px rgba(26, 23, 20, .09);
}
.local-office-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 250, 244, .72);
  border-radius: calc(clamp(28px, 4vw, 40px) - 8px);
  pointer-events: none;
}
.local-office-content {
  display: grid;
  align-content: center;
  gap: clamp(18px, 3vw, 28px);
  max-width: 520px;
}
.local-office-copy {
  align-content: center;
}
.local-office-copy h2 {
  max-width: 8.6ch;
}
.office-address,
.footer-office address {
  font-style: normal;
  color: var(--ink);
  line-height: 1.6;
}
.office-address {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(16px, 2vw, 22px);
  padding: 16px 18px 16px 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 74, 61, .14);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(31, 74, 61, .12), transparent 5px),
    rgba(255, 250, 244, .78);
  box-shadow: 0 16px 36px rgba(26, 23, 20, .055);
}
.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.office-actions .button {
  min-height: 46px;
  border-color: rgba(31, 74, 61, .13);
  background: rgba(255, 250, 244, .68);
  box-shadow: 0 10px 26px rgba(26, 23, 20, .045);
}
.office-actions .button.primary {
  background: var(--spine);
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(31, 74, 61, .18);
}
.map-card {
  position: relative;
  min-height: clamp(380px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(31, 74, 61, .18);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(31, 74, 61, .18), rgba(184, 83, 46, .12)),
    var(--paper-raised);
  box-shadow:
    0 24px 60px rgba(26, 23, 20, .11),
    inset 0 0 0 1px rgba(255, 250, 244, .58);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 244, .76);
  border-radius: calc(clamp(24px, 3vw, 34px) - 8px);
  box-shadow: inset 0 0 0 1px rgba(31, 74, 61, .08);
  pointer-events: none;
}
.map-card iframe {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 0;
  border-radius: calc(clamp(24px, 3vw, 34px) - 8px);
  filter: saturate(.88) contrast(.98);
}
.map-card-overlay {
  position: absolute;
  left: clamp(22px, 3vw, 30px);
  bottom: clamp(22px, 3vw, 30px);
  z-index: 3;
  max-width: min(320px, calc(100% - 48px));
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 250, 244, .72);
  border-radius: 18px;
  background: rgba(250, 247, 242, .9);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(26, 23, 20, .16);
  backdrop-filter: blur(14px);
  pointer-events: none;
}
.map-card-overlay span {
  color: var(--spine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.map-card-overlay strong {
  font-size: .98rem;
  line-height: 1.25;
}
.footer-grid--office {
  grid-template-columns: 1.05fr .72fr .88fr 1fr;
}
.footer-office address {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.footer-office-links {
  gap: 8px;
}
.footer-bottom--office {
  align-items: center;
}

@media (max-width: 1040px) {
  .local-office-panel {
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  }
}

@media (max-width: 940px) {
  .local-office-panel,
  .footer-grid--office {
    grid-template-columns: 1fr;
  }
  .local-office-content {
    max-width: 680px;
  }
  .local-office-copy h2 {
    max-width: 11ch;
  }
  .map-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .local-office-panel {
    padding: 18px;
    border-radius: 28px;
  }
  .local-office-panel::before {
    inset: 8px;
    border-radius: 22px;
  }
  .map-card {
    min-height: 315px;
    border-radius: 24px;
  }
  .map-card::before {
    inset: 8px;
    border-radius: 18px;
  }
  .map-card iframe {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 18px;
  }
  .map-card-overlay {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }
  .office-address {
    width: 100%;
  }
  .office-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .office-actions .button {
    width: 100%;
  }
}

/* Pass 14 rendered visual QA polish: mobile footer tap comfort and fixed chat clearance. */
@media (max-width: 760px) {
  .site-footer {
    padding-bottom: max(104px, calc(env(safe-area-inset-bottom) + 92px));
  }
  .footer-links a {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
  .footer-bottom a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
  }
  .legal-panel a,
  .text-link {
    text-underline-offset: .24em;
  }
}

/* Pass 14 rendered visual QA polish: mobile text-link tap areas on work proof surfaces. */
@media (max-width: 760px) {
  .work-card-topline a,
  .work-index-body a,
  .case-hero .text-link,
  .case-proof-note .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
}

/* Pass 14 rendered visual QA polish: mobile legal contact link tap comfort. */
@media (max-width: 760px) {
  .legal-panel a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
}
