:root {
  --ink: #0d1f24;
  --ink-deep: #07181c;
  --ink-soft: #3f565b;
  --paper: #fbfaf6;
  --stone: #f2eee6;
  --mist: #e8f0ed;
  --white: #ffffff;
  --teal: #176d68;
  --teal-dark: #0b4543;
  --copper: #ba7046;
  --gold: #d4a45e;
  --line: rgba(13, 31, 36, 0.15);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(7, 24, 28, 0.13);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

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

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

body,
button,
input,
output {
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

figure,
blockquote,
dl,
dd {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.65rem;
}

h2 {
  margin-bottom: 26px;
  font-size: 3.25rem;
}

h3 {
  margin-bottom: 16px;
  font-size: 2rem;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

.section-inner {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}

.section,
.frameshift-section,
.cashflow-tool,
.process-section,
.proof-section,
.faq-section,
.final-cta {
  padding-block: 116px;
}

.section-kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.3;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-header a:focus-visible,
.text-link:focus-visible,
.contact-phone:focus-visible,
.contact-email:focus-visible,
.mobile-contact-bar a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button.primary {
  background: var(--copper);
  color: var(--white);
}

.button.primary:hover {
  background: #a75f38;
}

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

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

.button.wide {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 8px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 24, 28, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-panel {
  display: grid;
  width: 78px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 3px;
  background: var(--white);
}

.brand-logo {
  width: 67px;
  height: 67px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-header nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 750;
  transition: background-color 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--ink-deep);
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 44px);
  min-height: 650px;
  max-height: 820px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 15, 18, 0.98) 0%, rgba(5, 15, 18, 0.9) 34%, rgba(5, 15, 18, 0.35) 63%, rgba(5, 15, 18, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 80px));
  margin-left: max(40px, calc((100vw - 1240px) / 2));
  padding-top: 78px;
}

.hero .eyebrow {
  color: #f0bd78;
}

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

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.hero .button.secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-assurance {
  max-width: 630px;
  margin-bottom: 0;
  padding-left: 17px;
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.intro-band {
  padding: 0 0 112px;
  background: var(--ink);
  color: var(--white);
}

.signal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(-36px);
  border: 1px solid rgba(13, 31, 36, 0.09);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.signal-strip > div {
  min-width: 0;
  padding: 29px 32px 28px;
}

.signal-strip > div + div {
  border-left: 1px solid var(--line);
}

.signal-strip dt {
  margin-bottom: 7px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.signal-strip dd {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 88px;
  align-items: start;
  padding-top: 50px;
}

.intro-grid .section-kicker,
.proof-section .section-kicker,
.final-cta .section-kicker {
  color: #e2b06d;
}

.intro-grid h2 {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--white);
}

.intro-copy {
  padding-top: 35px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-proof {
  padding-top: 21px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.frameshift-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.frameshift-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--copper);
  content: "";
}

.frameshift-header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 86px;
  align-items: end;
}

.frameshift-header h2 {
  max-width: 760px;
  margin-bottom: 0;
  text-wrap: balance;
}

.frameshift-lede {
  padding-bottom: 7px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.frameshift-emphasis {
  margin-top: 21px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 760;
}

.frameshift-main {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 76px;
  align-items: center;
  margin-top: 78px;
}

.photo-panel {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--mist);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frameshift-photo {
  min-height: 610px;
}

.frameshift-photo img {
  position: absolute;
  inset: 0;
}

.frameshift-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 26px;
  background: rgba(7, 24, 28, 0.9);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.frameshift-copy h3 {
  max-width: 540px;
  margin-bottom: 34px;
  font-size: 2.55rem;
}

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

.capability-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-block: 21px;
  border-top: 1px solid var(--line);
}

.capability-list article > span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
}

.capability-list h4 {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.35;
}

.capability-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.52;
}

.frameshift-standards {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
  margin-top: 86px;
  padding-block: 47px;
  border-block: 1px solid var(--line);
}

.standards-heading h3 {
  max-width: 500px;
  margin-bottom: 17px;
  font-size: 2.2rem;
}

