@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond/cormorant-garamond-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --color-violet: #7c3aed;
  --color-violet-hover: #5b21b6;
  --color-violet-deep: #1a0533;
  --color-success: #22c55e;
  --color-cream: #f8f6f2;
  --color-white: #ffffff;
  --color-ink: #12100e;
  --color-ink-secondary: #2a2520;
  --color-ink-muted: #7a746e;
  --color-ink-subtle: #a09890;
  --color-border: rgba(18, 16, 14, 0.09);
  --color-border-strong: rgba(18, 16, 14, 0.18);
  --color-surface: rgba(255, 255, 255, 0.78);
  --color-surface-soft: rgba(124, 58, 237, 0.08);
  --shadow-soft: 0 24px 60px rgba(26, 5, 51, 0.08);
  --shadow-card: 0 18px 50px rgba(26, 5, 51, 0.12);
  --shadow-deep: 0 28px 80px rgba(8, 4, 18, 0.26);
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell-width: 1280px;
  --shell-gutter: clamp(20px, 4vw, 40px);
  --section-gap: clamp(72px, 9vw, 110px);
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-nav-open="true"] {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
}

.inline-icon--check {
  --inline-icon-size: 1rem;
  --inline-icon-color: var(--color-success);
  position: relative;
  width: 1.35rem;
  height: 1.55em;
  overflow: hidden;
  color: transparent;
  font-size: 1em;
  line-height: 1;
  text-indent: 0;
}

.inline-icon--check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--inline-icon-size) * 0.76);
  height: calc(var(--inline-icon-size) * 0.42);
  border-bottom: calc(var(--inline-icon-size) * 0.18) solid var(--inline-icon-color);
  border-left: calc(var(--inline-icon-size) * 0.18) solid var(--inline-icon-color);
  border-radius: 1px;
  transform: translate(-50%, -58%) rotate(-45deg);
}

.inline-icon--cross {
  --inline-icon-size: 0.92rem;
  --inline-icon-color: #ef4444;
  position: relative;
  width: 1.35rem;
  height: 1.55em;
  color: transparent;
  font-size: 1em;
  line-height: 1;
  overflow: hidden;
}

.inline-icon--cross::before,
.inline-icon--cross::after {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 50%;
  width: calc(var(--inline-icon-size) * 0.9);
  height: calc(var(--inline-icon-size) * 0.16);
  border-radius: 999px;
  background: var(--inline-icon-color);
  transform-origin: center;
}

.inline-icon--cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.inline-icon--cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.inline-icon--external {
  margin-left: 0.42rem;
  font-size: 0.92em;
}

.inline-icon--close {
  font-size: 1.65rem;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.5);
  outline-offset: 3px;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.shell {
  width: min(var(--shell-width), calc(100vw - (2 * var(--shell-gutter))));
  margin: 0 auto;
}

.page-main {
  display: block;
}

.page__content {
  padding: 0;
}

.page__content > * + * {
  margin-top: 0;
}

.page__hero--overlay {
  display: none;
}

.section,
.hero-section,
.not-found-page {
  position: relative;
  padding: var(--section-gap) 0;
}

.section--cream {
  background: var(--color-cream);
}

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

.section--deep,
.hero-section,
.site-footer {
  color: var(--color-white);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.34), transparent 35%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.14), transparent 30%),
    linear-gradient(135deg, #180429, #1a0533 52%, #2a0d53);
}

.section--cta {
  padding-bottom: clamp(84px, 10vw, 120px);
}

.section-heading {
  display: grid;
  gap: clamp(0.72rem, 1vw, 1rem);
  margin-bottom: clamp(32px, 4vw, 48px);
  max-width: 880px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2,
.section-heading--center .section-lead {
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0;
  padding: 0.32rem 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label:empty {
  display: none;
}

.section-label--dark {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.09);
  color: var(--color-violet);
}

.section-label--hero {
  letter-spacing: 0.04em;
  text-transform: none;
}

.status-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.48);
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: status-dot-pulse 1.9s ease-out infinite;
  }
}

@keyframes status-dot-pulse {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.48);
  }

  45% {
    transform: scale(1);
    box-shadow: 0 0 0 0.34rem rgba(74, 222, 128, 0);
  }

  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.section-heading--center .section-label {
  margin-inline: auto;
}

.section-label--light .inline-icon {
  color: rgba(255, 255, 255, 0.95);
}

.section-kicker {
  margin: 0;
  color: var(--color-violet);
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: inherit;
  font-family: var(--font-body);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: -0.012em;
}

h1 {
  font-size: clamp(3.25rem, 8.5vw, 6.15rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 4.25vw, 3.6rem);
  max-width: 18ch;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 780;
  letter-spacing: -0.006em;
}

.heading-accent,
h1 em {
  color: rgba(144, 91, 255, 0.98);
  font-family: var(--font-display);
  font-size: 1.2em;
  font-style: normal;
  font-weight: 760;
  line-height: 0.88;
  letter-spacing: -0.018em;
}

.heading-accent {
  display: inline-block;
  transform: translateY(-0.025em);
}

p {
  margin: 0;
}

.section-lead,
.hero-section__subtitle,
.hero-section__support {
  max-width: 62ch;
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
}

.section-lead {
  color: var(--color-ink-secondary);
}

.section-lead--light,
.hero-section__subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-section__support {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.18rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--color-violet);
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-violet-hover);
}

.button--secondary {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.06);
  color: var(--color-violet);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(124, 58, 237, 0.42);
  background: rgba(124, 58, 237, 0.12);
}

.hero-section__actions .button--secondary {
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section__actions .button--secondary:hover,
.hero-section__actions .button--secondary:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.button--light {
  background: var(--color-white);
  color: var(--color-violet-deep);
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--color-white);
}

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

.button--small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
}

.section-copy > .button,
.project-gallery__intro > .button,
.about-solo__copy > .button {
  justify-self: start;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(248, 246, 242, 0.08);
  background: rgba(248, 246, 242, 0.97);
  backdrop-filter: blur(18px);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.site-header--hidden {
  transform: translateY(calc(-100% - 6px));
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.site-brand {
  flex: 0 0 auto;
}

.site-brand img {
  width: clamp(188px, 22vw, 280px);
  max-width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.66rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.58rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  color: var(--color-ink-secondary);
  font-size: 0.98rem;
}

.site-nav__link.is-current {
  color: var(--color-violet);
  font-weight: 600;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-violet);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-current::after {
  transform: scaleX(1);
}

.site-nav__cta {
  white-space: nowrap;
}

.site-nav__cta.is-current {
  color: var(--color-white);
  background: var(--color-violet-hover);
  box-shadow: 0 12px 26px rgba(90, 46, 143, 0.3);
}

.site-header__toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.06);
  color: var(--color-violet);
}

.site-header__toggle-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 160ms ease;
}

.site-header__toggle-line:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-5.5px);
}

.site-header__toggle-line:nth-child(3) {
  transform: translate(-50%, -50%) translateY(5.5px);
}

.site-header.is-nav-open .site-header__toggle-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-nav-open .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-header__toggle-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-section {
  padding-top: clamp(84px, 10vw, 124px);
  padding-bottom: clamp(72px, 9vw, 110px);
}

.hero-section::before {
  display: none;
}

.hero-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.hero-section__copy {
  display: grid;
  gap: 1.5rem;
}

.hero-section h1 {
  max-width: 13ch;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.82rem;
}


.about-page__hero h1 {
  max-width: none;
}

.about-page__hero-copy {
  max-width: 780px;
}

.about-page__hero-inner {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
}

.about-page__hero .hero-section__copy {
  gap: 1.35rem;
}

.about-page__hero .hero-section__subtitle {
  max-width: 38ch;
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
}

.about-page__hero-text {
  display: grid;
  gap: 0.88rem;
}

.about-page__hero-text .section-lead {
  max-width: 58ch;
}

.about-page__hero-media {
  align-self: center;
}


.section-grid {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
}

.section-grid--audit {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 1.26rem;
}

.section-panel {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
}

.section-panel--soft {
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.06);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0.2rem 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  line-height: 1.55;
}

.check-list .inline-icon--check {
  display: inline-grid;
  place-items: center;
  height: 1.55em;
  margin-top: 0;
}

.audit-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.audit-card--dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.audit-card--dark p,
.audit-card--dark h3 {
  color: var(--color-white);
}

.audit-card__eyebrow {
  color: var(--color-violet);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card__value {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card__label {
  color: rgba(255, 255, 255, 0.82);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}


.process-card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-card__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-violet);
  opacity: 0.22;
}

.process-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.signature-band__card h3,
.audit-card h3,
.project-gallery__entry h3,
.project-gallery__scene-card h3,
.services-page__hero-pillar h3,
.about-page__why-card .section-lead {
  color: var(--color-violet);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.78rem);
  line-height: 0.96;
  font-weight: 800;
}

.audit-card h3 {
  color: var(--color-ink);
}

.audit-card--dark h3 {
  color: var(--color-white);
}

