@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #174286;
  --blue: oklch(39.09% 0.1236 259.49);
  --blue-action: #246de0;
  --blue-action: oklch(55.72% 0.1896 259.65);
  --blue-deep: #102f63;
  --blue-soft: #d9e7ff;
  --mist: #f0f2f7;
  --mist: oklch(95.2% 0.007 268.55);
  --canvas: #fafafb;
  --canvas: oklch(97.89% 0.0029 264.54);
  --white: #fff;
  --ink: #17191d;
  --ink: oklch(21.34% 0 0);
  --muted: #4f5969;
  --rule: #dfe3ed;
  --rule: oklch(89.97% 0.0147 264.49);
  --radius-control: 6px;
  --radius-media: 10px;
  --radius-surface: 14px;
  --shell: 1180px;
  --section-space: clamp(5rem, 10vw, 8.5rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 20;
  --z-dialog: 40;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-weight: 700;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

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

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #071b3a !important;
}

.button,
.text-button {
  min-height: 48px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.88rem 1.25rem;
  border-radius: var(--radius-control);
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease, transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.button span {
  transition: transform 300ms var(--ease-out);
}

.button--small {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}

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

.text-button {
  padding: 0.55rem 0;
  background: transparent;
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

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

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.875rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--blue-action);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.button--header {
  display: none;
}

.mobile-menu {
  position: relative;
  margin-left: auto;
}

.mobile-menu summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-control);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::after {
  margin-left: 0.5rem;
  color: var(--blue-action);
  content: "+";
}

.mobile-menu[open] summary::after {
  content: "−";
}

.mobile-menu__links {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(17rem, calc(100vw - 2.5rem));
  padding: 0.45rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-media);
  background: var(--white);
}

.mobile-menu__links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-control);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu__links a:hover {
  background: var(--mist);
}

.hero {
  display: grid;
  background: var(--white);
}

.hero__copy {
  display: flex;
  align-items: center;
  padding: clamp(4rem, 12vw, 6.5rem) 1.25rem;
  background: var(--blue);
  color: var(--white);
}

.hero__copy-inner {
  width: min(100%, 42rem);
}