.standards-heading > p:last-child {
  max-width: 530px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standards-list > div {
  min-width: 0;
  padding: 4px 25px 4px 0;
}

.standards-list > div + div {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.standards-list dt {
  margin-bottom: 9px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.standards-list dd {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.build-examples {
  display: grid;
  grid-template-columns: 0.78fr 2.22fr;
  gap: 62px;
  margin-top: 76px;
  padding: 56px 58px 60px;
  background: var(--teal-dark);
  color: var(--white);
}

.build-examples .section-kicker {
  color: #edbd7d;
}

.build-examples h3 {
  margin-bottom: 0;
  font-size: 2.25rem;
}

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

.example-grid article {
  padding: 9px 0 27px;
  border-bottom: 1px solid var(--line-light);
}

.example-grid article:nth-last-child(-n + 2) {
  padding-top: 27px;
  padding-bottom: 0;
  border-bottom: 0;
}

.example-grid span {
  display: block;
  margin-bottom: 7px;
  color: #e4b16c;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.example-grid h4 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.35;
}

.example-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.86rem;
  line-height: 1.5;
}

.frameshift-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.frameshift-cta h3 {
  max-width: 700px;
  margin-bottom: 0;
}

.frameshift-cta .button {
  flex: 0 0 auto;
}

.problem-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 84px;
  align-items: center;
}

.problem-split h2 {
  max-width: 670px;
}

.section-lede {
  max-width: 680px;
  margin-bottom: 37px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.calm-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.calm-list li {
  position: relative;
  padding: 21px 0 21px 35px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.calm-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.calm-list li::before {
  position: absolute;
  top: 27px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--copper);
  content: "";
}

.calm-list strong {
  color: var(--ink);
}

.problem-split .photo-panel {
  min-height: 590px;
}

.problem-split .photo-panel img {
  position: absolute;
  inset: 0;
}

.cashflow-tool {
  background: var(--mist);
}

.cashflow-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 72px;
  align-items: end;
}

.cashflow-intro .section-kicker,
.cashflow-intro h2 {
  grid-column: 1;
}

.cashflow-intro h2 {
  margin-bottom: 0;
}

.cashflow-intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  margin-top: 47px;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 36, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tool-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 29px 31px;
  align-content: start;
  padding: 52px;
}

.tool-form label {
  display: grid;
  min-width: 0;
  gap: 10px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 730;
}

.tool-form label:nth-child(2),
.tool-form label:nth-child(5) {
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.tool-form label:nth-child(2) input,
.tool-form label:nth-child(5) input {
  grid-column: 1 / -1;
}

.tool-form output {
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.tool-form input[type="number"] {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid rgba(13, 31, 36, 0.24);
  border-radius: 4px;
  background: #fffefb;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
}

.tool-form input[type="number"]:focus {
  border-color: var(--teal);
}

.tool-form input[type="range"] {
  width: 100%;
  height: 7px;
  margin: 7px 0 4px;
  accent-color: var(--copper);
  cursor: pointer;
}

.tool-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #5b6b6f;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
}

.tool-disclaimer strong {
  color: var(--teal-dark);
}

.tool-results {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px 37px;
  background: var(--teal-dark);
  color: var(--white);
}

.score-ring {
  display: grid;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  place-content: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  text-align: center;
}

.score-ring span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  line-height: 0.95;
}

.score-ring small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  font-weight: 760;
  text-transform: uppercase;
}

.result-copy {
  margin-bottom: 25px;
  text-align: center;
}

.pressure-label {
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.25;
}

.result-copy p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 27px;
  border-block: 1px solid var(--line-light);
}

.metric-row > div {
  min-width: 0;
  padding: 17px 9px;
  text-align: center;
}

.metric-row > div + div {
  border-left: 1px solid var(--line-light);
}

.metric-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.metric-row small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  line-height: 1.35;
}

.tool-results .button {
  min-height: 52px;
}

.process-section {
  background: var(--stone);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.process-heading h2 {
  max-width: 540px;
  margin-bottom: 24px;
}

.process-heading > p:last-child {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 1rem;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding-block: 25px;
  border-top: 1px solid var(--line);
}

.process-list li > span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 820;
}