.project-gallery__entry h3,
.project-gallery__scene-card h3 {
  color: rgba(255, 255, 255, 0.94);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.project-filters {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(26px, 3vw, 34px);
}

.project-filters[open] .project-filters__summary-icon {
  transform: rotate(180deg);
}

.project-filters__summary {
  display: none;
}

.project-filters__summary::-webkit-details-marker {
  display: none;
}

.project-filters__body {
  display: grid;
  gap: 1rem;
}

.project-filters__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.project-filters__label {
  color: var(--color-violet);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.project-filters__controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.project-filter {
  position: relative;
  display: block;
  min-width: 0;
}

.project-filter__field {
  width: 100%;
  min-height: 3rem;
  padding: 0.84rem 2.6rem 0.84rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  font: inherit;
  appearance: none;
  box-shadow: 0 12px 28px rgba(42, 19, 69, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.project-filter__field:hover,
.project-filter__field:focus-visible {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 16px 34px rgba(42, 19, 69, 0.1);
  outline: none;
}

.project-filter__field.is-active {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.08);
}

.project-filter__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--color-violet);
  font-size: 0.72rem;
  pointer-events: none;
  transform: translateY(-50%);
}

.project-filters__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
}

.project-filters__reset {
  flex: 0 0 auto;
}

.project-filters__reset.button--ghost {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.06);
  color: var(--color-violet);
}

.project-filters__reset.button--ghost:hover,
.project-filters__reset.button--ghost:focus-visible {
  border-color: rgba(124, 58, 237, 0.32);
  background: rgba(124, 58, 237, 0.12);
  color: var(--color-violet-hover);
}

.project-filters__empty {
  display: grid;
  justify-items: start;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.project-card__image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: inherit;
}

.project-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: none;
}

.project-card__image-trigger:hover img,
.project-card__image-trigger:focus-visible img {
  transform: scale(1.015);
}

.project-card__image img {
  transition: transform 180ms ease;
}

.project-card__image--haser-garten img {
  object-position: center 44%;
}

.project-card__image--schweizer-umzuege img {
  object-position: center top;
}

.project-card__content {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.68rem 0 0;
  padding: 0;
  list-style: none;
}

.project-card__tags li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.74rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--color-violet);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.project-card__result,
.project-dialog__result {
  color: var(--color-violet);
  font-weight: 600;
}

.project-card__external,
.project-dialog__external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--color-violet);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.28);
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.project-card__external:hover,
.project-card__external:focus-visible,
.project-dialog__external:hover,
.project-dialog__external:focus-visible {
  color: var(--color-violet-hover);
  text-decoration-color: currentColor;
}

.project-card__external .inline-icon--external,
.project-dialog__external .inline-icon--external {
  font-size: 0.88em;
}

.portfolio-section__cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.15rem;
}

.portfolio-section__heading {
  margin-bottom: clamp(28px, 3.2vw, 40px);
}


.framework-card {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.framework-card h2 {
  margin-bottom: 0.38rem;
}

.framework-visual {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
}

.framework-visual--embedded {
  margin-top: 0.15rem;
}

.framework-visual picture {
  display: block;
}

.framework-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(18, 16, 14, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(42, 19, 69, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.framework-card__phases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.framework-card__phases span {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--color-violet);
}

.about-grid,
.cta-grid {
  display: grid;
  gap: clamp(28px, 3vw, 42px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.about-grid,
.cta-grid {
  align-items: center;
}

.section--cta .section-copy h2 {
  max-width: 20ch;
}

.bio-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.bio-section--reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bio-section__copy {
  display: grid;
  gap: 1.72rem;
  max-width: 62ch;
  align-content: center;
}

.bio-section--reverse .bio-section__copy {
  order: 2;
}

.bio-section--reverse .bio-section__media {
  order: 1;
}

.bio-section__intro {
  display: grid;
  align-content: start;
  gap: 0.92rem;
}

.bio-section__body {
  display: grid;
  gap: 1.08rem;
}

.bio-section__role {
  color: var(--color-violet);
  font-size: 0.98rem;
  font-weight: 600;
}

.bio-section__highlight {
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.06);
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.55;
  width: 100%;
  max-width: 62ch;
  box-sizing: border-box;
}

.bio-section__intro .bio-section__highlight {
  margin-top: 0.18rem;
}

.bio-section__media {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.bio-section__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bio-section__media--simon img {
  object-position: 56% 26%;
  transform: translateX(50px) scale(1.3);
  transform-origin: center center;
}

.bio-section__media--per img {
  object-position: center 24%;
}

.about-page__why .section-heading {
  max-width: 860px;
  margin-inline: auto;
}

.about-page__why .section-heading h2 {
  max-width: none;
}

.about-page__why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1rem;
}

.about-page__why-card,
.services-page__system-panel,
.services-page__process-track .process-card,
.services-page__hero-pillar {
  --why-card-rotate-x: 0deg;
  --why-card-rotate-y: 0deg;
  backface-visibility: hidden;
  transform: perspective(1100px) translate3d(0, 0, 0) rotateX(var(--why-card-rotate-x)) rotateY(var(--why-card-rotate-y));
  transform-origin: center;
}

.about-page__why-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.about-page__why-card p {
  font-size: clamp(1.02rem, 1.18vw, 1.1rem);
  line-height: 1.6;
}

.about-page__why-card .section-lead {
  color: var(--color-violet);
}

.js .about-page__why-card.reveal,
.js .services-page__system-panel.reveal,
.js .services-page__process-track .process-card.reveal {
  transform:
    perspective(1100px)
    translate3d(0, 22px, 0)
    rotateX(var(--why-card-rotate-x))
    rotateY(var(--why-card-rotate-y));
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease;
}

.js .about-page__why-card.reveal.is-visible,
.js .services-page__system-panel.reveal.is-visible,
.js .services-page__process-track .process-card.reveal.is-visible {
  transform:
    perspective(1100px)
    translate3d(0, 0, 0)
    rotateX(var(--why-card-rotate-x))
    rotateY(var(--why-card-rotate-y));
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease-out,
    box-shadow 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-page__why-card:hover,
  .services-page__system-panel:hover,
  .services-page__process-track .process-card:hover,
  .services-page__hero-pillar:hover {
    box-shadow: 0 26px 54px rgba(38, 14, 69, 0.18);
  }
}

.portfolio-page__hero .hero-section__inner,
.contact-page__hero .hero-section__inner,
.legal-page__hero .hero-section__inner {
  grid-template-columns: 1fr;
}

.portfolio-page__hero-copy,
.contact-page__hero-copy,
.legal-page__hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-page__hero-actions {
  justify-content: center;
  margin-top: 0.1rem;
}

.portfolio-page__hero-copy .section-label,
.contact-page__hero-copy .section-label,
.legal-page__hero-copy .section-label {
  margin-inline: auto;
}

.portfolio-page__hero-copy .hero-section__subtitle,
.portfolio-page__hero-copy .hero-section__support {
  margin-inline: auto;
}

.portfolio-page__hero h1,
.contact-page__hero h1,
.legal-page__hero h1 {
  max-width: none;
}

.portfolio-page__hero .hero-section__copy,
.contact-page__hero .hero-section__copy,
.legal-page__hero .hero-section__copy {
  gap: 1.7rem;
}

.portfolio-page__grid-section {
  padding-top: clamp(54px, 6vw, 72px);
}

.portfolio-page__grid-section .portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

.contact-page__form-card {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.contact-page__form-card .contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-page__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
  position: sticky;
  top: 132px;
  align-self: start;
}

.contact-page__audit-card {
  gap: 1.05rem;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, #4c1f7f, #2c0b56 58%, #170528);
  box-shadow: var(--shadow-deep);
}

.contact-page__direct-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(247, 243, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.contact-page__direct-links {
  display: grid;
  gap: 0.5rem;
}

.contact-page__direct-card h3,
.contact-page__direct-card p,
.legal-page__aside-card h3,
.legal-page__aside-card p {
  color: var(--color-ink);
}

.contact-page__direct-card .site-footer__link,
.legal-page__aside-card .site-footer__link {
  color: var(--color-violet);
  text-decoration-color: rgba(124, 58, 237, 0.34);
}

.contact-page__direct-card .site-footer__link:hover,
.contact-page__direct-card .site-footer__link:focus-visible,
.legal-page__aside-card .site-footer__link:hover,
.legal-page__aside-card .site-footer__link:focus-visible {
  color: var(--color-violet-hover);
  text-decoration-color: currentColor;
}

.legal-page__body {
  padding-top: clamp(34px, 4vw, 50px);
}

.legal-page__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.legal-page__aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(92px + 1rem);
}

.legal-page__aside-card {
  display: grid;
  gap: 1rem;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-page__aside-card--soft {
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.1), transparent 42%),
    rgba(247, 243, 255, 0.92);
}

.legal-page__anchor-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-page__anchor-list a,
.legal-section a {
  width: fit-content;
  color: var(--color-violet);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.34);
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.legal-page__anchor-list a:hover,
.legal-page__anchor-list a:focus-visible,
.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--color-violet-hover);
  text-decoration-color: currentColor;
}