.hero__context,
.section-intro,
.email-dialog__context {
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero__context {
  color: var(--blue-soft);
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 7.4vw, 5.8rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero__lead {
  max-width: 62ch;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  color: #f5f8ff;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.25rem;
}

.hero__direct-note {
  margin-top: 1.25rem;
  color: #d9e7ff;
  font-size: 0.825rem;
}

.hero__media {
  position: relative;
  min-height: clamp(28rem, 125vw, 38rem);
  overflow: hidden;
  background: var(--mist);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.hero__media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 16rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
}

.experience-strip {
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.experience-strip__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-strip__list li {
  display: flex;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--rule);
  flex-direction: column;
  gap: 0.15rem;
}

.experience-strip__list li:last-child {
  border-bottom: 0;
}

.experience-strip strong {
  color: var(--blue);
  font-size: 1rem;
}

.experience-strip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.story {
  overflow: hidden;
  background: var(--canvas);
}

.story__grid {
  display: grid;
  gap: 2.25rem;
}

.story h2,
.advisory h2,
.proof h2,
.method h2,
.contact h2,
.legal-page h1,
.not-found h1 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.story__body {
  max-width: 68ch;
  color: var(--muted);
}

.story__body p + p {
  margin-top: 1.2rem;
}

.story__body .lead-copy {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.story__image,
.method__media {
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--mist);
}

.story__image img,
.method__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.story__image figcaption,
.method__media figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.story__statement {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-surface);
  background: var(--blue);
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.advisory {
  background: var(--mist);
}

.advisory__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}

.advisory__intro > p:last-child {
  max-width: 59ch;
  margin-top: 1.5rem;
  color: var(--muted);
}

.advisory__list {
  border-top: 1px solid #cbd3e2;
}

.advisory-row {
  display: grid;
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 1px solid #cbd3e2;
  gap: 1rem;
}

.advisory-row h3 {
  color: var(--blue);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.advisory-row p {
  max-width: 48ch;
  color: #414b5b;
}

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

.section-intro--light {
  color: var(--blue-soft);
}

.proof__header {
  display: grid;
  gap: 1.25rem;
}

.proof__header .section-intro {
  margin-bottom: 0;
}

.proof__header > p:last-child {
  max-width: 58ch;
  color: #e5edfc;
}

.proof__layout {
  display: grid;
  margin-top: clamp(3.25rem, 7vw, 5.75rem);
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.proof__feature {
  padding-block: clamp(2.25rem, 5vw, 4rem);
}

.proof__number {
  font-size: clamp(4.5rem, 11vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.proof__number span {
  font-size: 0.42em;
  letter-spacing: -0.02em;
}

.proof__feature h3 {
  max-width: 17ch;
  margin-top: 1.75rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.proof__feature > p:not(.proof__number, .proof__source) {
  max-width: 48ch;
  margin-top: 1.15rem;
  color: #e5edfc;
}

.proof__source {
  margin-top: 1.5rem;
  color: var(--blue-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.proof__notes {
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.proof__notes article {
  padding-block: clamp(2.25rem, 5vw, 3.25rem);
}

.proof__notes article + article {
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.proof__metric {
  color: var(--blue-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.proof__notes h3 {
  max-width: 24ch;
  margin-top: 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.proof__notes article > p:not(.proof__metric, .proof__source) {
  max-width: 49ch;
  margin-top: 0.8rem;
  color: #e5edfc;
  font-size: 0.95rem;
}

.method {
  background: var(--white);
}

.method__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}

.method__media img {
  min-height: 24rem;
  object-position: center;
}

.method__content h2 {
  max-width: 13ch;
}

.method__steps {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.method__steps li {
  display: grid;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
}

.method__steps li > span {
  padding-top: 0.15rem;
  color: var(--blue-action);
  font-size: 0.75rem;
  font-weight: 700;
}

.method__steps h3 {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.method__steps p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  background: var(--blue-deep);
  color: var(--white);
}

.contact__inner {
  display: grid;
  gap: clamp(2.25rem, 6vw, 5rem);
}

.contact h2 {
  max-width: 13ch;
}

.contact__action {
  align-self: end;
}

.contact__action > p {
  max-width: 52ch;
  color: #e2eafa;
}

.contact__action .button {
  margin-top: 1.75rem;
}

.no-script {
  margin-top: 1rem;
  color: var(--blue-soft);
  font-size: 0.8rem;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--rule);
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-footer__brand img {
  width: 32px;
  height: 32px;
}

.site-footer__brand strong {
  color: var(--ink);
}

.site-footer__brand span {
  font-size: 0.72rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 0.25em;
}

.email-dialog {
  width: min(calc(100% - 2rem), 38rem);
  max-height: calc(100dvh - 2rem);
  padding: clamp(1.5rem, 5vw, 2.75rem);
  overflow: auto;
  border: 0;
  border-radius: var(--radius-surface);
  background: var(--white);
  box-shadow: 0 20px 55px rgb(9 19 40 / 0.32);
  color: var(--ink);
}

.email-dialog::backdrop {
  background: rgb(10 18 34 / 0.7);
}

.email-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.email-dialog__context {
  margin-bottom: 0.75rem;
}

.email-dialog h2 {
  max-width: 16ch;
  padding-right: 2.5rem;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.email-dialog h2 + p {
  margin-top: 1rem;
  color: var(--muted);
}

.email-dialog__address {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-control);
  background: var(--mist);
  color: var(--blue);
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.email-dialog__actions {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.email-dialog__status {
  min-height: 1.5em;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Legal and utility pages */
.legal-header {
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.legal-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-underline-offset: 0.25em;
}

.legal-main {
  background: var(--canvas);
}

.legal-page {
  width: min(calc(100% - 2.5rem), 54rem);
  margin-inline: auto;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.legal-page h1 {
  max-width: none;
  color: var(--blue);
}

.legal-page__meta {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-page__intro {
  max-width: 67ch;
  margin-top: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.legal-section {
  padding-top: 2.25rem;
  margin-top: 2.25rem;
  border-top: 1px solid var(--rule);
}

.legal-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-section h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1rem;
}

.legal-section p,
.legal-section li {
  max-width: 72ch;
  color: #424b5a;
}

.legal-section p + p {
  margin-top: 0.9rem;
}

.legal-section ul {
  padding-left: 1.25rem;
}

.legal-section address {
  color: #424b5a;
  font-style: normal;
}

.legal-contact {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.legal-contact span {
  color: var(--muted);
  font-size: 0.8rem;
}

.not-found {
  display: grid;
  min-height: calc(100dvh - 73px);
  place-items: center;
  padding-block: 4rem;
  background: var(--mist);
}

.not-found__inner {
  width: min(calc(100% - 2.5rem), 48rem);
}

.not-found__code {
  margin-bottom: 1rem;
  color: var(--blue-action);
  font-weight: 700;
}

.not-found p:not(.not-found__code) {
  max-width: 52ch;
  margin-top: 1.25rem;
  color: var(--muted);
}

.not-found .button {
  margin-top: 1.75rem;
}

@media (min-width: 42rem) {
  .shell {
    width: min(calc(100% - 4rem), var(--shell));
  }

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

  .experience-strip__list li {
    padding: 1.5rem;
  }

  .experience-strip__list li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--rule);
  }

  .experience-strip__list li:nth-child(even) {
    padding-right: 0;
    padding-left: 2rem;
  }

  .experience-strip__list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .advisory-row {
    grid-template-columns: minmax(15rem, 0.9fr) 1.1fr;
    gap: 2rem;
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 54rem) {
  .primary-nav {
    display: flex;
  }

  .button--header {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: min(48rem, calc(100svh - 4.5rem));
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  }

  .hero__copy {
    padding: clamp(4.5rem, 8vw, 7.5rem) clamp(2rem, 5vw, 5rem) clamp(4.5rem, 8vw, 7.5rem) max(2rem, calc((100vw - var(--shell)) / 2));
  }

  .hero__media {
    min-height: 100%;
  }

  .hero__media figcaption {
    right: auto;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .story__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 4rem;
  }

  .story__heading {
    grid-column: 1 / 6;
  }

  .story__body {
    grid-column: 7 / 13;
  }

  .story__image {
    grid-column: 1 / 10;
  }

  .story__statement {
    z-index: 1;
    grid-column: 8 / 13;
    align-self: end;
    margin-bottom: -2.5rem;
  }

  .advisory__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  }

  .proof__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  }

  .proof__feature {
    padding-right: clamp(2rem, 6vw, 5rem);
    border-right: 1px solid rgb(255 255 255 / 0.28);
  }

  .proof__notes {
    padding-left: clamp(2rem, 6vw, 5rem);
    border-top: 0;
  }

  .method__grid {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.9fr);
    align-items: center;
  }

  .method__media img {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .contact__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.75fr);
    align-items: end;
  }
}

@media (min-width: 72rem) {
  .experience-strip__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .experience-strip__list li {
    min-height: 7rem;
    justify-content: center;
    padding-inline: 2rem;
    border-right: 1px solid var(--rule);
    border-bottom: 0;
  }

  .experience-strip__list li:first-child {
    padding-left: 0;
  }

  .experience-strip__list li:nth-child(even) {
    padding-right: 2rem;
  }

  .experience-strip__list li:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 27rem) {
  .button--header {
    max-width: 8.5rem;
    padding-inline: 0.7rem;
    font-size: 0.73rem;
    line-height: 1.25;
  }

}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: var(--blue-action);
    box-shadow: 0 4px 8px rgb(15 50 110 / 0.18);
    transform: translateY(-2px);
  }

  .button--light:hover {
    background: var(--blue-soft);
    color: var(--blue-deep);
  }

  .button:hover span {
    transform: translate(2px, -2px);
  }

  .primary-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .text-link:hover,
  .back-link:hover,
  .site-footer a:hover,
  .text-button:hover {
    text-decoration-thickness: 2px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy-inner {
    animation: hero-copy-in 850ms var(--ease-out) both;
  }

  .hero__media img {
    animation: hero-image-in 1100ms var(--ease-out) both;
  }

  @keyframes hero-copy-in {
    from {
      opacity: 0.01;
      transform: translateY(18px);
    }
  }

  @keyframes hero-image-in {
    from {
      opacity: 0.01;
      transform: scale(1.025);
    }
  }
}

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

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

@media (forced-colors: active) {
  :focus-visible {
    outline-color: Highlight;
    box-shadow: none !important;
  }

  .button,
  .email-dialog__close {
    border: 1px solid ButtonText;
  }

  .primary-nav a::after {
    background: LinkText;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .text-button,
  .email-dialog {
    display: none !important;
  }

  body,
  .legal-main,
  .legal-page {
    background: #fff;
    color: #000;
  }

  .legal-page {
    width: 100%;
    padding: 0;
  }
}

/* Originalnahe Beratungsseite und zustimmungspflichtige Video-Einbettungen */
.hero__copy-inner {
  width: min(100%, 46rem);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5.6vw, 4.6rem);
}

.hero__media {
  display: flex;
  min-height: 0;
  padding: clamp(1.25rem, 4vw, 3rem);
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  background: var(--mist);
}

.hero__media .video-consent {
  width: min(100%, 47rem);
  margin-inline: auto;
}

.hero__media > figcaption {
  position: static;
  max-width: 68ch;
  padding: 0.85rem 0 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
}

.video-update-note {
  max-width: 72ch;
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-control);
  background: #fff;
  color: #374356;
  font-size: 0.76rem;
  line-height: 1.55;
}

.video-update-note strong {
  color: var(--blue-deep);
}

.video-consent {
  overflow: hidden;
  border: 1px solid #cbd3e2;
  border-radius: var(--radius-media);
  background: var(--white);
}

.video-consent__poster {
  position: relative;
  overflow: hidden;
  background: #0a1730;
}

.video-consent__poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-consent__duration {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.55rem;
  border-radius: 4px;
  background: rgb(7 27 58 / 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.video-consent__gate {
  display: grid;
  padding: 1rem;
  align-items: center;
  gap: 0.7rem;
}

.video-consent__gate p {
  color: #4a5565;
  font-size: 0.75rem;
  line-height: 1.55;
}

.video-consent__gate .button {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
}

.video-consent__gate > a,
.video-consent__controls button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  text-underline-offset: 0.25em;
}

.video-consent__frame {
  aspect-ratio: 16 / 9;
  background: #071b3a;
}

.video-consent__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-consent__controls {
  display: flex;
  min-height: 54px;
  padding: 0.35rem 0.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--white);
}

.video-consent__controls p {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.video-consent__controls button {
  padding: 0.4rem 0;
  border: 0;
  flex: 0 0 auto;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
}

.pillars {
  background: var(--white);
}

.pillars__layout {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}

.pillars h2,
.transformation h2,
.cases h2,
.process h2,
.about h2,
.faq h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.pillars__intro > p {
  max-width: 59ch;
  margin-top: 1.5rem;
  color: var(--muted);
}

.pillars__list {
  border-top: 1px solid var(--rule);
}

.pillars__list article {
  display: grid;
  padding-block: clamp(1.6rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 2rem 1fr;
  gap: 0.5rem 1rem;
}

.pillars__list article > span {
  padding-top: 0.25rem;
  color: var(--blue-action);
  font-size: 0.72rem;
  font-weight: 700;
}

.pillars__list h3 {
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.pillars__list p {
  max-width: 55ch;
  grid-column: 2;
  color: var(--muted);
  font-size: 0.94rem;
}

.transformation {
  background: var(--mist);
}

.transformation__heading {
  display: grid;
  gap: clamp(0.8rem, 2vw, 1rem);
}

.transformation__heading > p {
  max-width: 61ch;
  color: #424d5e;
}

.transformation__heading > * {
  min-width: 0;
}

.transformation__table {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid #c6cfde;
}

.transformation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 1px solid #c6cfde;
}

.transformation-row > div {
  padding-block: clamp(1.5rem, 4vw, 2.25rem);
}

.transformation-row__problem {
  grid-row: 1;
  color: #505968;
}

.transformation-row__answer {
  grid-row: 3;
}

.transformation-row__state {
  display: inline-flex;
  margin-bottom: 0.65rem;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.transformation-row__state::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
  flex: 0 0 auto;
}

.transformation-row__problem .transformation-row__state {
  color: var(--muted);
}

.transformation-row__answer .transformation-row__state {
  color: var(--blue);
}

.transformation-row__connector {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #c1cbda;
  border-radius: 50%;
  grid-row: 2;
  place-items: center;
  justify-self: center;
  background: var(--mist);
  color: var(--blue-action);
  font-size: 0.85rem;
  line-height: 1;
}

.transformation-row__connector > span {
  transform: rotate(90deg);
}

.transformation-row h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
}

.transformation-row__problem h3 {
  color: #4d5868;
}

.transformation-row__answer h3 {
  color: var(--blue);
}

.transformation-row p {
  max-width: 53ch;
  font-size: 0.92rem;
}

.cases {
  background: var(--white);
}

.cases__header {
  display: grid;
  gap: 1.5rem;
}

.cases__header h2 {
  max-width: 18ch;
}

.cases__header > p {
  max-width: 62ch;
  color: var(--muted);
}

.cases__list {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--rule);
}

.case {
  display: grid;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--rule);
  gap: clamp(2rem, 6vw, 5rem);
}

.case__media {
  align-self: center;
}

.case__quote {
  align-self: center;
}

.case__quote h3 {
  max-width: 22ch;
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.case__quote blockquote {
  max-width: 59ch;
  margin-top: 1.4rem;
  color: #3e4857;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

.case__quote > p {
  display: flex;
  margin-top: 1.5rem;
  flex-direction: column;
  gap: 0.15rem;
}

.case__quote strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.case__quote span {
  color: var(--muted);
  font-size: 0.75rem;
}

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

.process__layout {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}

.process__heading {
  display: grid;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  gap: 1rem;
}

.process__heading > p {
  max-width: 64ch;
  color: #e3ebfa;
}

.process__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--blue-deep);
}

.process__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.process__media figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--blue-soft);
  font-size: 0.72rem;
}

.process__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.3);
  list-style: none;
}

.process__steps li {
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgb(255 255 255 / 0.3);
}

.process__steps span {
  color: var(--blue-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.process__steps h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

.process__steps p {
  max-width: 59ch;
  margin-top: 0.8rem;
  color: #e3ebfa;
  font-size: 0.92rem;
}

.about {
  background: var(--canvas);
}

.about__layout {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}

.about__media {
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--mist);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% center;
}

.about__media figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.about__lead {
  max-width: 48ch;
  margin-top: 1.75rem;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
}

.about__content > p:not(.about__lead) {
  max-width: 65ch;
  margin-top: 1rem;
  color: var(--muted);
}

.about__facts {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--rule);
}

.about__facts div {
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--rule);
}

.about__facts dt {
  color: var(--blue);
  font-weight: 700;
}

.about__facts dd {
  max-width: 58ch;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq {
  background: var(--white);
}

.faq__layout {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}

.faq__intro > p {
  max-width: 58ch;
  margin-top: 1.5rem;
  color: var(--muted);
}

.faq__items {
  border-top: 1px solid var(--rule);
}

.faq details {
  border-bottom: 1px solid var(--rule);
}

.faq summary {
  display: flex;
  min-height: 64px;
  padding-block: 1.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--blue-action);
  content: "+";
  flex: 0 0 auto;
  font-size: 1.4rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > div {
  max-width: 66ch;
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq details ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.faq details li + li {
  margin-top: 0.25rem;
}

@media (min-width: 42rem) {
  .video-consent__gate {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .video-consent__gate .button {
    width: auto;
    grid-column: 2;
    grid-row: 1;
  }

  .video-consent__gate > a {
    justify-content: flex-start;
    grid-column: 1;
  }

  .cases__header {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    align-items: end;
  }
}

@media (min-width: 54rem) {
  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 49fr) minmax(0, 51fr);
  }

  .hero__copy {
    padding-top: clamp(5rem, 8vw, 7.5rem);
    padding-bottom: clamp(5rem, 8vw, 7.5rem);
  }

  .hero__media {
    min-height: 100%;
  }

  .pillars__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .transformation-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(3rem, 8vw, 7rem);
  }

  .transformation-row__problem {
    grid-column: 1;
    grid-row: 1;
  }

  .transformation-row__answer {
    grid-column: 2;
    grid-row: 1;
    border-top: 0;
  }

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

  .case:nth-child(even) .case__media {
    order: 2;
  }

  .case:nth-child(even) .case__quote {
    order: 1;
  }

  .process__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    align-items: start;
  }

  .about__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
    align-items: center;
  }

  .faq__layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(25rem, 1.25fr);
    align-items: start;
  }
}

@media (hover: hover) and (pointer: fine) {
  .video-consent__gate > a:hover,
  .video-consent__controls button:hover {
    text-decoration-thickness: 2px;
  }

  .faq summary:hover {
    color: var(--blue);
  }
}

@media (forced-colors: active) {
  .video-consent {
    border: 1px solid CanvasText;
  }

  .video-consent__duration {
    border: 1px solid CanvasText;
  }
}

@media print {
  .video-consent,
  .video-update-note {
    display: none !important;
  }
}

/* Persönliche Tageslicht-Komposition: ruhiger, kompakter und responsiv neu abgestimmt. */
:root {
  --shell: 1160px;
  --section-space: clamp(4.75rem, 8vw, 7rem);
}

body {
  font-size: 1rem;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.site-header__inner {
  min-height: 68px;
}

.brand {
  gap: 0;
  font-size: 0.9rem;
}

.brand img {
  width: 40px;
  height: 40px;
}

.primary-nav {
  gap: clamp(0.9rem, 2vw, 1.75rem);
  font-size: 0.8rem;
}

.button,
.text-link,
.mobile-menu summary,
.mobile-menu__links a {
  min-height: 44px;
}

.button {
  padding: 0.78rem 1.1rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:active {
  transform: scale(0.97);
}

.hero {
  display: block;
  min-height: 0;
  background: var(--canvas);
}

.hero__layout {
  display: grid;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  align-items: center;
  gap: clamp(3rem, 8vw, 6.5rem);
}

.hero__copy {
  display: block;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.hero__copy-inner {
  width: auto;
  animation: none !important;
}

.hero__context {
  margin-bottom: 0.95rem;
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero__lead {
  max-width: 59ch;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  color: #465062;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.hero__actions {
  margin-top: 1.75rem;
  gap: 0.65rem 1.15rem;
}

.hero .text-link {
  color: var(--blue);
  font-size: 0.9rem;
}

.hero__direct-note {
  max-width: 58ch;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: #596273;
  font-size: 0.8rem;
  line-height: 1.55;
}

.hero__portrait {
  position: relative;
  margin: 0;
  padding: 0 0.9rem 0.9rem 0;
  isolation: isolate;
}

.hero__portrait::before {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 62%;
  border-radius: var(--radius-media);
  background: var(--blue);
  content: "";
}

.hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-media);
  object-fit: cover;
  object-position: 53% center;
}

.hero__portrait figcaption {
  display: flex;
  margin: -1.8rem 1.7rem 0 auto;
  width: fit-content;
  max-width: calc(100% - 2.5rem);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-control);
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.4;
  position: relative;
}

.hero__portrait figcaption strong {
  color: var(--blue);
  font-size: 0.8rem;
}

.hero__portrait figcaption span {
  color: var(--muted);
}

.experience-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.experience-strip__list li,
.experience-strip__list li:nth-child(odd),
.experience-strip__list li:nth-child(even) {
  min-height: 0;
  padding: 1.2rem 0;
  border-right: 0;
  border-bottom: 1px solid var(--rule);
}

.experience-strip__list li:last-child {
  border-bottom: 0;
}

.experience-strip strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.experience-strip span {
  max-width: 28ch;
  font-size: 0.74rem;
  line-height: 1.5;
}

.intro-video {
  background: var(--white);
}

.intro-video__layout {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 5.5rem);
}

.intro-video__copy .section-intro {
  margin-bottom: 0.9rem;
}

.intro-video h2,
.pillars h2,
.transformation h2,
.cases h2,
.process h2,
.about h2,
.faq h2,
.contact h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.3vw, 3.05rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.intro-video h2 {
  max-width: 20ch;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.intro-video__media {
  margin: 0;
}

.video-update-note {
  max-width: 61ch;
  margin-top: 1.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  color: #4c5667;
  font-size: 0.78rem;
}

.video-consent {
  border-color: #c9d1df;
  border-radius: 8px;
}

.video-consent__poster {
  aspect-ratio: 16 / 9;
}

.video-consent__poster img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.video-consent__gate {
  min-height: 8.5rem;
  padding: 0.9rem 1rem;
  gap: 0.45rem 0.9rem;
}

.video-consent__gate p {
  font-size: 0.72rem;
  line-height: 1.5;
}

.video-consent__gate .button {
  padding: 0.62rem 0.8rem;
  font-size: 0.75rem;
}

.video-consent__gate > a,
.video-consent__controls button {
  font-size: 0.7rem;
}

.video-consent__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-consent__controls {
  min-height: 56px;
}

.pillars {
  background: var(--canvas);
}

.pillars__layout {
  gap: clamp(2.75rem, 7vw, 5.5rem);
}

.pillars__intro > p,
.transformation__heading > p,
.cases__header > p,
.process__heading > p,
.about__content > p:not(.about__lead),
.faq__intro > p,
.contact__action > p {
  font-size: 0.96rem;
}

.pillars__list article {
  padding-block: clamp(1.4rem, 3vw, 2rem);
  grid-template-columns: 1.75rem 1fr;
  gap: 0.4rem 0.85rem;
}

.pillars__list h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

.pillars__list p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.cases__header {
  gap: 1.25rem clamp(2rem, 7vw, 5rem);
}

.transformation__table {
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
}

.transformation-row {
  position: relative;
}

.transformation-row > div {
  padding-block: clamp(1.35rem, 3vw, 1.9rem);
}

.transformation-row h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.transformation-row p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.cases__list {
  margin-top: clamp(3rem, 6vw, 4.75rem);
}

.case {
  padding-block: clamp(2.75rem, 6vw, 4.75rem);
  gap: clamp(2rem, 6vw, 4.5rem);
}

.case__quote h3 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.16;
}

.case__quote blockquote {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--rule);
  font-size: 0.98rem;
  line-height: 1.68;
}

.case__quote > p {
  margin-top: 1.25rem;
}

.process__layout {
  gap: clamp(2.75rem, 7vw, 5.5rem);
}

.process__media img {
  aspect-ratio: 16 / 10;
}

.process__steps li {
  padding-block: clamp(1.5rem, 3vw, 2.1rem);
}

.process__steps h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.process__steps p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.about__layout {
  gap: clamp(2.75rem, 7vw, 5.5rem);
}

.about__media img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.about__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
}

.about__facts {
  margin-top: 2rem;
}

.about__facts div {
  padding-block: 1.15rem;
}

.about__facts dt {
  font-size: 0.95rem;
}

.about__facts dd {
  font-size: 0.84rem;
  line-height: 1.65;
}

.faq__layout {
  gap: clamp(2.75rem, 7vw, 5.5rem);
}

.faq summary {
  min-height: 64px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.faq details > div {
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact h2 {
  max-width: 14ch;
}

.contact__inner {
  gap: clamp(2rem, 6vw, 4.5rem);
}

.contact__action .button {
  margin-top: 1.5rem;
}

.site-footer {
  padding-block: 1.65rem;
}

@media (min-width: 42rem) {
  .experience-strip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-strip__list li,
  .experience-strip__list li:nth-child(odd),
  .experience-strip__list li:nth-child(even) {
    padding: 1.35rem 1.5rem;
  }

  .experience-strip__list li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--rule);
  }

  .experience-strip__list li:nth-child(even) {
    padding-right: 0;
  }

  .experience-strip__list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 54rem) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
  }

  .hero__portrait {
    padding: 0 1.1rem 1.1rem 0;
  }

  .hero__portrait img {
    aspect-ratio: 4 / 5;
    object-position: 58% center;
  }

  .intro-video__layout {
    grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  }

  .pillars__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .transformation-row {
    column-gap: clamp(3rem, 8vw, 6rem);
  }

  .transformation-row__connector {
    position: absolute;
    top: calc(50% - 0.875rem);
    left: calc(50% - 0.875rem);
    grid-column: auto;
    grid-row: auto;
    background: var(--mist);
  }

  .transformation-row__connector > span {
    transform: none;
  }

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

  .process__layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(23rem, 1.12fr);
    align-items: start;
  }

  .process__heading {
    grid-template-columns: minmax(0, 0.88fr) minmax(23rem, 1.12fr);
    align-items: end;
    column-gap: clamp(2.75rem, 7vw, 5.5rem);
  }

  .about__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  }

  .faq__layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(25rem, 1.3fr);
  }
}

