:root {
  --paper: #efeee8;
  --paper-deep: #e2ded2;
  --ink: #151612;
  --muted: #626458;
  --line: #b8b2a3;
  --line-strong: #7f7a70;
  --field: #31473e;
  --blood: #5a2b28;
  --white: #fbfaf5;
  --photo-opacity: 0.74;
  --home-max: 1440px;
  --text-page-max: 1320px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

main > section {
  min-height: calc(100svh - 74px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

main > section:not(.hero) {
  display: grid;
  align-items: center;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(21, 22, 18, 0.2);
  background: rgba(239, 238, 232, 0.91);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: var(--home-max);
  min-height: 45px;
  margin: 0 auto;
}

.content-page .site-header-inner {
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 72px;
  max-width: var(--text-page-max);
}

.brand {
  grid-column: 1;
  display: inline-grid;
  gap: 0;
  width: max-content;
}

.brand span {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.brand small,
.nav,
.hero-kicker,
.section-index,
.field-number,
.offer-table span,
.hero-note span {
  font-size: 12px;
  line-height: 1.25;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav {
  grid-column: 2;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  align-items: center;
}

.content-page .nav {
  grid-column: 3;
}

.nav-item {
  position: relative;
}

.nav-dropdown::before {
  position: absolute;
  right: -14px;
  bottom: -16px;
  left: -14px;
  height: 18px;
  content: "";
}

.nav a {
  position: relative;
  padding-bottom: 3px;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.submenu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 40;
  display: grid;
  min-width: 250px;
  padding: 10px 0;
  border: 1px solid var(--line-strong);
  background: rgba(239, 238, 232, 0.96);
  box-shadow: 0 18px 38px rgba(21, 22, 18, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.submenu a {
  display: block;
  padding: 9px 14px;
  color: var(--ink);
  white-space: nowrap;
}

.submenu a::after {
  display: none;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a[aria-current="page"] {
  color: var(--blood);
  background: rgba(184, 178, 163, 0.18);
}

.hero {
  min-height: calc(100svh - 74px);
  padding: 34px 32px 72px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  --hero-column-gap: 34px;
  --hero-mark-size: clamp(459px, 40.5vw, 621px);
  --hero-mark-eye-offset: clamp(167px, 14.7vw, 226px);
  --hero-photo-eye-line: 33.45%;
  --hero-mark-photo-pull: clamp(65px, 5.75vw, 88px);
  --hero-lower-shift: 15%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.62fr) minmax(330px, 0.8fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 30px var(--hero-column-gap);
  max-width: var(--home-max);
  min-height: calc(100svh - 180px);
  margin: 0 auto;
}

.hero-kicker {
  grid-column: 1 / 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-self: start;
  padding-top: 4px;
  border-top: 1px solid var(--line-strong);
}

.hero-kicker span + span {
  color: var(--blood);
}

.hero h1 {
  grid-column: 1 / 3;
  z-index: 2;
  max-width: 900px;
  font-family: var(--serif);
  font-size: 118px;
  font-weight: 400;
  line-height: 0.86;
}

.hero-copy {
  grid-column: 1 / 2;
  align-self: end;
  max-width: 560px;
  padding: 30px 0 10px;
  border-top: 1px solid var(--line);
}

.hero-copy p {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.12;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

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

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

.button:hover,
.button:focus-visible {
  color: var(--white);
  border-color: var(--blood);
  background: var(--blood);
}

.hero-portrait {
  grid-column: 3 / 4;
  grid-row: 1 / 5;
  align-self: stretch;
  position: relative;
  z-index: 1;
  margin: 0;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  background: var(--paper-deep);
  overflow: hidden;
}

.hero-portrait img {
  width: 100%;
  height: 115%;
  min-height: 644px;
  object-fit: cover;
  object-position: 56% 50%;
  filter: grayscale(1) contrast(1.08) sepia(0.14);
  mix-blend-mode: multiply;
  opacity: var(--photo-opacity);
}

.hero-mark {
  position: absolute;
  left: calc(67.7419% + 22px - var(--hero-mark-size) + var(--hero-mark-photo-pull));
  top: calc(var(--hero-photo-eye-line) + var(--hero-lower-shift) - var(--hero-mark-eye-offset));
  z-index: 4;
  width: var(--hero-mark-size);
  pointer-events: none;
  opacity: 0.9;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  filter: grayscale(1) contrast(1.05) sepia(0.08);
  mix-blend-mode: multiply;
}

.hero-flow {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.hero-flow span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(21, 22, 18, 0.66);
  box-shadow: 0 0 0 1px rgba(239, 238, 232, 0.52), 0 0 12px rgba(21, 22, 18, 0.12);
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.55);
  animation: hero-map-flow var(--t) linear infinite;
  animation-delay: var(--d);
}

.hero-flow span:nth-child(1) {
  --x: 76%;
  --y: 35%;
  --s: 3px;
  --t: 7.4s;
  --d: -0.8s;
  --dx: 86px;
  --dy: 52px;
}

.hero-flow span:nth-child(2) {
  --x: 82%;
  --y: 40%;
  --s: 2px;
  --t: 6.8s;
  --d: -3.1s;
  --dx: 124px;
  --dy: 82px;
}

.hero-flow span:nth-child(3) {
  --x: 72%;
  --y: 46%;
  --s: 4px;
  --t: 8.2s;
  --d: -5.6s;
  --dx: 106px;
  --dy: 118px;
}

.hero-flow span:nth-child(4) {
  --x: 86%;
  --y: 50%;
  --s: 2px;
  --t: 7.8s;
  --d: -1.9s;
  --dx: 148px;
  --dy: 110px;
}

.hero-flow span:nth-child(5) {
  --x: 78%;
  --y: 57%;
  --s: 3px;
  --t: 6.4s;
  --d: -4.4s;
  --dx: 132px;
  --dy: 146px;
}

.hero-flow span:nth-child(6) {
  --x: 88%;
  --y: 62%;
  --s: 2px;
  --t: 8.9s;
  --d: -6.3s;
  --dx: 94px;
  --dy: 158px;
}

.hero-flow span:nth-child(7) {
  --x: 73%;
  --y: 68%;
  --s: 3px;
  --t: 7.1s;
  --d: -2.6s;
  --dx: 116px;
  --dy: 170px;
}

.hero-flow span:nth-child(8) {
  --x: 84%;
  --y: 74%;
  --s: 2px;
  --t: 9.2s;
  --d: -7.2s;
  --dx: 154px;
  --dy: 162px;
}

.hero-flow span:nth-child(9) {
  --x: 69%;
  --y: 38%;
  --s: 2px;
  --t: 7.9s;
  --d: -5.1s;
  --dx: 78px;
  --dy: 92px;
}

.hero-flow span:nth-child(10) {
  --x: 91%;
  --y: 47%;
  --s: 3px;
  --t: 6.9s;
  --d: -0.2s;
  --dx: 138px;
  --dy: 64px;
}

.hero-flow span:nth-child(11) {
  --x: 80%;
  --y: 66%;
  --s: 2px;
  --t: 8.5s;
  --d: -3.8s;
  --dx: 168px;
  --dy: 126px;
}

.hero-flow span:nth-child(12) {
  --x: 74%;
  --y: 79%;
  --s: 4px;
  --t: 9.6s;
  --d: -8.4s;
  --dx: 112px;
  --dy: 186px;
}

@keyframes hero-map-flow {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }

  16% {
    opacity: 0.62;
  }

  62% {
    opacity: 0.36;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--dx), var(--dy), 0) scale(1);
  }
}

.hero-note {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  align-self: end;
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero-note p {
  margin-top: 0;
  color: var(--ink);
  font-size: 15px;
}

.section-pad {
  padding: 92px 32px;
}

.section-index {
  margin-bottom: 18px;
}

.manifest-grid,
.diagnostic-layout,
.process-grid,
.about-grid,
.closing-grid,
.section-heading,
.field-list,
.offer-table {
  width: 100%;
  max-width: var(--home-max);
  margin: 0 auto;
}

.manifest-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: 64px;
  align-items: start;
}

h2 {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.98;
}

.manifest-text {
  display: grid;
  gap: 22px;
  max-width: 700px;
  padding-top: 8px;
  color: #303129;
  font-size: 20px;
}

.quote-band {
  padding: 74px 32px;
  color: var(--white);
  background: var(--ink);
}

.quote-inner {
  max-width: var(--home-max);
  margin: 0 auto;
}

.quote-inner p {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.96;
}

.quote-inner p + p {
  color: #c9c2ad;
}

.diagnostic {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.diagnostic-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 0.9fr) minmax(150px, 0.28fr);
  gap: 46px;
  align-items: center;
}

.diagnostic-photo {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.diagnostic-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 48% 42%;
  filter: grayscale(1) contrast(1.06) sepia(0.12);
  mix-blend-mode: multiply;
  opacity: var(--photo-opacity);
}

.diagnostic-copy {
  display: grid;
  gap: 24px;
  max-width: 660px;
}

.diagnostic-copy p {
  color: #34362f;
  font-size: 19px;
}

.diagnostic-symbol {
  align-self: end;
  opacity: 0.72;
}

.diagnostic-symbol img {
  width: 210px;
  filter: grayscale(1) contrast(1.08);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(300px, 1fr);
  gap: 44px;
  align-items: start;
  width: 100%;
  margin-bottom: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.section-heading-clean {
  grid-template-columns: minmax(300px, 1fr);
}

.section-heading-clean h2 {
  max-width: var(--home-max);
}

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

.field-row {
  display: grid;
  grid-template-columns: 76px 150px minmax(300px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 194px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  transition: background 160ms ease, color 160ms ease;
}

.field-row:hover,
.field-row:focus-visible {
  color: var(--blood);
  background: rgba(184, 178, 163, 0.13);
  outline: 0;
}

.field-row img {
  width: 132px;
  justify-self: center;
  opacity: 0.9;
  filter: grayscale(1) contrast(1.05);
}

.field-row h3,
.offer-table h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.field-row p {
  max-width: 760px;
  margin-top: 12px;
  color: #34362f;
  font-size: 18px;
}

.field-row:hover p,
.field-row:focus-visible p {
  color: #34362f;
}

.process {
  color: var(--white);
  background: var(--field);
}

.process .section-index {
  color: #cfd4c7;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(251, 250, 245, 0.42);
}

.process-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(251, 250, 245, 0.42);
}

.process-list span {
  color: #d4ccb8;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
}

.process-list p {
  color: #eef0e9;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.62fr);
  gap: 64px;
  align-items: end;
}

.about-copy {
  display: grid;
  gap: 24px;
  max-width: 780px;
}

.about-copy p {
  max-width: 660px;
  color: #33352e;
  font-size: 20px;
}

.about-photo {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.about-photo img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 48% 35%;
  filter: grayscale(1) contrast(1.05) sepia(0.13);
  mix-blend-mode: multiply;
  opacity: var(--photo-opacity);
}

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

.offer-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.offer-table article {
  min-height: 270px;
  padding: 26px 22px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.offer-table h3 {
  margin-top: 0;
}

.offer-table p {
  margin-top: 18px;
  color: #373930;
  font-size: 16px;
}

.closing {
  padding: 0 32px;
}

.closing-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(340px, 0.86fr) minmax(180px, 0.34fr);
  gap: 48px;
  align-items: stretch;
  min-height: 620px;
  padding: 86px 0;
}

.closing-photo {
  align-self: stretch;
  margin: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--paper-deep);
}

.closing-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(1) contrast(1.08) sepia(0.16);
  mix-blend-mode: multiply;
  opacity: var(--photo-opacity);
}

.closing-copy {
  align-self: center;
  display: grid;
  gap: 24px;
  max-width: 720px;
}

.closing-copy p {
  max-width: 620px;
  color: #33352e;
  font-size: 20px;
}

.closing-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.closing-mark {
  align-self: end;
  opacity: 0.72;
}

.closing-mark img {
  width: 250px;
  filter: grayscale(1) contrast(1.08);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 32px;
  color: #d9d5c9;
  background: var(--ink);
  font-size: 14px;
  scroll-snap-align: end;
}

.content-page {
  scroll-snap-type: none;
}

.content-page main > section {
  display: block;
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.method-detail {
  min-height: calc(100svh - 74px);
  padding: 74px 32px 96px;
  border-bottom: 1px solid var(--line);
}

.method-detail-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 72px;
  max-width: var(--text-page-max);
  margin: 0 auto;
}

.method-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 22px;
  align-self: start;
}

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

.method-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.method-nav a:hover,
.method-nav a:focus-visible,
.method-nav a[aria-current="page"] {
  color: var(--blood);
}

.method-article {
  max-width: 860px;
}

.method-title {
  max-width: 940px;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.96;
}

.method-lead {
  margin-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-strong);
  color: #303129;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.12;
}

.method-content {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  color: #303129;
  font-size: 20px;
}

.method-content h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.method-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.method-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.05;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

  .hero-kicker,
  .hero h1,
  .hero-copy {
    grid-column: 1 / 2;
  }

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

  .hero-portrait {
    grid-column: 2 / 3;
  }

  .hero-mark,
  .hero-note {
    grid-column: 1 / 2;
  }

  .diagnostic-layout,
  .process-grid,
  .closing-grid {
    grid-template-columns: minmax(260px, 0.72fr) minmax(340px, 1fr);
  }

  .diagnostic-symbol,
  .closing-mark {
    display: none;
  }

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

  .method-detail-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
  }

  .content-page .site-header-inner {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 48px;
  }

  .method-title {
    font-size: 62px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 0;
    scroll-snap-type: y mandatory;
  }

  body {
    font-size: 16px;
  }

  main > section {
    min-height: 100svh;
  }

  .site-header {
    position: static;
    padding: 16px 20px;
  }

  .site-header-inner,
  .content-page .site-header-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .nav,
  .content-page .nav {
    grid-column: 1;
    justify-self: start;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .submenu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    min-width: 0;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .submenu a {
    padding: 0;
    color: var(--muted);
    font-size: 11px;
  }

  .submenu a:hover,
  .submenu a:focus-visible,
  .submenu a[aria-current="page"] {
    background: transparent;
  }

  .hero,
  .section-pad,
  .quote-band,
  .closing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid,
  .manifest-grid,
  .diagnostic-layout,
  .process-grid,
  .about-grid,
  .closing-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero-portrait,
  .hero-mark,
  .hero-note {
    grid-column: 1 / 2;
    grid-row: auto;
  }

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

  .hero-copy p {
    font-size: 24px;
  }

  .hero-portrait img {
    min-height: 420px;
  }

  .hero-mark {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(365px, 95vw);
    margin: -330px -8px 64px auto;
  }

  h2,
  .quote-inner p {
    font-size: 42px;
    line-height: 1.02;
  }

  .section-pad {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .manifest-text {
    font-size: 18px;
  }

  .diagnostic-photo img,
  .about-photo img,
  .closing-photo img {
    min-height: 420px;
  }

  .section-heading {
    gap: 14px;
  }

  .field-row {
    grid-template-columns: 46px 86px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 0;
  }

  .field-row img {
    width: 78px;
  }

  .field-row h3,
  .offer-table h3 {
    font-size: 27px;
  }

  .field-row p {
    font-size: 16px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .offer-table {
    grid-template-columns: 1fr;
  }

  .offer-table h3 {
    margin-top: 42px;
  }

  .closing-grid {
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .method-detail {
    padding: 68px 20px;
  }

  .method-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .method-aside {
    position: static;
  }

  .method-title {
    font-size: 44px;
    line-height: 1;
  }

  .method-lead {
    padding-bottom: 26px;
    font-size: 25px;
  }

  .method-content {
    font-size: 18px;
  }
}

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

@media (max-width: 520px) {
  .brand span {
    font-size: 22px;
  }

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

  .hero-copy p {
    font-size: 22px;
  }

  .button {
    width: 100%;
  }

  h2,
  .quote-inner p {
    font-size: 35px;
  }

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

  .field-row img {
    justify-self: start;
  }
}
