/* Aureline Studio home route. All composition is scoped to body[data-page="home"]. */

body[data-page="home"] {
  background: var(--color-plaster);
  color: var(--color-ink);
}

body[data-page="home"] .home-page,
body[data-page="home"] .home-page *,
body[data-page="home"] .home-page *::before,
body[data-page="home"] .home-page *::after {
  box-sizing: border-box;
}

body[data-page="home"] .home-page {
  background: var(--color-plaster);
  color: var(--color-ink);
  min-width: 0;
}

body[data-page="home"] .home-page :is(section, article, div, header, figure, li) {
  min-width: 0;
}

body[data-page="home"] .home-page :is(h1, h2, h3, p, ol, figure, blockquote) {
  margin-top: 0;
}

body[data-page="home"] .home-page img {
  display: block;
  max-width: 100%;
}

body[data-page="home"] .home-page a:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

body[data-page="home"] .home-page [data-reveal] {
  opacity: 1;
  transform: none;
}

body[data-page="home"] .home-hero {
  isolation: isolate;
  display: grid;
  grid-template-areas: "stage";
  position: relative;
  min-height: clamp(46rem, 92svh, 64rem);
  color: var(--color-paper);
  background: #3f3c35;
}

body[data-page="home"] .home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 17, 14, 0.75) 0%, rgba(18, 17, 14, 0.36) 54%, rgba(18, 17, 14, 0.08) 82%),
    linear-gradient(0deg, rgba(18, 17, 14, 0.7) 0%, transparent 46%);
  pointer-events: none;
}

body[data-page="home"] .home-hero__visual,
body[data-page="home"] .home-hero__content {
  grid-area: stage;
}

body[data-page="home"] .home-hero__visual {
  z-index: -2;
  align-self: stretch;
  background: #3f3c35;
}

body[data-page="home"] .home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .home-hero__content {
  width: min(100%, 104rem);
  min-height: clamp(46rem, 92svh, 64rem);
  margin-inline: auto;
  padding: clamp(6rem, 14vh, 10rem) var(--space-page-inline-desktop) clamp(5rem, 9vh, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}

body[data-page="home"] .home-hero__eyebrow {
  color: rgba(251, 249, 245, 0.86);
}

body[data-page="home"] .home-hero__title {
  max-width: 9.25ch;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: var(--leading-display);
  text-wrap: balance;
}

body[data-page="home"] .home-hero__footer {
  display: grid;
  grid-template-columns: minmax(16rem, 32rem) auto;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-content-gap);
  padding-right: clamp(3rem, 10vw, 10rem);
}

body[data-page="home"] .home-hero__summary {
  max-width: 37rem;
  margin-bottom: 0;
  color: rgba(251, 249, 245, 0.9);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
}

body[data-page="home"] .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

body[data-page="home"] .home-hero__actions .button--secondary {
  border-color: rgba(251, 249, 245, 0.72);
  color: var(--color-paper);
}

body[data-page="home"] .home-hero__scroll {
  position: absolute;
  right: var(--space-page-inline-desktop);
  bottom: 2.2rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-decoration: none;
  text-transform: uppercase;
}

body[data-page="home"] .home-hero__scroll span:first-child {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(251, 249, 245, 0.55);
  border-radius: 50%;
}

body[data-page="home"] .home-intro {
  max-width: 104rem;
  margin-inline: auto;
  padding: var(--space-section-narrative-desktop) var(--space-page-inline-desktop);
  display: grid;
  grid-template-columns: minmax(2rem, 0.8fr) minmax(0, 5.2fr) minmax(18rem, 4fr);
  gap: var(--space-content-gap);
  align-items: start;
}

body[data-page="home"] .home-intro__index {
  padding-top: 1.55rem;
  color: var(--color-clay);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
}

body[data-page="home"] .home-intro__lead h2,
body[data-page="home"] .home-section-heading h2,
body[data-page="home"] .home-services__content h2,
body[data-page="home"] .home-process__heading h2,
body[data-page="home"] .home-invitation__content h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: var(--leading-title);
  text-wrap: balance;
}

body[data-page="home"] .home-intro__lead h2 {
  max-width: 12ch;
  font-size: var(--text-display);
}

body[data-page="home"] .home-intro__copy {
  padding-top: 2.2rem;
}

body[data-page="home"] .home-intro__copy p {
  color: var(--color-ink-soft);
}

body[data-page="home"] .home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.45rem;
  border-bottom: var(--rule-thin) solid currentColor;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

body[data-page="home"] .home-text-link span {
  transition: transform var(--motion-fast) var(--ease-standard);
}

