:root {
  --amoell-bg: #0e1012;
  --amoell-surface: #141619;
  --amoell-card: #191c20;
  --amoell-text: #ece7de;
  --amoell-text-soft: #b8b3aa;
  --amoell-line: rgba(236, 231, 222, 0.14);
  --amoell-container: 1440px;
  --amoell-gutter: clamp(1rem, 0.55rem + 2vw, 3rem);
  --amoell-space-s: clamp(0.75rem, 0.65rem + 0.3vw, 1rem);
  --amoell-space-m: clamp(1.25rem, 1rem + 0.8vw, 2rem);
  --amoell-space-l: clamp(2.5rem, 1.8rem + 2.5vw, 5rem);
  --amoell-space-section: clamp(4rem, 3rem + 5vw, 9rem);
  --amoell-header-height: 4.5rem;
  color-scheme: dark;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--amoell-bg);
  color: var(--amoell-text);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

button,
input {
  min-height: 2.75rem;
}

:focus-visible {
  outline: 3px solid var(--amoell-text);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin-block: 0 0.55em;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 1.7rem + 4.5vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 1.45rem + 2.4vw, 4.5rem);
}

h3 {
  font-size: clamp(1.4rem, 1.15rem + 1vw, 2.25rem);
}

p {
  max-width: 70ch;
  margin-block: 0 1em;
}

.amoell-container {
  width: min(100% - (2 * var(--amoell-gutter)), var(--amoell-container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 0 auto auto var(--amoell-gutter);
  padding: 0.75rem 1rem;
  background: var(--amoell-text);
  color: var(--amoell-bg);
  transform: translateY(-130%);
}

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

.site-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--amoell-header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--amoell-line);
  background: rgba(14, 16, 18, 0.82);
}

@supports (backdrop-filter: blur(1rem)) {
  .site-header.is-scrolled {
    background: rgba(14, 16, 18, 0.82);
    backdrop-filter: blur(18px);
  }
}

.site-header__inner {
  display: flex;
  min-height: var(--amoell-header-height);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--amoell-space-m);
}

.site-brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-brand img {
  width: auto;
  max-width: 200px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  min-width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--amoell-line);
  border-radius: 2px;
  background: transparent;
  color: var(--amoell-text);
  cursor: pointer;
}

.menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: background-color 120ms ease, transform 120ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  inset: 0;
}

.menu-toggle__icon::before {
  transform: translateY(-0.38rem);
}

.menu-toggle__icon::after {
  transform: translateY(0.38rem);
}

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

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

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

.site-navigation {
  width: 100%;
}

.js .menu-toggle {
  display: inline-flex;
}

.js .site-navigation {
  position: fixed;
  inset: 0;
  display: none;
  padding: calc(var(--amoell-header-height) + var(--amoell-space-l)) var(--amoell-gutter) var(--amoell-space-l);
  overflow-y: auto;
  background: rgba(14, 16, 18, 0.98);
}

.js .site-navigation.is-open {
  display: block;
}

.site-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  position: relative;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding-block: 0.45rem;
  font-size: clamp(1.45rem, 1.15rem + 1.5vw, 2rem);
  color: var(--amoell-text-soft);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation .active > a {
  color: var(--amoell-text);
}

.site-navigation a::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after,
.site-navigation .active > a::after,
.site-navigation .current > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: none;
}

.site-main {
  min-height: 65vh;
  padding-block: calc(var(--amoell-header-height) + var(--amoell-space-l)) var(--amoell-space-section);
}

.page-home .site-main {
  padding-block: 0 var(--amoell-space-section);
}

.amoell-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - var(--amoell-header-height));
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--amoell-header-height) + var(--amoell-space-l)) var(--amoell-space-l);
  background-color: var(--amoell-bg);
}

.amoell-hero::before,
.amoell-hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
}

.amoell-hero::before {
  background-image:
    linear-gradient(var(--amoell-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--amoell-line) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(3.5rem, 7vw, 7rem) clamp(3.5rem, 7vw, 7rem);
  opacity: 0.18;
  animation: amoell-grid-drift 90s linear infinite;
}

.amoell-hero::after {
  inset: 12% var(--amoell-gutter);
  border-block: 1px solid rgba(236, 231, 222, 0.06);
  opacity: 0.9;
}

.amoell-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: var(--amoell-space-m);
}

.amoell-hero__content {
  z-index: 1;
  grid-column: 1 / -1;
  max-width: 980px;
}

.amoell-hero h1 {
  max-width: 15ch;
  margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.75rem);
  font-size: clamp(3rem, 1.75rem + 6vw, 7.25rem);
  line-height: 1;
  text-wrap: balance;
}

.amoell-hero__intro,
.amoell-hero__content > p {
  max-width: 680px;
  color: var(--amoell-text-soft);
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.4rem);
  line-height: 1.55;
}

.amoell-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--amoell-space-s);
  margin-top: clamp(1.75rem, 1.25rem + 1.5vw, 3rem);
}

.amoell-hero__signet {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -10%;
  display: none;
  width: min(48vw, 43rem);
  max-width: none;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

@keyframes amoell-grid-drift {
  to {
    background-position: clamp(3.5rem, 7vw, 7rem) clamp(3.5rem, 7vw, 7rem);
  }
}

.amoell-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 550;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.amoell-button--primary {
  border-color: var(--amoell-text);
  background: var(--amoell-text);
  color: var(--amoell-bg);
}

.amoell-button--secondary {
  border-color: var(--amoell-line);
  background: transparent;
  color: var(--amoell-text);
}

.amoell-button--dark {
  border-color: var(--amoell-bg);
  background: var(--amoell-bg);
  color: var(--amoell-text);
}

.amoell-button--primary:hover {
  background: #fff;
  color: var(--amoell-bg);
}

.amoell-button--secondary:hover {
  border-color: var(--amoell-text-soft);
  background: var(--amoell-surface);
}

.amoell-button--dark:hover {
  border-color: var(--amoell-bg);
  background: transparent;
  color: var(--amoell-bg);
}

.amoell-button--dark:focus-visible {
  outline-color: var(--amoell-bg);
}

.amoell-button--dark .amoell-button__arrow {
  margin-left: 0.35em;
}

.amoell-button:focus-visible {
  outline-offset: 4px;
}

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

.home-section + .home-section {
  border-top: 1px solid var(--amoell-line);
}

.amoell-eyebrow {
  margin-bottom: var(--amoell-space-s);
  color: var(--amoell-text-soft);
  font-size: clamp(0.75rem, 0.72rem + 0.12vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-statement {
  padding-block: clamp(3.5rem, 2.75rem + 4vw, 7.5rem);
  border-block: 1px solid var(--amoell-line);
  background: var(--amoell-surface);
}

.amoell-statement__grid {
  display: grid;
  gap: clamp(2rem, 1.4rem + 3vw, 5rem);
}

.amoell-statement__heading,
.amoell-statement__body {
  min-width: 0;
}

.amoell-statement__heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 1.75rem + 2.8vw, 5.25rem);
  line-height: 1.02;
  text-wrap: balance;
}

.amoell-statement__body {
  color: var(--amoell-text-soft);
}

.amoell-statement__body > :last-child {
  margin-bottom: 0;
}

.amoell-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--amoell-text);
  text-decoration-color: var(--amoell-line);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.amoell-text-link:hover {
  text-decoration-color: var(--amoell-text);
}

.amoell-services {
  padding-block: clamp(4rem, 3rem + 5vw, 9rem);
  background: var(--amoell-bg);
}

.amoell-services__intro {
  margin-bottom: clamp(3rem, 2rem + 4vw, 7rem);
}

.amoell-services__intro > * {
  min-width: 0;
}

.amoell-services__intro p {
  max-width: 42rem;
  color: var(--amoell-text-soft);
}

.amoell-services__intro > :last-child > :last-child,
.amoell-services__intro > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}

.amoell-services-intro__grid {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  min-width: 0;
}

.amoell-services-intro__heading,
.amoell-services-intro__body {
  min-width: 0;
}

.amoell-services-intro__heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.amoell-services-intro__body {
  max-width: 34rem;
}

.amoell-services-list {
  display: grid;
  gap: clamp(2.5rem, 1.8rem + 3vw, 5rem);
}

.amoell-service {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
  transition: border-color 180ms ease;
}

.amoell-service__number {
  margin-bottom: var(--amoell-space-m);
  color: var(--amoell-text-soft);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.amoell-service__content {
  min-width: 0;
  transition: transform 180ms ease;
}

.amoell-service__title {
  margin-bottom: var(--amoell-space-m);
  font-size: clamp(1.65rem, 1.3rem + 1.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.08;
}

.amoell-service__text {
  color: var(--amoell-text-soft);
}

.amoell-service__text > :last-child {
  margin-bottom: 0;
}

.amoell-work {
  padding-block: clamp(4rem, 3rem + 5vw, 9rem);
  border-block: 1px solid var(--amoell-line);
  background: var(--amoell-surface);
}

.amoell-work__intro {
  margin-bottom: clamp(3rem, 2rem + 5vw, 8rem);
}

.amoell-work__intro > * {
  width: 100%;
  min-width: 0;
}

.amoell-work-intro__grid {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  width: 100%;
  min-width: 0;
}

.amoell-work-intro__heading,
.amoell-work-intro__body {
  min-width: 0;
}

.amoell-work-intro__heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.35rem, 9vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.amoell-work-intro__body {
  max-width: 34rem;
  color: var(--amoell-text-soft);
}

.amoell-work-intro__body > :last-child {
  margin-bottom: 0;
}

.amoell-work__list,
.amoell-work__list > * {
  width: 100%;
  min-width: 0;
}

.amoell-work-grid {
  display: grid;
  gap: clamp(3rem, 2rem + 5vw, 7rem) var(--amoell-space-m);
  min-width: 0;
}

.amoell-work-card {
  min-width: 0;
}

.amoell-work-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.amoell-work-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--amoell-card);
}