.legal-page__content {
  display: grid;
  gap: 1rem;
}

.legal-section {
  display: grid;
  gap: 0.95rem;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 116px;
}

.legal-section h2 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

.legal-section h3 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--color-ink);
}

.legal-section p,
.legal-section li {
  color: var(--color-ink-secondary);
}

.legal-callout {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.legal-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.15rem;
  margin: 0;
}

.legal-entity-grid {
  display: grid;
  gap: 1rem;
}

.legal-entity-card {
  display: grid;
  gap: 0.52rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 18px;
  background: rgba(248, 246, 252, 0.92);
}

.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.legal-inline-links a {
  width: auto;
}

.legal-meta-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-meta-list li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 18px;
  background: rgba(248, 246, 252, 0.92);
}

.services-page__hero .hero-section__inner {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
}

.services-page__hero h1 {
  max-width: 20ch;
}

.services-page__hero .hero-section__subtitle {
  max-width: 48ch;
}

.services-page__hero-board {
  justify-self: end;
  width: min(100%, 420px);
}

.services-page__hero-steps {
  display: grid;
  gap: 0.8rem;
}

.services-page__hero-step {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.services-page__hero-step::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      115deg,
      transparent 12%,
      rgba(74, 222, 128, 0) 28%,
      rgba(74, 222, 128, 0.18) 40%,
      rgba(255, 255, 255, 0.86) 48%,
      rgba(74, 222, 128, 0.72) 56%,
      rgba(74, 222, 128, 0.2) 66%,
      transparent 82%
    );
  background-size: 220% 100%;
  background-position: 150% 0;
  opacity: 0;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.services-page__hero-step:hover,
.services-page__hero-step:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(74, 222, 128, 0.2);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 18px 34px rgba(8, 6, 18, 0.24);
}

.services-page__hero-step:hover::after,
.services-page__hero-step:focus-visible::after {
  opacity: 1;
  animation: services-hero-step-shimmer 3.1s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.services-page__hero-step:focus-visible {
  outline: none;
}

.services-page__hero-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.3);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.96);
}

.services-page__hero-step p {
  color: rgba(255, 255, 255, 0.92);
}

@keyframes services-hero-step-shimmer {
  0% {
    opacity: 0;
    background-position: 150% 0;
  }

  16% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: -40% 0;
  }
}

.services-page__problem-grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.services-page__problem-card {
  display: grid;
  align-content: start;
  gap: var(--space-md);
  min-height: 100%;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.services-page__problem-card--list {
  background: rgba(255, 255, 255, 0.9);
}

.services-page__problem-card--list p {
  color: var(--color-ink);
}

.services-page__split-heading {
  gap: clamp(0.72rem, 1vw, 1rem);
  max-width: none;
}

.services-page__split-heading h2 {
  max-width: 22ch;
}

.services-page__split-heading .section-lead {
  max-width: 46ch;
}

.services-page__problem-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-page__problem-list li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.78rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(18, 16, 14, 0.08);
  color: var(--color-ink-secondary);
  line-height: 1.55;
}

.services-page__problem-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.services-page__problem-list .inline-icon--cross {
  display: inline-grid;
  place-items: center;
  height: 1.55em;
  margin-top: 0;
}

.services-page__problem-result {
  margin-top: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  color: var(--color-violet);
  font-weight: 600;
}

.services-page__system-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.2vw, 24px);
  align-items: start;
}

.services-page__system .section-heading {
  max-width: none;
}

.services-page__system .section-heading h2 {
  max-width: 24ch;
  color: var(--color-white);
}

.services-page__system .section-heading h2 .heading-accent {
  display: block;
  margin-top: 0.12em;
  font-size: 1.14em;
  line-height: 0.9;
  transform: none;
}

.services-page__system .section-heading .section-lead {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.78);
}

.services-page__system-panel {
  min-height: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
  contain: layout paint;
}

.services-page__system-copy {
  display: grid;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.services-page__system-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 16px);
  align-content: start;
}

.services-page__system-pillars span {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 100%;
  padding: clamp(18px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-deep);
  color: rgba(214, 199, 255, 0.94);
  font-family: var(--font-display);
  font-size: clamp(1.58rem, 2vw, 1.94rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.96;
}

.services-page__problem-card .section-kicker,
.services-page__outcomes-card .section-kicker {
  color: var(--color-violet);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-page__process-track .process-card {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(16px, 1.8vw, 24px);
  row-gap: var(--space-2xs);
  padding: clamp(24px, 2.6vw, 32px);
  scroll-margin-top: 120px;
  box-shadow: 0 16px 44px rgba(26, 5, 51, 0.06);
  align-self: start;
  height: auto;
  contain: layout paint;
}

.services-page__process-track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.services-page__process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(0.72rem, 1vw, 1rem) clamp(28px, 5vw, 76px);
  align-items: start;
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.services-page__process-heading h2 {
  max-width: 18ch;
}

.services-page__process-heading .section-lead {
  max-width: 46ch;
}

.services-page__process-track .process-card:nth-child(2n) {
  margin-top: clamp(18px, 2vw, 30px);
}

.services-page__process-track .process-card__number {
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: -0.08em;
  font-size: clamp(3.1rem, 5vw, 4.4rem);
  opacity: 0.18;
}

.services-page__process-track .process-card h3 {
  max-width: none;
  margin-top: 0.3rem;
  font-size: clamp(1.18rem, 1.75vw, 1.42rem);
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.services-page__process-track .process-card > p:not(.process-card__number) {
  max-width: 34ch;
  color: var(--color-ink-secondary);
}

.services-page__outcomes-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.services-page__outcomes-card {
  display: grid;
  gap: var(--space-md);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.services-page__outcomes-card .check-list {
  gap: 0;
  margin-top: 0;
}

.services-page__outcomes-card .check-list li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  align-items: flex-start;
  padding: 1rem 0;
  gap: 0.85rem;
  border-top: 1px solid rgba(18, 16, 14, 0.08);
  font-size: clamp(1.04rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.services-page__outcomes-card .check-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.services-page__outcomes-card .check-list li .inline-icon--check {
  flex: 0 0 auto;
  margin-top: 0;
}

.services-page__outcomes-card .check-list li > span:last-child {
  display: block;
  font-size: 1em;
  line-height: inherit;
  color: var(--color-ink);
}

.services-page__difference-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 16px;
  background: linear-gradient(135deg, #5a2e8f, #3a146b 58%, #250943);
  box-shadow: var(--shadow-deep);
  align-items: center;
  color: var(--color-white);
}

.services-page__difference-card .section-heading {
  max-width: none;
  margin-bottom: 0;
  align-content: center;
}

.services-page__difference-card h2 {
  color: var(--color-white);
}

.services-page__difference-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.services-page__difference-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.about-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.person-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.person-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.person-card__content {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
}

.person-card__role {
  color: var(--color-violet);
  font-size: 0.9rem;
}

.site-check-form {
  display: grid;
  gap: 1rem;
}

.site-check-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--color-ink-secondary);
  font-size: 0.92rem;
}

.audit-card--dark .form-field label {
  color: rgba(255, 255, 255, 0.88);
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 0.88rem 0.95rem;
  border: 1px solid rgba(18, 16, 14, 0.12);
  border-radius: 14px;
  background: rgba(248, 246, 242, 0.82);
  color: var(--color-ink);
}

.audit-card--dark .form-field input {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.form-field input::placeholder {
  color: var(--color-ink-subtle);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.form-field textarea {
  width: 100%;
  min-height: 184px;
  padding: 0.92rem 0.95rem;
  border: 1px solid rgba(18, 16, 14, 0.12);
  border-radius: 18px;
  background: rgba(248, 246, 242, 0.82);
  color: var(--color-ink);
  resize: vertical;
}

.form-field textarea::placeholder {
  color: var(--color-ink-subtle);
}

.audit-card--dark .form-field input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #d92d20;
}

.form-field__error,
.site-check-form__privacy,
.site-check-form__status {
  font-size: 0.88rem;
}

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

.form-field__error {
  min-height: 1.1em;
  color: #d92d20;
}

.site-check-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
}

.site-check-form__privacy:empty {
  display: none;
}

.site-check-form__privacy,
.site-check-form__status {
  color: var(--color-ink-secondary);
}

.audit-card--dark .site-check-form__privacy,
.audit-card--dark .site-check-form__status {
  color: rgba(255, 255, 255, 0.8);
}

.site-check-form__success {
  color: #0c8f51;
  font-weight: 600;
}

.audit-card--dark .site-check-form__success {
  color: #8df0be;
}

.project-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(1040px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: var(--shadow-deep);
}

.project-dialog::backdrop {
  background: rgba(18, 16, 14, 0.58);
  backdrop-filter: blur(5px);
}

.project-dialog__header,
.project-dialog__summary,
.project-dialog__result,
.project-dialog__gallery {
  padding-inline: clamp(18px, 3vw, 30px);
}

.project-dialog__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(18px, 3vw, 28px);
}

.project-dialog__eyebrow {
  margin-bottom: 0.25rem;
  color: var(--color-violet);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-dialog__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 16, 14, 0.08);
  border-radius: 999px;
  background: rgba(248, 246, 242, 0.92);
}

.project-dialog__summary {
  padding-top: 0.4rem;
}

.project-dialog__result {
  padding-top: 0.6rem;
}

.project-dialog__external-wrap {
  padding-inline: clamp(18px, 3vw, 30px);
  padding-top: 0.35rem;
}

.project-dialog__gallery {
  display: grid;
  gap: 1.25rem;
  padding-top: 1.35rem;
  padding-bottom: clamp(18px, 3vw, 30px);
  overflow: auto;
}

.project-dialog__gallery figure {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.project-dialog__gallery img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.project-dialog__gallery figcaption {
  color: var(--color-ink-muted);
}

.not-found-page {
  min-height: calc(100vh - 240px);
  display: grid;
  align-items: center;
}

.not-found-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.not-found-page__inner {
  display: grid;
  gap: 1.4rem;
  max-width: 760px;
}

.not-found-page__panel {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.4vw, 24px);
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 20%, rgba(124, 58, 237, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-deep);
}

.not-found-page__code {
  position: absolute;
  inset: clamp(14px, 2vw, 18px) clamp(18px, 2.4vw, 24px) auto auto;
  color: rgba(214, 199, 255, 0.15);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 9.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
}

.not-found-page__panel-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.not-found-page__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-page__links {
  display: grid;
  gap: 0.9rem;
}

.not-found-page__link-card {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background-color 180ms ease;
}

.not-found-page__link-card strong {
  color: var(--color-white);
  font-size: 1.04rem;
}

.not-found-page__link-card span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.not-found-page__link-card:hover,
.not-found-page__link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(152, 111, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.not-found-page__inner .section-label,
.not-found-page__inner .hero-section__subtitle,
.not-found-page__inner .hero-section__support,
.not-found-page__inner h1,
.not-found-page__note {
  margin-inline: auto;
}

.not-found-page h1 {
  max-width: 10ch;
}

.not-found-page .hero-section__subtitle {
  max-width: 30ch;
}

.not-found-page .hero-section__support {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
}

.not-found-page__actions {
  justify-content: center;
  margin-top: 0.2rem;
}

.not-found-page__note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.not-found-page__note a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, 0.12), transparent 24%),
    linear-gradient(180deg, #13091f 0%, #0d0618 100%);
}

