:root {
  --ink: #151816;
  --paper: #f4f1ea;
  --paper-light: #fbfaf6;
  --muted: #686c67;
  --line: rgba(21, 24, 22, 0.16);
  --sage: #6f7b6b;
  --sage-dark: #334139;
  --copper: #b47950;
  --white: #ffffff;
  --radius: 28px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 86px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--white);
  background: rgba(21, 24, 22, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark-old {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: -0.04em;
}

.brand-mark {
      width: 48px;
	  height: 48px;
	  background-image: url("../../../img/logo.png");
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: contain;
	  flex-shrink: 0;
    }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.desktop-nav > a:not(.nav-cta) {
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: #1d2520;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: 48%;
  bottom: -200px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(64%, 910px);
  min-height: 850px;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(36px, 6.2vw, 105px) 92px;
  background:
    radial-gradient(circle at 38% 20%, rgba(111, 123, 107, 0.2), transparent 35%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(54px, 5.7vw, 94px);
}

.hero h1 span,
.section-heading h2 span {
  display: block;
  color: #aab7a6;
  font-style: italic;
}

.hero-intro {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--paper-light);
  color: var(--ink);
}

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

.button-light {
  width: 100%;
  margin-top: 4px;
  background: var(--paper-light);
  color: var(--ink);
}

.microcopy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 23, 18, 0.97) 0%,
      rgba(15, 23, 18, 0.8) 39%,
      rgba(15, 23, 18, 0.22) 72%,
      transparent 100%
    ),
    linear-gradient(0deg, rgba(16, 21, 18, 0.48) 0%, transparent 35%);
  content: "";
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  text-align: right;
}

.image-caption span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-caption strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.trust-strip {
  display: grid;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip > div {
  display: grid;
  min-height: 138px;
  align-items: center;
  padding: 28px 34px;
  border-right: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
}

.trust-strip > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  align-self: start;
  padding-top: 4px;
  color: var(--copper);
  font-size: 10px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 8vw, 128px);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 68px;
  column-gap: 8vw;
  grid-template-columns: 1.25fr 0.75fr;
}

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