body[data-page="home"] .home-text-link:hover span {
  transform: translate(0.18rem, -0.18rem);
}

body[data-page="home"] .home-projects {
  padding: var(--space-section-narrative-desktop) var(--space-page-inline-desktop);
  background: var(--color-paper);
}

body[data-page="home"] .home-section-heading {
  width: min(100%, 96rem);
  margin: 0 auto clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.65fr);
  gap: var(--space-content-gap);
  align-items: end;
}

body[data-page="home"] .home-section-heading h2 {
  max-width: 13ch;
  font-size: var(--text-display);
}

body[data-page="home"] .home-section-heading__note {
  max-width: 32rem;
  margin-bottom: 0.4rem;
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

body[data-page="home"] .home-projects__grid {
  width: min(100%, 96rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 3.5rem);
  row-gap: clamp(3rem, 7vw, 6.5rem);
}

body[data-page="home"] .home-project-card--feature {
  grid-column: 1 / span 7;
}

body[data-page="home"] .home-project-card--portrait {
  grid-column: 9 / -1;
  padding-top: clamp(3rem, 9vw, 9rem);
}

body[data-page="home"] .home-project-card--wide {
  grid-column: 4 / span 8;
}

body[data-page="home"] .home-project-card__image-link {
  position: relative;
  display: block;
  background: var(--color-linen);
  color: var(--color-ink);
  text-decoration: none;
  overflow: hidden;
}

body[data-page="home"] .home-project-card--feature .home-project-card__image-link {
  aspect-ratio: 4 / 3;
}

body[data-page="home"] .home-project-card--portrait .home-project-card__image-link {
  aspect-ratio: 3 / 4;
}

body[data-page="home"] .home-project-card--wide .home-project-card__image-link {
  aspect-ratio: 16 / 9;
}

body[data-page="home"] .home-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-standard), filter var(--motion-standard) var(--ease-standard);
}

body[data-page="home"] .home-project-card__image-link:hover .home-project-card__image {
  transform: scale(1.025);
  filter: saturate(0.92);
}

body[data-page="home"] .home-project-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(251, 249, 245, 0.58);
  border-radius: 50%;
  background: rgba(29, 28, 25, 0.34);
  color: var(--color-paper);
  backdrop-filter: blur(7px);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body[data-page="home"] .home-project-card__body {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid transparent;
}

body[data-page="home"] .home-project-card__body .eyebrow {
  margin-bottom: 0.35rem;
  color: var(--color-ink-soft);
  font-size: 0.68rem;
}

body[data-page="home"] .home-project-card__body h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

body[data-page="home"] .home-project-card__body h3 a {
  color: var(--color-ink);
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

body[data-page="home"] .home-project-card__body h3 a:hover {
  text-decoration: underline;
}

body[data-page="home"] .home-project-card__status {
  flex: 0 0 auto;
  padding-bottom: 0.25rem;
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

body[data-page="home"] .home-projects__footer {
  width: min(100%, 96rem);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding-top: 1.5rem;
  border-top: var(--rule-thin) solid var(--color-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

body[data-page="home"] .home-projects__footer p {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  line-height: var(--leading-body);
}

body[data-page="home"] .home-services {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--color-plaster);
}

body[data-page="home"] .home-services__visual {
  position: relative;
  align-self: stretch;
  min-height: 48rem;
  background: var(--color-linen);
}

body[data-page="home"] .home-services__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .home-services__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 23rem;
  margin-bottom: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(242, 238, 231, 0.94);
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.6;
}

body[data-page="home"] .home-services__content {
  padding: var(--space-section-narrative-desktop) var(--space-page-inline-desktop);
  align-self: center;
}

body[data-page="home"] .home-services__content h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: var(--text-display);
}

body[data-page="home"] .home-services__intro {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

body[data-page="home"] .home-service-list {
  margin-bottom: 2rem;
  padding: 0;
  border-top: var(--rule-thin) solid var(--color-rule);
  list-style: none;
}

body[data-page="home"] .home-service-list li {
  border-bottom: var(--rule-thin) solid var(--color-rule);
}

body[data-page="home"] .home-service-list a {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) 2rem;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  color: var(--color-ink);
  text-decoration: none;
}

body[data-page="home"] .home-service-list__number {
  padding-top: 0.32rem;
  color: var(--color-clay);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
}

body[data-page="home"] .home-service-list__copy {
  display: grid;
  gap: 0.35rem;
}

body[data-page="home"] .home-service-list__copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
}

body[data-page="home"] .home-service-list__copy > span {
  max-width: 42rem;
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.55;
}