.site-footer__brand {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.44fr);
  align-items: start;
  gap: clamp(28px, 4.5vw, 60px);
  padding: clamp(52px, 7vw, 92px) 0 clamp(28px, 4vw, 40px);
}

.site-footer__editorial {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  max-width: none;
}

.site-footer__statement {
  display: grid;
  gap: 0.02em;
  max-width: 18ch;
  color: var(--color-white);
  font-size: clamp(2.35rem, 3.65vw, 4.15rem);
  font-weight: 680;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.site-footer__statement .heading-accent {
  display: inline-block;
  font-size: 1.18em;
  font-weight: 820;
  line-height: 0.86;
  letter-spacing: -0.02em;
  transform: translateY(-0.015em);
}

.site-footer__note {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.35rem;
}

.site-footer__rail {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  align-content: start;
  padding-top: 0.45rem;
}

.site-footer__group {
  display: grid;
  gap: 0.82rem;
}

.site-footer__meta-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__list {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__list--compact {
  gap: 0.32rem;
}

.site-footer__link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(248, 246, 242, 0.22);
  text-underline-offset: 0.22em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__link.is-current {
  color: var(--color-white);
  text-decoration-color: currentColor;
}

.site-footer__note {
  margin: 0;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  padding-top: 0.85rem;
}

.site-header__inner {
  width: min(700px, calc(100vw - 32px));
  min-height: 0;
  padding: 0.8rem 0.95rem 0.8rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(43, 20, 76, 0.76);
  box-shadow: 0 24px 60px rgba(8, 4, 18, 0.24);
  backdrop-filter: blur(22px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  z-index: -1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0),
    rgba(34, 197, 94, 0.86) 18%,
    rgba(124, 58, 237, 0.92) 62%,
    rgba(255, 255, 255, 0)
  );
  opacity: 1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  pointer-events: none;
}

.site-brand__wordmark {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 2.25vw, 1.68rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  transition:
    color 180ms ease,
    text-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.site-brand:hover .site-brand__wordmark,
.site-brand:focus-visible .site-brand__wordmark {
  color: #fff;
  text-shadow: 0 0 18px rgba(124, 58, 237, 0.32);
}

.site-brand:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.72);
  outline-offset: 7px;
}

.site-nav__link {
  color: rgba(255, 255, 255, 0.68);
}

.site-nav__link.is-current {
  color: var(--color-white);
  font-weight: 600;
}

.site-nav__link::after {
  background: rgba(255, 255, 255, 0.82);
}

.site-nav__cta {
  min-height: 42px;
  padding-inline: 1.2rem;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.28);
}

.site-nav__cta.is-current {
  background: var(--color-violet);
}

.site-header__toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.hero-section {
  padding-top: clamp(144px, 15vw, 190px);
}

.simon-hero {
  position: relative;
  overflow: clip;
  padding: clamp(104px, 11vw, 140px) 0 clamp(56px, 7vw, 88px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 72% 24%, rgba(124, 58, 237, 0.22), transparent 18%),
    radial-gradient(circle at 28% 58%, rgba(124, 58, 237, 0.1), transparent 28%),
    linear-gradient(135deg, #180429 0%, #160427 56%, #1e0639 100%);
}

.simon-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -8% -4%;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  filter: blur(120px);
  pointer-events: none;
}

.simon-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.simon-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.9rem;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.55rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.availability-pill span {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.48);
}

@media (prefers-reduced-motion: no-preference) {
  .availability-pill span {
    animation: status-dot-pulse 1.9s ease-out infinite;
  }
}

.simon-hero__eyebrow {
  color: rgba(151, 103, 255, 0.96);
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  letter-spacing: -0.02em;
}

.simon-hero h1 {
  max-width: 8.5ch;
  font-size: clamp(3rem, 6.2vw, 5.1rem);
  line-height: 0.94;
}

.simon-hero h1 span,
.simon-hero h1 em {
  display: block;
}

.simon-hero h1 em {
  color: rgba(144, 91, 255, 0.98);
}

.simon-hero__subtitle {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.42vw, 1.28rem);
}

.simon-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: min(46vw, 620px);
  align-self: end;
}

.simon-hero__visual::before {
  content: "";
  position: absolute;
  inset: 16% 8% 8% 22%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0) 70%);
  filter: blur(28px);
  pointer-events: none;
}

.simon-hero__visual img {
  position: relative;
  z-index: 1;
  width: min(590px, 96%);
  max-width: none;
  margin-right: -4%;
  filter: drop-shadow(0 28px 80px rgba(8, 4, 18, 0.55));
}

@media (min-width: 861px) {
  .simon-hero__inner {
    position: relative;
    display: block;
    min-height: min(76vw, 900px);
  }

  .simon-hero__copy {
    max-width: min(52%, 640px);
    padding-top: clamp(72px, 9vw, 116px);
  }

  .simon-hero__visual {
    position: absolute;
    right: -3%;
    bottom: -18px;
    width: min(54vw, 760px);
    min-height: 0;
  }

  .simon-hero__visual img {
    width: 100%;
    margin-right: 0;
    transform: translateY(-138px);
  }
}


.about-grid--solo {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.82fr);
  align-items: center;
}

.about-grid__cards--single {
  grid-template-columns: 1fr;
}

.person-card--solo img {
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
}

.partnership-profile .bio-section__media img {
  object-fit: cover;
}


.legal-entity-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 460px;
}

.site-footer__brand {
  width: auto;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem 2rem;
  padding: 1.35rem 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer__bottom-nav .site-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.site-footer__bottom-nav .site-footer__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer__bottom-nav .site-footer__link:hover,
.site-footer__bottom-nav .site-footer__link:focus-visible,
.site-footer__bottom-nav .site-footer__link.is-current {
  color: var(--color-white);
}

.site-footer__bottom-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem 1rem;
  justify-self: end;
  flex-wrap: wrap;
}

.site-footer__badge {
  --badge-orbit-duration: 6.8s;
  --badge-orbit-thickness: 3px;
  --badge-trace-length: 8;
  --badge-trace-opacity: 0.67;
  --badge-rail: rgba(35, 27, 45, 0.14);
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 0.24rem;
  border: 0;
  border-radius: 0.52rem;
  background: transparent;
  box-shadow: 0 0.45rem 1.3rem -0.65rem rgba(0, 0, 0, 0.22);
  isolation: isolate;
  overflow: visible;
  transition: transform 180ms ease;
}

.site-footer__badge-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.site-footer__badge-orbit-fill {
  fill: var(--color-cream);
}

.site-footer__badge-orbit-rail,
.site-footer__badge-orbit-trace {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.site-footer__badge-orbit-rail {
  stroke: var(--badge-rail);
  stroke-width: var(--badge-orbit-thickness);
}

.site-footer__badge-orbit-trace {
  stroke: rgb(124, 58, 237);
  stroke-width: var(--badge-orbit-thickness);
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 1px rgba(124, 58, 237, 0.64));
}

