:root {
  --ink: #111918;
  --ink-soft: #26312f;
  --paper: #f4f5f0;
  --white: #ffffff;
  --mist: #e4e9e4;
  --line: #cbd3ce;
  --moss: #1e4b41;
  --moss-dark: #14372f;
  --blue: #3f7187;
  --gold: #c6a25d;
  --coral: #ad5542;
  --text-muted: #5e6966;
  --shadow: 0 24px 70px rgba(17, 25, 24, 0.14);
  --container: 1180px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

h1,
h2,
h3,
h4,
strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 56px;
  max-width: 860px;
  margin-bottom: 26px;
}

h2 {
  font-size: 44px;
  max-width: 780px;
  margin-bottom: 22px;
}

h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  transform: translateY(-180%);
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #d8bd82;
}

.lede {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 21px;
  line-height: 1.55;
}

.lede--light {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--moss);
  font-weight: 700;
}

.text-link:hover {
  color: var(--coral);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button--primary {
  background: var(--gold);
  color: #17140f;
}

.button--primary:hover {
  background: #d3b16c;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(17, 25, 24, 0.2);
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: var(--moss);
}

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

.button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(203, 211, 206, 0.8);
  background: var(--paper);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.nav-cta {
  margin-left: 6px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 128px);
  max-height: 780px;
  overflow: hidden;
  background-color: var(--ink);
  color: var(--white);
}

.hero-media,
.work-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(9, 18, 17, 0.55);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 128px);
  max-height: 780px;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 70px 50px;
}

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

.hero h1 {
  color: var(--white);
}