body[data-page="home"] .home-service-list__arrow {
  justify-self: end;
  padding-top: 0.25rem;
  font-size: 1.1rem;
  transition: transform var(--motion-fast) var(--ease-standard);
}

body[data-page="home"] .home-service-list a:hover .home-service-list__arrow {
  transform: translate(0.2rem, -0.2rem);
}

body[data-page="home"] .home-process {
  padding: var(--space-section-narrative-desktop) var(--space-page-inline-desktop);
  background: var(--color-olive);
  color: var(--color-paper);
}

body[data-page="home"] .home-process__heading,
body[data-page="home"] .home-process__steps,
body[data-page="home"] .home-process__link {
  width: min(100%, 96rem);
  margin-inline: auto;
}

body[data-page="home"] .home-process__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.45fr) minmax(18rem, 0.7fr);
  gap: var(--space-content-gap);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

body[data-page="home"] .home-process__heading .eyebrow {
  align-self: start;
  color: rgba(251, 249, 245, 0.72);
}

body[data-page="home"] .home-process__heading h2 {
  font-size: var(--text-display);
}

body[data-page="home"] .home-process__heading > p:last-child {
  margin-bottom: 0.25rem;
  color: rgba(251, 249, 245, 0.76);
  font-family: var(--font-body);
  line-height: var(--leading-body);
}

body[data-page="home"] .home-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2.25rem;
  padding: 0;
  border-top: 1px solid rgba(251, 249, 245, 0.34);
  list-style: none;
}

body[data-page="home"] .home-process__steps li {
  min-height: 16rem;
  padding: 1.5rem clamp(1rem, 2.4vw, 2rem) 1.3rem 0;
  border-right: 1px solid rgba(251, 249, 245, 0.24);
}

body[data-page="home"] .home-process__steps li + li {
  padding-left: clamp(1rem, 2.4vw, 2rem);
}

body[data-page="home"] .home-process__steps li:last-child {
  border-right: 0;
  padding-right: 0;
}

body[data-page="home"] .home-process__number {
  display: block;
  margin-bottom: clamp(3.25rem, 7vw, 6rem);
  color: rgba(251, 249, 245, 0.6);
  font-family: var(--font-body);
  font-size: var(--text-small);
  letter-spacing: var(--tracking-label);
}

body[data-page="home"] .home-process__steps h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 500;
}

body[data-page="home"] .home-process__steps p {
  margin-bottom: 0;
  color: rgba(251, 249, 245, 0.74);
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.65;
}

body[data-page="home"] .home-process__link {
  color: var(--color-paper);
}

body[data-page="home"] .home-principle {
  position: relative;
  width: min(100%, 104rem);
  margin-inline: auto;
  padding: clamp(4rem, 6vw, 6rem) var(--space-page-inline-desktop);
  display: grid;
  grid-template-columns: minmax(12rem, 0.58fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
}

body[data-page="home"] .home-principle__image {
  aspect-ratio: 4 / 5;
  background: var(--color-linen);
}

body[data-page="home"] .home-principle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .home-principle__statement {
  margin-bottom: 0;
}

body[data-page="home"] .home-principle__statement blockquote {
  max-width: 19ch;
  margin-bottom: 1.5rem;
  margin-left: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
}

body[data-page="home"] .home-principle__statement figcaption {
  color: var(--color-walnut);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

body[data-page="home"] .home-principle__note {
  position: absolute;
  right: var(--space-page-inline-desktop);
  bottom: 2rem;
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

body[data-page="home"] .home-invitation {
  isolation: isolate;
  position: relative;
  min-height: clamp(36rem, 70svh, 50rem);
  display: grid;
  place-items: center;
  padding: var(--space-section-narrative-desktop) var(--space-page-inline-desktop);
  background: #302d27;
  color: var(--color-paper);
}

body[data-page="home"] .home-invitation::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 22, 18, 0.83) 0%, rgba(24, 22, 18, 0.56) 52%, rgba(24, 22, 18, 0.18) 100%);
}

body[data-page="home"] .home-invitation__visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: #302d27;
}

body[data-page="home"] .home-invitation__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .home-invitation__content {
  width: min(100%, 96rem);
}

body[data-page="home"] .home-invitation__content > .eyebrow {
  color: rgba(251, 249, 245, 0.88);
}

body[data-page="home"] .home-invitation__content h2 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: var(--text-display);
}