.site-footer__badge-orbit.is-ready .site-footer__badge-orbit-trace {
  opacity: var(--badge-trace-opacity);
}

.site-footer__badge-core {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.24em;
  min-height: 1.32rem;
  padding: 0.24rem 0.88rem;
  border-radius: 0.28rem;
  background: transparent;
  color: #231b2d;
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.035em;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}

.site-footer__badge-core strong {
  font-weight: 600;
}

.site-footer__badge:hover,
.site-footer__badge:focus-visible {
  transform: translateY(-2px);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .simon-hero__inner,
  .hero-section__inner,
  .section-grid--audit,
  .bio-section,
  .bio-section--reverse,
  .about-grid,
  .cta-grid,
  .contact-page__grid,
  .legal-page__grid,
  .services-page__problem-grid,
  .services-page__outcomes-grid,
  .services-page__difference-card,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .services-page__hero .hero-section__inner {
    grid-template-columns: 1fr;
    gap: clamp(26px, 6vw, 36px);
  }

  .services-page__hero-board {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

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

  .bio-section__copy,
  .bio-section--reverse .bio-section__copy {
    order: 1;
  }

  .bio-section__media,
  .bio-section--reverse .bio-section__media {
    order: 2;
    margin-top: 1.2rem;
  }

  .legal-page__aside {
    position: static;
  }

  .services-page__system-layout {
    grid-template-columns: 1fr;
  }

  .services-page__system-pillars {
    grid-template-columns: 1fr;
  }

  .services-page__process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 30px);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-meta {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    width: calc(100vw - 24px);
    padding: 0.75rem 0.9rem 0.75rem 1rem;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(26, 5, 51, 0.96);
    box-shadow: var(--shadow-card);
  }

  body[data-nav-open="true"] .site-nav {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__list {
    gap: 0;
  }

  .site-nav__item + .site-nav__item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__link {
    display: block;
    padding: 0.8rem 0;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__cta {
    width: 100%;
  }

  .stats-grid,
  .portfolio-grid,
  .about-page__why-grid,
  .about-grid__cards,
  .contact-form__grid,
  .site-check-form__row {
    grid-template-columns: 1fr;
  }

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

  .project-filters__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-filters__meta {
    width: 100%;
  }

  .portfolio-page__grid-section .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 640px) {
  .simon-hero {
    padding-top: 132px;
  }

  .simon-hero__subtitle {
    max-width: 30ch;
  }

  .simon-hero__inner {
    min-height: 0;
  }

  .simon-hero__visual {
    min-height: 0;
  }

  .simon-hero__visual img {
    width: min(560px, 118%);
    margin-right: -10%;
  }

  .site-footer__rail {
    grid-template-columns: 1fr;
  }

  .site-footer__statement {
    display: block;
    max-width: 100%;
    font-size: clamp(1.78rem, 7.3vw, 2.2rem);
    line-height: 1.04;
    letter-spacing: -0.018em;
  }

  .site-footer__statement > span {
    display: block;
  }

  .site-footer__statement .heading-accent {
    display: block;
    font-size: 1.08em;
    line-height: inherit;
    transform: translateY(0);
    white-space: nowrap;
  }

  .site-footer__note {
    max-width: 30ch;
  }

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

  h1 {
    max-width: 10ch;
  }

  .services-page__hero h1 {
    max-width: 12ch;
  }

  .services-page__hero .hero-section__copy {
    gap: 1.25rem;
  }

  .services-page__hero .hero-section__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .services-page__hero .hero-section__actions .button {
    width: min(100%, 18.75rem);
    justify-content: center;
  }

  .services-page__hero .hero-section__subtitle,
  .services-page__hero-board {
    max-width: none;
  }

  .services-page__hero-step {
    padding: 0.88rem 0.92rem;
  }

  .services-page__hero-step p {
    font-size: 0.98rem;
  }

  .audit-card,
  .contact-page__form-card,
  .framework-card,
  .project-card,
  .person-card,
  .legal-page__aside-card,
  .legal-section {
    border-radius: 20px;
  }

  .project-filters {
    gap: 0.7rem;
  }

  .project-filters__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.92rem 1rem;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-violet);
    cursor: pointer;
    list-style: none;
    box-shadow: 0 12px 28px rgba(42, 19, 69, 0.06);
  }

  .project-filters__summary-label {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .project-filters__summary-icon {
    font-size: 0.72rem;
    transition: transform 180ms ease;
  }

  .project-filters__body {
    padding: 0.35rem 0 0;
  }

  .project-filters:not([open]) .project-filters__body {
    display: none;
  }

  .project-filters__toolbar {
    display: flex;
  }

  .project-filters__label {
    display: none;
  }

  .project-filters__meta {
    justify-content: flex-start;
  }

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

  .project-filter__field {
    min-height: 2.9rem;
  }

  .project-filters__empty {
    border-radius: 20px;
  }

  .contact-page__hero .hero-section__copy,
  .legal-page__hero .hero-section__copy,
  .portfolio-page__hero .hero-section__copy {
    gap: 1.4rem;
  }

  .site-check-form__actions .button {
    width: 100%;
    justify-content: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .about-page__hero-notes span::after {
    animation: none;
  }

  .site-brand:hover,
  .site-brand:focus-visible {
    transform: none;
  }

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

/* Second pass: stronger Simon-specific homepage and copy layout overrides */

.simon-hero {
  --hero-fade-progress: 0;
  --hero-copy-progress: 0;
  --hero-portrait-progress: 0;
  --hero-copy-shift: -30px;
  --hero-portrait-shift: -14px;
  --hero-portrait-scale-delta: 0.16;
  --hero-portrait-top-safe: clamp(96px, 11vh, 132px);
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(110px, 9vw, 138px) 0 0;
  background:
    radial-gradient(circle at 67% 18%, rgba(124, 58, 237, 0.26), transparent 18%),
    radial-gradient(circle at 18% 70%, rgba(124, 58, 237, 0.1), transparent 26%),
    linear-gradient(115deg, #180429 0%, #160427 56%, #1c0636 100%);
}

.simon-hero::before {
  z-index: 0;
  inset: auto auto -18% -10%;
  width: min(56vw, 720px);
  height: min(56vw, 720px);
  background: rgba(124, 58, 237, 0.18);
  filter: blur(160px);
}

.simon-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 12% 8% auto;
  width: min(36vw, 460px);
  height: min(36vw, 460px);
  border-radius: 999px;
  background: rgba(104, 36, 219, 0.22);
  filter: blur(120px);
  pointer-events: none;
}

.simon-hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - clamp(110px, 9vw, 138px));
  min-height: calc(100svh - clamp(110px, 9vw, 138px));
}

.simon-hero__copy {
  max-width: min(52%, 670px);
  padding-top: clamp(118px, 10vw, 162px);
  gap: 1rem;
  opacity: calc(1 - (var(--hero-copy-progress) * 1.06));
  transform: translate3d(
    0,
    calc(var(--hero-copy-progress) * var(--hero-copy-shift)),
    0
  );
  transform-origin: left top;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.simon-hero__eyebrow {
  color: rgba(150, 104, 255, 0.96);
}

.simon-hero h1 {
  max-width: 9.8ch;
  font-size: clamp(3.18rem, 6.35vw, 5.55rem);
  line-height: 0.97;
}

.simon-hero__subtitle {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.12rem, 1.5vw, 1.34rem);
}

.simon-hero__actions {
  margin-top: 0.4rem;
}

.simon-hero__visual {
  position: absolute;
  right: clamp(-118px, -6.4vw, -72px);
  bottom: 0;
  width: auto;
  height: min(clamp(670px, 66vw, 940px), calc(100vh - var(--hero-portrait-top-safe)));
  height: min(clamp(670px, 66vw, 940px), calc(100svh - var(--hero-portrait-top-safe)));
  aspect-ratio: 1694 / 2109;
  min-height: 0;
  opacity: calc(1 - (var(--hero-portrait-progress) * 0.66));
  transform: translate3d(
      0,
      calc(var(--hero-portrait-progress) * var(--hero-portrait-shift)),
      0
    )
    scale(calc(1 + (var(--hero-portrait-progress) * var(--hero-portrait-scale-delta))));
  transform-origin: center bottom;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: paint;
}

.simon-hero__portrait {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  transform: none;
  isolation: isolate;
  contain: paint;
}

.simon-hero__portrait::before {
  content: none;
}

.simon-hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 4, 41, 0.98) 0%,
    rgba(24, 4, 41, 0.78) 12%,
    rgba(24, 4, 41, 0.22) 28%,
    rgba(24, 4, 41, 0) 44%
  );
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: clamp(0, calc(var(--hero-portrait-progress) * 1.04), 1);
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.simon-hero__portrait picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.simon-hero__portrait img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(1.34) hue-rotate(-3deg) brightness(0.9) contrast(0.98);
  transform: scaleX(-1);
  transform-origin: center bottom;
  backface-visibility: hidden;
}