.amoell-work-card__media::after {
  position: absolute;
  inset: 0;
  background: var(--amoell-bg);
  content: "";
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 340ms ease;
}

.amoell-work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transform: scale(1);
  transition: filter 340ms ease, transform 340ms ease;
}

.amoell-work-card__fallback {
  position: absolute;
  inset: 0;
  border: 1px solid var(--amoell-line);
  background: var(--amoell-card);
}

.amoell-work-card__content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--amoell-space-s) var(--amoell-space-m);
  margin-top: var(--amoell-space-m);
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
  transition: border-color 340ms ease;
}

.amoell-work__meta,
.amoell-work-card__number {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-work-card__number {
  grid-column: 1;
  padding-top: 0.35rem;
}

.amoell-work-card__title {
  grid-column: 2;
  margin: 0;
  font-size: clamp(1.55rem, 1.25rem + 1.1vw, 2.45rem);
  line-height: 1.08;
}

.amoell-work-card__title a {
  color: var(--amoell-text);
  text-decoration: none;
}

.amoell-work-card__intro {
  grid-column: 2;
  color: var(--amoell-text-soft);
  font-size: max(1rem, 16px);
}

.amoell-work-card__intro > :last-child {
  margin-bottom: 0;
}

.amoell-work-card:hover .amoell-work-card__content,
.amoell-work-card:focus-within .amoell-work-card__content {
  border-color: var(--amoell-text-soft);
}

.amoell-work-card:hover .amoell-work-card__media::after,
.amoell-work-card:focus-within .amoell-work-card__media::after {
  opacity: 0.06;
}

.amoell-work-card:hover .amoell-work-card__media img,
.amoell-work-card:focus-within .amoell-work-card__media img {
  filter: grayscale(0);
}

.amoell-universe {
  padding-block: clamp(4rem, 3rem + 5vw, 8rem);
  border-block: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-universe__intro {
  margin-bottom: clamp(3rem, 2rem + 4vw, 6rem);
}

.amoell-universe__intro > *,
.amoell-universe__items > * {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.amoell-universe-intro__grid {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  width: 100%;
  min-width: 0;
}

.amoell-universe-intro__heading,
.amoell-universe-intro__body {
  min-width: 0;
}

.amoell-universe-intro__heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.35rem, 9vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.amoell-universe-intro__body {
  max-width: 34rem;
  color: var(--amoell-text-soft);
}

.amoell-universe-intro__body > :last-child {
  margin-bottom: 0;
}

.amoell-universe__items {
  width: 100%;
  min-width: 0;
}

.amoell-universe-item {
  display: grid;
  gap: var(--amoell-space-m);
  min-width: 0;
  padding: clamp(2.75rem, 2rem + 4vw, 5rem) var(--amoell-space-s);
  border-top: 1px solid var(--amoell-line);
  transition: background-color 300ms ease;
}

.amoell-universe-item:last-child {
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-universe-item__number,
.amoell-universe-item__identity,
.amoell-universe-item__description,
.amoell-universe-item__action {
  min-width: 0;
}

.amoell-universe-item__number,
.amoell-universe-item__meta {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-universe-item__meta {
  display: block;
  margin-bottom: 0.65rem;
}

.amoell-universe-item__title {
  margin: 0;
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.8rem);
  line-height: 1.05;
}

.amoell-universe-item__description {
  max-width: 46rem;
  color: var(--amoell-text-soft);
  font-size: max(1rem, 16px);
}

.amoell-universe-item__description > :last-child {
  margin-bottom: 0;
}

.amoell-universe-item__action {
  align-self: end;
}

.amoell-universe-item__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--amoell-text);
  font-weight: 600;
  text-decoration-color: var(--amoell-line);
  transition: color 300ms ease, text-decoration-color 300ms ease, transform 300ms ease;
}

.amoell-universe-item__link:hover,
.amoell-universe-item__link:focus-visible {
  text-decoration-color: var(--amoell-text);
}

.amoell-universe-item--ambrosia:hover,
.amoell-universe-item--ambrosia:focus-within {
  background: rgba(110, 135, 150, 0.08);
}

.amoell-universe-item--amplified:hover,
.amoell-universe-item--amplified:focus-within {
  background: rgba(100, 70, 145, 0.09);
}

.amoell-about {
  padding-block: clamp(4rem, 3rem + 5vw, 8rem);
  border-block: 1px solid var(--amoell-line);
  background: var(--amoell-surface);
}

.amoell-about > .amoell-container > * {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.amoell-about__grid {
  display: grid;
  gap: clamp(2.5rem, 2rem + 5vw, 4.5rem);
  width: 100%;
  min-width: 0;
}

.amoell-about__content,
.amoell-about__portrait {
  min-width: 0;
}

.amoell-about__content {
  max-width: 52rem;
}

.amoell-about__content h2 {
  max-width: 15ch;
  margin: 0 0 var(--amoell-space-m);
  font-size: clamp(2.35rem, 9vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.amoell-about__role {
  margin: 0 0 var(--amoell-space-s);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-about__lead {
  max-width: 42rem;
  color: var(--amoell-text);
  font-size: clamp(1.15rem, 1.05rem + 0.45vw, 1.4rem);
  line-height: 1.55;
}

.amoell-about__text {
  max-width: 44rem;
  color: var(--amoell-text-soft);
}

.amoell-about__text > :last-child {
  margin-bottom: 0;
}

.amoell-about__portrait {
  --amoell-about-object-position: center;

  width: 100%;
  max-width: 34rem;
  margin: 0;
  justify-self: end;
}

.amoell-about__portrait img {
  display: block;
  width: 100%;
  max-height: 75svh;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--amoell-line);
  object-fit: cover;
  object-position: var(--amoell-about-object-position, center);
  filter: grayscale(0.1);
}

.amoell-about .amoell-text-link__arrow {
  margin-left: 0.5em;
}

.amoell-contact-cta {
  position: relative;
  display: flex;
  min-height: clamp(28rem, 58svh, 38rem);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(4rem, 3rem + 5vw, 8rem);
  background: var(--amoell-text);
  color: var(--amoell-bg);
}

.amoell-contact-cta > .amoell-container {
  position: relative;
  z-index: 1;
}

.amoell-contact-cta > .amoell-container > * {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.amoell-contact-cta__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  width: 100%;
  min-width: 0;
}

.amoell-contact-cta__content {
  position: relative;
  z-index: 2;
  max-width: 68rem;
  min-width: 0;
}

.amoell-contact-cta__action {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.amoell-contact-cta__content h2 {
  max-width: 14ch;
  margin: 0 0 var(--amoell-space-m);
  font-size: clamp(2.75rem, 12vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.amoell-contact-cta__content p {
  max-width: 44rem;
  color: var(--amoell-bg);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.3rem);
  line-height: 1.55;
}

.amoell-contact-cta__mark {
  position: absolute;
  display: block;
  right: var(--amoell-gutter);
  bottom: clamp(1.5rem, 4vw, 4rem);
  width: min(58vw, 22rem);
  height: auto;
  max-width: none;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.055;
  filter: brightness(0);
  pointer-events: none;
  user-select: none;
}

.breadcrumbs {
  margin-bottom: var(--amoell-space-l);
  color: var(--amoell-text-soft);
  font-size: 0.9rem;
}

.breadcrumbs ol,
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-top,
.main-bottom {
  padding-block: var(--amoell-space-l);
}

.site-footer {
  padding-block: clamp(3rem, 2.5rem + 3vw, 5.5rem) 0;
  border-top: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.site-footer__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.site-footer__brand,
.site-footer__navigation,
.site-footer__legal {
  min-width: 0;
}

.site-footer__brand img {
  width: auto;
  max-width: 210px;
  max-height: 4.5rem;
  object-fit: contain;
  object-position: left center;
}

.site-footer__brand p {
  max-width: 30rem;
  color: var(--amoell-text-soft);
}

.site-footer__navigation ul,
.site-footer__legal ul {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__navigation a,
.site-footer__legal a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--amoell-text-soft);
  text-decoration-color: transparent;
}

.site-footer__navigation a:hover,
.site-footer__navigation a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.site-footer__navigation .active > a,
.site-footer__navigation .current > a,
.site-footer__legal .active > a,
.site-footer__legal .current > a {
  color: var(--amoell-text);
  text-decoration-color: var(--amoell-line);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem var(--amoell-space-m);
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-block: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
  color: var(--amoell-text-soft);
  font-size: 0.875rem;
}

.site-footer__bottom a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.system-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.system-page__main {
  padding-block: var(--amoell-space-l);
}

.system-page__brand,
.system-page__main > img {
  display: inline-block;
  margin-bottom: var(--amoell-space-l);
}

.system-page__code {
  margin: 0;
  color: var(--amoell-text-soft);
  font-size: clamp(3rem, 2rem + 8vw, 10rem);
  line-height: 1;
}

.offline-form {
  display: grid;
  max-width: 28rem;
  gap: var(--amoell-space-s);
  margin-top: var(--amoell-space-m);
}

.offline-form div {
  display: grid;
  gap: 0.35rem;
}

.offline-form input {
  width: 100%;
  padding-inline: 0.75rem;
  border: 1px solid var(--amoell-line);
  border-radius: 2px;
  background: var(--amoell-card);
  color: var(--amoell-text);
}

.offline-form button {
  width: fit-content;
  padding-inline: 1.25rem;
  border: 1px solid var(--amoell-text);
  border-radius: 2px;
  background: var(--amoell-text);
  color: var(--amoell-bg);
  cursor: pointer;
}

.component-main {
  padding-block: var(--amoell-space-l);
}

.site-component {
  width: min(100% - (2 * var(--amoell-gutter)), var(--amoell-container));
  min-width: 0;
  margin-inline: auto;
}

body:has(.amoell-page) .site-main {
  padding-block: 0;
}

body:has(.amoell-page) .site-component {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.amoell-page,
.amoell-studio-attitude,
.amoell-studio-personal,
.amoell-page-hero__grid,
.amoell-page-hero__heading,
.amoell-page-hero__intro,
.amoell-page-section,
.amoell-section-intro,
.amoell-section-intro__heading,
.amoell-section-intro__body {
  min-width: 0;
}

.amoell-page {
  width: 100%;
  overflow: clip;
}

.amoell-page--works .amoell-page-hero__grid,
.amoell-page--works .amoell-works-archive > .amoell-works-archive__header,
.amoell-page--works .amoell-works-archive > .moduletable {
  width: min(100% - (2 * var(--amoell-gutter)), var(--amoell-container));
  margin-inline: auto;
}

.amoell-page--works > .amoell-works-archive {
  width: 100%;
}

.amoell-studio-attitude,
.amoell-studio-personal {
  width: 100%;
  min-width: 0;
}

.amoell-page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 68svh;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--amoell-header-height) + clamp(3rem, 6vw, 6rem)) clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page-hero--studio::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--amoell-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--amoell-line) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(4rem, 8vw, 8rem) clamp(4rem, 8vw, 8rem);
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

.amoell-page-hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
}

.amoell-page-hero__heading h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 11vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.amoell-page-hero__intro {
  max-width: 38rem;
  color: var(--amoell-text-soft);
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.4rem);
  line-height: 1.55;
}

.amoell-page-hero__intro > :last-child,
.amoell-section-intro__body > :last-child,
.amoell-studio-service__content > :last-child,
.amoell-studio-personal__content > :last-child {
  margin-bottom: 0;
}

.amoell-page-hero__meta {
  display: block;
  margin-bottom: var(--amoell-space-s);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-page-section {
  padding-block: var(--amoell-space-section);
  border-bottom: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page-section--surface {
  background: var(--amoell-surface);
}

.amoell-page-section > .amoell-container > * {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.amoell-section-intro {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  width: 100%;
}

.amoell-section-intro__heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.35rem, 9vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.amoell-section-intro__body {
  max-width: 36rem;
  color: var(--amoell-text-soft);
}

.amoell-principles,
.amoell-process,
.amoell-studio-services {
  display: grid;
  gap: var(--amoell-space-l);
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.amoell-principle,
.amoell-process__step {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
}

.amoell-principle__number,
.amoell-process__number,
.amoell-studio-service__number {
  display: block;
  margin-bottom: var(--amoell-space-m);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.amoell-principle__title,
.amoell-studio-service__title {
  margin-bottom: var(--amoell-space-s);
}

.amoell-principle p,
.amoell-process__step p,
.amoell-studio-service__content {
  color: var(--amoell-text-soft);
}

.amoell-studio-services {
  display: block;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.amoell-studio-services__item {
  margin: 0;
  padding: 0;
}

.amoell-studio-service {
  display: grid;
  gap: var(--amoell-space-s);
  min-width: 0;
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--amoell-line);
}

.amoell-studio-services__item:last-child .amoell-studio-service {
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-studio-service__number {
  margin-bottom: 0;
}

.amoell-studio-service__title {
  margin: 0;
}

.amoell-studio-personal__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.amoell-studio-personal__portrait {
  width: 100%;
  max-width: 40rem;
  margin: 0;
}

.amoell-studio-personal__portrait img {
  display: block;
  width: 100%;
  max-height: 75svh;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--amoell-line);
  object-fit: cover;
  object-position: var(--amoell-studio-portrait-position, center);
}

.amoell-studio-personal__content {
  max-width: 48rem;
  min-width: 0;
}

.amoell-studio-personal__lead {
  color: var(--amoell-text);
  font-size: clamp(1.15rem, 1.05rem + 0.45vw, 1.4rem);
  line-height: 1.55;
}

.amoell-page--universe,
.amoell-page--universe .amoell-universe-intro,
.amoell-page--universe .amoell-universe-intro__grid,
.amoell-page--universe .amoell-universe-intro__heading,
.amoell-page--universe .amoell-universe-intro__body,
.amoell-page--universe .amoell-universe-project,
.amoell-page--universe .amoell-universe-project__grid,
.amoell-page--universe .amoell-universe-project__identity,
.amoell-page--universe .amoell-universe-project__content,
.amoell-page--universe .amoell-universe-connection,
.amoell-page--universe .amoell-universe-connection__grid,
.amoell-page--universe .amoell-universe-closing,
.amoell-page--universe .amoell-universe-closing__grid {
  min-width: 0;
}

.amoell-page--universe .amoell-universe-intro,
.amoell-page--universe .amoell-universe-project,
.amoell-page--universe .amoell-universe-connection {
  padding-block: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid var(--amoell-line);
}

.amoell-page--universe .amoell-universe-intro__grid,
.amoell-page--universe .amoell-universe-project__grid,
.amoell-page--universe .amoell-universe-connection__grid,
.amoell-page--universe .amoell-universe-closing__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  width: 100%;
}

.amoell-page--universe .amoell-universe-intro__heading h2,
.amoell-page--universe .amoell-universe-connection__heading h2,
.amoell-page--universe .amoell-universe-closing h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.amoell-page--universe .amoell-universe-intro__body,
.amoell-page--universe .amoell-universe-connection__intro {
  max-width: 38rem;
  color: var(--amoell-text-soft);
}

.amoell-page--universe .amoell-universe-intro__body > :last-child,
.amoell-page--universe .amoell-universe-project__description > :last-child,
.amoell-page--universe .amoell-universe-connection__intro > :last-child,
.amoell-page--universe .amoell-universe-closing__content > :last-child {
  margin-bottom: 0;
}

.amoell-page--universe .amoell-universe-project {
  background: var(--amoell-surface);
}

.amoell-page--universe .amoell-universe-project--alternate {
  background: linear-gradient(135deg, var(--amoell-bg), var(--amoell-surface));
}

.amoell-page--universe .amoell-universe-project__number {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.amoell-page--universe .amoell-universe-project__name {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 11vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.amoell-page--universe .amoell-universe-project__lead {
  max-width: 32rem;
  margin-top: var(--amoell-space-l);
  color: var(--amoell-text);
  font-size: clamp(1.25rem, 1.1rem + 0.65vw, 1.65rem);
  line-height: 1.45;
}

.amoell-page--universe .amoell-universe-project__description {
  max-width: 42rem;
  color: var(--amoell-text-soft);
}

.amoell-page--universe .amoell-universe-project__facts {
  display: grid;
  gap: 0;
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}

.amoell-page--universe .amoell-universe-project__fact {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-block: 1.25rem;
  border-top: 1px solid var(--amoell-line);
}

.amoell-page--universe .amoell-universe-project__fact:last-child {
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-page--universe .amoell-universe-project__fact dt,
.amoell-page--universe .amoell-universe-project__fact dd {
  margin: 0;
}

.amoell-page--universe .amoell-universe-project__fact dt {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-page--universe .amoell-universe-project__fact dd {
  color: var(--amoell-text);
  line-height: 1.5;
}

.amoell-page--universe .amoell-universe-project__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.amoell-page--universe .amoell-universe-project__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-bottom: 1px solid var(--amoell-line);
  color: var(--amoell-text);
  text-decoration: none;
}

.amoell-page--universe .amoell-universe-project__link--external::after {
  margin-left: 0.4em;
  content: "↗";
}

.amoell-page--universe .amoell-universe-project__link--case-study::after {
  margin-left: 0.4em;
  content: "→";
}

.amoell-page--universe .amoell-universe-project__link:hover {
  border-color: currentColor;
  color: var(--amoell-text-soft);
}

.amoell-page--universe .amoell-universe-project__link:focus-visible {
  border-color: transparent;
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.amoell-page--universe .amoell-universe-connection__principles {
  display: grid;
  gap: var(--amoell-space-l);
  grid-column: 1 / -1;
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.amoell-page--universe .amoell-universe-connection__principle {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
}

.amoell-page--universe .amoell-universe-connection__principle-number {
  display: block;
  margin-bottom: var(--amoell-space-l);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.amoell-page--universe .amoell-universe-connection__principle h3 {
  margin-bottom: var(--amoell-space-s);
}

.amoell-page--universe .amoell-universe-connection__principle p:last-child {
  margin-bottom: 0;
  color: var(--amoell-text-soft);
}

.amoell-page--universe .amoell-universe-closing {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--amoell-text);
  color: var(--amoell-bg);
}

.amoell-page--universe .amoell-universe-closing__content {
  max-width: 40rem;
  color: var(--amoell-bg);
}

.amoell-page--universe .amoell-universe-closing .amoell-button--dark {
  margin-top: var(--amoell-space-l);
}

/* Tatsächlich ausgelieferte redaktionelle Universum-Struktur ohne zusätzliche Grid-Wrapper. */
.amoell-page--universe > .amoell-page-hero .amoell-page-hero__grid {
  width: min(100% - (2 * var(--amoell-gutter)), var(--amoell-container));
  margin-inline: auto;
}

.amoell-page--universe > .amoell-universe-intro,
.amoell-page--universe .amoell-universe-projects > .amoell-universe-project,
.amoell-page--universe > .amoell-universe-connection,
.amoell-page--universe > .amoell-universe-closing {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--amoell-space-m);
  width: 100%;
  padding-inline: max(var(--amoell-gutter), calc((100% - var(--amoell-container)) / 2));
}

.amoell-page--universe > .amoell-universe-intro {
  row-gap: clamp(2rem, 6vw, 5rem);
}

.amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__heading,
.amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__content,
.amoell-page--universe .amoell-universe-projects > .amoell-universe-project > *,
.amoell-page--universe > .amoell-universe-connection > *,
.amoell-page--universe > .amoell-universe-closing > * {
  grid-column: 1 / -1;
  min-width: 0;
}

.amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__content {
  max-width: 38rem;
  color: var(--amoell-text-soft);
}

.amoell-page--universe .amoell-universe-projects {
  width: 100%;
}

.amoell-page--universe .amoell-universe-projects > .amoell-universe-project {
  row-gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid var(--amoell-line);
  background: var(--amoell-surface);
}

.amoell-page--universe .amoell-universe-projects > .amoell-universe-project--amplified {
  background: linear-gradient(135deg, var(--amoell-bg), var(--amoell-surface));
}

.amoell-page--universe .amoell-universe-project__index,
.amoell-page--universe .amoell-universe-principle__number {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.amoell-page--universe .amoell-universe-project__heading h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 11vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.amoell-page--universe .amoell-universe-project__lead {
  max-width: 32rem;
  color: var(--amoell-text);
  font-size: clamp(1.25rem, 1.1rem + 0.65vw, 1.65rem);
  line-height: 1.45;
}

.amoell-page--universe .amoell-universe-project__content {
  max-width: 42rem;
  color: var(--amoell-text-soft);
}

.amoell-page--universe .amoell-universe-project__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.amoell-page--universe .amoell-universe-project__links .amoell-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.amoell-page--universe > .amoell-universe-connection {
  row-gap: clamp(2rem, 6vw, 5rem);
}

.amoell-page--universe .amoell-universe-principles {
  display: grid;
  gap: var(--amoell-space-l);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.amoell-page--universe .amoell-universe-principle {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
}

.amoell-page--universe .amoell-universe-principle__number {
  display: block;
  margin-bottom: var(--amoell-space-l);
}

.amoell-page--universe > .amoell-universe-closing {
  row-gap: clamp(2rem, 6vw, 5rem);
}

.amoell-page--universe > .amoell-universe-closing .amoell-button--primary {
  border-color: var(--amoell-bg);
  background: var(--amoell-bg);
  color: var(--amoell-text);
}

.amoell-page--universe > .amoell-universe-closing .amoell-button--primary:hover {
  background: transparent;
  color: var(--amoell-bg);
}

.amoell-page--contact,
.amoell-page--contact .amoell-contact-direct,
.amoell-page--contact .amoell-contact-direct__header,
.amoell-page--contact .amoell-contact-direct__rows,
.amoell-page--contact .amoell-contact-preparation,
.amoell-page--contact .amoell-contact-preparation__header,
.amoell-page--contact .amoell-contact-preparation__items,
.amoell-page--contact .amoell-contact-statement,
.amoell-page--contact .amoell-contact-process,
.amoell-page--contact .amoell-contact-process__header,
.amoell-page--contact .amoell-contact-process__steps,
.amoell-page--contact .amoell-contact-closing,
.amoell-page--contact .amoell-contact-closing__grid {
  min-width: 0;
}

.amoell-page--contact > .amoell-page-hero .amoell-page-hero__grid {
  width: min(100% - (2 * var(--amoell-gutter)), var(--amoell-container));
  margin-inline: auto;
}

.amoell-page--contact .amoell-contact-direct,
.amoell-page--contact .amoell-contact-preparation,
.amoell-page--contact .amoell-contact-statement,
.amoell-page--contact .amoell-contact-process,
.amoell-page--contact .amoell-contact-closing {
  width: 100%;
  padding: clamp(4rem, 9vw, 8rem) max(var(--amoell-gutter), calc((100% - var(--amoell-container)) / 2));
}

.amoell-page--contact .amoell-contact-briefing {
  width: 100%;
  padding: clamp(4rem, 9vw, 8rem) max(var(--amoell-gutter), calc((100% - var(--amoell-container)) / 2));
  border-top: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page--contact .amoell-contact-direct {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: var(--amoell-text);
  color: var(--amoell-bg);
}

.amoell-page--contact .amoell-contact-direct__header,
.amoell-page--contact .amoell-contact-preparation__header,
.amoell-page--contact .amoell-contact-process__header,
.amoell-page--contact .amoell-contact-closing__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.amoell-page--contact .amoell-contact-direct__heading h2,
.amoell-page--contact .amoell-contact-briefing__heading h2,
.amoell-page--contact .amoell-contact-preparation__heading h2,
.amoell-page--contact .amoell-contact-process__heading h2,
.amoell-page--contact .amoell-contact-closing h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.amoell-page--contact .amoell-contact-direct__heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.amoell-page--contact .amoell-contact-direct__intro,
.amoell-page--contact .amoell-contact-briefing__intro,
.amoell-page--contact .amoell-contact-preparation__intro,
.amoell-page--contact .amoell-contact-process__intro,
.amoell-page--contact .amoell-contact-closing__content {
  max-width: 38rem;
}

.amoell-page--contact .amoell-contact-direct__intro,
.amoell-page--contact .amoell-contact-direct__heading .amoell-eyebrow {
  color: var(--amoell-bg);
}

.amoell-page--contact .amoell-contact-preparation__intro,
.amoell-page--contact .amoell-contact-briefing__intro,
.amoell-page--contact .amoell-contact-process__intro,
.amoell-page--contact .amoell-contact-closing__content {
  color: var(--amoell-text-soft);
}

.amoell-page--contact .amoell-contact-direct__intro > :last-child,
.amoell-page--contact .amoell-contact-briefing__intro > :last-child,
.amoell-page--contact .amoell-contact-preparation__intro > :last-child,
.amoell-page--contact .amoell-contact-process__intro > :last-child,
.amoell-page--contact .amoell-contact-closing__content > :last-child {
  margin-bottom: 0;
}

.amoell-page--contact .amoell-contact-direct__rows {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(14, 16, 18, 0.2);
  font-style: normal;
}

.amoell-page--contact .amoell-contact-direct__heading {
  display: grid;
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.amoell-page--contact .amoell-contact-direct__heading > .amoell-eyebrow {
  margin-bottom: 0;
}

.amoell-page--contact .amoell-contact-direct__heading > p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
}

.amoell-page--contact .amoell-contact-data {
  display: block;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  border-top: 1px solid rgba(14, 16, 18, 0.2);
  font-style: normal;
}

.amoell-page--contact .amoell-contact-data__item {
  display: grid;
  gap: var(--amoell-space-s);
  align-items: baseline;
  padding-block: clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(14, 16, 18, 0.2);
  color: var(--amoell-bg);
  font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.75rem);
  font-weight: 550;
  line-height: 1.2;
}

.amoell-page--contact .amoell-contact-data__label {
  color: rgba(14, 16, 18, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-page--contact .amoell-contact-data__item a,
.amoell-page--contact .amoell-contact-data__item joomla-hidden-mail,
.amoell-page--contact .amoell-contact-data__item joomla-hidden-mail a {
  width: fit-content;
  max-width: 100%;
  color: var(--amoell-bg);
  font: inherit;
  text-decoration: none;
}

.amoell-page--contact .amoell-contact-data__item a,
.amoell-page--contact .amoell-contact-data__item joomla-hidden-mail a {
  border-bottom: 1px solid rgba(14, 16, 18, 0.28);
}

.amoell-page--contact .amoell-contact-data__item:first-child joomla-hidden-mail {
  overflow-wrap: anywhere;
}

.amoell-page--contact .amoell-contact-data__item:nth-child(2) a,
.amoell-page--contact .amoell-contact-data__item:nth-child(3) a {
  white-space: nowrap;
}

.amoell-page--contact .amoell-contact-data__item a:hover,
.amoell-page--contact .amoell-contact-data__item joomla-hidden-mail a:hover {
  border-color: currentColor;
}

.amoell-page--contact .amoell-contact-data__item a:focus-visible,
.amoell-page--contact .amoell-contact-data__item joomla-hidden-mail a:focus-visible {
  border-color: transparent;
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.amoell-page--contact .amoell-contact-direct__row {
  display: grid;
  gap: var(--amoell-space-s);
  padding-block: clamp(1.75rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(14, 16, 18, 0.2);
}

.amoell-page--contact .amoell-contact-direct__label {
  color: rgba(14, 16, 18, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-page--contact .amoell-contact-direct__link,
.amoell-page--contact .amoell-contact-direct__value {
  width: fit-content;
  max-width: 100%;
  color: var(--amoell-bg);
  font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.75rem);
  font-weight: 550;
  line-height: 1.2;
  text-decoration: none;
}

.amoell-page--contact .amoell-contact-direct__row--email .amoell-contact-direct__link {
  font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.75rem);
  letter-spacing: normal;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.amoell-page--contact .amoell-contact-direct__row--phone .amoell-contact-direct__link {
  white-space: nowrap;
}

.amoell-page--contact .amoell-contact-direct__link {
  border-bottom: 1px solid rgba(14, 16, 18, 0.28);
}

.amoell-page--contact .amoell-contact-direct__link:hover {
  border-color: currentColor;
}

.amoell-page--contact .amoell-contact-direct__link:focus-visible {
  border-color: transparent;
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.amoell-page--contact .amoell-contact-preparation,
.amoell-page--contact .amoell-contact-process {
  border-top: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page--contact .amoell-contact-preparation__items,
.amoell-page--contact .amoell-contact-points,
.amoell-page--contact .amoell-contact-process__steps,
.amoell-page--contact .amoell-contact-steps {
  display: grid;
  gap: var(--amoell-space-l);
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.amoell-page--contact .amoell-contact-preparation__item,
.amoell-page--contact .amoell-contact-point,
.amoell-page--contact .amoell-contact-process__step,
.amoell-page--contact .amoell-contact-step {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
}

.amoell-page--contact .amoell-contact-preparation__number,
.amoell-page--contact .amoell-contact-point__number,
.amoell-page--contact .amoell-contact-process__number,
.amoell-page--contact .amoell-contact-step__number {
  display: block;
  margin-bottom: var(--amoell-space-l);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.amoell-page--contact .amoell-contact-preparation__item h3,
.amoell-page--contact .amoell-contact-point h3,
.amoell-page--contact .amoell-contact-process__step h3,
.amoell-page--contact .amoell-contact-step h3 {
  margin-bottom: var(--amoell-space-s);
}

.amoell-page--contact .amoell-contact-preparation__item p:last-child,
.amoell-page--contact .amoell-contact-point p:last-child,
.amoell-page--contact .amoell-contact-process__step p:last-child,
.amoell-page--contact .amoell-contact-step p:last-child {
  margin-bottom: 0;
  color: var(--amoell-text-soft);
}

.amoell-page--contact .amoell-contact-statement {
  border-block: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page--contact .amoell-contact-statement blockquote,
.amoell-page--contact .amoell-contact-statement p {
  max-width: 22ch;
  margin: 0;
  color: var(--amoell-text);
  font-size: clamp(2rem, 5.5vw, 4.75rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.amoell-page--contact .amoell-contact-closing {
  border-top: 1px solid var(--amoell-line);
  background: var(--amoell-surface);
}

.amoell-page--contact .amoell-contact-closing__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: var(--amoell-space-l);
}

.amoell-page--contact .amoell-contact-closing__links .amoell-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.amoell-page--contact .amoell-contact-briefing,
.amoell-page--contact .amoell-contact-process,
.amoell-page--contact .amoell-contact-closing {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--amoell-space-m);
  row-gap: clamp(2rem, 6vw, 5rem);
}

.amoell-page--contact .amoell-contact-briefing > *,
.amoell-page--contact .amoell-contact-process > *,
.amoell-page--contact .amoell-contact-closing > * {
  grid-column: 1 / -1;
  min-width: 0;
}

.amoell-page--contact .amoell-contact-briefing__intro,
.amoell-page--contact .amoell-contact-process__intro,
.amoell-page--contact .amoell-contact-closing__content {
  max-width: 38rem;
}

.amoell-page--legal,
.amoell-page--legal .amoell-legal-hero,
.amoell-page--legal .amoell-legal-content,
.amoell-page--legal .amoell-legal-row,
.amoell-page--legal .amoell-legal-heading,
.amoell-page--legal .amoell-legal-copy,
.amoell-page--legal .amoell-legal-contact {
  min-width: 0;
}

.amoell-page--legal .amoell-legal-hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: min(42svh, 27rem);
  overflow: hidden;
  padding-top: calc(var(--amoell-header-height) + clamp(7rem, 8vw, 9rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page--legal .amoell-legal-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--amoell-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--amoell-line) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(4rem, 8vw, 8rem) clamp(4rem, 8vw, 8rem);
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.amoell-page--legal .amoell-legal-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.amoell-page--legal .amoell-legal-intro {
  max-width: 42rem;
  margin: var(--amoell-space-m) 0 0;
  color: var(--amoell-text-soft);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.6;
}

.amoell-page--legal .amoell-legal-content {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--amoell-bg);
}

.amoell-page--legal .amoell-legal-row {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--amoell-line);
}

.amoell-page--legal .amoell-legal-row:last-of-type {
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-page--legal .amoell-legal-heading h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.35rem, 1.1rem + 0.65vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.amoell-page--legal .amoell-legal-copy {
  max-width: 48rem;
  color: var(--amoell-text-soft);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.amoell-page--legal .amoell-legal-copy > :first-child {
  margin-top: 0;
}

.amoell-page--legal .amoell-legal-copy > :last-child {
  margin-bottom: 0;
}

.amoell-page--legal .amoell-legal-address {
  margin: 0;
  color: inherit;
  font-style: normal;
}

.amoell-page--legal .amoell-legal-address span {
  display: block;
}

.amoell-page--legal .amoell-legal-contact {
  display: grid;
  grid-template-columns: minmax(5.5rem, auto) minmax(0, 1fr);
  gap: 0.75rem var(--amoell-space-m);
  margin: 0;
}

.amoell-page--legal .amoell-legal-contact dt,
.amoell-page--legal .amoell-legal-contact dd {
  min-width: 0;
  margin: 0;
}

.amoell-page--legal .amoell-legal-contact dt {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amoell-page--legal .amoell-legal-copy > div {
  display: grid;
  grid-template-columns: minmax(5.5rem, auto) minmax(0, 1fr);
  gap: var(--amoell-space-m);
  align-items: baseline;
}

.amoell-page--legal .amoell-legal-copy a,
.amoell-page--legal .amoell-legal-copy joomla-hidden-mail,
.amoell-page--legal .amoell-legal-copy joomla-hidden-mail a {
  width: fit-content;
  max-width: 100%;
  color: var(--amoell-text);
  text-decoration: none;
}

.amoell-page--legal .amoell-legal-copy a,
.amoell-page--legal .amoell-legal-copy joomla-hidden-mail a {
  min-height: 2.75rem;
  border-bottom: 1px solid var(--amoell-line);
  line-height: 2.75rem;
}

.amoell-page--legal .amoell-legal-copy a[href^="tel:"] {
  white-space: nowrap;
}

.amoell-page--legal .amoell-legal-copy a:hover,
.amoell-page--legal .amoell-legal-copy joomla-hidden-mail a:hover {
  border-color: currentColor;
  color: var(--amoell-text-soft);
}

.amoell-page--legal .amoell-legal-copy a:focus-visible,
.amoell-page--legal .amoell-legal-copy joomla-hidden-mail a:focus-visible {
  border-color: transparent;
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.amoell-page--legal .amoell-legal-source {
  max-width: 48rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: var(--amoell-text-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.amoell-page--legal .amoell-legal-source a {
  color: inherit;
}

.amoell-page--privacy .amoell-legal-hero {
  min-height: 0;
  padding-top: calc(var(--amoell-header-height) + clamp(3.5rem, 5vw, 5rem));
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.amoell-page--privacy .amoell-legal-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.amoell-page--privacy .amoell-legal-intro {
  max-width: 48rem;
}

.amoell-page--privacy .amoell-legal-toc {
  border-block: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
}

.amoell-page--privacy .amoell-legal-toc > .amoell-container {
  display: grid;
}

.amoell-page--privacy .amoell-legal-toc a {
  display: flex;
  min-width: 0;
  min-height: 3.5rem;
  align-items: center;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--amoell-line);
  color: var(--amoell-text-soft);
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.amoell-page--privacy .amoell-legal-toc a:has(> .amoell-legal-toc__number) {
  display: grid;
  grid-template-columns: minmax(2rem, auto) minmax(0, 1fr);
  gap: var(--amoell-space-s);
}

.amoell-page--privacy .amoell-legal-toc a:last-child {
  border-bottom: 0;
}

.amoell-page--privacy .amoell-legal-toc a:hover {
  color: var(--amoell-text);
}

.amoell-page--privacy .amoell-legal-toc a:focus-visible {
  outline: 2px solid var(--amoell-text);
  outline-offset: -2px;
}

.amoell-page--privacy .amoell-legal-toc__number {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.amoell-page--privacy .amoell-legal-toc__label {
  min-width: 0;
}

.amoell-page--privacy .amoell-privacy-section[id] {
  scroll-margin-top: calc(var(--amoell-header-height) + 2rem);
}

.amoell-page--privacy .amoell-legal-copy {
  max-width: 72ch;
}

.amoell-page--privacy .amoell-legal-copy h3 {
  margin: clamp(2.25rem, 5vw, 3.5rem) 0 var(--amoell-space-s);
  color: var(--amoell-text);
  font-size: clamp(1.25rem, 1.1rem + 0.45vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.amoell-page--privacy .amoell-legal-copy h4 {
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 0.5rem;
  color: var(--amoell-text);
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.amoell-page--privacy .amoell-legal-copy p {
  margin-block: 0 1.1em;
}

.amoell-page--privacy .amoell-legal-copy ul,
.amoell-page--privacy .amoell-legal-copy ol {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
}

.amoell-page--privacy .amoell-legal-copy li {
  margin-bottom: 0.55rem;
  padding-left: 0.2rem;
}

.amoell-page--privacy .amoell-legal-copy > div {
  display: block;
}

.amoell-page--privacy .amoell-legal-contact {
  display: grid;
}

.amoell-page--privacy .amoell-legal-notice {
  display: block;
  margin-block: clamp(2rem, 5vw, 3.5rem);
  padding-left: clamp(1.25rem, 3vw, 2rem);
  border-left: 1px solid var(--amoell-line);
  color: var(--amoell-text-soft);
  line-height: 1.65;
  text-transform: none;
}

.amoell-page--privacy .amoell-legal-notice > :last-child {
  margin-bottom: 0;
}

.amoell-page--privacy .amoell-legal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
  color: var(--amoell-text-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.amoell-page--privacy .amoell-legal-meta p {
  margin: 0;
}

.amoell-page--privacy .amoell-legal-meta a {
  color: inherit;
}

.amoell-page--privacy .amoell-legal-meta a:hover {
  color: var(--amoell-text);
}

.amoell-page--privacy .amoell-legal-meta a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

body:has(.amoell-project) .site-main {
  overflow: clip;
  padding-block: 0;
}

body:has(.amoell-project) .site-component {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.com-content-article:has(> .com-content-article__body > .amoell-project) {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--amoell-space-m);
  width: min(100% - (2 * var(--amoell-gutter)), var(--amoell-container));
  margin-inline: auto;
}

.com-content-article:has(> .com-content-article__body > .amoell-project) > .com-content-article__body,
.com-content-article:has(> .com-content-article__body > .amoell-project) .amoell-project {
  display: contents;
}

.com-content-article:has(> .com-content-article__body > .amoell-project) > .item-image {
  order: 30;
  grid-column: 1 / -1;
  float: none;
  width: 100%;
  margin: clamp(3rem, 7vw, 7rem) 0;
}

.com-content-article:has(> .com-content-article__body > .amoell-project) > .item-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.amoell-project > * {
  min-width: 0;
}

.amoell-project > .amoell-project-hero {
  order: 10;
  grid-column: 1 / -1;
}

.amoell-project-hero {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: end;
  padding-top: calc(var(--amoell-header-height) + clamp(5rem, 12vw, 8rem));
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  border-bottom: 0;
}

.amoell-project-hero__heading,
.amoell-project-hero__intro {
  min-width: 0;
}

.amoell-project-hero h1 {
  max-width: 11ch;
  margin: 0 0 var(--amoell-space-m);
  font-size: clamp(3.75rem, 15vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.amoell-project-lead {
  max-width: 44rem;
  color: var(--amoell-text);
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.5rem);
  line-height: 1.5;
}

.amoell-project-hero__intro {
  max-width: 38rem;
  color: var(--amoell-text-soft);
}

.amoell-project-hero__intro > :last-child {
  margin-bottom: 0;
}

.amoell-project > .amoell-project-facts__item {
  order: 20;
  grid-column: 1 / -1;
}

.amoell-project-facts__item {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding-block: clamp(1.75rem, 5vw, 3rem);
  border-block: 1px solid var(--amoell-line);
}

.amoell-project-facts__item + .amoell-project-facts__item {
  border-top: 0;
}

.amoell-project-facts__item dt,
.amoell-project-fact__label {
  margin: 0;
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-project-facts__item dd,
.amoell-project-fact__value {
  margin: 0;
  color: var(--amoell-text);
  line-height: 1.5;
}

.amoell-project > .amoell-project-section {
  order: 40;
  grid-column: 1 / -1;
}

.amoell-project > .amoell-project-statement {
  order: 50;
  grid-column: 1 / -1;
}

.amoell-project > .amoell-project-section:nth-of-type(2) {
  order: 60;
}

.amoell-project > .amoell-project-principles {
  order: 70;
  grid-column: 1 / -1;
}

.amoell-project > .amoell-project-section--implementation {
  order: 80;
}

.amoell-project > .amoell-project-result {
  order: 90;
  grid-column: 1 / -1;
}

.amoell-project-section {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(4rem, 8vw, 8rem);
  border-top: 0;
}

.amoell-project-section__heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.amoell-project-section__content {
  max-width: 42rem;
  color: var(--amoell-text-soft);
}

.amoell-project-section__content > :last-child {
  margin-bottom: 0;
}

.amoell-project-section--challenge .amoell-project-section__content {
  max-width: 38rem;
}

.amoell-project-section--system .amoell-project-section__heading {
  max-width: 58rem;
}

.amoell-project-statement {
  margin: 0;
  padding-block: clamp(4rem, 9vw, 8rem);
  border-block: 0;
  color: var(--amoell-text);
  font-size: clamp(2rem, 5.5vw, 4.75rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.amoell-project-statement p {
  max-width: 22ch;
  margin: 0;
}

.amoell-project-principles {
  display: grid;
  gap: var(--amoell-space-l);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.amoell-project-principle {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
}

.amoell-project-principle__number {
  margin-bottom: var(--amoell-space-l);
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.amoell-project-principle h3 {
  margin-bottom: var(--amoell-space-s);
}

.amoell-project-principle p:last-child {
  margin-bottom: 0;
  color: var(--amoell-text-soft);
}

.amoell-project-section--implementation {
  margin-block: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem);
  border: 0;
  background: transparent;
}

.amoell-project-disciplines {
  display: grid;
  gap: var(--amoell-space-l);
  grid-column: 1 / -1;
}

.amoell-project-discipline {
  min-width: 0;
  padding-top: var(--amoell-space-m);
  border-top: 1px solid var(--amoell-line);
}

.amoell-project-discipline h3 {
  margin-bottom: var(--amoell-space-s);
}

.amoell-project-discipline p:last-child {
  margin-bottom: 0;
  color: var(--amoell-text-soft);
}

.amoell-project-result {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: clamp(3rem, 7vw, 7rem);
  padding: clamp(3rem, 7vw, 6rem);
  background: transparent;
  color: var(--amoell-bg);
}

.amoell-project-result .amoell-eyebrow,
.amoell-project-result__content {
  color: var(--amoell-bg);
}

.amoell-project-result h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.amoell-project-result__content {
  max-width: 40rem;
}

.amoell-project-result .amoell-button--primary {
  border-color: var(--amoell-bg);
  background: var(--amoell-bg);
  color: var(--amoell-text);
}

.amoell-project-result .amoell-button--primary:hover {
  background: transparent;
  color: var(--amoell-bg);
}

.amoell-project-result .amoell-button--primary:focus-visible {
  outline-color: var(--amoell-bg);
}

.amoell-project-hero,
.amoell-project-section,
.amoell-project-statement,
.amoell-project-principles,
.amoell-project-section--implementation,
.amoell-project-result {
  position: relative;
  isolation: isolate;
}

.amoell-project-hero::before,
.amoell-project-section::before,
.amoell-project-statement::before,
.amoell-project-principles::before,
.amoell-project-result::before {
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  border-top: 1px solid var(--amoell-line);
  background: var(--amoell-bg);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.amoell-project-hero::before {
  border-top: 0;
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-project-statement::before {
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-project-section--implementation::before {
  background: var(--amoell-surface);
}

.amoell-project-result::before {
  background: var(--amoell-text);
}

@media (min-width: 30rem) {
  .amoell-page--privacy .amoell-legal-toc > .amoell-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--amoell-space-m);
  }

  .amoell-project > .amoell-project-facts__item {
    grid-column: span 6;
  }

  .amoell-project-facts__item + .amoell-project-facts__item {
    border-top: 1px solid var(--amoell-line);
  }

  .amoell-project-facts__item:nth-child(n + 4) {
    border-top: 0;
  }
}

.amoell-works-archive {
  margin: 0;
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
  list-style: none;
}

.amoell-works-archive__item {
  margin: 0;
  padding: 0;
}

.amoell-works-project {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  min-width: 0;
  padding-block: clamp(3.5rem, 3rem + 5vw, 7rem);
  border-top: 1px solid var(--amoell-line);
}

.amoell-works-archive__item:last-child .amoell-works-project {
  border-bottom: 1px solid var(--amoell-line);
}

.amoell-works-project__image-link,
.amoell-works-project__media,
.amoell-works-project__content {
  min-width: 0;
}

.amoell-works-project__image-link {
  display: block;
  align-self: start;
  text-decoration: none;
}

.amoell-works-project__media {
  display: grid;
  min-height: clamp(14rem, 60vw, 28rem);
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--amoell-card);
}

.amoell-works-project__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.12);
  transition: filter 320ms ease, opacity 320ms ease;
}

.amoell-works-project__media.is-fallback {
  border: 1px solid var(--amoell-line);
}

.amoell-works-project__fallback {
  width: clamp(3rem, 10vw, 7rem);
  aspect-ratio: 1;
  border: 1px solid var(--amoell-line);
}

.amoell-works-project__image-link:hover img,
.amoell-works-project__image-link:focus-visible img {
  filter: grayscale(0);
  opacity: 0.92;
}

.amoell-works-project__content {
  align-self: center;
  max-width: 40rem;
}

.amoell-works-project__number,
.amoell-works-project__meta {
  color: var(--amoell-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amoell-works-project__number {
  display: block;
  margin-bottom: var(--amoell-space-m);
  font-variant-numeric: tabular-nums;
}

.amoell-works-project__title {
  margin-bottom: var(--amoell-space-s);
  font-size: clamp(2rem, 1.55rem + 2vw, 3.75rem);
  line-height: 1;
}

.amoell-works-project__title a {
  text-decoration-color: transparent;
}

.amoell-works-project__title a:hover,
.amoell-works-project__title a:focus-visible {
  text-decoration-color: var(--amoell-line);
}

.amoell-works-project__meta {
  margin-bottom: var(--amoell-space-m);
}

.amoell-works-project__intro {
  color: var(--amoell-text-soft);
}

.amoell-works-project__intro > :last-child {
  margin-bottom: 0;
}

.amoell-works-project__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.35em;
  margin-top: var(--amoell-space-m);
  color: var(--amoell-text);
  font-weight: 600;
  text-decoration-color: var(--amoell-line);
  transition: color 240ms ease, text-decoration-color 240ms ease;
}

.amoell-works-project__link:hover,
.amoell-works-project__link:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

@media (min-width: 48rem) {
  :root {
    --amoell-header-height: 5.5rem;
  }

  .js .menu-toggle {
    display: none;
  }

  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-brand img {
    width: 190px;
    max-width: 200px;
    height: auto;
  }

  .page-home .site-header:not(.is-scrolled) .site-brand {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .page-home .site-header.is-scrolled .site-brand,
  .page-internal .site-brand {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .page-home .site-brand {
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-navigation,
  .js .site-navigation {
    position: static;
    display: block;
    width: auto;
    margin-left: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .site-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 0.6rem + 1.2vw, 2.5rem);
  }

  .site-navigation a {
    min-height: 3rem;
    font-size: clamp(0.88rem, 0.82rem + 0.16vw, 0.98rem);
    letter-spacing: 0.01em;
  }

  .header-actions {
    display: block;
  }

  .amoell-hero__signet {
    display: block;
  }

  .amoell-service {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: var(--amoell-space-m);
  }

  .amoell-service__number {
    margin-bottom: 0;
    padding-top: 0.45rem;
  }

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

  .amoell-universe-item {
    grid-template-columns: 4rem minmax(0, 1fr);
    column-gap: var(--amoell-space-m);
  }

  .amoell-universe-item__number {
    grid-column: 1;
    grid-row: 1;
  }

  .amoell-universe-item__identity {
    grid-column: 2;
    grid-row: 1;
  }

  .amoell-universe-item__description {
    grid-column: 2;
    grid-row: 2;
  }

  .amoell-universe-item__action {
    grid-column: 2;
    grid-row: 3;
  }

  .amoell-about__grid {
    grid-template-columns: minmax(0, 6fr) minmax(16rem, 4fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }

  .amoell-about__portrait img {
    max-height: none;
  }

  .amoell-contact-cta {
    min-height: clamp(32rem, 65svh, 46rem);
  }

  .amoell-contact-cta__grid {
    grid-template-columns: minmax(0, 8fr) minmax(16rem, 4fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
  }

  .amoell-contact-cta__action {
    justify-self: end;
  }

  .amoell-contact-cta__content h2 {
    font-size: clamp(4rem, 7vw, 7rem);
  }

  .amoell-contact-cta__mark {
    right: max(var(--amoell-gutter), calc((100vw - var(--amoell-container)) / 2 + var(--amoell-gutter)));
    bottom: clamp(2rem, 5vw, 5rem);
    width: clamp(24rem, 38vw, 42rem);
    opacity: 0.08;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .amoell-principles,
  .amoell-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-studio-service {
    grid-template-columns: 4rem minmax(0, 1fr);
    column-gap: var(--amoell-space-m);
  }

  .amoell-studio-service__number {
    grid-column: 1;
    grid-row: 1;
  }

  .amoell-studio-service__title {
    grid-column: 2;
    grid-row: 1;
  }

  .amoell-studio-service__content {
    grid-column: 2;
    grid-row: 2;
  }

  .amoell-works-project {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .amoell-works-project__image-link {
    grid-column: 1;
    grid-row: 1;
  }

  .amoell-works-project__content {
    grid-column: 2;
    grid-row: 1;
  }

  .amoell-works-archive__item:nth-child(even) .amoell-works-project__image-link {
    grid-column: 2;
  }

  .amoell-works-archive__item:nth-child(even) .amoell-works-project__content {
    grid-column: 1;
  }

  .amoell-project-hero,
  .amoell-project-section,
  .amoell-project-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-project-principles,
  .amoell-project-disciplines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .amoell-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--amoell-space-m);
  }

  .amoell-hero__content {
    grid-column: 1 / span 8;
  }

  .amoell-about__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
    gap: clamp(4rem, 8vw, 9rem);
  }

  .amoell-about__content h2 {
    font-size: clamp(3rem, 4.2vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (min-width: 62.5625rem) {
  .amoell-page > .amoell-page-hero {
    min-height: clamp(42rem, 72svh, 50rem);
    padding-top: clamp(6rem, 8vw, 8rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
  }
}

@media (min-width: 48rem) {
  .amoell-page--privacy .amoell-legal-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .amoell-page--contact .amoell-contact-direct__header,
  .amoell-page--contact .amoell-contact-preparation__header,
  .amoell-page--contact .amoell-contact-process__header,
  .amoell-page--contact .amoell-contact-closing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-page--contact .amoell-contact-direct__row {
    grid-template-columns: minmax(8rem, 4fr) minmax(0, 8fr);
    align-items: baseline;
    column-gap: var(--amoell-space-m);
  }

  .amoell-page--contact .amoell-contact-direct__heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-page--contact .amoell-contact-direct__heading > .amoell-eyebrow {
    grid-column: 1 / -1;
  }

  .amoell-page--contact .amoell-contact-direct__heading > h2 {
    grid-column: 1;
  }

  .amoell-page--contact .amoell-contact-direct__heading > p:last-child {
    grid-column: 2;
    align-self: end;
  }

  .amoell-page--contact .amoell-contact-data__item {
    grid-template-columns: minmax(8rem, 4fr) minmax(0, 8fr);
    column-gap: var(--amoell-space-m);
  }

  .amoell-page--contact .amoell-contact-briefing > .amoell-contact-briefing__heading,
  .amoell-page--contact .amoell-contact-process > .amoell-contact-process__heading,
  .amoell-page--contact .amoell-contact-closing > :first-child {
    grid-column: 1 / span 6;
  }

  .amoell-page--contact .amoell-contact-briefing > .amoell-contact-briefing__intro,
  .amoell-page--contact .amoell-contact-process > .amoell-contact-process__intro,
  .amoell-page--contact .amoell-contact-closing > .amoell-contact-closing__content {
    grid-column: 7 / -1;
  }

  .amoell-page--contact .amoell-contact-briefing > .amoell-contact-points,
  .amoell-page--contact .amoell-contact-process > .amoell-contact-steps {
    grid-column: 1 / -1;
  }

  .amoell-page--contact .amoell-contact-preparation__items,
  .amoell-page--contact .amoell-contact-points,
  .amoell-page--contact .amoell-contact-process__steps,
  .amoell-page--contact .amoell-contact-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-page--universe .amoell-universe-intro__grid,
  .amoell-page--universe .amoell-universe-project__grid,
  .amoell-page--universe .amoell-universe-connection__grid,
  .amoell-page--universe .amoell-universe-closing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .amoell-page--universe .amoell-universe-project__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-page--universe .amoell-universe-project__fact:nth-child(even) {
    padding-left: var(--amoell-space-m);
    border-left: 1px solid var(--amoell-line);
  }

  .amoell-page--universe .amoell-universe-connection__principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__heading,
  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project > .amoell-universe-project__heading,
  .amoell-page--universe > .amoell-universe-connection > .amoell-universe-connection__heading,
  .amoell-page--universe > .amoell-universe-closing > :first-child {
    grid-column: 1 / span 6;
  }

  .amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__content,
  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project > .amoell-universe-project__content,
  .amoell-page--universe > .amoell-universe-connection > .amoell-universe-connection__intro,
  .amoell-page--universe > .amoell-universe-closing > .amoell-universe-closing__content {
    grid-column: 7 / -1;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project > .amoell-universe-project__index,
  .amoell-page--universe > .amoell-universe-connection > .amoell-universe-principles {
    grid-column: 1 / -1;
  }

  .amoell-page--universe .amoell-universe-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 56.25rem) {

  .amoell-page--privacy .amoell-legal-toc > .amoell-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .amoell-page--privacy .amoell-legal-toc a {
    border-bottom: 0;
  }

  .amoell-page--privacy .amoell-legal-toc a + a {
    padding-left: var(--amoell-space-m);
    border-left: 1px solid var(--amoell-line);
  }

  .amoell-page--legal .amoell-legal-row {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    column-gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
  }

  .amoell-page--legal .amoell-legal-copy {
    justify-self: end;
    width: 100%;
  }

  .amoell-page-hero__grid {
    grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
  }

  .amoell-page--universe .amoell-page-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  }

  .amoell-page--contact .amoell-page-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  }

  .amoell-page-hero__heading h1 {
    font-size: clamp(4rem, 7vw, 7rem);
  }

  .amoell-page-hero__intro {
    justify-self: end;
  }

  .amoell-section-intro {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
  }

  .amoell-section-intro__heading h2 {
    font-size: clamp(3rem, 4.2vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .amoell-section-intro__body {
    justify-self: end;
  }

  .amoell-studio-personal__grid {
    grid-template-columns: minmax(0, 5fr) minmax(2rem, 1fr) minmax(0, 6fr);
    gap: 0;
  }

  .amoell-studio-personal__portrait {
    grid-column: 1;
  }

  .amoell-studio-personal__portrait img {
    max-height: none;
  }

  .amoell-studio-personal__content {
    grid-column: 3;
  }

  .amoell-services-intro__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
  }

  .amoell-services-intro__heading,
  .amoell-services-intro__body {
    align-self: end;
  }

  .amoell-services-intro__heading h2 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(3rem, 4.2vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .amoell-services-intro__body {
    max-width: 34rem;
    justify-self: end;
  }

  .amoell-work-intro__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
  }

  .amoell-work-intro__heading,
  .amoell-work-intro__body {
    align-self: end;
  }

  .amoell-work-intro__heading h2 {
    font-size: clamp(3rem, 4.2vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .amoell-work-intro__body {
    justify-self: end;
  }

  .amoell-universe-intro__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
  }

  .amoell-universe-intro__heading,
  .amoell-universe-intro__body {
    align-self: end;
  }

  .amoell-universe-intro__heading h2 {
    font-size: clamp(3rem, 4.2vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .amoell-universe-intro__body {
    justify-self: end;
  }
}

@media (min-width: 68.75rem) {

  .amoell-page--contact .amoell-contact-direct__header,
  .amoell-page--contact .amoell-contact-preparation__header,
  .amoell-page--contact .amoell-contact-process__header,
  .amoell-page--contact .amoell-contact-closing__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
    gap: clamp(4rem, 8vw, 9rem);
  }

  .amoell-page--contact .amoell-contact-direct__intro,
  .amoell-page--contact .amoell-contact-preparation__intro,
  .amoell-page--contact .amoell-contact-process__intro,
  .amoell-page--contact .amoell-contact-closing__content {
    justify-self: end;
  }

  .amoell-page--contact .amoell-contact-direct__row {
    grid-template-columns: minmax(10rem, 3fr) minmax(0, 9fr);
  }

  .amoell-page--contact .amoell-contact-direct__heading {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
    column-gap: clamp(4rem, 8vw, 9rem);
    row-gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .amoell-page--contact .amoell-contact-data__item {
    grid-template-columns: minmax(10rem, 3fr) minmax(0, 9fr);
  }

  .amoell-page--contact .amoell-contact-briefing > .amoell-contact-briefing__heading,
  .amoell-page--contact .amoell-contact-process > .amoell-contact-process__heading,
  .amoell-page--contact .amoell-contact-closing > :first-child {
    grid-column: 1 / span 7;
  }

  .amoell-page--contact .amoell-contact-briefing > .amoell-contact-briefing__intro,
  .amoell-page--contact .amoell-contact-process > .amoell-contact-process__intro,
  .amoell-page--contact .amoell-contact-closing > .amoell-contact-closing__content {
    grid-column: 8 / -1;
    justify-self: end;
  }

  .amoell-page--contact .amoell-contact-preparation__items,
  .amoell-page--contact .amoell-contact-points,
  .amoell-page--contact .amoell-contact-process__steps,
  .amoell-page--contact .amoell-contact-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amoell-page--universe .amoell-universe-intro__grid,
  .amoell-page--universe .amoell-universe-connection__grid,
  .amoell-page--universe .amoell-universe-closing__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
    gap: clamp(4rem, 8vw, 9rem);
  }

  .amoell-page--universe .amoell-universe-intro__body,
  .amoell-page--universe .amoell-universe-connection__intro,
  .amoell-page--universe .amoell-universe-closing__content {
    justify-self: end;
  }

  .amoell-page--universe .amoell-universe-project__grid {
    grid-template-columns: minmax(18rem, 5fr) minmax(0, 7fr);
    gap: clamp(4rem, 8vw, 9rem);
  }

  .amoell-page--universe .amoell-universe-project--reverse .amoell-universe-project__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  }

  .amoell-page--universe .amoell-universe-project--reverse .amoell-universe-project__identity {
    grid-column: 2;
    grid-row: 1;
  }

  .amoell-page--universe .amoell-universe-project--reverse .amoell-universe-project__content {
    grid-column: 1;
    grid-row: 1;
  }

  .amoell-page--universe .amoell-universe-project__name {
    font-size: clamp(4rem, 5vw, 6rem);
  }

  .amoell-page--universe .amoell-universe-connection__principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__heading,
  .amoell-page--universe > .amoell-universe-connection > .amoell-universe-connection__heading,
  .amoell-page--universe > .amoell-universe-closing > :first-child {
    grid-column: 1 / span 7;
  }

  .amoell-page--universe > .amoell-universe-intro > .amoell-universe-intro__content,
  .amoell-page--universe > .amoell-universe-connection > .amoell-universe-connection__intro,
  .amoell-page--universe > .amoell-universe-closing > .amoell-universe-closing__content {
    grid-column: 8 / -1;
    justify-self: end;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project > .amoell-universe-project__index {
    grid-column: 1;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project > .amoell-universe-project__heading {
    grid-column: 2 / span 4;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project > .amoell-universe-project__content {
    grid-column: 6 / -1;
    justify-self: end;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project--amplified > .amoell-universe-project__index {
    grid-column: 8;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project--amplified > .amoell-universe-project__heading {
    grid-column: 9 / -1;
  }

  .amoell-page--universe .amoell-universe-projects > .amoell-universe-project--amplified > .amoell-universe-project__content {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
    justify-self: start;
  }

  .amoell-page--universe .amoell-universe-project__heading h2 {
    font-size: clamp(4rem, 5vw, 6rem);
  }

  .amoell-page--universe > .amoell-universe-connection > .amoell-universe-principles {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amoell-principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amoell-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .amoell-studio-service {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--amoell-space-m);
    align-items: start;
  }

  .amoell-studio-service__number {
    grid-column: 1;
    grid-row: 1;
  }

  .amoell-studio-service__title {
    grid-column: 2 / span 3;
    grid-row: 1;
  }

  .amoell-studio-service__content {
    grid-column: 5 / -1;
    grid-row: 1;
  }

  .amoell-works-project {
    grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr);
    gap: clamp(4rem, 7vw, 8rem);
  }

  .amoell-works-archive__item:nth-child(even) .amoell-works-project {
    grid-template-columns: minmax(20rem, 5fr) minmax(0, 7fr);
  }

  .amoell-project > .amoell-project-facts__item {
    grid-column: span 3;
  }

  .amoell-project-facts__item:nth-child(n) {
    border-block: 1px solid var(--amoell-line);
  }

  .amoell-project-hero {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-top: calc(var(--amoell-header-height) + clamp(7rem, 8vw, 10rem));
    padding-bottom: clamp(4rem, 6vw, 6rem);
  }

  .amoell-project-hero h1 {
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.065em;
  }

  .amoell-project-section {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
    gap: clamp(4rem, 8vw, 9rem);
  }

  .amoell-project-section__content {
    justify-self: end;
  }

  .amoell-project-section--system {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .amoell-project-section--system .amoell-project-section__heading {
    grid-column: 2 / span 6;
  }

  .amoell-project-section--system .amoell-project-section__content {
    grid-column: 8 / -1;
  }

  .amoell-project-principles,
  .amoell-project-disciplines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amoell-project-section--implementation {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  }

  .amoell-project-result {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
    align-items: end;
  }

  .amoell-statement__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .amoell-statement__heading {
    grid-column: 1 / span 8;
  }

  .amoell-statement__body {
    grid-column: 9 / -1;
    align-self: end;
  }

  .amoell-services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--amoell-space-l);
  }

  .amoell-service {
    display: block;
  }

  .amoell-service__number {
    margin-bottom: var(--amoell-space-l);
    padding-top: 0;
  }

  .amoell-work-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--amoell-space-m);
  }

  .amoell-work-card--wide {
    grid-column: span 8;
  }

  .amoell-work-card--compact {
    grid-column: span 4;
  }

  .amoell-work-card--wide .amoell-work-card__media {
    aspect-ratio: 8 / 5;
  }

  .amoell-work-card--compact .amoell-work-card__media {
    aspect-ratio: 4 / 5;
  }

  .amoell-universe-item {
    grid-template-columns:
      minmax(2rem, 1fr)
      minmax(0, 4fr)
      minmax(18rem, 5fr)
      minmax(10rem, 2fr);
    min-height: clamp(10rem, 12vw, 12rem);
    align-items: center;
    gap: var(--amoell-space-m);
    padding-block: var(--amoell-space-l);
  }

  .amoell-universe-item__number,
  .amoell-universe-item__identity,
  .amoell-universe-item__description,
  .amoell-universe-item__action {
    grid-column: auto;
    grid-row: auto;
  }

  .amoell-universe-item__action {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 43.75rem) {
  .amoell-studio-services {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .amoell-works-archive {
    padding-top: 3rem;
  }
}

@media (max-width: 47.999rem) {
  .amoell-hero {
    min-height: calc(100svh - var(--amoell-header-height));
    align-items: start;
    padding-top: calc(var(--amoell-header-height) + clamp(2rem, 7svh, 4rem));
    padding-bottom: clamp(2.5rem, 8svh, 4.5rem);
  }

  .amoell-hero__signet {
    display: none;
  }

  .js .site-navigation {
    inset: var(--amoell-header-height) 0 0;
    height: calc(100dvh - var(--amoell-header-height));
    padding: clamp(1.5rem, 5vh, 3rem) var(--amoell-gutter);
    background: rgba(14, 16, 18, 0.98);
  }

  .site-navigation__inner {
    width: min(100%, 32rem);
    margin-inline: auto;
  }

  .site-navigation ul {
    display: grid;
    gap: 0.5rem;
  }

  .site-navigation__inner > ul > li,
  .site-navigation__inner .mod-menu > li {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    font-weight: 500;
    line-height: 1.2;
  }

  .site-navigation__inner > ul > li > a,
  .site-navigation__inner .mod-menu > li > a,
  .site-navigation__inner > ul > li.active > a,
  .site-navigation__inner > ul > li.current > a,
  .site-navigation__inner .mod-menu > li.active > a,
  .site-navigation__inner .mod-menu > li.current > a,
  .site-navigation__inner > ul > li > a[aria-current],
  .site-navigation__inner .mod-menu > li > a[aria-current] {
    width: fit-content;
    min-height: 3.5rem;
    padding-block: 0.55rem;
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    font-weight: 500;
    line-height: 1.2;
  }

  .site-navigation a::after {
    right: auto;
    width: 0;
  }

  .site-navigation a:hover::after,
  .site-navigation a:focus-visible::after {
    width: 1.5rem;
  }

  .site-navigation .active > a::after,
  .site-navigation .current > a::after {
    width: 2rem;
  }
}

@media (max-width: 30rem) {
  .amoell-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .amoell-button {
    width: 100%;
    white-space: nowrap;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .amoell-button:hover {
    transform: translateY(-2px);
  }

  .amoell-button--dark:hover {
    transform: none;
  }

  .amoell-service:hover {
    border-color: var(--amoell-text-soft);
  }

  .amoell-service:hover .amoell-service__content {
    transform: translateY(-2px);
  }

  .amoell-work-card:hover .amoell-work-card__media img,
  .amoell-work-card:focus-within .amoell-work-card__media img {
    transform: scale(1.02);
  }

  .amoell-universe-item:hover .amoell-universe-item__link,
  .amoell-universe-item:focus-within .amoell-universe-item__link {
    transform: translateX(3px);
  }
}

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

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

  .amoell-hero::before {
    animation: none;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    transition: none;
  }

  .page-home .site-brand {
    transition: none;
  }

  .amoell-work-card__media::after,
  .amoell-work-card__media img,
  .amoell-work-card__content {
    transition: none;
  }

  .amoell-universe-item,
  .amoell-universe-item__link {
    transition: none;
  }
}
