:root {
  --ink: #0b0b0a;
  --ink-soft: #171714;
  --charcoal: #25241f;
  --paper: #f2eee5;
  --paper-bright: #faf8f2;
  --stone: #d9d2c4;
  --stone-dark: #8c867a;
  --brass: #b39a63;
  --brass-light: #d5c392;
  --oxide: #733d2f;
  --sage: #778076;
  --white: #ffffff;
  --line-dark: rgba(242, 238, 229, 0.18);
  --line-light: rgba(11, 11, 10, 0.16);
  --display: "Iowan Old Style", "Baskerville", "Palatino Linotype", Georgia, serif;
  --sans: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --shell: 1180px;
  --shell-wide: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(84px, 10vw, 152px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

::selection {
  background: var(--brass);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.shell,
.shell-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell {
  max-width: calc(var(--shell) + (var(--gutter) * 2));
}

.shell-wide {
  max-width: calc(var(--shell-wide) + (var(--gutter) * 2));
}

.section {
  padding-block: var(--section);
}

.section-compact {
  padding-block: clamp(64px, 8vw, 104px);
}

.surface-dark {
  background: var(--ink);
  color: var(--paper);
}

.surface-soft-dark {
  background: var(--ink-soft);
  color: var(--paper);
}

.surface-paper {
  background: var(--paper);
  color: var(--ink);
}

.surface-bright {
  background: var(--paper-bright);
  color: var(--ink);
}

.surface-stone {
  background: var(--stone);
  color: var(--ink);
}

.section-rule {
  border-top: 1px solid currentColor;
  border-color: var(--line-light);
}

.surface-dark .section-rule,
.surface-soft-dark .section-rule {
  border-color: var(--line-dark);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.kicker.no-line::before {
  display: none;
}

.display,
.page-title,
.section-title,
.quote-display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.display {
  max-width: 920px;
  margin-bottom: 32px;
  font-size: clamp(3.5rem, 8.6vw, 8.4rem);
}

.page-title {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(3.15rem, 7.2vw, 7.3rem);
}

.section-title {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 5.3vw, 5.7rem);
}

.section-title.small {
  font-size: clamp(2.25rem, 4.2vw, 4.45rem);
}

.section-title em,
.display em,
.page-title em {
  color: var(--brass-light);
  font-weight: 400;
}

.lede {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.intro-copy {
  max-width: 640px;
  color: #4c4942;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.surface-dark .intro-copy,
.surface-soft-dark .intro-copy {
  color: rgba(242, 238, 229, 0.72);
}

.microcopy {
  color: var(--stone-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.surface-dark .microcopy,
.surface-soft-dark .microcopy {
  color: rgba(242, 238, 229, 0.56);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  padding: 15px 22px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease);
}

.button::after {
  content: "\2192";
  font-size: 1.05rem;
  font-weight: 400;
  transition: transform 260ms var(--ease);
}

.button:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(4px);
}

.button.secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button.secondary:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2197";
  color: var(--brass);
  font-size: 1rem;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

site-header,
site-footer {
  display: block;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
}

.site-header-inner {
  display: grid;
  min-height: 102px;
  align-items: center;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  border-bottom: 1px solid var(--line-dark);
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  color: inherit;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.13em;
  line-height: 1.02;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark strong {
  color: var(--brass-light);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.5;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(242, 238, 229, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--brass);
  content: "";
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
}

.header-action .button {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 0.61rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
}

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

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

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

.mobile-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 130px var(--gutter) 42px;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.mobile-panel.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line-dark);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  line-height: 1;
  text-decoration: none;
}

.mobile-nav a::after {
  color: var(--brass);
  content: "\2192";
  font-family: var(--sans);
  font-size: 1rem;
}

.mobile-panel .button {
  align-self: end;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.home-hero {
  min-height: min(960px, 100svh);
}

.hero-media,
.hero-overlay,
.page-hero-image {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/hero-scenic-road.png");
  background-position: center;
  background-size: cover;
  filter: saturate(0.56) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.9) 0%, rgba(5, 5, 4, 0.62) 47%, rgba(5, 5, 4, 0.2) 75%, rgba(5, 5, 4, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, 0.76) 0%, rgba(5, 5, 4, 0) 45%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 180px;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.hero-content .intro-copy,
.page-hero-content .intro-copy {
  color: rgba(242, 238, 229, 0.76);
}

.hero-footer {
  display: grid;
  align-items: end;
  margin-top: clamp(54px, 8vw, 108px);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.hero-proof {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof div {
  padding: 18px 18px 0 0;
}

.hero-proof span {
  display: block;
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
}

.page-hero {
  min-height: 820px;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.05) brightness(0.72);
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.94) 0%, rgba(7, 7, 6, 0.72) 46%, rgba(7, 7, 6, 0.24) 100%);
  content: "";
}

.page-hero.minimal {
  min-height: 670px;
  background:
    radial-gradient(circle at 76% 36%, rgba(179, 154, 99, 0.14), transparent 30%),
    linear-gradient(135deg, #151510, #070706 68%);
}

.page-index {
  position: absolute;
  right: var(--gutter);
  bottom: 46px;
  color: rgba(242, 238, 229, 0.3);
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-style: italic;
  line-height: 0.7;
}

.editorial-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(52px, 9vw, 132px);
}

.editorial-grid.reverse {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.15fr);
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.editorial-copy p {
  max-width: 660px;
}

.large-number {
  color: var(--brass);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 11rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.outcome-list {
  margin-top: 76px;
  border-top: 1px solid var(--line-light);
}

.outcome-row {
  display: grid;
  min-height: 230px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 100px minmax(200px, 0.9fr) minmax(280px, 1.1fr) 90px;
  gap: clamp(24px, 4vw, 60px);
  text-decoration: none;
  transition: background 240ms ease, padding 260ms var(--ease);
}

.outcome-row:hover {
  padding-inline: 22px;
  background: rgba(179, 154, 99, 0.08);
}

.outcome-number {
  color: var(--stone-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.outcome-row h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.outcome-row p {
  margin-bottom: 0;
  color: #57534b;
}

.outcome-arrow {
  justify-self: end;
  color: var(--brass);
  font-size: 1.7rem;
  transition: transform 240ms var(--ease);
}

.outcome-row:hover .outcome-arrow {
  transform: translateX(8px);
}

.spectrum {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.spectrum-item {
  position: relative;
  min-height: 390px;
  padding: 38px clamp(24px, 4vw, 54px) 46px 0;
}

.spectrum-item + .spectrum-item {
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(24px, 4vw, 54px);
}

.spectrum-item .index {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
}

.spectrum-item h3 {
  margin: 70px 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.spectrum-item p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(242, 238, 229, 0.64);
}

.process-preview {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.process-preview article {
  min-height: 300px;
  padding: 32px 30px 36px 0;
}

.process-preview article + article {
  border-left: 1px solid var(--line-light);
  padding-left: 30px;
}

.process-preview .index {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.process-preview h3 {
  margin: 78px 0 14px;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.05;
}

.process-preview p {
  margin-bottom: 0;
  color: #5d584f;
  font-size: 0.94rem;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.case-feature-media {
  min-height: 720px;
  overflow: hidden;
  background: #222;
}

.case-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04);
  transition: transform 1s var(--ease);
}

.case-feature:hover .case-feature-media img {
  transform: scale(1.025);
}

.case-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(42px, 6vw, 88px);
  background: var(--ink-soft);
  color: var(--paper);
}

.case-feature-copy h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.8vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.case-feature-copy p {
  color: rgba(242, 238, 229, 0.68);
}

.project-meta {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, 1fr);
}

.project-meta div {
  padding: 16px 16px 0 0;
}

.project-meta dt {
  color: var(--stone-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-meta dd {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 1.06rem;
}

.testimonial {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.testimonial::before {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  content: "\201C";
  font-family: var(--display);
  font-size: 7rem;
  line-height: 0.7;
}

.testimonial blockquote {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.testimonial cite {
  display: block;
  margin-top: 34px;
  color: var(--brass);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-placeholder {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  border: 1px solid currentColor;
  border-color: var(--line-light);
  background:
    linear-gradient(135deg, transparent 49.85%, rgba(11, 11, 10, 0.08) 50%, transparent 50.15%),
    linear-gradient(45deg, transparent 49.85%, rgba(11, 11, 10, 0.08) 50%, transparent 50.15%),
    #e7e1d5;
  color: var(--ink);
}

.surface-dark .image-placeholder,
.surface-soft-dark .image-placeholder {
  border-color: var(--line-dark);
  background:
    linear-gradient(135deg, transparent 49.85%, rgba(242, 238, 229, 0.1) 50%, transparent 50.15%),
    linear-gradient(45deg, transparent 49.85%, rgba(242, 238, 229, 0.1) 50%, transparent 50.15%),
    #1c1c19;
  color: var(--paper);
}

.placeholder-note {
  max-width: 330px;
  padding: 28px;
  background: rgba(242, 238, 229, 0.92);
  color: var(--ink);
  text-align: center;
}

.placeholder-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.placeholder-note span {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.placeholder-note small {
  display: block;
  margin-top: 10px;
  color: #69645b;
  font-size: 0.7rem;
  line-height: 1.45;
}

.intent-grid {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.intent-card {
  min-height: 430px;
  padding: 36px clamp(24px, 3vw, 46px) 42px 0;
}

.intent-card + .intent-card {
  border-left: 1px solid var(--line-light);
  padding-left: clamp(24px, 3vw, 46px);
}

.intent-card .index {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.intent-card h3 {
  margin: 78px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
}

.intent-card p {
  color: #555149;
}

.intent-card .definition {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.returns-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(46px, 8vw, 110px);
}

.returns-graphic {
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line-dark);
  background: #121210;
}

.returns-chart-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.returns-chart-heading h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 400;
  line-height: 1.1;
}

.returns-chart-heading span {
  max-width: 145px;
  color: var(--stone-dark);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.returns-bars {
  display: grid;
  height: 370px;
  align-items: end;
  margin-top: 44px;
  border-bottom: 1px solid var(--line-dark);
  background-image: linear-gradient(to top, var(--line-dark) 1px, transparent 1px);
  background-size: 100% 25%;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1.6vw, 22px);
}

.return-bar {
  position: relative;
  height: var(--height);
  min-height: 22px;
  background: linear-gradient(to top, #79683f, var(--brass-light));
}

.return-bar::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  color: var(--stone-dark);
  content: attr(data-step);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.returns-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  color: var(--stone-dark);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chart-legend {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.chart-legend div {
  padding: 18px 16px 0 0;
}

.chart-legend div + div {
  border-left: 1px solid var(--line-dark);
  padding-left: 16px;
}

.chart-legend strong,
.chart-legend span {
  display: block;
}

.chart-legend strong {
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
}

.chart-legend span {
  margin-top: 5px;
  color: var(--stone-dark);
  font-size: 0.68rem;
  line-height: 1.45;
}

.plain-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  border-top: 1px solid var(--line-light);
  padding: 18px 0 18px 28px;
}

.plain-list li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.surface-dark .plain-list li,
.surface-soft-dark .plain-list li {
  border-color: var(--line-dark);
}

.timeline {
  position: relative;
  margin-top: 80px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 74px;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  min-height: 260px;
  align-items: start;
  grid-template-columns: 150px minmax(220px, 0.75fr) minmax(280px, 1.25fr);
  gap: clamp(32px, 6vw, 88px);
}

.timeline-number {
  position: relative;
  z-index: 1;
  width: 72px;
  padding-block: 5px;
  background: var(--paper-bright);
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.71rem;
  letter-spacing: 0.14em;
}

.timeline-step h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.timeline-step p {
  max-width: 560px;
  margin-bottom: 0;
  color: #565149;
}

.timeline-step .deliverable {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-gate {
  display: grid;
  padding: clamp(40px, 6vw, 76px);
  border: 1px solid var(--line-dark);
  grid-template-columns: minmax(230px, 0.7fr) minmax(280px, 1.3fr);
  gap: 52px;
}

.decision-gate h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.decision-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.decision-steps div {
  padding-right: 24px;
}

.decision-steps div + div {
  border-left: 1px solid var(--line-dark);
  padding-left: 24px;
}

.decision-steps strong {
  display: block;
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.decision-steps p {
  margin: 10px 0 0;
  color: rgba(242, 238, 229, 0.64);
  font-size: 0.9rem;
}

.principles {
  margin-top: 72px;
  counter-reset: principle;
}

.principle-row {
  display: grid;
  min-height: 245px;
  align-items: center;
  border-top: 1px solid var(--line-light);
  counter-increment: principle;
  grid-template-columns: 110px minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 7vw, 100px);
}

.principle-row:last-child {
  border-bottom: 1px solid var(--line-light);
}

.principle-row::before {
  color: var(--brass);
  content: "0" counter(principle);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.principle-row h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.principle-row p {
  margin-bottom: 0;
  color: #565149;
}

.quote-panel {
  padding-block: clamp(100px, 14vw, 190px);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.quote-display {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(2.8rem, 6.4vw, 6.8rem);
}

.quote-display em {
  color: var(--brass-light);
  font-weight: 400;
}

.quote-attribution {
  margin-top: 42px;
  color: var(--stone-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.expectation-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.expectation-card {
  min-height: 370px;
  padding: clamp(34px, 5vw, 64px);
  background: var(--paper-bright);
}

.expectation-card .index {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.expectation-card h3 {
  margin: 66px 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.expectation-card p {
  margin-bottom: 0;
  color: #565149;
}

.brief-card {
  border: 1px solid var(--line-dark);
  background: #121210;
}

.brief-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  padding: 24px clamp(24px, 4vw, 44px);
}

.brief-card-header strong {
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.brief-card-header span {
  color: var(--stone-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.brief-column {
  padding: clamp(34px, 5vw, 58px);
}

.brief-column + .brief-column {
  border-left: 1px solid var(--line-dark);
}

.brief-column h3 {
  margin-bottom: 20px;
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.brief-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-column li {
  position: relative;
  border-top: 1px solid var(--line-dark);
  padding: 15px 0 15px 26px;
  color: rgba(242, 238, 229, 0.7);
}

.brief-column li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 9vw, 130px);
}

.comparison-slider {
  --position: 50%;
  position: relative;
  min-height: min(68vw, 780px);
  overflow: hidden;
  background: #191916;
  box-shadow: var(--shadow);
}

.comparison-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider .after-image {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-slider input[type="range"] {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  background: var(--paper);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: var(--position);
  display: grid;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: rgba(11, 11, 10, 0.68);
  color: var(--paper);
  font-size: 1rem;
  pointer-events: none;
}

.image-badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  padding: 9px 12px;
  background: rgba(11, 11, 10, 0.78);
  color: var(--paper);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-badge.before {
  right: 22px;
}

.image-badge.after {
  left: 22px;
  color: var(--brass-light);
}

.slider-help {
  margin-top: 18px;
  color: var(--stone-dark);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.comparison-list {
  display: grid;
  gap: clamp(76px, 10vw, 140px);
}

.comparison-pair {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
}

.comparison-pair-header {
  display: grid;
  align-items: end;
  margin-bottom: 28px;
  grid-template-columns: 100px minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(24px, 4vw, 58px);
}

.comparison-pair-header .index {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.comparison-pair-header h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.comparison-pair-header p {
  margin-bottom: 0;
  color: #57534b;
}

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

.photo-button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #1a1a18;
  color: var(--paper);
  cursor: zoom-in;
  text-align: left;
}

.photo-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.photo-button:hover img {
  filter: brightness(0.8);
  transform: scale(1.02);
}

.photo-button .image-badge {
  top: 16px;
  left: 16px;
  right: auto;
}

.photo-button .view-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  opacity: 0;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.photo-button:hover .view-label,
.photo-button:focus-visible .view-label {
  opacity: 1;
  transform: translateY(0);
}

.photo-viewer {
  width: min(94vw, 1600px);
  max-width: none;
  height: min(92vh, 1100px);
  max-height: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
}

.photo-viewer::backdrop {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(6px);
}

.photo-viewer-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.photo-viewer img {
  max-width: 100%;
  max-height: calc(100% - 70px);
  object-fit: contain;
}

.photo-viewer-close {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.5rem;
}

.photo-viewer-caption {
  min-height: 32px;
  margin: 16px 0 0;
  color: rgba(242, 238, 229, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-groups {
  display: grid;
  gap: clamp(76px, 9vw, 124px);
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(42px, 8vw, 112px);
}

.faq-group h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.9vw, 4.1rem);
  font-weight: 400;
  line-height: 1;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 56px 26px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--brass);
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  transform: translateY(-50%);
}

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

.faq-answer {
  max-width: 720px;
  padding: 0 56px 30px 0;
  color: #57534b;
}

.consultation-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(270px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(50px, 9vw, 130px);
}

.consultation-aside {
  position: sticky;
  top: 30px;
}

.consultation-aside h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.consultation-notes {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.consultation-notes li {
  border-top: 1px solid var(--line-light);
  padding: 16px 0;
  color: #57534b;
  font-size: 0.9rem;
}

.consultation-notice {
  margin-bottom: 30px;
  border-left: 3px solid var(--brass);
  padding: 18px 20px;
  background: rgba(179, 154, 99, 0.1);
  color: #4d4941;
  font-size: 0.85rem;
}

.consultation-form {
  padding: clamp(30px, 5vw, 62px);
  background: var(--paper-bright);
  box-shadow: 0 18px 58px rgba(25, 22, 16, 0.08);
}

.form-section + .form-section {
  margin-top: 52px;
  border-top: 1px solid var(--line-light);
  padding-top: 48px;
}

.form-section h3 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.field label,
.field legend {
  color: #49453e;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8c867a;
  border-radius: 0;
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  outline: 0;
}

.field small {
  color: var(--stone-dark);
  font-size: 0.72rem;
}

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

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice label {
  display: block;
  min-height: 100%;
  border: 1px solid var(--line-light);
  padding: 18px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.choice label strong,
.choice label span {
  display: block;
}

.choice label strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
}

.choice label span {
  margin-top: 4px;
  color: var(--stone-dark);
  font-size: 0.72rem;
  line-height: 1.4;
}

.choice input:checked + label {
  border-color: var(--brass);
  background: rgba(179, 154, 99, 0.1);
}

.choice input:focus-visible + label {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  gap: 28px;
}

.form-footer p {
  max-width: 370px;
  margin-bottom: 0;
  color: var(--stone-dark);
  font-size: 0.72rem;
}

.form-footer button {
  cursor: pointer;
}

.form-success {
  display: none;
  min-height: 520px;
  align-content: center;
  padding: clamp(40px, 7vw, 88px);
  background: var(--ink);
  color: var(--paper);
}

.form-success.visible {
  display: grid;
}

.form-success h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.form-success p {
  max-width: 620px;
  color: rgba(242, 238, 229, 0.7);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 13vw, 170px);
  background:
    radial-gradient(circle at 82% 28%, rgba(179, 154, 99, 0.15), transparent 28%),
    var(--ink);
  color: var(--paper);
}

.cta-band-inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 60px;
}

.cta-band h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.cta-band-copy {
  padding-bottom: 8px;
}

.cta-band-copy p {
  color: rgba(242, 238, 229, 0.68);
}

.site-footer {
  background: #060605;
  color: var(--paper);
}

.footer-main {
  display: grid;
  padding-block: clamp(72px, 9vw, 120px);
  grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 54px;
}

.footer-intro p {
  max-width: 330px;
  margin: 26px 0 0;
  color: rgba(242, 238, 229, 0.58);
}

.footer-column h2 {
  margin-bottom: 22px;
  color: var(--brass);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 10px 0;
  color: rgba(242, 238, 229, 0.66);
  font-size: 0.86rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  padding-block: 24px 34px;
  color: rgba(242, 238, 229, 0.42);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .outcome-row {
    grid-template-columns: 70px minmax(200px, 0.9fr) minmax(260px, 1.1fr) 40px;
  }

  .process-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-preview article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding-left: 0;
  }

  .process-preview article:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --section: 84px;
  }

  body {
    font-size: 16px;
  }

  .site-header-inner {
    min-height: 82px;
  }

  .home-hero,
  .page-hero,
  .page-hero.minimal {
    min-height: 720px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 130px;
  }

  .hero-footer,
  .editorial-grid,
  .editorial-grid.reverse,
  .returns-layout,
  .gallery-intro,
  .consultation-layout,
  .cta-band-inner,
  .faq-group,
  .decision-gate {
    grid-template-columns: 1fr;
  }

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

  .hero-proof div + div {
    border-top: 1px solid var(--line-dark);
  }

  .hero-proof div {
    display: grid;
    padding: 14px 0;
    grid-template-columns: 110px 1fr;
  }

  .hero-proof strong {
    margin-top: 0;
  }

  .outcome-row {
    min-height: auto;
    padding-block: 30px;
    grid-template-columns: 48px 1fr 30px;
    gap: 18px;
  }

  .outcome-row p {
    margin-top: 16px;
    grid-column: 2 / -1;
  }

  .spectrum,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .spectrum-item,
  .intent-card {
    min-height: auto;
    padding: 30px 0 38px;
  }

  .spectrum-item + .spectrum-item,
  .intent-card + .intent-card {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding-left: 0;
  }

  .intent-card + .intent-card {
    border-color: var(--line-light);
  }

  .spectrum-item h3,
  .intent-card h3 {
    margin-top: 40px;
  }

  .case-feature {
    grid-template-columns: 1fr;
  }

  .case-feature-media {
    min-height: 62vw;
  }

  .intent-card {
    min-height: 300px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-step {
    min-height: auto;
    padding: 0 0 64px 48px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline-number {
    position: absolute;
    left: -48px;
    width: 34px;
    background: var(--paper-bright);
  }

  .decision-steps,
  .brief-columns,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .decision-steps div + div,
  .brief-column + .brief-column {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .principle-row {
    min-height: auto;
    padding-block: 34px;
    grid-template-columns: 54px 1fr;
    gap: 20px;
  }

  .principle-row p {
    grid-column: 2;
  }

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

  .expectation-card {
    min-height: 320px;
  }

  .comparison-pair-header {
    grid-template-columns: 56px 1fr;
  }

  .comparison-pair-header p {
    grid-column: 2;
  }

  .consultation-aside {
    position: static;
  }

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

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

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .display,
  .page-title {
    font-size: clamp(3.05rem, 15.5vw, 5.2rem);
  }

  .hero-content .button-row,
  .page-hero-content .button-row,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .process-preview,
  .expectation-grid,
  .choice-grid,
  .comparison-images,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-preview article,
  .process-preview article + article,
  .process-preview article:nth-child(3) {
    min-height: auto;
    border-top: 1px solid var(--line-light);
    border-left: 0;
    padding: 28px 0;
  }

  .process-preview h3 {
    margin-top: 40px;
  }

  .case-feature-media {
    min-height: 92vw;
  }

  .returns-bars {
    height: 280px;
    gap: 7px;
  }

  .returns-chart-heading,
  .brief-card-header,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-legend {
    grid-template-columns: 1fr;
  }

  .chart-legend div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding-left: 0;
  }

  .image-placeholder {
    min-height: 360px;
  }

  .comparison-slider {
    min-height: 92vw;
  }

  .photo-button .view-label {
    display: none;
  }

  .consultation-form {
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