@media (min-width: 861px) and (max-width: 1240px) {
  .simon-hero__visual {
    right: clamp(-170px, -11vw, -104px);
    height: min(clamp(760px, 69vw, 820px), calc(100vh - var(--hero-portrait-top-safe)));
    height: min(clamp(760px, 69vw, 820px), calc(100svh - var(--hero-portrait-top-safe)));
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .simon-hero__visual {
    right: clamp(-178px, -14vw, -132px);
  }
}

.signature-band__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(0.72rem, 1vw, 1rem) clamp(28px, 5vw, 76px);
  align-items: start;
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.signature-band__intro .section-label {
  grid-column: 1;
  margin-bottom: 0.1rem;
}

.signature-band__intro h2 {
  grid-column: 1;
  max-width: 18ch;
}

.signature-band__intro .section-lead {
  grid-column: 2;
  grid-row: 2;
  max-width: 46ch;
  justify-self: start;
}

.signature-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.signature-band__card {
  --signature-card-bg: rgba(255, 255, 255, 0.96);
  --signature-card-border: rgba(18, 16, 14, 0.08);
  --signature-card-ink: var(--color-ink-secondary);
  --signature-card-title: var(--color-violet);
  --signature-card-number: rgba(124, 58, 237, 0.82);
  --signature-card-shadow: 0 20px 56px rgba(26, 5, 51, 0.06);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(16px, 1.8vw, 24px);
  row-gap: var(--space-2xs);
  min-height: clamp(238px, 18vw, 268px);
  height: auto;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid var(--signature-card-border);
  border-radius: 14px;
  background: var(--signature-card-bg);
  box-shadow: var(--signature-card-shadow);
  align-self: start;
  contain: layout paint;
}

.signature-band__card:nth-child(1) {
  --signature-card-bg:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 255, 0.94));
}

.signature-band__card:nth-child(2) {
  --signature-card-bg:
    radial-gradient(circle at 88% 8%, rgba(124, 58, 237, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(232, 222, 255, 0.98), rgba(197, 176, 255, 0.95));
  --signature-card-border: rgba(124, 58, 237, 0.16);
  --signature-card-shadow: 0 22px 60px rgba(58, 21, 105, 0.08);
  margin-top: var(--space-md);
}

.signature-band__card:nth-child(3) {
  --signature-card-bg:
    radial-gradient(circle at 88% 8%, rgba(164, 128, 255, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(90, 52, 132, 0.98), rgba(72, 38, 108, 0.96));
  --signature-card-border: rgba(214, 199, 255, 0.18);
  --signature-card-ink: rgba(255, 255, 255, 0.82);
  --signature-card-title: rgba(255, 255, 255, 0.94);
  --signature-card-number: rgba(214, 199, 255, 0.72);
  --signature-card-shadow: 0 26px 70px rgba(26, 5, 51, 0.18);
  margin-top: var(--space-xl);
}

.signature-band__number {
  color: var(--signature-card-number);
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: -0.08em;
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  opacity: 0.22;
}

.signature-band__card h3 {
  margin-top: 0.3rem;
  color: var(--signature-card-title);
}

.signature-band__card > p:not(.signature-band__number) {
  color: var(--signature-card-ink);
}


.project-gallery-section {
  --project-gallery-gap: clamp(36px, 4vw, 56px);
  overflow: clip;
}

.project-gallery__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: clamp(0.72rem, 1vw, 1rem);
  column-gap: var(--project-gallery-gap);
  max-width: 1160px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.project-gallery__intro .section-label {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  margin-bottom: 0.1rem;
}

.project-gallery__intro h2 {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  max-width: 18ch;
}

.project-gallery__intro .section-lead {
  grid-column: 2;
  grid-row: 2;
  max-width: none;
}

.project-gallery__intro > .button {
  grid-column: 2;
  grid-row: 3;
  width: 100%;
  justify-self: stretch;
  align-self: start;
  margin-top: clamp(0.25rem, 0.7vw, 0.5rem);
}

.project-gallery {
  --project-gallery-tail-space: 0px;
  --project-gallery-panel-height: clamp(290px, 23vw, 330px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--project-gallery-gap);
  align-items: start;
  max-width: 1160px;
  margin-inline: auto;
}

.project-gallery__preview-frame {
  position: sticky;
  top: 132px;
  min-height: var(--project-gallery-panel-height);
  width: 100%;
  max-width: none;
  justify-self: start;
  z-index: 0;
}

.project-gallery__preview-stack {
  position: relative;
  height: 100%;
  min-height: inherit;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}

.project-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-deep);
}

.project-preview.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-preview__media {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.project-preview--lynn-starke img,
.project-gallery__scene--lynn-starke .project-gallery__scene-media img {
  transform: scale(1.026);
  transform-origin: center top;
}

.project-preview--schweizer-umzuege img,
.project-gallery__scene--schweizer-umzuege .project-gallery__scene-media img {
  object-position: center top;
}

.project-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(22, 4, 39, 0), rgba(22, 4, 39, 0.88));
}

.project-preview__meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.94);
}

.project-preview__meta p,
.project-preview__meta span {
  margin: 0;
}

.project-preview__meta p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

.project-preview__meta span {
  color: rgba(255, 255, 255, 0.72);
}

.project-gallery__entries {
  display: grid;
  gap: clamp(34px, 3vw, 44px);
  width: 100%;
  max-width: none;
  padding-bottom: var(--project-gallery-tail-space);
  position: relative;
  z-index: 1;
  justify-self: stretch;
}

.project-gallery__entry {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-height: var(--project-gallery-panel-height);
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #29163d;
  transform: translateY(18px);
  transition:
    transform 340ms ease,
    background-color 340ms ease,
    border-color 340ms ease,
    box-shadow 340ms ease;
}

.project-gallery__entry > * {
  opacity: 0.72;
  transition: opacity 340ms ease;
}

.project-gallery__entry.is-active {
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.2);
  background: #35204d;
  box-shadow: 0 18px 42px rgba(8, 0, 17, 0.18);
}

.project-gallery__entry.is-active > * {
  opacity: 1;
}

.project-gallery__index {
  color: rgba(124, 58, 237, 0.82);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  opacity: 0.2;
}

.project-gallery__tags {
  margin-top: 0.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-gallery__tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.12;
  text-align: center;
}

.project-gallery__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.15rem;
}

.project-gallery__actions .button--secondary {
  color: rgba(236, 228, 255, 0.98);
  border-color: rgba(152, 111, 255, 0.34);
  background: rgba(124, 58, 237, 0.16);
}

.project-gallery__actions .button--secondary:hover,
.project-gallery__actions .button--secondary:focus-visible {
  color: var(--color-white);
  border-color: rgba(180, 149, 255, 0.58);
  background: rgba(124, 58, 237, 0.26);
}

.project-gallery__actions .project-card__external {
  color: rgba(255, 255, 255, 0.92);
}

.project-gallery__mobile-scenes {
  --project-gallery-mobile-stage-height: min(76dvh, 640px);
  --project-gallery-mobile-stage-top: calc(50dvh - var(--project-gallery-mobile-stage-height) / 2);
  --project-gallery-mobile-scene-gap: clamp(26px, 4vh, 44px);
  --project-gallery-mobile-scene-pad-top: clamp(20px, 3.4vh, 36px);
  --project-gallery-mobile-card-min-height: 0px;
  --project-gallery-mobile-step-height: 54dvh;
  --project-gallery-mobile-first-step-height: 14dvh;
  --project-gallery-mobile-first-step-offset: -74dvh;
  --project-gallery-mobile-last-step-height: 76dvh;
  display: none;
  position: relative;
}

.project-gallery__mobile-stage {
  position: sticky;
  top: var(--project-gallery-mobile-stage-top);
  min-height: var(--project-gallery-mobile-stage-height);
}

.project-gallery__scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(var(--project-gallery-mobile-card-min-height), auto);
  justify-items: center;
  align-content: start;
  gap: var(--project-gallery-mobile-scene-gap);
  padding-top: var(--project-gallery-mobile-scene-pad-top);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transform-origin: center top;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 260ms;
}

.project-gallery__scene-media,
.project-gallery__scene-card {
  width: min(100%, 640px);
}

.project-gallery__scene-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-deep);
}

.project-gallery__scene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.project-gallery__scene-card {
  display: grid;
  gap: 0.95rem;
  margin-top: 0;
  min-height: var(--project-gallery-mobile-card-min-height);
  padding: clamp(22px, 5vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #35204d;
  position: relative;
  z-index: 1;
}

.project-gallery__scene-card > * {
  transition: color 260ms ease;
}

.project-gallery__scene .project-gallery__index {
  color: rgba(214, 199, 255, 0.92);
  opacity: 0.38;
}

.project-gallery__scene.is-active .project-gallery__index {
  color: rgba(226, 216, 255, 0.98);
  opacity: 0.52;
}

.project-gallery__scene.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 0ms;
}

.project-gallery__mobile-track {
  display: grid;
  gap: 0;
  padding-bottom: 5svh;
}

