:root {
  --background: #f3ede5;
  --background-deep: #ede4da;
  --surface-strong: #fcf7f2;
  --ink: #26335a;
  --ink-soft: rgba(38, 51, 90, 0.78);
  --muted: rgba(38, 51, 90, 0.56);
  --success: #1fb987;
  --success-muted: #476f5b;
  --danger: #e05555;
  --line: rgba(38, 51, 90, 0.12);
  --shadow: 0 1px 0 rgba(38, 51, 90, 0.12);
  --radius-xl: 4px;
  --radius-lg: 4px;
  --content-width: min(1120px, calc(100vw - 48px));
  --header-height: 88px;
  --hero-dark-surface: #26335a;
  --font-body: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --type-label-size: 0.8rem;
  --type-label-tracking: 0.12em;
  --type-overline-size: 1rem;
  --type-overline-tracking: 0.22em;
  --type-body-size: 1rem;
  --type-body-line: 1.68;
  --type-section-heading-size: clamp(3.1rem, 5.9vw, 4.9rem);
  --type-hero-heading-size: clamp(4rem, 8.2vw, 6.8rem);
  --subheader-light: #26335a;
  --subheader-dark: #d9b59a;
  --measure-heading: 58rem;
  --measure-heading-wide: 64rem;
  --measure-copy: 50rem;
  --measure-column-heading: 38rem;
  --measure-column-copy: 34rem;
  --hero-copy-measure: 53rem;
  --scenario-image-filter: saturate(0.9) contrast(0.96) brightness(1.03) sepia(0.04);
  --scenario-image-overlay-top: rgba(250, 244, 237, 0.14);
  --scenario-image-overlay-bottom: rgba(212, 184, 161, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--background) 0%, #f8f3ed 42%, #f4ece2 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(217, 181, 154, 0.28);
}

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

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 24px;
  top: 18px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--surface-strong);
  color: var(--ink);
  border: 1px solid currentColor;
  padding: 12px 16px;
  font-size: var(--type-label-size);
  font-weight: 700;
  letter-spacing: var(--type-label-tracking);
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: none;
  background: var(--hero-dark-surface);
  border-bottom: 0;
}

.site-header-inner,
.support-shell,
.hero-inner,
.process-shell,
.comparison-shell,
.cta-shell,
.project-hero-inner,
.project-details-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 10px 0;
}

.brand-lockup {
  grid-column: 1 / span 4;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  width: max-content;
}

.brand-logo {
  width: clamp(118px, 10vw, 148px);
  height: auto;
}

.header-actions {
  grid-column: 7 / -1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  justify-self: end;
}

.menu-toggle {
  min-height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--subheader-dark);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-toggle-label {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: var(--type-label-tracking);
  line-height: 1;
  text-transform: uppercase;
}

.menu-toggle-lines {
  width: 42px;
  display: grid;
  gap: 7px;
}

.menu-toggle-lines span {
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
  transform: translateY(8px) rotate(36deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-36deg);
}

.site-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: min(280px, calc(100vw - 48px));
  padding: 10px 0;
  background: var(--hero-dark-surface);
  border: 1px solid rgba(217, 181, 154, 0.36);
  box-shadow: 0 18px 40px rgba(12, 18, 38, 0.22);
  z-index: 40;
}