.section-heading h2,
.case-heading h2,
.story-copy h2,
.private-copy h2,
.team-intro h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.section-heading > p:last-child,
.case-heading > p,
.story-copy > p,
.private-copy > p,
.team-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.problem-grid,
.partnership-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article {
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.card-number {
  color: var(--copper);
  font-size: 11px;
}

.problem-grid h3,
.partnership-grid h3 {
  max-width: 280px;
  margin: 70px 0 18px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.problem-grid p,
.partnership-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.problem-grid small {
  display: block;
  margin-top: 26px;
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-feature {
  background: #18211c;
  color: var(--white);
}

.case-heading {
  display: grid;
  align-items: end;
  margin-bottom: 54px;
  gap: 9vw;
  grid-template-columns: 1.05fr 0.55fr;
}

.case-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

.comparison {
  --position: 54%;
  position: relative;
  height: min(62vw, 740px);
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #263129;
  isolation: isolate;
}

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

.comparison-before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: var(--position);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.comparison-before img {
  width: calc(100vw - clamp(48px, 16vw, 256px));
  max-width: none;
}

.comparison-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.comparison-line i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(20, 28, 23, 0.76);
  color: var(--white);
  font-style: normal;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-label {
  position: absolute;
  z-index: 3;
  top: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(20, 28, 23, 0.55);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.label-before {
  left: 24px;
}

.label-after {
  right: 24px;
}

.deliverables {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(3, 1fr);
}

.deliverables div {
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.deliverables div:last-child {
  border-right: 0;
}

.deliverables span,
.deliverables strong {
  display: block;
}

.deliverables span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deliverables strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.story-case,
.private-case,
.team {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 1.08fr 0.92fr;
}

.story-image {
  position: relative;
}

.story-image img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-index {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 28, 23, 0.72);
  color: var(--white);
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.story-copy h2,
.private-copy h2,
.team-intro h2 {
  margin-bottom: 32px;
}

.clean-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.clean-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.private-case {
  background: var(--paper-light);
}

.text-link {
  display: inline-flex;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.property-dossier {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background: #222b25;
  box-shadow: 0 42px 85px rgba(40, 45, 39, 0.23);
  color: var(--white);
  transform: none;
}

.dossier-topbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dossier-hero {
  position: relative;
  height: 380px;
}

.dossier-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 20, 17, 0.85), transparent 60%);
  content: "";
}

.dossier-hero img {
  height: 100%;
  object-fit: cover;
}

.dossier-hero div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.dossier-hero small,
.dossier-hero strong {
  display: block;
}

.dossier-hero small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-hero strong {
  max-width: 360px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}

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

.dossier-grid span {
  padding: 13px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  text-align: center;
}

.partnership {
  background: #dfe2d9;
}

.section-heading.compact {
  display: block;
  max-width: 890px;
}

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

.section-heading.compact > p:last-child {
  max-width: 660px;
}

.partnership-grid article {
  min-height: 440px;
  padding: 36px;
  border: 1px solid rgba(21, 24, 22, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.24);
}

.partnership-grid .featured-plan {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-18px);
}

.featured-plan p,
.featured-plan .clean-list li {
  color: rgba(255, 255, 255, 0.62);
}

.featured-plan .clean-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.plan-label {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method {
  background: var(--paper-light);
}

.method-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.method-steps li {
  min-height: 230px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.method-steps li:last-child {
  border-right: 0;
}

.method-steps > li > span {
  color: var(--copper);
  font-size: 10px;
}

.method-steps div {
  margin-top: 90px;
}

.method-steps h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.team {
  background: #1c2520;
  color: var(--white);
}

.team-intro > p {
  color: rgba(255, 255, 255, 0.58);
}

.team-cards {
  display: grid;
  gap: 14px;
}

.team-cards article {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
}

.portrait-placeholder {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  place-items: center;
  border-radius: 50%;
  background: #a7b3a2;
  color: #27332b;
  font-family: var(--serif);
  font-size: 22px;
}

.team-cards h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.team-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.contact-section {
  display: grid;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 8vw, 128px);
  background: var(--ink);
  color: var(--white);
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 72px);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.contact-meta span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(29, 41, 34, 0.24);
  backdrop-filter: blur(16px);
}

.field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.lead-form label {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.lead-form .button {
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  line-height: 1.55;
}

.lead-form label span {
  font-weight: 400;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  outline: 0;
  background: transparent;
  color: var(--white);
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--white);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  text-align: center;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.status-message {
  margin: 0 0 24px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
}

.status-error {
  border-color: rgba(255, 218, 193, 0.48);
  background: rgba(78, 35, 23, 0.24);
}

footer {
  display: grid;
  align-items: center;
  padding: 50px clamp(24px, 5vw, 80px);
  background: #111713;
  color: var(--white);
  gap: 26px;
  grid-template-columns: 1fr 1.1fr auto;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 1050px) {
  .site-header {
  min-height: 64px;
  padding: 0 20px;
  }
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    font-size: 12px;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 36px;
    right: 0;
    display: grid;
    min-width: 190px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(18, 25, 21, 0.94);
    gap: 4px;
  }

  .mobile-menu nav a {
    padding: 8px 10px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-copy {
    width: min(78%, 780px);
    min-height: 720px;
    padding-right: max(36px, 12vw);
  }

  .hero-visual {
    min-height: 100%;
  }

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

  .trust-strip > div,
  .trust-strip > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .case-heading {
    display: block;
  }

  .section-heading h2,
  .case-heading h2 {
    margin-bottom: 28px;
  }

  .problem-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: auto;
  }

  .problem-grid h3,
  .partnership-grid h3 {
    margin-top: 38px;
  }

  .partnership-grid .featured-plan {
    transform: none;
  }

  .comparison-before img {
    width: calc(100vw - 48px);
  }

  .story-case,
  .private-case,
  .team,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .private-copy {
    order: 2;
  }

  .property-dossier {
    order: 1;
    transform: none;
  }

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

  .method-steps li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
  min-height: 64px;
  }

  .hero-copy {
    width: 100%;
    min-height: 690px;
    padding: 120px 24px 68px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 100%;
  }

  .hero-visual::after {
    background:
      linear-gradient(
        90deg,
        rgba(15, 23, 18, 0.94) 0%,
        rgba(15, 23, 18, 0.72) 68%,
        rgba(15, 23, 18, 0.45) 100%
      ),
      linear-gradient(0deg, rgba(16, 21, 18, 0.65) 0%, transparent 45%);
  }

  .image-caption {
    right: 22px;
    bottom: 24px;
  }

  .section {
    padding: 82px 24px;
  }

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

  .section-heading h2,
  .case-heading h2,
  .story-copy h2,
  .private-copy h2,
  .team-intro h2 {
    font-size: 42px;
  }

  .comparison {
    min-height: 380px;
    border-radius: 18px;
  }

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

  .deliverables div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .story-image img {
    aspect-ratio: 3 / 4;
  }

  .dossier-hero {
    height: 280px;
  }

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

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps li,
  .method-steps li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-steps div {
    margin-top: 42px;
  }

  .contact-section {
    padding: 82px 24px;
  }

  .lead-form {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > div {
    align-items: flex-start;
  }

  footer small {
    grid-column: 1;
  }
}

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

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