@media (min-width: 64rem) {
  .experience-strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .experience-strip__list li,
  .experience-strip__list li:nth-child(odd),
  .experience-strip__list li:nth-child(even) {
    min-height: 6.25rem;
    padding: 1.15rem clamp(1rem, 2.2vw, 1.6rem);
    border-right: 1px solid var(--rule);
    border-bottom: 0;
    justify-content: center;
  }

  .experience-strip__list li:first-child {
    padding-left: 0;
  }

  .experience-strip__list li:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 53.999rem) {
  .hero__portrait {
    width: min(100%, 42rem);
    margin-inline: auto;
  }

  .transformation-row__problem {
    padding-bottom: 0.95rem;
  }

  .transformation-row__answer {
    padding-top: 0.95rem;
  }

  .intro-video__copy {
    max-width: 44rem;
  }

  .about__media img {
    max-height: 34rem;
  }
}

@media (max-width: 41.999rem) {
  .hero__portrait {
    width: min(82vw, 18.5rem);
    margin-inline: auto 0;
  }

  .hero__portrait img {
    aspect-ratio: 4 / 3;
    object-position: 60% 48%;
  }

  .process__media {
    width: min(88%, 20rem);
    justify-self: start;
  }

  .process__media img {
    aspect-ratio: 16 / 9;
    object-position: 62% 45%;
  }

  .about__media {
    width: min(82%, 19rem);
    justify-self: end;
  }

  .about__media img {
    aspect-ratio: 3 / 2;
    object-position: 56% 45%;
  }
}