.site-menu a {
  min-height: 48px;
  padding: 0 20px;
  color: rgba(252, 247, 242, 0.94);
  display: flex;
  align-items: center;
  font-size: var(--type-label-size);
  font-weight: 800;
  letter-spacing: var(--type-label-tracking);
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.site-menu a:first-child {
  color: var(--subheader-dark);
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: rgba(252, 247, 242, 0.08);
}

.button-nav {
  width: auto;
  min-width: 168px;
  padding: 0 20px;
}

.button-nav-secondary {
  background: rgba(255, 255, 255, 0.62);
}

.site-header .button-nav.button-primary {
  background: rgba(252, 247, 242, 0.96);
  color: var(--ink);
}

.site-header .button-nav.button-primary:hover,
.site-header .button-nav.button-primary:focus-visible {
  background: rgba(252, 247, 242, 1);
}

.site-header .button-nav.button-secondary {
  background: rgba(217, 181, 154, 0.94);
  color: var(--ink);
  border-color: rgba(217, 181, 154, 0.94);
}

.site-header .button-nav.button-secondary:hover,
.site-header .button-nav.button-secondary:focus-visible {
  background: rgba(229, 197, 174, 0.98);
  border-color: rgba(229, 197, 174, 0.98);
}

.button,
.scenario-tag,
.scenario-image-label,
.project-edit-type-pill,
.project-media-stage-label {
  font-size: var(--type-label-size);
  font-weight: 700;
  letter-spacing: var(--type-label-tracking);
  text-transform: uppercase;
  line-height: 1.15;
}

.button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: var(--surface-strong);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #26335a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
  border-color: rgba(38, 51, 90, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.68);
}

.hero {
  width: 100%;
  padding: 48px 0 64px;
  position: relative;
  background: var(--hero-dark-surface);
  border-bottom: 1px solid rgba(252, 247, 242, 0.12);
}

.hero-inner {
  width: var(--content-width);
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.hero-copy {
  grid-column: 1 / span 10;
  max-width: none;
  display: grid;
  gap: 18px;
  color: rgba(252, 247, 242, 0.94);
}

.hero-copy::before {
  content: "";
  width: 72px;
  height: 2px;
  background: var(--subheader-dark);
}

.hero .eyebrow {
  color: var(--subheader-dark);
}

.hero-copy .hero-lead {
  color: var(--subheader-dark);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--subheader-light);
}

h1,
h2,
h3,
.hero-offer-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  max-width: var(--hero-copy-measure);
  font-size: var(--type-hero-heading-size);
  line-height: 0.92;
  white-space: normal;
}

h2 {
  font-size: var(--type-section-heading-size);
  line-height: 0.96;
}

h3,
.hero-offer-title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 0.96;
}