.process-list h3 {
  margin-bottom: 7px;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 780;
  line-height: 1.35;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.process-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  margin-top: 55px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.process-action > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.process-action strong {
  color: var(--ink);
}

.decision-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.service-list article {
  min-width: 0;
  padding: 38px 36px 42px 0;
}

.service-list article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.service-list article > span {
  display: block;
  margin-bottom: 19px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-list h3 {
  min-height: 2.25em;
  margin-bottom: 17px;
  font-size: 1.7rem;
}

.service-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 94px;
  align-items: start;
}

.proof-grid h2 {
  margin-bottom: 0;
  color: var(--white);
}

.quote {
  margin-bottom: 0;
  padding-left: 48px;
  border-left: 2px solid var(--gold);
}

.quote blockquote {
  margin-bottom: 28px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.42;
}

.quote-support {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.quote figcaption {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: center;
}

.about-photo {
  position: relative;
  min-height: 550px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--mist);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-grid p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 29px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.experience-list li {
  padding: 13px 12px 13px 0;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 760;
}

.experience-list li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.about-grid .location-note {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--ink) !important;
  font-size: 0.82rem !important;
  font-weight: 760;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--teal);
  color: var(--teal-dark);
  font-size: 0.91rem;
  font-weight: 750;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.faq-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
}

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

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

.faq-list summary {
  padding: 23px 38px 23px 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.45;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--copper);
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 24px;
  padding-right: 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.final-cta {
  background: var(--ink-deep);
  color: var(--white);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 100px;
  align-items: center;
}

.final-grid h2 {
  max-width: 760px;
  color: var(--white);
}

.final-grid > div:first-child > p:last-child {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
}

.contact-card {
  padding-left: 44px;
  border-left: 1px solid var(--line-light);
}

.contact-phone,
.contact-email {
  display: block;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-weight: 700;
}

.contact-phone {
  margin-top: 21px;
}