@media (max-width: 27rem) {
  .site-header__inner {
    gap: 0.5rem;
  }

  .brand {
    gap: 0;
    font-size: 0.82rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .mobile-menu summary {
    padding-inline: 0.7rem;
  }

  .hero__layout {
    padding-block: 3.25rem 3.75rem;
    gap: 2.75rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 2.55rem);
  }

  .transformation h2 {
    font-size: clamp(1.7rem, 8.5vw, 2rem);
  }

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

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__portrait {
    padding: 0 0.6rem 0.6rem 0;
  }

  .hero__portrait figcaption {
    margin-right: 1rem;
  }

  .video-consent__gate {
    min-height: 0;
  }

  .video-consent__controls {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.65rem;
  }

  .video-consent__controls button {
    width: 100%;
  }

  .case__quote blockquote {
    font-size: 0.95rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero__portrait img {
    transition: filter 220ms ease;
  }

  .hero__portrait:hover img {
    filter: saturate(1.04) contrast(1.02);
  }
}

/* Intentional motion: state changes first, atmosphere only once in the hero. */
.mobile-menu__links {
  transform-origin: top right;
}

.mobile-menu[open]:not(.is-closing) .mobile-menu__links {
  animation: pm-menu-in 180ms var(--ease-out) both;
}

.mobile-menu.is-closing .mobile-menu__links {
  animation: pm-menu-out 140ms var(--ease-out) both;
  pointer-events: none;
}

@keyframes pm-menu-in {
  from {
    opacity: 0.01;
    transform: translateY(-4px) scale(0.97);
  }
}

@keyframes pm-menu-out {
  to {
    opacity: 0.01;
    transform: translateY(-4px) scale(0.97);
  }
}

.faq summary {
  position: relative;
}

.faq summary::after {
  width: 0.875rem;
  height: 2px;
  background: var(--blue-action);
  content: "";
  flex: 0 0 0.875rem;
}

.faq summary::before {
  position: absolute;
  top: 50%;
  right: 0.375rem;
  width: 2px;
  height: 0.875rem;
  background: var(--blue-action);
  content: "";
  transform: translateY(-50%) scaleY(1);
  transition: transform 160ms var(--ease-out);
}

.faq details[open] summary::after {
  content: "";
}

.faq details[open] summary::before {
  transform: translateY(-50%) scaleY(0);
}

.faq details[open]:not(.is-closing) > div {
  animation: pm-faq-in 220ms var(--ease-out) both;
}

.faq details.is-closing > div {
  animation: pm-faq-out 160ms var(--ease-out) both;
  pointer-events: none;
}

@keyframes pm-faq-in {
  from {
    opacity: 0.01;
    transform: translateY(-6px);
  }
}

@keyframes pm-faq-out {
  to {
    opacity: 0.01;
    transform: translateY(-6px);
  }
}

.video-consent {
  position: relative;
}

.video-consent__player {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
}

.video-consent.is-revealing > .video-consent__poster,
.video-consent.is-revealing > .video-consent__gate {
  animation: pm-fade-out 220ms var(--ease-out) both;
}

.video-consent.is-revealing .video-consent__player {
  animation: pm-fade-in 220ms var(--ease-out) both;
}

.video-consent.is-loaded .video-consent__player {
  position: static;
  opacity: 1;
  pointer-events: auto;
}

.video-consent.is-unloading .video-consent__frame {
  animation: pm-video-frame-out 140ms var(--ease-out) both;
}

.video-consent.is-unloading .video-consent__controls {
  animation: pm-fade-out 140ms var(--ease-out) both;
  pointer-events: none;
}

.video-consent.is-restored .video-consent__poster {
  animation: pm-fade-in 180ms var(--ease-out) both;
}

.video-consent.is-restored .video-consent__gate {
  animation: pm-fade-in 180ms var(--ease-out) both;
}

@keyframes pm-video-frame-out {
  to {
    opacity: 0.01;
    transform: scale(0.985);
  }
}

@keyframes pm-fade-in {
  from {
    opacity: 0.01;
  }
}

@keyframes pm-fade-out {
  to {
    opacity: 0.01;
  }
}

.email-dialog {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.email-dialog[open] {
  opacity: 1;
  transform: scale(1);
}

.email-dialog[open].is-closing {
  opacity: 0.01;
  transform: scale(0.97);
  transition-duration: 180ms;
}

.email-dialog::backdrop {
  opacity: 0;
  transition: opacity 180ms ease-out;
}

.email-dialog[open]::backdrop {
  opacity: 1;
}

.email-dialog[open].is-closing::backdrop {
  opacity: 0;
  transition-duration: 160ms;
}

@starting-style {
  .email-dialog[open] {
    opacity: 0.01;
    transform: scale(0.97);
  }

  .email-dialog[open]::backdrop {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy-inner {
    animation: pm-hero-copy-in 560ms var(--ease-out) both !important;
  }

  .hero__portrait {
    animation: pm-hero-portrait-in 680ms var(--ease-out) 80ms both;
  }

  @keyframes pm-hero-copy-in {
    from {
      opacity: 0.01;
      transform: translateY(14px);
    }
  }

  @keyframes pm-hero-portrait-in {
    from {
      opacity: 0.01;
      transform: scale(1.015);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu[open]:not(.is-closing) .mobile-menu__links,
  .video-consent.is-revealing .video-consent__player,
  .video-consent.is-restored .video-consent__poster,
  .video-consent.is-restored .video-consent__gate {
    animation: pm-fade-in 100ms ease-out both !important;
  }

  .mobile-menu.is-closing .mobile-menu__links,
  .video-consent.is-revealing > .video-consent__poster,
  .video-consent.is-revealing > .video-consent__gate,
  .video-consent.is-unloading .video-consent__frame,
  .video-consent.is-unloading .video-consent__controls {
    animation: pm-fade-out 100ms ease-out both !important;
  }

  .faq details[open]:not(.is-closing) > div {
    animation: pm-fade-in 120ms ease-out both !important;
  }

  .faq details.is-closing > div {
    animation: pm-fade-out 120ms ease-out both !important;
  }

  .faq summary::before {
    transition: transform 100ms ease-out !important;
  }

  .email-dialog,
  .email-dialog[open],
  .email-dialog[open].is-closing {
    transform: none !important;
    transition: opacity 120ms ease-out !important;
  }

  .email-dialog::backdrop,
  .email-dialog[open]::backdrop,
  .email-dialog[open].is-closing::backdrop {
    transition: opacity 120ms ease-out !important;
  }

  .hero__copy-inner,
  .hero__portrait {
    animation: pm-fade-in 180ms ease-out both !important;
  }
}