.hero-text,
.project-hero-text,
.section-heading p,
.scenario-copy p,
.process-item p,
.cta-copy > p,
.hero-offer-note,
.hero-edit-type-text,
.comparison-copy,
.project-detail-heading p,
.project-scope-list li,
.project-stage-text p,
.project-media-group-description p,
.form-note {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.section-heading p,
.scenario-copy p,
.process-item p,
.cta-copy > p,
.project-detail-heading p,
.project-scope-list li,
.project-stage-text p,
.project-media-group-description p,
.form-note {
  color: var(--ink-soft);
}

p.eyebrow {
  color: var(--subheader-light);
}

.hero-edit-type-title,
.comparison-table tbody th,
.contact-link strong,
.lead-form label > span {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: 700;
}

.hero-text {
  max-width: var(--hero-copy-measure);
  width: 100%;
  margin: 0;
  color: rgba(252, 247, 242, 0.78);
}

.copy-line {
  display: block;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.eyebrow,
.hero-lead,
.comparison-table thead th,
.card-kicker,
.contact-link span,
.process-step {
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: var(--type-overline-tracking);
  line-height: var(--type-body-line);
  text-transform: uppercase;
}

.hero-lead {
  max-width: 60ch;
  width: 100%;
  margin: 0;
}

.hero-offer-band {
  width: var(--content-width);
  margin: 32px auto 0;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(252, 247, 242, 0.16);
  background: rgba(252, 247, 242, 0.05);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-offer-band-process {
  width: 100%;
  margin: 0 0 44px;
}

.hero-offer-head {
  max-width: none;
  width: 100%;
  display: grid;
  gap: 8px;
}

.hero-offer-head .eyebrow {
  margin-bottom: 0;
  color: #d9b59a;
}

.hero-offer-title {
  margin: 0;
  color: rgba(252, 247, 242, 0.94);
}

.hero-offer-note {
  margin: 0;
  color: rgba(252, 247, 242, 0.76);
}

.hero-edit-types {
  margin: 28px 0 0;
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(252, 247, 242, 0.14);
}

.hero-edit-type {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 14px;
  min-width: 0;
}

.hero-edit-type::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #d9b59a;
}

.hero-edit-type + .hero-edit-type {
  border-left: 1px solid rgba(252, 247, 242, 0.14);
  padding-left: 26px;
}

.hero-edit-type-title {
  margin: 0;
  color: rgba(252, 247, 242, 0.94);
  letter-spacing: 0;
  text-transform: none;
}

.hero-edit-type-text {
  margin: 0;
  max-width: 32ch;
  color: rgba(252, 247, 242, 0.76);
}

.card-kicker,
.contact-link span,
.process-step {
  display: block;
  margin-bottom: 7px;
  color: var(--subheader-light);
}

.comparison-table thead th {
  color: var(--subheader-dark);
}

.scenario-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-image {
  transform: translateY(var(--parallax-shift, 0px)) scale(1.03);
  transition: transform 700ms ease;
}

.section {
  width: 100%;
  padding: 128px 0;
}

.section-support {
  padding-top: 88px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(252, 248, 244, 0.96));
  border-top: 1px solid rgba(38, 51, 90, 0.04);
  border-bottom: 1px solid rgba(38, 51, 90, 0.04);
}

.section-heading {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px 24px;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 0.32em;
}

.section-heading h2 {
  grid-column: 4 / -1;
  text-wrap: balance;
}

.section-heading p {
  grid-column: 4 / span 7;
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

.section-heading-compact {
  margin-bottom: 48px;
}

.section-process .section-heading-compact {
  max-width: 100%;
  width: 100%;
}

.section-process .section-heading h2 {
  grid-column: 4 / -1;
  max-width: none;
  width: 100%;
  font-size: var(--type-section-heading-size);
  text-wrap: balance;
}

.section-process .section-heading .eyebrow {
  grid-column: 1 / span 3;
}

.section-heading-wide {
  margin-bottom: 56px;
}

.section-support .section-heading-wide {
  width: 100%;
}

.section-support .section-heading-wide h2 {
  width: 100%;
  text-wrap: balance;
}

.section-support .section-heading-wide #scenarios-intro {
  grid-column: 4 / -1;
  max-width: none;
  width: 100%;
}

.section-comparison .section-heading {
  width: 100%;
  margin-bottom: 56px;
}

.section-comparison .section-heading h2 {
  width: 100%;
  text-wrap: balance;
}

.section-comparison .section-heading h2 {
  grid-column: 4 / -1;
  max-width: none;
}

.section-comparison .section-heading .eyebrow {
  grid-column: 1 / span 3;
}

.section-comparison .section-heading #comparison-intro {
  grid-column: 4 / -1;
  max-width: none;
  width: 100%;
}

.scenario-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.scenario-entry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 32px;
  align-content: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.scenario-entry:last-child {
  border-bottom: 1px solid var(--line);
}

.scenario-copy-top h3 {
  margin: 0;
}

.scenario-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  grid-column: 4 / -1;
  grid-row: span 2;
}

.compare-after .scenario-image-label {
  left: auto;
  right: 12px;
}

.scenario-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.scenario-title-row {
  display: grid;
  align-items: start;
  gap: 16px;
  margin-bottom: 12px;
}

.scenario-copy-top {
  grid-column: 1 / span 3;
}

.scenario-entry > .scenario-copy:not(.scenario-copy-top) {
  grid-column: 1 / span 3;
}

.scenario-copy h3 {
  margin-bottom: 12px;
}

.scenario-title-row h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

.scenario-title-row .scenario-tag {
  flex: 0 0 auto;
}

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

.scenario-tag,
.project-edit-type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}