.project-gallery__scene-step {
  height: var(--project-gallery-mobile-step-height);
}

.project-gallery__scene-step:first-child {
  height: var(--project-gallery-mobile-first-step-height);
  margin-top: var(--project-gallery-mobile-first-step-offset);
}

.project-gallery__scene-step:last-child {
  height: var(--project-gallery-mobile-last-step-height);
}

.audit-block__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.audit-block__copy {
  display: grid;
  gap: 1.25rem;
  max-width: 740px;
}

.audit-block__card {
  position: sticky;
  top: 132px;
}

.about-solo__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.about-solo__media {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 28px 80px rgba(26, 5, 51, 0.1);
}

.about-solo__media img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
}

.about-solo__copy {
  display: grid;
  gap: var(--space-md);
  max-width: 650px;
  align-content: center;
}

.about-solo__points {
  display: grid;
  gap: var(--space-sm);
  color: var(--color-ink-secondary);
}

.about-solo__note,
.bio-section__note {
  color: var(--color-ink-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-solo__note a,
.bio-section__note a {
  color: var(--color-violet);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.32);
  text-underline-offset: 0.18em;
}

.about-solo__note a:hover,
.about-solo__note a:focus-visible,
.bio-section__note a:hover,
.bio-section__note a:focus-visible {
  color: var(--color-violet);
  text-decoration-line: underline;
  text-decoration-color: rgba(124, 58, 237, 0.5);
}

.about-page__why-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .signature-band__intro,
  .project-gallery__intro,
  .signature-band__grid,
  .audit-block__layout,
  .about-solo__layout,
  .about-page__why-grid--three {
    grid-template-columns: 1fr;
  }

  .signature-band__card:nth-child(2),
  .signature-band__card:nth-child(3),
  .services-page__process-track .process-card:nth-child(2n) {
    margin-top: 0;
  }

  .project-gallery__intro .section-label,
  .project-gallery__intro h2,
  .project-gallery__intro .section-lead,
  .project-gallery__intro > .button {
    grid-column: auto;
    grid-row: auto;
  }

  .signature-band__intro .section-label,
  .signature-band__intro h2,
  .signature-band__intro .section-lead {
    grid-column: auto;
    grid-row: auto;
  }

  .signature-band__intro h2,
  .signature-band__intro .section-lead {
    max-width: none;
  }

  .project-gallery__intro h2 {
    margin-top: 0;
  }

  .signature-band__intro .section-label,
  .project-gallery__intro .section-label {
    margin-bottom: 0;
  }

  .audit-block__card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .simon-hero {
    min-height: 0;
    padding-top: 124px;
  }

  .simon-hero__inner {
    min-height: 0;
  }

  .simon-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .simon-hero h1 em {
    font-size: 1.1em;
    line-height: 0.88;
    margin-top: 0.02em;
  }

  .simon-hero__copy {
    max-width: none;
    padding-top: 0;
    --hero-copy-shift: -24px;
    transform: translate3d(
      0,
      calc(var(--hero-copy-progress) * var(--hero-copy-shift)),
      0
    );
  }

  .simon-hero__visual {
    --hero-portrait-shift: -8px;
    --hero-portrait-scale-delta: 0.13;
    position: relative;
    right: auto;
    bottom: auto;
    width: min(99vw, 450px);
    height: auto;
    aspect-ratio: 1694 / 2109;
    min-height: 0;
    margin-top: clamp(0px, 1.5vw, 10px);
    margin-inline: auto;
    transform: translate3d(
        0,
        calc(var(--hero-portrait-progress) * var(--hero-portrait-shift)),
        0
      )
      scale(calc(1 + (var(--hero-portrait-progress) * var(--hero-portrait-scale-delta))));
  }

  .simon-hero__portrait {
    transform: translateY(0);
  }

  .signature-band__card,
  .project-gallery__scene-media,
  .project-gallery__scene-card,
  .about-solo__media {
    border-radius: 14px;
  }

  .signature-band__intro {
    gap: var(--space-sm);
  }

  .project-gallery__intro {
    gap: var(--space-sm);
  }

  .signature-band__intro h2 {
    max-width: 13.2ch;
  }

  .signature-band__intro .section-lead {
    max-width: 32ch;
  }

  .project-gallery {
    display: none;
  }

  .project-gallery__mobile-scenes {
    display: grid;
  }

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

  .services-page__process-heading {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

@media (max-width: 430px) {
  .simon-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .simon-hero__actions .button {
    width: min(100%, 18.75rem);
  }
}

@media (max-width: 640px) {
  .project-gallery__mobile-scenes {
    --project-gallery-mobile-stage-height: min(80dvh, 640px);
    --project-gallery-mobile-scene-gap: clamp(18px, 3vh, 28px);
    --project-gallery-mobile-scene-pad-top: clamp(12px, 2.2vh, 20px);
    --project-gallery-mobile-step-height: 54dvh;
    --project-gallery-mobile-first-step-height: 14dvh;
    --project-gallery-mobile-first-step-offset: -74dvh;
    --project-gallery-mobile-last-step-height: 76dvh;
  }

  .simon-hero__visual {
    width: min(100vw, 440px);
  }

  .simon-hero__portrait {
    justify-content: center;
  }

  .simon-hero__portrait img {
    width: 100%;
    height: 100%;
  }

  .project-gallery__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Third pass: fix homepage motion sections and differentiate subpage heroes */

.simon-hero__line {
  padding-right: 0.14em;
  white-space: nowrap;
}

.simon-hero h1 em {
  display: flex;
  align-items: flex-end;
  gap: 0.02em;
  font-size: 1.16em;
  line-height: 0.88;
  margin-top: 0.04em;
}

.simon-hero__dot {
  transform: translateY(-0.01em);
}


.about-page__hero-shell,
.services-page__hero-shell,
.portfolio-page__hero-shell,
.contact-page__hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.about-page__hero-copy--editorial,
.services-page__hero-copy,
.portfolio-page__hero-copy--editorial,
.contact-page__hero-copy--editorial {
  max-width: 640px;
  min-width: 0;
  margin: 0;
  text-align: left;
}

.about-page__hero-copy--editorial .section-label,
.services-page__hero-copy .section-label,
.portfolio-page__hero-copy--editorial .section-label,
.contact-page__hero-copy--editorial .section-label {
  margin-inline: 0;
}

.about-page__hero h1,
.services-page__hero h1,
.portfolio-page__hero h1,
.contact-page__hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94;
}

.services-page__hero h1 {
  max-width: 14.6ch;
  line-height: 1.05;
}

.services-page__hero h1 .heading-accent {
  display: block;
  margin-top: 0.06em;
  font-size: 1.14em;
  line-height: 0.94;
  transform: none;
}

.about-page__hero-copy--editorial .hero-section__subtitle,
.services-page__hero-copy .hero-section__subtitle,
.portfolio-page__hero-copy--editorial .hero-section__subtitle,
.contact-page__hero-copy--editorial .hero-section__subtitle {
  max-width: 40ch;
  margin-inline: 0;
}

.about-page__hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
  isolation: isolate;
}

.about-page__hero-notes span,
.portfolio-page__hero-chip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.about-page__hero-notes span {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page__hero-notes::after {
  content: "";
  position: absolute;
  left: var(--about-pill-x, 0px);
  top: var(--about-pill-y, 0px);
  z-index: 2;
  width: var(--about-pill-width, 0px);
  height: var(--about-pill-height, 0px);
  padding: 1px;
  border-radius: 999px;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(74, 222, 128, 0.3) 45%,
      rgba(255, 255, 255, 0.96) 50%,
      rgba(74, 222, 128, 0.84) 55%,
      rgba(74, 222, 128, 0.24) 62%,
      transparent 68%,
      transparent 100%
    );
  background-size: 240% 100%;
  background-position: 145% 0;
  opacity: 0;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about-page__hero-notes.is-shimmering::after {
  animation: about-hero-pill-shimmer-active 1.7s linear both;
}

@keyframes about-hero-pill-shimmer-active {
  0% {
    opacity: 0;
    background-position: 145% 0;
  }

  6% {
    opacity: 1;
    background-position: 145% 0;
  }

  94% {
    opacity: 1;
    background-position: -45% 0;
  }

  100% {
    opacity: 0;
    background-position: -45% 0;
  }
}

.about-page__hero-media-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
}

.about-page__hero-media {
  min-height: 0;
}

.about-page__hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center top;
}

.about-page__hero-caption {
  padding: 1.1rem 1.2rem 1.3rem;
  color: rgba(255, 255, 255, 0.78);
}

.services-page__hero-shell {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
}

.services-page__hero-copy {
  max-width: 760px;
}

.services-page__hero-board {
  width: 100%;
  justify-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
  padding: clamp(18px, 2.5vw, 24px);
}

.services-page__hero-pillars {
  display: grid;
  gap: 0.95rem;
}

.services-page__hero-pillar {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease-out,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .services-page__hero-pillar:hover {
    border-color: rgba(152, 111, 255, 0.2);
    background: rgba(255, 255, 255, 0.072);
  }
}