body[data-page="home"] .home-invitation__content > p:not(.eyebrow, .home-invitation__disclosure) {
  max-width: 37rem;
  color: rgba(251, 249, 245, 0.84);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

body[data-page="home"] .home-invitation__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

body[data-page="home"] .home-invitation__service-link {
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(251, 249, 245, 0.65);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

body[data-page="home"] .home-invitation__disclosure {
  max-width: 37rem;
  margin: 1.4rem 0 0;
  color: rgba(251, 249, 245, 0.62);
  font-family: var(--font-body);
  font-size: 0.76rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  body[data-page="home"] .home-hero__content,
  body[data-page="home"] .home-intro,
  body[data-page="home"] .home-projects,
  body[data-page="home"] .home-services__content,
  body[data-page="home"] .home-process,
  body[data-page="home"] .home-principle,
  body[data-page="home"] .home-invitation {
    --home-inline: var(--space-page-inline-tablet);
  }

  body[data-page="home"] .home-hero__content,
  body[data-page="home"] .home-intro,
  body[data-page="home"] .home-projects,
  body[data-page="home"] .home-process,
  body[data-page="home"] .home-principle,
  body[data-page="home"] .home-invitation {
    padding-right: var(--home-inline);
    padding-left: var(--home-inline);
  }

  body[data-page="home"] .home-hero__scroll,
  body[data-page="home"] .home-principle__note {
    right: var(--home-inline);
  }

  body[data-page="home"] .home-services__content {
    padding-right: var(--home-inline);
    padding-left: var(--home-inline);
  }

  body[data-page="home"] .home-intro {
    grid-template-columns: 2rem minmax(0, 1.15fr) minmax(16rem, 0.8fr);
  }

  body[data-page="home"] .home-services {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  body[data-page="home"] .home-service-list a {
    grid-template-columns: 2rem minmax(0, 1fr) 1.5rem;
    gap: 0.65rem;
  }
}

@media (max-width: 799px) {
  body[data-page="home"] .home-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #34322d;
  }

  body[data-page="home"] .home-hero::after {
    display: none;
  }

  body[data-page="home"] .home-hero__content {
    order: 1;
    min-height: 35rem;
    padding: clamp(5.5rem, 12vh, 7rem) var(--space-page-inline-tablet) 2.5rem;
    background: linear-gradient(135deg, #302f2a 0%, #49453c 100%);
  }

  body[data-page="home"] .home-hero__title {
    max-width: 10.5ch;
    font-size: clamp(3.7rem, 10.7vw, 6rem);
  }

  body[data-page="home"] .home-hero__footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: 0;
  }

  body[data-page="home"] .home-hero__visual {
    order: 2;
    width: 100%;
    background: #3f3c35;
  }

  body[data-page="home"] .home-hero__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  body[data-page="home"] .home-hero__scroll {
    display: none;
  }

  body[data-page="home"] .home-intro {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  body[data-page="home"] .home-intro__copy {
    grid-column: 2;
    padding-top: 0;
  }

  body[data-page="home"] .home-section-heading,
  body[data-page="home"] .home-process__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body[data-page="home"] .home-section-heading__note {
    max-width: 42rem;
  }

  body[data-page="home"] .home-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-project-card--feature,
  body[data-page="home"] .home-project-card--wide {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .home-project-card--portrait {
    grid-column: 2;
    padding-top: 0;
  }

  body[data-page="home"] .home-project-card--portrait .home-project-card__image-link {
    aspect-ratio: 3 / 4;
  }

  body[data-page="home"] .home-project-card__body {
    align-items: start;
    flex-direction: column;
    gap: 0.35rem;
  }

  body[data-page="home"] .home-services {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-services__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body[data-page="home"] .home-services__content {
    padding: var(--space-section-narrative-desktop) var(--space-page-inline-tablet);
  }

  body[data-page="home"] .home-process__heading > p:last-child {
    max-width: 38rem;
  }

  body[data-page="home"] .home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-process__steps li {
    min-height: 14rem;
    border-bottom: 1px solid rgba(251, 249, 245, 0.24);
  }

  body[data-page="home"] .home-process__steps li:nth-child(2) {
    border-right: 0;
  }

  body[data-page="home"] .home-process__steps li:nth-child(3),
  body[data-page="home"] .home-process__steps li:nth-child(4) {
    border-bottom: 0;
  }

  body[data-page="home"] .home-process__steps li:nth-child(3) {
    padding-left: 0;
  }

  body[data-page="home"] .home-process__number {
    margin-bottom: 3.5rem;
  }

  body[data-page="home"] .home-principle {
    grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1fr);
    gap: 2.5rem;
  }

  body[data-page="home"] .home-principle__statement blockquote {
    font-size: clamp(2.3rem, 6vw, 3.8rem);
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .home-hero__content,
  body[data-page="home"] .home-intro,
  body[data-page="home"] .home-projects,
  body[data-page="home"] .home-process,
  body[data-page="home"] .home-principle,
  body[data-page="home"] .home-invitation {
    padding-right: var(--space-page-inline-mobile);
    padding-left: var(--space-page-inline-mobile);
  }

  body[data-page="home"] .home-hero__content {
    min-height: 36rem;
    padding-top: 5.25rem;
  }

  body[data-page="home"] .home-hero__title {
    max-width: 9ch;
    font-size: clamp(3.35rem, 16.3vw, 4.75rem);
    line-height: 0.91;
  }

  body[data-page="home"] .home-hero__footer {
    gap: 1.5rem;
  }

  body[data-page="home"] .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] .home-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .home-intro,
  body[data-page="home"] .home-projects,
  body[data-page="home"] .home-process {
    padding-top: var(--space-section-narrative-mobile);
    padding-bottom: var(--space-section-narrative-mobile);
  }

  body[data-page="home"] .home-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body[data-page="home"] .home-intro__index {
    display: none;
  }

  body[data-page="home"] .home-intro__copy {
    grid-column: auto;
  }

  body[data-page="home"] .home-intro__lead h2,
  body[data-page="home"] .home-section-heading h2,
  body[data-page="home"] .home-services__content h2,
  body[data-page="home"] .home-process__heading h2,
  body[data-page="home"] .home-invitation__content h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  body[data-page="home"] .home-section-heading {
    margin-bottom: 2.25rem;
  }

  body[data-page="home"] .home-projects__grid {
    grid-template-columns: 1fr;
    row-gap: 2.75rem;
  }

  body[data-page="home"] .home-project-card--feature,
  body[data-page="home"] .home-project-card--portrait,
  body[data-page="home"] .home-project-card--wide {
    grid-column: 1;
  }

  body[data-page="home"] .home-project-card--feature .home-project-card__image-link,
  body[data-page="home"] .home-project-card--wide .home-project-card__image-link {
    aspect-ratio: 4 / 3;
  }

  body[data-page="home"] .home-project-card--portrait {
    width: 82%;
    margin-left: auto;
  }

  body[data-page="home"] .home-project-card__status {
    white-space: normal;
  }

  body[data-page="home"] .home-projects__footer {
    margin-top: 2.75rem;
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] .home-projects__footer .button {
    justify-content: center;
  }

  body[data-page="home"] .home-services__visual {
    aspect-ratio: 4 / 3;
  }

  body[data-page="home"] .home-services__caption {
    position: static;
    max-width: none;
    padding: 1rem var(--space-page-inline-mobile);
  }

  body[data-page="home"] .home-services__content {
    padding: var(--space-section-narrative-mobile) var(--space-page-inline-mobile);
  }

  body[data-page="home"] .home-service-list a {
    grid-template-columns: 1.65rem minmax(0, 1fr) 1.25rem;
  }

  body[data-page="home"] .home-service-list__copy > span {
    font-size: 0.8rem;
  }

  body[data-page="home"] .home-process__steps {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-process__steps li,
  body[data-page="home"] .home-process__steps li + li,
  body[data-page="home"] .home-process__steps li:nth-child(3) {
    min-height: 0;
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(251, 249, 245, 0.24);
  }

  body[data-page="home"] .home-process__steps li:last-child {
    border-bottom: 0;
  }

  body[data-page="home"] .home-process__number {
    margin-bottom: 2rem;
  }

  body[data-page="home"] .home-principle {
    padding-top: 4rem;
    padding-bottom: 4rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  body[data-page="home"] .home-principle__image {
    width: 72%;
    aspect-ratio: 4 / 5;
  }

  body[data-page="home"] .home-principle__statement blockquote {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  body[data-page="home"] .home-principle__note {
    position: static;
    grid-column: 1;
    margin-top: -1rem;
  }

  body[data-page="home"] .home-invitation {
    min-height: 40rem;
    place-items: end start;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  body[data-page="home"] .home-invitation::after {
    background: linear-gradient(0deg, rgba(24, 22, 18, 0.92) 0%, rgba(24, 22, 18, 0.52) 70%, rgba(24, 22, 18, 0.18) 100%);
  }

  body[data-page="home"] .home-invitation__visual img {
    object-position: 62% center;
  }

  body[data-page="home"] .home-invitation__actions {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] .home-invitation__actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-project-card__image,
  body[data-page="home"] .home-text-link span,
  body[data-page="home"] .home-service-list__arrow {
    transition: none;
  }
}