.scenario-image-wrap {
  margin: 0;
  position: relative;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: var(--compare-aspect-ratio, 4 / 5);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.8), rgba(248, 242, 235, 0.72)),
    var(--background-deep);
  box-shadow: none;
  border: 1px solid rgba(38, 51, 90, 0.1);
}

.scenario-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--scenario-image-overlay-top),
    var(--scenario-image-overlay-bottom)
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.scenario-image {
  object-fit: cover;
  object-position: center 24%;
  filter: var(--scenario-image-filter);
}

.scenario-image-label,
.project-media-stage-label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-lg);
  background: rgba(252, 247, 242, 0.9);
  color: var(--ink);
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(38, 51, 90, 0.08);
  backdrop-filter: none;
}

.scenario-entry:hover .scenario-image {
  transform: translateY(var(--parallax-shift, 0px)) scale(1.06);
}

.section-process {
  background: #26335a;
}

.section-comparison {
  background: linear-gradient(180deg, rgba(247, 241, 234, 0.96), rgba(243, 237, 229, 0.98));
  border-top: 1px solid rgba(38, 51, 90, 0.05);
  border-bottom: 1px solid rgba(38, 51, 90, 0.05);
}

.section-heading-light h2,
.section-heading-light p {
  color: rgba(252, 247, 242, 0.92);
}

.section-heading-light .eyebrow {
  color: #d9b59a;
}

.process-list-eyebrow.eyebrow {
  margin: 0 0 18px;
  color: #d9b59a;
}

.process-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

.process-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(252, 247, 242, 0.18);
}

.process-item:last-child {
  border-bottom: 1px solid rgba(252, 247, 242, 0.18);
}

.process-item h3,
.process-item p {
  color: rgba(252, 247, 242, 0.92);
}

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

.process-item p {
  grid-column: 2;
  max-width: 60ch;
}

.process-step {
  grid-row: 1 / span 2;
  margin-bottom: 0;
  color: #d9b59a;
}

.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: none;
  background: var(--surface-strong);
  border: 1px solid rgba(38, 51, 90, 0.26);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: var(--type-body-size);
  table-layout: fixed;
}

.comparison-table thead th {
  padding: 20px 16px;
  text-align: left;
  vertical-align: bottom;
  background: var(--hero-dark-surface);
  color: var(--subheader-dark);
  border-right: 1px solid rgba(252, 247, 242, 0.16);
}

.comparison-table thead th:first-child {
  width: 18%;
}

.comparison-table thead th:last-child {
  border-right: 0;
}

.comparison-table tbody th,
.comparison-table tbody td {
  padding: 20px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  line-height: 1.55;
  vertical-align: top;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody th {
  width: 18%;
  color: var(--ink);
  text-wrap: balance;
}

.comparison-table tbody td {
  width: 27.33%;
}

.comparison-table tbody td:last-child {
  border-right: 0;
}

.comparison-table tbody td:nth-child(2) {
  background: rgba(217, 181, 154, 0.18);
}

.comparison-cell {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.comparison-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  color: var(--ink);
  box-shadow: none;
}

.comparison-mark svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
}

.comparison-cell-negative .comparison-mark {
  color: var(--danger);
}

.comparison-cell-positive .comparison-mark {
  color: var(--success-muted);
}

.comparison-copy {
  display: block;
  min-width: 0;
  color: var(--ink-soft);
}

.comparison-cell-positive .comparison-copy {
  color: var(--ink);
}

.cta-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.section-cta {
  background: linear-gradient(180deg, rgba(250, 246, 241, 0.98) 0%, rgba(246, 238, 229, 0.96) 34%, rgba(241, 231, 220, 0.92) 100%);
}

.site-footer {
  width: 100%;
  padding: 22px 0;
  background: rgba(241, 231, 220, 0.92);
  border-top: 1px solid rgba(38, 51, 90, 0.08);
}

.site-footer p {
  width: var(--content-width);
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  text-align: center;
}