.contact-note {
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.79rem;
  line-height: 1.5;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #061418;
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.footer-grid p {
  margin-bottom: 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-grid p:last-child {
  text-align: right;
}

.footer-grid strong,
.footer-grid a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid a:hover {
  color: var(--gold);
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 30px;
  }

  .site-header nav {
    gap: 19px;
  }

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

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  .frameshift-header,
  .frameshift-main {
    gap: 58px;
  }

  .frameshift-standards,
  .process-grid,
  .faq-grid {
    gap: 54px;
  }

  .build-examples {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .tool-panel {
    grid-template-columns: 1fr;
  }

  .tool-results {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 26px 36px;
    align-items: center;
    padding: 38px 50px 42px;
  }

  .score-ring,
  .result-copy,
  .metric-row {
    margin-bottom: 0;
  }

  .result-copy {
    text-align: left;
  }

  .metric-row,
  .tool-results .button {
    grid-column: 1 / -1;
  }
}

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

  .section,
  .frameshift-section,
  .cashflow-tool,
  .process-section,
  .proof-section,
  .faq-section,
  .final-cta {
    padding-block: 88px;
  }

  .site-header {
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .brand-logo-panel {
    width: 71px;
    height: 59px;
  }

  .brand-logo {
    width: 61px;
    height: 61px;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-content {
    width: min(660px, calc(100% - 56px));
    margin-left: 28px;
    padding-top: 72px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .intro-grid,
  .frameshift-header,
  .frameshift-main,
  .frameshift-standards,
  .problem-split,
  .process-grid,
  .section-heading,
  .proof-grid,
  .about-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .frameshift-header,
  .frameshift-main,
  .frameshift-standards,
  .problem-split,
  .process-grid,
  .proof-grid,
  .about-grid,
  .faq-grid,
  .final-grid {
    gap: 48px;
  }

  .intro-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .frameshift-main {
    margin-top: 60px;
  }

  .frameshift-photo,
  .problem-split .photo-panel,
  .about-photo {
    min-height: 470px;
  }

  .frameshift-copy h3 {
    font-size: 2.3rem;
  }

  .frameshift-cta,
  .process-action {
    align-items: flex-start;
  }

  .cashflow-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cashflow-intro .section-kicker,
  .cashflow-intro h2,
  .cashflow-intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .cashflow-intro > p:last-child {
    max-width: 720px;
  }

  .section-heading {
    gap: 18px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .service-list article + article {
    padding: 30px 0;
    border-left: 0;
  }

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

  .service-list h3 {
    min-height: 0;
  }

  .quote {
    padding-left: 32px;
  }

  .final-grid {
    align-items: start;
  }

  .contact-card {
    max-width: 520px;
  }
}

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

  body {
    padding-bottom: 62px;
    font-size: 16px;
  }

  .section-inner {
    width: min(100% - 38px, 1240px);
  }

  .section,
  .frameshift-section,
  .cashflow-tool,
  .process-section,
  .proof-section,
  .faq-section,
  .final-cta {
    padding-block: 72px;
  }

  .site-header {
    min-height: 70px;
    padding: 6px 18px;
  }

  .brand-logo-panel {
    width: 64px;
    height: 54px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .header-cta {
    min-height: 42px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .hero {
    height: calc(100svh - 44px);
    min-height: 610px;
    max-height: 760px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: rgba(5, 15, 18, 0.79);
  }

  .hero-content {
    width: calc(100% - 38px);
    margin-left: 19px;
    padding-top: 69px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: 2.6rem;
    line-height: 1.04;
  }

  h2 {
    margin-bottom: 21px;
    font-size: 2.3rem;
  }

  h3 {
    font-size: 1.72rem;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.69rem;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 47px;
    padding-block: 10px;
    font-size: 0.82rem;
  }

  .hero-assurance {
    padding-left: 13px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .intro-band {
    padding-bottom: 72px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    transform: translateY(-24px);
  }

  .signal-strip > div {
    padding: 20px 23px;
  }

  .signal-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signal-strip dt {
    font-size: 1.08rem;
  }

  .intro-grid {
    gap: 30px;
    padding-top: 22px;
  }

  .frameshift-header,
  .frameshift-main,
  .frameshift-standards,
  .problem-split,
  .process-grid,
  .proof-grid,
  .about-grid,
  .faq-grid,
  .final-grid {
    gap: 36px;
  }

  .frameshift-main {
    margin-top: 48px;
  }

  .frameshift-photo,
  .problem-split .photo-panel,
  .about-photo {
    min-height: 350px;
  }

  .frameshift-photo figcaption {
    padding: 16px 18px;
    font-size: 0.72rem;
  }

  .frameshift-copy h3 {
    margin-bottom: 25px;
    font-size: 2rem;
  }

  .capability-list article {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .frameshift-standards {
    margin-top: 56px;
    padding-block: 34px;
  }

  .standards-heading h3 {
    font-size: 1.9rem;
  }

  .standards-list {
    grid-template-columns: 1fr;
  }

  .standards-list > div,
  .standards-list > div + div {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .standards-list > div:last-child {
    padding-bottom: 0;
  }

  .build-examples {
    gap: 28px;
    margin-top: 60px;
    padding: 36px 24px 39px;
  }

  .build-examples h3 {
    font-size: 1.9rem;
  }

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

  .example-grid article,
  .example-grid article:nth-last-child(-n + 2) {
    padding: 20px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .example-grid article:first-child {
    padding-top: 0;
  }

  .example-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .frameshift-cta,
  .process-action {
    display: grid;
    gap: 24px;
  }

  .frameshift-cta .button,
  .process-action .button,
  .decision-actions,
  .decision-actions .button {
    width: 100%;
  }

  .calm-list li {
    padding-left: 29px;
  }

  .tool-panel {
    margin-top: 34px;
  }

  .tool-form {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 29px 22px 34px;
  }

  .tool-form label,
  .tool-form label:nth-child(2),
  .tool-form label:nth-child(5) {
    grid-column: 1;
  }

  .tool-disclaimer {
    grid-column: 1;
  }

  .tool-results {
    display: flex;
    padding: 34px 22px 36px;
  }

  .score-ring {
    width: 132px;
    height: 132px;
    margin-bottom: 21px;
  }

  .score-ring span {
    font-size: 2.8rem;
  }

  .result-copy {
    margin-bottom: 22px;
    text-align: center;
  }

  .metric-row {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .metric-row > div + div {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .metric-row span {
    font-size: 1.3rem;
  }

  .process-list li {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 14px;
    padding-block: 21px;
  }

  .process-action {
    margin-top: 38px;
    padding-top: 28px;
  }

  .decision-actions {
    display: grid;
  }

  .service-list article,
  .service-list article + article {
    padding-block: 25px;
  }

  .quote {
    padding-left: 20px;
  }

  .quote blockquote {
    font-size: 1.5rem;
  }

  .about-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list summary {
    padding-block: 20px;
    padding-right: 12px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-card {
    max-width: none;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .footer-grid p:last-child {
    text-align: left;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 62px;
    grid-template-columns: 0.72fr 1.28fr;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--ink-deep);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(7, 24, 28, 0.18);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .mobile-contact-bar a + a {
    background: var(--copper);
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 600px;
  }

  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-copy {
    font-size: 0.9rem;
  }

  .hero-assurance {
    font-size: 0.73rem;
  }

  .section-inner {
    width: calc(100% - 32px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Streamlined page rhythm */
.simple-intro {
  padding-bottom: 38px;
}

.simple-intro .signal-strip > div {
  padding-block: 24px;
}

.frameshift-section {
  padding-block: 100px;
}

.simple-frameshift-main {
  margin-top: 60px;
}

.simple-frameshift-main .frameshift-photo {
  min-height: 520px;
}

.frameshift-compact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 48px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.frameshift-compact-footer p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.frameshift-compact-footer strong {
  color: var(--teal-dark);
}

.frameshift-compact-footer .button {
  flex: 0 0 auto;
}

.simplified-problems,
.simplified-services,
.simplified-about {
  padding-block: 94px;
}

.simplified-problems .problem-split .photo-panel {
  min-height: 520px;
}

.cashflow-tool {
  padding-block: 100px;
}

.simplified-proof {
  padding-block: 88px;
}

.simplified-proof .proof-grid {
  align-items: center;
}

.simplified-proof .quote blockquote {
  margin-bottom: 22px;
  font-size: 1.75rem;
}

.simplified-services .section-heading {
  margin-bottom: 44px;
}

.simplified-services .service-list article {
  padding-top: 31px;
  padding-bottom: 34px;
}

.simplified-process {
  padding-block: 90px;
}

.simplified-process .process-action {
  margin-top: 42px;
  padding-top: 30px;
}

.simplified-about .about-grid {
  gap: 72px;
}

.simplified-about .about-photo {
  min-height: 500px;
}

.founder-meta {
  margin-top: 26px;
  margin-bottom: 0;
  padding-block: 17px;
  border-block: 1px solid var(--line);
  color: var(--teal-dark) !important;
  font-size: 0.82rem !important;
  font-weight: 760;
  line-height: 1.7;
}

.simplified-about .about-actions {
  margin-top: 27px;
}

.final-cta {
  padding-block: 96px;
}

@media (max-width: 960px) {
  .frameshift-section,
  .cashflow-tool,
  .simplified-problems,
  .simplified-proof,
  .simplified-services,
  .simplified-process,
  .simplified-about,
  .final-cta {
    padding-block: 80px;
  }

  .simple-frameshift-main {
    margin-top: 48px;
  }

  .simple-frameshift-main .frameshift-photo,
  .simplified-problems .problem-split .photo-panel,
  .simplified-about .about-photo {
    min-height: 430px;
  }

  .frameshift-compact-footer {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .simple-intro {
    padding-bottom: 36px;
  }

  .simple-intro .signal-strip > div {
    padding-block: 18px;
  }

  .hero {
    min-height: 600px;
    max-height: 720px;
  }

  .frameshift-section,
  .cashflow-tool,
  .simplified-problems,
  .simplified-proof,
  .simplified-services,
  .simplified-process,
  .simplified-about,
  .final-cta {
    padding-block: 68px;
  }

  .simple-frameshift-main {
    margin-top: 40px;
  }

  .simple-frameshift-main .frameshift-photo,
  .simplified-problems .problem-split .photo-panel,
  .simplified-about .about-photo {
    min-height: 330px;
  }

  .frameshift-compact-footer {
    display: grid;
    gap: 22px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .frameshift-compact-footer .button {
    width: 100%;
  }

  .simplified-proof .quote blockquote {
    font-size: 1.45rem;
  }

  .simplified-services .section-heading {
    margin-bottom: 30px;
  }

  .simplified-process .process-action {
    margin-top: 32px;
    padding-top: 25px;
  }

  .simplified-about .about-grid {
    gap: 34px;
  }

  .founder-meta {
    font-size: 0.76rem !important;
  }
}

/* Boutique brand direction */
:root {
  --ink: #142522;
  --ink-deep: #0a1b1d;
  --ink-soft: #50605d;
  --paper: #f8f7f3;
  --stone: #eef0ec;
  --mist: #e4ece9;
  --white: #ffffff;
  --teal: #315f5a;
  --teal-dark: #173f3c;
  --copper: #a3634b;
  --gold: #c6a66c;
  --slate: #536b73;
  --line: rgba(20, 37, 34, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(10, 27, 29, 0.1);
  --radius: 2px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.signal-strip dt,
.brand-wordmark strong,
.pressure-label,
.metric-row span {
  font-family: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.9rem, 5vw, 5.25rem);
  line-height: 0.99;
}

h2 {
  font-size: clamp(2.7rem, 3.8vw, 3.7rem);
  line-height: 1.03;
}

h3 {
  line-height: 1.08;
}

.section-inner {
  width: min(1180px, calc(100% - 88px));
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 760;
}

.section-kicker::before,
.eyebrow::before {
  width: 26px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.button {
  min-height: 50px;
  padding: 12px 21px;
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 680;
}

.button.primary {
  background: var(--copper);
}

.button.primary:hover {
  background: #91543f;
}

.site-header {
  min-height: 88px;
  gap: 34px;
  padding: 9px 42px;
  border-bottom-color: rgba(255, 255, 255, 0.15);
  background: rgba(10, 27, 29, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 14px;
}

.brand-logo-panel {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1px;
}

.brand-logo {
  width: 61px;
  height: 61px;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand-wordmark strong {
  color: var(--white);
  font-size: 1.08rem;
}

.brand-wordmark small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  white-space: nowrap;
}

.site-header nav {
  gap: 28px;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 610;
}

.site-header nav a::after {
  height: 1px;
  background: var(--gold);
}

.header-cta {
  grid-column: 3;
  justify-self: end;
  min-height: 44px;
  padding-inline: 17px;
  border-color: rgba(198, 166, 108, 0.72);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 680;
}

.hero {
  min-height: 680px;
  max-height: 840px;
  background: var(--ink-deep);
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 22, 23, 0.98) 0%, rgba(7, 22, 23, 0.88) 37%, rgba(7, 22, 23, 0.32) 68%, rgba(7, 22, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 22, 23, 0.28), transparent 46%);
}

.hero-content {
  width: min(760px, calc(100% - 88px));
  margin-left: max(44px, calc((100vw - 1180px) / 2));
  padding-top: 94px;
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: #ddc18c;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  gap: 11px;
  margin-bottom: 27px;
}

.hero .button.primary {
  background: var(--copper);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(10, 27, 29, 0.14);
}

.hero-assurance {
  max-width: 590px;
  padding-left: 15px;
  border-left-width: 1px;
  border-left-color: var(--gold);
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.78rem;
}

.intro-band,
.simple-intro {
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.signal-strip {
  transform: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.signal-strip > div {
  padding: 37px 34px 39px;
}

.signal-strip > div:first-child {
  padding-left: 0;
}

.signal-strip > div:last-child {
  padding-right: 0;
}

.signal-strip dt {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.34rem;
}

.signal-strip dd {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.frameshift-section {
  padding-block: 112px;
  background: #f0f4f2;
}

.frameshift-section::before {
  height: 1px;
  background: var(--copper);
}

.frameshift-header {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 98px;
  align-items: end;
}

.frameshift-header h2 {
  max-width: 720px;
}

.frameshift-lede {
  padding: 0 0 8px 25px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1rem;
}

.simple-frameshift-main {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 86px;
  margin-top: 70px;
}

.simple-frameshift-main .frameshift-photo {
  min-height: 500px;
  border: 1px solid rgba(20, 37, 34, 0.1);
  box-shadow: 17px 17px 0 rgba(83, 107, 115, 0.1);
}

.frameshift-photo img {
  filter: saturate(0.78) contrast(0.98);
}

.frameshift-photo figcaption {
  padding: 18px 21px;
  background: rgba(10, 27, 29, 0.9);
  color: rgba(255, 255, 255, 0.68);
}

.frameshift-copy h3 {
  max-width: 490px;
  margin-bottom: 30px;
  font-size: 2.65rem;
}

.capability-list article {
  grid-template-columns: 37px 1fr;
  gap: 18px;
  padding-block: 23px;
}

.capability-list article > span,
.process-list li > span,
.service-list article > span {
  color: var(--copper);
}

.capability-list h4,
.process-list h3 {
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 720;
}

.capability-list p {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.frameshift-compact-footer {
  margin-top: 58px;
  padding-top: 31px;
}

.frameshift-compact-footer p {
  font-size: 0.84rem;
}

.simplified-problems,
.simplified-services,
.simplified-about {
  padding-block: 110px;
}

.simplified-problems {
  background: var(--white);
}

.problem-split {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 98px;
}

.problem-split h2 {
  max-width: 700px;
}

.calm-list li {
  padding: 24px 0 24px 30px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.calm-list li::before {
  top: 31px;
  width: 7px;
  height: 7px;
  border-width: 1px;
  border-color: var(--copper);
}

.problem-split .photo-panel,
.simplified-problems .problem-split .photo-panel {
  min-height: 540px;
  border: 1px solid rgba(20, 37, 34, 0.11);
}

.problem-split .photo-panel img,
.about-photo img {
  filter: saturate(0.76) contrast(0.97);
}

.cashflow-tool {
  padding-block: 108px;
  background: #e8efed;
}

.cashflow-intro {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 92px;
}

.cashflow-intro > p:last-child {
  padding-left: 25px;
  border-left: 1px solid var(--line);
  font-size: 0.96rem;
}

.tool-panel {
  margin-top: 51px;
  border-color: rgba(20, 37, 34, 0.13);
  box-shadow: 0 23px 60px rgba(20, 37, 34, 0.08);
}

.tool-form {
  padding: 53px;
}

.tool-form input[type="number"] {
  border-radius: 1px;
  background: #fbfbf8;
}

.tool-form input[type="range"] {
  accent-color: var(--copper);
}

.tool-results {
  background: var(--teal-dark);
}

.score-ring {
  border-width: 1px;
  border-color: #d4b77d;
}

.proof-section,
.simplified-proof {
  padding-block: 100px;
  background: #182927;
}

.proof-grid {
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 110px;
}

.quote {
  padding-left: 43px;
  border-left-width: 1px;
}

.simplified-proof .quote blockquote {
  margin-bottom: 25px;
  font-size: 1.9rem;
  line-height: 1.46;
}

.quote figcaption {
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.78rem;
}

.simplified-services {
  background: var(--paper);
}

.simplified-services .section-heading {
  grid-template-columns: 0.55fr 1.45fr;
  gap: 92px;
  margin-bottom: 55px;
}

.service-list article,
.simplified-services .service-list article {
  padding-top: 36px;
  padding-bottom: 39px;
}

.service-list h3 {
  min-height: 0;
  margin-bottom: 15px;
  font-size: 1.85rem;
}

.service-list p {
  font-size: 0.88rem;
}

.process-section,
.simplified-process {
  padding-block: 105px;
  background: var(--stone);
}

.process-grid {
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
  gap: 105px;
}

.process-heading > p:last-child {
  font-size: 0.94rem;
}

.process-list li {
  padding-block: 27px;
}

.simplified-process .process-action {
  margin-top: 47px;
  padding-top: 31px;
}

.simplified-about {
  background: var(--white);
}

.simplified-about .about-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 96px;
}

.simplified-about .about-photo {
  min-height: 570px;
  border: 1px solid rgba(20, 37, 34, 0.11);
  box-shadow: -17px 17px 0 rgba(169, 103, 77, 0.09);
}

.about-grid p:not(.section-kicker) {
  max-width: 650px;
  font-size: 0.96rem;
}

.founder-meta {
  color: var(--teal-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 690;
}

.final-cta {
  padding-block: 108px;
  background: var(--ink-deep);
}

.final-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.72fr);
  gap: 110px;
}

.final-grid > div:first-child > p:last-child {
  max-width: 680px;
  font-size: 0.96rem;
}

.contact-card {
  padding-left: 40px;
  border-left-width: 1px;
}

.site-footer {
  padding-block: 38px;
  background: #071719;
}

@media (max-width: 1180px) {
  .brand-wordmark {
    display: none;
  }

  .site-header {
    gap: 25px;
    padding-inline: 30px;
  }

  .section-inner {
    width: min(1180px, calc(100% - 60px));
  }
}

@media (max-width: 960px) {
  .brand-wordmark {
    display: grid;
  }

  .frameshift-section,
  .cashflow-tool,
  .simplified-problems,
  .simplified-proof,
  .simplified-services,
  .simplified-process,
  .simplified-about,
  .final-cta {
    padding-block: 88px;
  }

  .frameshift-header,
  .simple-frameshift-main,
  .problem-split,
  .cashflow-intro,
  .proof-grid,
  .simplified-services .section-heading,
  .process-grid,
  .simplified-about .about-grid,
  .final-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .frameshift-lede,
  .cashflow-intro > p:last-child {
    max-width: 720px;
    padding: 0;
    border-left: 0;
  }

  .simple-frameshift-main {
    margin-top: 53px;
  }

  .simple-frameshift-main .frameshift-photo,
  .problem-split .photo-panel,
  .simplified-problems .problem-split .photo-panel,
  .simplified-about .about-photo {
    min-height: 470px;
  }

  .tool-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 36px;
  }
}

@media (max-width: 720px) {
  .section-inner {
    width: calc(100% - 34px);
  }

  .site-header {
    min-height: 70px;
    gap: 13px;
    padding: 6px 16px;
  }

  .brand-wordmark {
    display: none;
  }

  .brand-logo-panel {
    width: 62px;
    height: 56px;
  }

  .brand-logo {
    width: 55px;
    height: 55px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.74rem;
  }

  .hero {
    height: calc(100svh - 48px);
    min-height: 680px;
    max-height: 740px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 22, 23, 0.91), rgba(7, 22, 23, 0.7)), linear-gradient(0deg, rgba(7, 22, 23, 0.62), transparent 58%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 82px;
  }

  .hero .eyebrow {
    margin-bottom: 15px;
    font-size: 0.64rem;
  }

  .hero h1,
  h1 {
    margin-bottom: 21px;
    font-size: 2.55rem;
    line-height: 1.01;
  }

  h2 {
    font-size: 2.28rem;
  }

  .hero-copy {
    max-width: 350px;
    margin-bottom: 23px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-actions .button {
    min-height: 47px;
    font-size: 0.78rem;
  }

  .hero-assurance {
    max-width: 340px;
    font-size: 0.7rem;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip > div,
  .signal-strip > div:first-child,
  .signal-strip > div:last-child {
    padding: 22px 0;
  }

  .signal-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signal-strip dt {
    font-size: 1.18rem;
  }

  .frameshift-section,
  .cashflow-tool,
  .simplified-problems,
  .simplified-proof,
  .simplified-services,
  .simplified-process,
  .simplified-about,
  .final-cta {
    padding-block: 72px;
  }

  .frameshift-header,
  .simple-frameshift-main,
  .problem-split,
  .cashflow-intro,
  .proof-grid,
  .simplified-services .section-heading,
  .process-grid,
  .simplified-about .about-grid,
  .final-grid {
    gap: 32px;
  }

  .simple-frameshift-main {
    margin-top: 40px;
  }

  .simple-frameshift-main .frameshift-photo,
  .problem-split .photo-panel,
  .simplified-problems .problem-split .photo-panel,
  .simplified-about .about-photo {
    min-height: 340px;
    box-shadow: none;
  }

  .frameshift-copy h3 {
    font-size: 2.05rem;
  }

  .frameshift-compact-footer {
    margin-top: 39px;
  }

  .cashflow-intro {
    gap: 16px;
  }

  .tool-panel {
    margin-top: 35px;
  }

  .tool-form {
    padding: 30px 22px 34px;
  }

  .simplified-proof .quote blockquote {
    font-size: 1.48rem;
  }

  .service-list h3 {
    font-size: 1.65rem;
  }

  .contact-card {
    padding-top: 29px;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .mobile-contact-bar {
    grid-template-columns: 0.72fr 1.28fr;
    background: var(--ink-deep);
  }

  .mobile-contact-bar a {
    font-size: 0.78rem;
  }

  .mobile-contact-bar a + a {
    background: var(--copper);
  }
}

@media (max-width: 420px) {
  .header-cta {
    max-width: 192px;
  }

  .hero h1,
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.12rem;
  }
}