.services-page__hero-pillar span {
  color: rgba(214, 199, 255, 0.34);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.6vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: none;
}

.services-page__hero-pillar h3 {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.32rem;
}

.services-page__hero-pillar p {
  color: rgba(255, 255, 255, 0.74);
}

.portfolio-page__hero-shell {
  grid-template-columns: 1fr;
  justify-items: center;
}

.portfolio-page__hero-copy--editorial {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.portfolio-page__hero-copy--editorial > * {
  text-align: center;
}

.portfolio-page__hero h1 {
  max-width: 13.5ch;
  line-height: 1.08;
  margin-inline: auto;
}

.portfolio-page__hero h1 .heading-accent {
  display: block;
  margin-top: 0.06em;
  font-size: 1.14em;
  line-height: 0.9;
  transform: none;
}

.contact-page__hero h1 {
  max-width: 17ch;
}

.contact-page__hero-copy--editorial {
  max-width: 760px;
}

.portfolio-page__hero-copy--editorial .section-label,
.portfolio-page__hero-copy--editorial .hero-section__actions {
  margin-inline: auto;
}

.portfolio-page__hero-copy--editorial .hero-section__subtitle {
  max-width: 56ch;
  margin-inline: auto;
}

.portfolio-page__hero-copy--editorial .hero-section__actions {
  justify-content: center;
}

.contact-page__hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.66fr);
}

.contact-page__hero-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
}

.contact-page__hero-card-label {
  color: rgba(152, 111, 255, 0.92);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page__hero-card .site-footer__link {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .about-page__hero-shell,
  .services-page__hero-shell,
  .portfolio-page__hero-shell,
  .contact-page__hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .project-gallery__scene-media,
  .about-page__hero-media-card,
  .services-page__hero-board,
  .portfolio-page__hero-aside,
  .contact-page__hero-card {
    border-radius: 14px;
  }

  .about-page__hero h1,
  .services-page__hero h1,
  .portfolio-page__hero h1,
  .contact-page__hero h1 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .portfolio-page__hero h1 {
    max-width: 12ch;
  }

  .portfolio-page__hero-copy--editorial .hero-section__subtitle {
    max-width: 34ch;
  }

  .about-page__hero-copy--editorial .hero-section__subtitle,
  .services-page__hero-copy .hero-section__subtitle,
  .contact-page__hero-copy--editorial .hero-section__subtitle {
    max-width: 37ch;
    overflow-wrap: anywhere;
  }

  .services-page__hero h1 {
    max-width: 17ch;
  }

  .contact-page__hero h1 {
    max-width: 16ch;
  }

  .services-page__system .section-heading h2 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .project-gallery__scene-media {
    aspect-ratio: 16 / 9;
    width: min(100%, 100vw - 40px);
  }

  .project-gallery__scene-card {
    width: min(100%, 100vw - 40px);
    margin-top: 0;
  }

}

@media (prefers-reduced-motion: reduce) and (max-width: 860px) {
  .project-gallery__mobile-scenes {
    gap: 24px;
  }

  .project-gallery__mobile-stage {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .project-gallery__scene {
    position: relative;
    inset: auto;
    justify-items: stretch;
    align-content: start;
    min-height: 0;
    gap: 18px;
    pointer-events: auto;
  }

  .project-gallery__scene + .project-gallery__scene {
    margin-top: 24px;
  }

  .project-gallery__scene-media,
  .project-gallery__scene-card {
    opacity: 1;
    transform: none;
  }

  .project-gallery__mobile-track {
    display: none;
  }
}

/* Fourth pass: site-wide layout refinements for secondary pages */

.not-found-page__inner {
  justify-items: start;
  margin: 0;
  text-align: left;
}

.not-found-page__inner .section-label,
.not-found-page__inner .hero-section__subtitle,
.not-found-page__inner .hero-section__support,
.not-found-page__inner h1,
.not-found-page__note {
  margin-inline: 0;
}

.not-found-page__actions {
  justify-content: flex-start;
}

.not-found-page__note {
  max-width: 34ch;
}

@media (max-width: 1100px) {
  .not-found-page__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .not-found-page__panel {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .not-found-page__panel {
    padding: 1.1rem;
  }

  .not-found-page__code {
    top: 12px;
    right: 14px;
    font-size: clamp(4.8rem, 26vw, 6.4rem);
  }

  .not-found-page__link-card {
    padding: 0.92rem 0.95rem;
  }
}

.portfolio-page__grid-section {
  padding-top: clamp(72px, 8vw, 104px);
}

.project-filters {
  gap: var(--space-md);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.project-filters__body {
  gap: var(--space-sm);
}

.project-filters__controls {
  gap: var(--space-sm);
}

.bio-section {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  column-gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.bio-section__copy {
  gap: clamp(22px, 3vw, 34px);
  max-width: none;
}

.bio-section__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 1.4vw, 1.1rem);
  align-items: start;
}

.bio-section__intro h2 {
  max-width: none;
}

.bio-section__highlight {
  grid-column: auto;
  grid-row: auto;
  max-width: 62ch;
  width: auto;
  padding: 0;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
}

.bio-section__body {
  gap: var(--space-md);
  max-width: 38rem;
}

.bio-section__media--simon img {
  aspect-ratio: 0.88;
  object-position: 58% top;
  transform: translateX(14.5%) scale(2.97);
  transform-origin: center 44%;
}

.about-page__why {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
}

.about-page__why-heading {
  max-width: 60rem;
  margin: 0;
}

.about-page__why-heading .section-label {
  margin-bottom: 0.4rem;
}

.about-page__why-heading .section-lead {
  max-width: 46rem;
}

.about-page__why-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.legal-page__hero .hero-section__inner,
.legal-page__hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

.legal-page__hero-copy {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.legal-page__hero-copy .section-label,
.legal-page__hero-copy .hero-section__subtitle {
  margin-inline: 0;
}

.legal-page__hero-copy .hero-section__subtitle {
  max-width: 33ch;
}

.legal-page__hero h1 {
  max-width: 10ch;
}

.legal-page__hero-aside {
  display: grid;
  gap: var(--space-xs);
  align-content: start;
  justify-items: start;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
}

.legal-page__hero-kicker {
  color: rgba(152, 111, 255, 0.92);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page__hero-aside a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 0.18em;
}

.legal-page__hero-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.legal-page__grid {
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 4vw, 56px);
}

.legal-page__aside-card {
  gap: var(--space-sm);
}

.legal-page__anchor-list {
  gap: 0;
}

.legal-page__anchor-list li {
  padding: 0.82rem 0;
  border-top: 1px solid rgba(18, 16, 14, 0.08);
}

.legal-page__anchor-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-page__content {
  gap: 0;
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-section {
  gap: var(--space-sm);
  padding: clamp(24px, 3vw, 34px) 0 0;
  border: 0;
  border-top: 1px solid rgba(18, 16, 14, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  max-width: 12ch;
}

.legal-section p,
.legal-section li {
  max-width: 70ch;
}

.legal-inline-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.82rem 1.1rem;
}

.legal-entity-card,
.legal-meta-list li {
  padding: 1rem 1.1rem;
  border-radius: 12px;
}

@media (max-width: 1100px) {
  .legal-page__hero .hero-section__inner,
  .legal-page__hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-page__aside {
    position: static;
    top: auto;
  }

  .legal-page__grid {
    grid-template-columns: 1fr;
  }

  .bio-section__intro {
    grid-template-columns: 1fr;
  }

  .about-page__why-grid--three {
    grid-template-columns: 1fr;
  }

  .legal-page__aside {
    position: static;
    top: auto;
  }

  .legal-page__content {
    padding: clamp(24px, 4vw, 32px);
  }
}

@media (max-width: 860px) {
  .about-page__hero-shell {
    gap: clamp(22px, 7vw, 30px);
    align-items: start;
  }

  .about-page__hero-copy--editorial {
    width: 100%;
    max-width: none;
  }

  .about-page__hero-copy--editorial .hero-section__subtitle {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1rem, 4.8vw, 1.12rem);
    overflow-wrap: anywhere;
  }

  .about-page__hero-notes {
    gap: 0.55rem;
  }

  .about-page__hero-media img {
    aspect-ratio: 0.92;
    object-position: center top;
  }

  .about-page__hero-caption {
    padding: 1rem 1rem 1.15rem;
  }

  .bio-section {
    grid-template-columns: 1fr;
    row-gap: clamp(24px, 7vw, 30px);
    align-items: start;
  }

  .bio-section__copy {
    gap: clamp(18px, 5vw, 24px);
    max-width: none;
  }

  .bio-section__intro {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .bio-section__highlight {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .bio-section__body {
    max-width: none;
  }

  .bio-section__media,
  .bio-section--reverse .bio-section__media {
    margin-top: 0;
  }

  .bio-section__media--simon img {
    aspect-ratio: 0.94;
    object-position: 58% top;
    transform: translateX(12.5%) scale(2.71);
    transform-origin: center 42%;
  }

  .about-page__why-heading .section-lead {
    max-width: none;
  }

  .bio-section__intro h2 {
    max-width: 12ch;
  }
}