.cta-copy {
  grid-column: 1 / span 6;
  max-width: min(var(--measure-column-heading), 100%);
  display: grid;
  gap: 14px;
}

.cta-copy h2 {
  text-wrap: balance;
}

.cta-copy > p {
  max-width: min(var(--measure-column-copy), 100%);
  text-wrap: pretty;
}

.contact-panel {
  grid-column: 8 / -1;
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-links {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.contact-link {
  display: grid;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-link strong {
  color: var(--ink);
}

.lead-form {
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(38, 51, 90, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ink);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(38, 51, 90, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(252, 247, 242, 0.86);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  font-weight: 400;
  line-height: 1.5;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  border-color: var(--ink);
  outline-color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
}

.hero-stage {
  opacity: 1;
  transform: none;
}

.project-hero {
  width: 100%;
  padding: 64px 0 76px;
  background: var(--hero-dark-surface);
  border-bottom: 1px solid rgba(252, 247, 242, 0.12);
}

.project-hero-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.project-hero-copy {
  grid-column: 1 / span 10;
  display: grid;
  gap: 18px;
  color: rgba(252, 247, 242, 0.94);
}

.project-hero-copy::before {
  content: "";
  width: 72px;
  height: 2px;
  background: var(--subheader-dark);
}

.project-hero .eyebrow {
  color: var(--subheader-dark);
}

.project-hero-text {
  max-width: var(--hero-copy-measure);
  margin: 0;
  color: rgba(252, 247, 242, 0.78);
}

.section-project-details {
  padding-top: 84px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 238, 229, 0.96));
}

.project-details-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.project-sidebar {
  grid-column: 1 / span 3;
  position: sticky;
  top: calc(var(--header-height) + 92px);
  min-width: 0;
}

.project-detail-nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.project-detail-nav a {
  min-height: 56px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: var(--type-body-size);
  font-weight: 700;
  line-height: var(--type-body-line);
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.project-detail-nav a:hover,
.project-detail-nav a:focus-visible,
.project-detail-nav a[aria-current="true"] {
  color: var(--ink);
  padding-left: 14px;
}

.project-detail-nav a[aria-current="true"] {
  border-left: 2px solid var(--subheader-dark);
}

.project-detail-panel {
  grid-column: 4 / -1;
  min-width: 0;
}

.project-detail {
  display: grid;
  gap: 18px;
}

.project-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 20px;
}

.project-overview-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--measure-copy);
}

.project-overview-label.eyebrow {
  margin: 0;
  color: var(--subheader-dark);
}

.project-overview-heading {
  margin: 0;
}

.project-overview-copy {
  max-width: var(--measure-copy);
  display: grid;
  gap: 14px;
}

.project-overview-copy h3 {
  margin: 0;
}

.project-overview-copy p {
  max-width: var(--measure-copy);
  margin: 0;
}

.project-detail-heading .project-subtitle {
  color: var(--ink);
  font-weight: 700;
}