.hero .lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.proof-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.proof-bar-item {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 16px 22px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.proof-bar-item:first-child {
  border-left: 0;
  color: var(--moss);
  font-weight: 700;
}

.section {
  padding-block: 96px;
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section--moss {
  background: var(--moss-dark);
  color: var(--white);
}

.section--compact {
  padding-block: 76px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 56px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head .lede {
  max-width: 480px;
  margin-bottom: 0;
}

.work-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 56px;
  align-items: center;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid #aab5ae;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding-inline: 14px;
  border-bottom: 1px solid var(--line);
  background: #eef0ec;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca7a1;
}

.browser-url {
  margin-left: 8px;
  color: #5f6965;
  font-size: 12px;
}

.browser-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.work-copy .case-label {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-copy ul,
.service-includes,
.check-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.work-copy li,
.service-includes li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line);
}

.work-copy li::before,
.service-includes li::before,
.check-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.offer-list {
  border-top: 1px solid var(--line);
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(320px, 1.2fr) minmax(160px, 0.4fr);
  gap: 44px;
  align-items: start;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}

.offer-number {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.offer-row h3 {
  font-size: 30px;
}

.offer-row p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.offer-price {
  text-align: right;
}

.offer-price strong {
  display: block;
  color: var(--moss);
  font-size: 21px;
}

.offer-price span {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 13px;
}

.system-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.system-step {
  position: relative;
  min-height: 170px;
  padding: 26px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.system-step:first-child {
  border-left: 0;
}

.system-step span {
  display: block;
  margin-bottom: 34px;
  color: #d8bd82;
  font-size: 12px;
  font-weight: 700;
}

.system-step strong {
  display: block;
  font-size: 19px;
}

.system-step p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.founder-quote {
  margin: 0;
  padding: 32px;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.5;
}

.founder-quote p {
  margin-bottom: 24px;
}

.founder-quote cite {
  color: var(--moss);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.founder-note {
  padding-left: 30px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.55;
}

.founder-name {
  display: block;
  margin-top: 22px;
  color: var(--moss);
  font-size: 15px;
  font-weight: 700;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 44px 25px 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--moss);
  content: "+";
  font-size: 26px;
  line-height: 1;
}

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

.faq-answer {
  max-width: 760px;
  padding-bottom: 26px;
  color: var(--text-muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  background: var(--moss);
  color: var(--white);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.cta-grid h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.page-intro {
  padding-block: 100px 86px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-intro h1 {
  max-width: 980px;
  font-size: 52px;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.5fr);
  gap: 80px;
  align-items: end;
}

.intro-aside {
  padding: 24px 0 6px 26px;
  border-left: 2px solid var(--gold);
  color: var(--text-muted);
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.pricing-note strong {
  color: var(--ink);
}

.pricing-note p {
  margin: 0;
}

.service-detail-list {
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(200px, 0.58fr) minmax(280px, 0.92fr) minmax(220px, 0.6fr);
  gap: 48px;
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
}

.service-detail h2 {
  font-size: 34px;
}

.service-detail .service-fit {
  color: var(--text-muted);
}

.service-meta {
  display: grid;
  gap: 16px;
}

.service-meta div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.service-meta span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--moss);
  font-size: 17px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.capability-item {
  min-height: 190px;
  padding: 28px;
  background: var(--ink);
}

.capability-item span {
  color: #d8bd82;
  font-size: 13px;
  font-weight: 700;
}

.capability-item h3 {
  margin-top: 28px;
  color: var(--white);
}

.capability-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.process-list {
  counter-reset: process;
  border-top: 1px solid var(--line);
}

.process-item {
  counter-increment: process;
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.process-item::before {
  color: var(--blue);
  content: "0" counter(process);
  font-size: 14px;
  font-weight: 700;
}

.process-item h3,
.process-item p {
  margin-bottom: 0;
}

.process-item p {
  color: var(--text-muted);
}

.work-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.work-hero-media {
  object-position: center;
}

.work-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(9, 18, 17, 0.66);
  content: "";
}

.work-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 100px 76px;
}

.work-hero h1 {
  max-width: 900px;
  font-size: 56px;
}

.case-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 80px;
}

.case-facts {
  border-top: 1px solid var(--line);
}

.case-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.case-fact span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.case-fact strong {
  font-size: 15px;
}

.case-story p {
  color: var(--ink-soft);
  font-size: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-grid img:first-child {
  grid-row: span 2;
}

.result-band {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 80px;
  align-items: start;
}

.result-band blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
  font-size: 25px;
  line-height: 1.55;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.founder-card {
  position: sticky;
  top: 120px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.founder-card img {
  width: 90px;
  margin-bottom: 26px;
}

.founder-card h2 {
  font-size: 30px;
}

.founder-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.story-copy h2 {
  margin-top: 62px;
  font-size: 36px;
}

.story-copy h2:first-child {
  margin-top: 0;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 19px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-item {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
}

.value-item span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}

.value-item h3 {
  margin-top: 32px;
}

.value-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-list {
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.contact-list span {
  color: var(--moss);
  font-weight: 700;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(17, 25, 24, 0.08);
}

.form-heading {
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--text-muted);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #aeb8b2;
  border-radius: 4px;
  background: #fbfcf9;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(63, 113, 135, 0.2);
}

.field-help {
  color: var(--text-muted);
  font-size: 12px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-block: 24px;
  color: var(--text-muted);
  font-size: 13px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--moss);
}

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

.form-note {
  margin: 15px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.legal {
  padding-block: 90px;
}

.legal h1 {
  font-size: 52px;
}

.legal h2 {
  margin-top: 50px;
  font-size: 28px;
}

.legal h3 {
  margin-top: 30px;
  font-size: 21px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal-meta {
  margin-bottom: 48px;
  color: var(--text-muted);
  font-size: 14px;
}

.thank-you {
  display: grid;
  min-height: calc(100svh - 78px);
  place-items: center;
  padding-block: 80px;
}

.thank-you-panel {
  max-width: 800px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin-top: 42px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.next-step {
  min-height: 160px;
  padding: 24px;
  background: var(--white);
}

.next-step span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.next-step strong {
  display: block;
  margin-top: 26px;
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1211;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(130px, 0.35fr));
  gap: 50px;
  padding-block: 68px 46px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.footer-column h2 {
  margin-bottom: 17px;
  color: #d8bd82;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .header-inner > .brand,
  .menu-button {
    position: relative;
    z-index: 1;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    padding: 20px 24px 40px;
    background: var(--paper);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-link {
    min-height: 56px;
    padding-inline: 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 18px;
  }

  .nav-cta {
    margin: 18px 0 0;
  }

  .menu-button {
    display: inline-flex;
  }

  .proof-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-bar-item {
    border-bottom: 1px solid var(--line);
  }

  .work-feature,
  .page-intro-grid,
  .case-summary,
  .founder-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .founder-card {
    position: static;
  }

  .offer-row,
  .service-detail {
    grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1fr);
  }

  .offer-price,
  .service-meta {
    grid-column: 2;
    text-align: left;
  }

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

  .footer-main {
    grid-template-columns: 1fr repeat(2, minmax(130px, 0.4fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

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

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .lede {
    font-size: 18px;
  }

  .brand-tagline {
    display: none;
  }

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

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: calc(100svh - 112px);
    max-height: none;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero::before {
    background: rgba(9, 18, 17, 0.74);
  }

  .hero-inner {
    min-height: calc(100svh - 112px);
    max-height: none;
    padding-block: 64px 40px;
  }

  .proof-bar-inner {
    grid-template-columns: 1fr;
  }

  .proof-bar-item {
    min-height: 58px;
    border-left: 0;
  }

  .section {
    padding-block: 76px;
  }

  .section--compact {
    padding-block: 58px;
  }

  .section-head {
    display: block;
    margin-bottom: 38px;
  }

  .section-head .lede {
    margin-top: 20px;
  }

  .work-feature {
    gap: 36px;
  }

  .offer-row,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-price,
  .service-meta {
    grid-column: auto;
  }

  .system-path,
  .capability-grid,
  .values-grid,
  .next-steps {
    grid-template-columns: 1fr;
  }

  .system-step {
    min-height: 140px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .system-step:first-child {
    border-top: 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-note {
    font-size: 19px;
  }

  .founder-quote {
    padding: 24px;
    font-size: 19px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .page-intro {
    padding-block: 72px 64px;
  }

  .page-intro h1,
  .work-hero h1,
  .legal h1 {
    font-size: 38px;
  }

  .page-intro-grid,
  .case-summary,
  .founder-story,
  .contact-layout {
    gap: 48px;
  }

  .process-item {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .process-item p {
    grid-column: 2;
  }

  .work-hero {
    min-height: 500px;
  }

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

  .image-grid img,
  .image-grid img:first-child {
    grid-row: auto;
    min-height: 260px;
  }

  .result-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .result-band blockquote {
    font-size: 21px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