.project-scope {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.project-scope-label {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.project-detail-heading .project-edit-type-pill {
  flex: 0 0 auto;
  font-size: var(--type-label-size);
  line-height: 1.15;
  margin: 0;
}

.project-scope-list {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 1.1rem;
}

.project-scope-list li {
  padding-left: 0.18rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.project-stage-eyebrow.eyebrow {
  margin: -6px 0 0;
  color: var(--subheader-dark);
}

.project-stage {
  padding: 22px 0 44px;
  border-top: 1px solid var(--line);
}

.project-stage + .project-stage {
  padding-top: 20px;
}

.project-stage-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.project-stage-heading {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.9vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

.project-stage-title {
  grid-column: 1 / -1;
  max-width: var(--measure-copy);
  margin: -4px 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.36;
}

.project-stage-text {
  grid-column: 1 / -1;
  max-width: var(--measure-copy);
}

.project-stage-text p {
  margin: 0;
}

.project-stage-text p + p {
  margin-top: 0.66rem;
}

.project-media-groups {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.project-media-group {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px 16px;
}

.project-media-group-title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  font-size: var(--type-body-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: var(--type-body-line);
}

.project-media-group-description {
  grid-column: 1 / -1;
  max-width: var(--measure-copy);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 400;
}

.project-media-group-description p {
  margin: 0;
}

.project-media-group-description p + p {
  margin-top: 0.56rem;
}

.project-media-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.project-media-grid-videos .project-media-figure-video {
  grid-column: auto;
  width: 100%;
  justify-self: stretch;
}

.project-media-grid-videos.project-media-grid-single .project-media-figure-video {
  grid-column: 1 / -1;
  width: min(480px, 100%);
  justify-self: center;
}

.project-media-figure {
  grid-column: auto;
  margin: 0;
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.8), rgba(248, 242, 235, 0.72)),
    var(--background-deep);
  border: 1px solid rgba(38, 51, 90, 0.1);
}

.project-media-figure-video {
  grid-column: 1 / -1;
  width: min(480px, 100%);
  justify-self: center;
  aspect-ratio: 9 / 16;
}

.project-media-figure-wide,
.project-media-figure-video.project-media-figure-wide {
  grid-column: 1 / -1;
  width: 100%;
  justify-self: stretch;
  aspect-ratio: 16 / 9;
}

.project-media-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--scenario-image-overlay-top),
    var(--scenario-image-overlay-bottom)
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.project-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: var(--scenario-image-filter);
}

video.project-media {
  background: var(--ink);
  filter: none;
  object-fit: contain;
}

.project-media-stage-label {
  pointer-events: none;
}

.project-media-figure figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 10px 12px;
  background: rgba(252, 247, 242, 0.92);
  color: var(--ink);
  font-size: var(--type-label-size);
  font-weight: 700;
  letter-spacing: var(--type-label-tracking);
  line-height: 1.3;
  text-transform: uppercase;
}

body.motion-ready .hero-stage {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 820ms ease,
    transform 820ms ease;
}

body.is-ready .hero-stage {
  opacity: 1;
  transform: none;
}

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

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

body.motion-ready .scenario-entry.reveal {
  opacity: 1;
  transform: none;
}

body.motion-ready .section-comparison .reveal {
  opacity: 1;
  transform: none;
}

body.motion-ready .revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  :root {
    --content-width: min(940px, calc(100vw - 72px));
  }

  .site-header-inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    padding: 8px 0;
  }

  .brand-lockup {
    grid-column: 1 / span 4;
  }

  .header-actions {
    grid-column: 5 / -1;
    width: auto;
    justify-self: end;
    justify-content: flex-end;
  }

  .button-nav {
    width: 200px;
  }

  .hero-inner,
  .project-hero-inner,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
  }

  .section-heading .eyebrow {
    grid-column: 1 / span 2;
  }

  .section-heading h2,
  .section-heading p {
    grid-column: 3 / -1;
  }

  .section-support .section-heading-wide #scenarios-intro,
  .section-comparison .section-heading h2,
  .section-comparison .section-heading #comparison-intro,
  .section-process .section-heading h2 {
    grid-column: 3 / -1;
  }

  .section-comparison .section-heading .eyebrow,
  .section-process .section-heading .eyebrow {
    grid-column: 1 / span 2;
  }

  .hero-copy,
  .project-hero-copy,
  .cta-copy,
  .contact-panel {
    grid-column: 1 / -1;
  }

  .hero-inner,
  .project-hero-inner {
    width: var(--content-width);
  }

  .hero-copy,
  .project-hero-copy {
    max-width: 100%;
    display: block;
  }

  .project-hero .eyebrow {
    margin-top: 22px;
  }

  .hero-offer-band {
    margin-top: 30px;
    padding: 26px;
  }

  .hero-offer-band-process {
    margin: 0 0 36px;
  }

  .hero-edit-types {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-edit-type {
    padding: 16px 0;
  }

  .hero-edit-type + .hero-edit-type {
    border-left: 0;
    border-top: 1px solid rgba(252, 247, 242, 0.14);
    padding-left: 0;
  }

  .scenario-list {
    gap: 48px;
  }

  .scenario-entry {
    grid-template-columns: 1fr;
  }

  .scenario-copy-top,
  .scenario-entry > .scenario-copy:not(.scenario-copy-top),
  .scenario-image-pair {
    grid-column: 1 / -1;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    min-width: 820px;
  }

  .project-details-shell {
    grid-template-columns: minmax(180px, 200px) minmax(0, 1fr);
    gap: 40px;
  }

  .project-sidebar {
    grid-column: 1;
  }

  .project-detail-panel {
    grid-column: 2;
  }

  .project-media-group {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .project-media-grid.project-media-grid-videos {
    grid-template-columns: 1fr;
  }

  .project-media-grid-videos .project-media-figure-video,
  .project-media-grid-videos.project-media-grid-single .project-media-figure-video {
    grid-column: 1 / -1;
    width: min(480px, 100%);
    justify-self: center;
  }

  .project-detail-heading {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: calc(100vw - 32px);
    --header-height: 92px;
    --mobile-heading-size: clamp(2.55rem, 13vw, 3.65rem);
    --mobile-label-size: 0.72rem;
    --mobile-body-line: 1.84;
  }

  body {
    padding-bottom: 0;
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: auto;
    gap: 8px;
    padding: 5px 0 3px;
  }

  .brand-lockup {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-self: end;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    z-index: auto;
  }

  .site-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    min-width: 0;
    width: 100vw;
    padding: 28px 16px;
    border: 0;
    box-shadow: none;
  }

  .site-menu a {
    min-height: 68px;
    padding: 0;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--type-body-size);
    font-weight: 700;
    letter-spacing: var(--type-overline-tracking);
    text-transform: uppercase;
    text-align: center;
  }

  .menu-toggle {
    min-height: 48px;
    gap: 12px;
  }

  .menu-toggle-label {
    font-size: var(--mobile-label-size);
  }

  .menu-toggle-lines {
    width: 34px;
    gap: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
    transform: translateY(7px) rotate(36deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-36deg);
  }

  .hero-inner,
  .project-hero-inner {
    width: var(--content-width);
  }

  .hero,
  .project-hero {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .brand-logo {
    width: 112px;
  }

  .button-nav {
    width: 100%;
    min-height: 44px;
    padding: 0 9px;
    font-size: var(--mobile-label-size);
    letter-spacing: var(--type-label-tracking);
    line-height: 1.1;
  }

  .button,
  .scenario-tag,
  .scenario-image-label,
  .project-edit-type-pill,
  .project-media-stage-label {
    font-size: var(--mobile-label-size);
  }

  .project-detail-heading .project-edit-type-pill {
    font-size: var(--mobile-label-size);
  }

  h1,
  h2,
  .section-process .section-heading h2 {
    font-size: var(--mobile-heading-size);
  }

  h1 {
    max-width: 100%;
    line-height: 1.04;
    white-space: normal;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: var(--type-body-size);
  }

  .hero-text,
  .project-hero-text,
  .section-heading p,
  .scenario-copy p,
  .process-item p,
  .cta-copy > p,
  .hero-offer-note,
  .hero-edit-type-text,
  .comparison-copy,
  .project-detail-heading p,
  .project-stage-text p,
  .form-note {
    line-height: var(--mobile-body-line);
  }

  .copy-line + .copy-line {
    margin-top: 0.52rem;
  }

  .hero-offer-band {
    margin-top: 22px;
    padding: 24px 20px 22px;
  }

  .hero-offer-band-process {
    margin: 0 0 32px;
  }

  .hero-offer-title {
    font-size: clamp(1.62rem, 8vw, 2.05rem);
  }

  .hero-edit-types {
    margin-top: 18px;
    padding-top: 18px;
  }

  .process-item {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 18px;
    padding: 22px 0;
  }

  .scenario-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .scenario-entry {
    padding: 32px 0;
  }

  .scenario-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .scenario-image-pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p,
  .section-support .section-heading-wide #scenarios-intro,
  .section-comparison .section-heading h2,
  .section-comparison .section-heading #comparison-intro,
  .section-comparison .section-heading .eyebrow,
  .section-process .section-heading h2,
  .section-process .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .section-support {
    padding-top: 48px;
  }

  .section-project-details {
    padding-top: 52px;
  }

  .project-details-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .project-sidebar,
  .project-detail-panel {
    grid-column: 1 / -1;
  }

  .project-sidebar {
    position: static;
  }

  .project-detail-nav a {
    min-height: 52px;
    padding: 13px 0;
  }

  .project-detail-nav a:hover,
  .project-detail-nav a:focus-visible,
  .project-detail-nav a[aria-current="true"] {
    padding-left: 10px;
  }

  .project-detail {
    gap: 18px;
  }

  .project-detail-heading,
  .project-media-group,
  .project-media-grid {
    grid-template-columns: 1fr;
  }

  .project-hero-copy,
  .project-hero-text,
  .project-detail-panel,
  .project-detail,
  .project-detail-heading,
  .project-overview-top-row,
  .project-overview-label,
  .project-overview-copy,
  .project-scope,
  .project-scope-list,
  .project-stage-copy,
  .project-stage-eyebrow,
  .project-stage-text,
  .project-media-group,
  .project-media-group-description {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .project-hero-text,
  .project-detail-panel h2,
  .project-detail-panel h3,
  .project-detail-panel p,
  .project-detail-panel li,
  .project-overview-copy p,
  .project-scope-list li,
  .project-stage-text p,
  .project-media-group-description p {
    max-width: calc(100vw - 32px);
    white-space: normal;
    overflow-wrap: break-word;
  }

  .project-detail-heading {
    padding-bottom: 28px;
  }

  .project-overview-heading,
  .project-overview-top-row,
  .project-overview-label,
  .project-overview-copy,
  .project-stage-heading,
  .project-stage-eyebrow,
  .project-stage-title,
  .project-stage-text,
  .project-media-group-title,
  .project-media-group-description,
  .project-media-grid,
  .project-media-figure,
  .project-media-figure-video,
  .project-media-figure-wide {
    grid-column: 1 / -1;
  }

  .project-stage {
    padding: 14px 0 34px;
  }

  .project-stage-eyebrow.eyebrow {
    margin-top: -4px;
  }

  .project-media-groups {
    margin-top: 22px;
    gap: 24px;
  }

  .project-media-grid.project-media-grid-videos {
    grid-template-columns: 1fr;
  }

  .project-media-grid-videos.project-media-grid-single {
    grid-template-columns: 1fr;
  }

  .project-media-grid-videos .project-media-figure-video,
  .project-media-grid-videos.project-media-grid-single .project-media-figure-video {
    grid-column: 1 / -1;
    width: min(480px, 100%);
    justify-self: center;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .contact-panel {
    gap: 20px;
  }

  .comparison-wrap {
    width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
  }

  .comparison-table {
    min-width: 680px;
    font-size: 0.82rem;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table tbody td {
    padding: 15px 12px;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    padding-left: 14px;
    padding-right: 14px;
  }

  .comparison-table thead th {
    font-size: var(--mobile-label-size);
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .comparison-table tbody th {
    width: 20%;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .comparison-table tbody td {
    width: 26.66%;
  }

  .comparison-mark {
    width: 34px;
    height: 34px;
  }

  .comparison-mark svg {
    width: 18px;
    height: 18px;
  }

  .comparison-cell {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
  }

  .comparison-copy {
    font-size: 0.86rem;
    line-height: 1.42;
  }
}

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

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

  body.motion-ready .hero-stage,
  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .scenario-image,
  .scenario-entry:hover .scenario-image {
    transform: none;
  }
}
