:root {
  --color-primary: #165f93;
  --color-primary-dark: #12324a;
  --color-primary-light: #41b7c7;
  --color-secondary: #f28b78;
  --color-text: #12324a;
  --color-text-secondary: #527084;
  --color-background: #fffaf0;
  --color-background-section: #f6fbf7;
  --color-background-card: #ffffff;
  --color-border: rgba(18, 50, 74, 0.12);
  --font-display: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-max: 1180px;
  --page-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-height: 82px;
}

html {
  scroll-behavior: smooth;
}

body.alexandra-site {
  background:
    radial-gradient(circle at 7% 12%, rgba(65, 183, 199, 0.16), transparent 30rem),
    radial-gradient(circle at 94% 5%, rgba(242, 139, 120, 0.17), transparent 26rem),
    #fffaf0;
  color: var(--color-text);
  font-family: var(--font-body);
}

body.alexandra-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(18, 50, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 50, 74, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  background: rgba(255, 250, 240, 0.82);
  border-bottom: 1px solid rgba(18, 50, 74, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-max));
  max-width: none;
  padding-inline: 0;
}

.site-logo {
  min-width: 0;
  margin-left: 0;
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
  transform-origin: center center;
}

.site-logo:hover,
.site-logo:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px) scale(1.015);
  filter: drop-shadow(0 10px 18px rgba(18, 50, 74, 0.12));
}

.site-logo-img {
  width: 164px;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
}

.site-logo-text,
.theme-toggle,
.mobile-theme-toggle {
  display: none !important;
}

.nav-list a,
.mobile-nav-list a {
  font-weight: 620;
  color: var(--color-text);
  transition: transform 200ms ease, color 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.nav-list {
  gap: 0.72rem;
  align-items: center;
}

.nav-list > li {
  display: flex;
  align-items: center;
}

.nav-list .nav-item--has-children {
  position: relative;
}

.nav-list .nav-item--has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-list .nav-chevron {
  width: 1rem;
  height: 1rem;
  opacity: 0.9;
  stroke-width: 3;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-list .nav-item--has-children:hover .nav-chevron,
.nav-list .nav-item--has-children:focus-within .nav-chevron {
  opacity: 1;
  transform: rotate(180deg);
}

.nav-list a.active {
  background: transparent;
  color: var(--color-text);
  box-shadow: none;
  transform: none;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--color-primary-light);
  color: #ffffff;
  transform: none;
  box-shadow: 0 7px 16px rgba(18, 50, 74, 0.13);
}

.nav-list .nav-dropdown {
  position: absolute;
  top: calc(100% + 0.52rem);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 11.25rem;
  gap: 0.12rem;
  margin: 0;
  padding: 0.36rem;
  list-style: none;
  border: 1px solid rgba(18, 50, 74, 0.12);
  border-radius: 0.78rem;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 14px 34px rgba(18, 50, 74, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.25rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
  backdrop-filter: blur(18px);
}

.nav-list .nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}

.nav-list .nav-item--has-children:hover .nav-dropdown,
.nav-list .nav-item--has-children:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-list .nav-dropdown a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.22rem;
  padding: 0.42rem 0.76rem;
  border: 0;
  border-radius: 0.52rem;
  background: transparent;
  box-shadow: none;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.2;
  transform: none;
  white-space: nowrap;
}

.nav-list .nav-dropdown a.active {
  background: transparent;
  color: var(--color-text);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.nav-list .nav-dropdown a:hover,
.nav-list .nav-dropdown a:focus-visible {
  background: var(--color-primary-light);
  color: #ffffff;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.mobile-nav-list a.active {
  color: var(--color-text);
  transform: none;
}

[data-theme="dark"] body.alexandra-site .site-header .nav-list a.active,
[data-theme="dark"] body.alexandra-site .site-header .nav-dropdown a.active,
[data-theme="dark"] body.alexandra-site .mobile-nav-list a.active {
  background: transparent;
  color: var(--color-text-on-dark);
  box-shadow: none;
  transform: none;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus-visible {
  color: var(--color-primary);
  transform: translateX(3px);
}

.nav-list > li:last-child > a {
  border: 1px solid rgba(22, 95, 147, 0.2);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.58);
  transition-duration: 280ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-list > li:last-child > a:hover,
.nav-list > li:last-child > a:focus-visible {
  border-color: var(--color-primary-light);
  background: var(--color-primary-light);
}

.ah-main {
  overflow: hidden;
}

body.page-subpage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.page-subpage .main-content {
  flex: 1 0 auto;
  min-height: auto;
  padding-top: calc(var(--header-height) + clamp(6rem, 12vh, 8.5rem));
  padding-bottom: clamp(4rem, 8vh, 6.5rem);
}

body.page-subpage .footer {
  flex-shrink: 0;
}

.ah-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(94dvh, 58rem);
  padding: clamp(6.8rem, 10vw, 9.4rem) var(--page-gutter) clamp(3rem, 5vw, 4.8rem);
}

.ah-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ah-hero__ambient::before,
.ah-hero__ambient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.ah-hero__ambient::before {
  width: 23rem;
  height: 23rem;
  right: 8vw;
  top: 8rem;
  background: rgba(65, 183, 199, 0.17);
}

.ah-hero__ambient::after {
  width: 16rem;
  height: 16rem;
  left: 9vw;
  bottom: 10vh;
  background: rgba(242, 139, 120, 0.18);
}

.ah-hero__inner,
.ah-section__inner {
  width: min(100%, var(--container-max));
  margin-inline: auto;
}

.ah-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.86fr);
  gap: clamp(2.25rem, 5vw, 5.5rem);
  align-items: center;
}

.ah-kicker {
  margin: 0 0 1rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ah-hero h1,
.ah-section h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.ah-hero h1 {
  max-width: 8.6em;
  font-size: clamp(4rem, 9.2vw, 8.8rem);
}

.ah-section h2 {
  max-width: 10.5em;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
}

.ah-hero__lead,
.ah-lead {
  max-width: 38rem;
  color: var(--color-text-secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.ah-hero__lead {
  margin: 1.5rem 0 0;
}

.ah-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2.1rem;
}

.ah-btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.ah-btn:hover {
  transform: translateY(-2px);
}

.ah-btn:active {
  transform: translateY(0) scale(0.98);
}

.ah-btn--primary {
  border: 1px solid var(--color-primary-dark);
  background: var(--color-primary-dark);
  color: #fffaf0;
  box-shadow: 0 16px 34px rgba(18, 50, 74, 0.18);
}

.ah-btn--primary:hover {
  background: #165f93;
  color: #fff;
}

.ah-btn--text {
  color: var(--color-primary-dark);
  padding-inline: 0.35rem;
}

.ah-btn--text::after {
  content: "->";
  margin-left: 0.5rem;
  color: var(--color-secondary);
}

.error-page .btn-gradient {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary-dark);
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  background: var(--color-primary-dark);
  color: #fffaf0;
  font-weight: 760;
  text-shadow: none;
  box-shadow: 0 16px 34px rgba(18, 50, 74, 0.18);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.error-page .btn-gradient::after {
  display: none;
}

.error-page .btn-gradient:hover,
.error-page .btn-gradient:focus-visible {
  background: #165f93;
  border-color: #165f93;
  color: #ffffff;
  text-shadow: none;
  box-shadow: 0 18px 38px rgba(18, 50, 74, 0.2);
  transform: translateY(-2px);
}

.ah-hero__portrait {
  position: relative;
}

.ah-hero__card {
  position: relative;
  min-height: clamp(31rem, 55vw, 44rem);
  border: 1px solid rgba(18, 50, 74, 0.12);
  border-radius: 2.2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(246, 251, 247, 0.88), rgba(255, 250, 240, 0.72)),
    #fff;
  box-shadow: 0 38px 90px rgba(18, 50, 74, 0.18);
}

.ah-hero__card::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 1.5rem;
  z-index: 2;
  pointer-events: none;
}

.ah-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.04) brightness(1.03);
}

.ah-hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 50, 74, 0.28), transparent 46%),
    radial-gradient(circle at 18% 22%, rgba(255, 250, 240, 0.42), transparent 20rem),
    radial-gradient(circle at 82% 18%, rgba(65, 183, 199, 0.22), transparent 18rem);
  z-index: 1;
}

.ah-chip {
  position: absolute;
  z-index: 3;
  translate: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 12px 28px rgba(18, 50, 74, 0.14);
  color: var(--color-primary-dark);
  font-weight: 760;
  backdrop-filter: blur(10px);
  will-change: transform, translate;
  animation: ah-float-soft 8.5s ease-in-out infinite;
}

.ah-chip--letters {
  left: 1.5rem;
  top: 1.7rem;
  transform: rotate(-7deg);
  animation-delay: -1.4s;
}

.ah-chip--numbers {
  right: 1.5rem;
  top: 7.2rem;
  transform: rotate(6deg);
  animation-duration: 9.5s;
  animation-delay: -3.2s;
}

.ah-chip--calm {
  right: 2rem;
  bottom: 2rem;
  color: #7d3b31;
  animation-duration: 10.5s;
  animation-delay: -5.1s;
}

.ah-hero__note {
  position: absolute;
  left: -2rem;
  bottom: 2.4rem;
  z-index: 4;
  width: min(18rem, 80%);
  border-radius: 1.3rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(18, 50, 74, 0.18);
  translate: 0 0;
  will-change: transform, translate;
  animation: ah-float-note 9.8s ease-in-out infinite;
  animation-delay: -2.6s;
}

@keyframes ah-float-soft {
  0%,
  100% {
    translate: 0 0;
  }

  35% {
    translate: 0.22rem -0.34rem;
  }

  68% {
    translate: -0.16rem 0.24rem;
  }
}

@keyframes ah-float-note {
  0%,
  100% {
    translate: 0 0;
  }

  42% {
    translate: -0.18rem -0.42rem;
  }

  74% {
    translate: 0.24rem 0.18rem;
  }
}

.ah-hero__note span {
  display: block;
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 760;
}

.ah-hero__note strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  line-height: 1.3;
}

.ah-section {
  padding: clamp(4.5rem, 9vw, 8.5rem) var(--page-gutter);
  scroll-margin-top: 5.5rem;
}

.ah-personality__grid,
.ah-support__grid,
.ah-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ah-personality__grid {
  align-items: stretch;
}

.ah-personality__copy {
  align-self: center;
}

.ah-personality {
  background: linear-gradient(180deg, rgba(246, 251, 247, 0.78), rgba(255, 250, 240, 0));
}

.ah-personality__image {
  position: relative;
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(18, 50, 74, 0.16);
}

.ah-personality__image::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 1.35rem;
  background: linear-gradient(to top, rgba(18, 50, 74, 0.14), transparent 55%);
  pointer-events: none;
}

.ah-personality__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% center;
}

.ah-traits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 43rem;
  margin-top: 2rem;
}

.ah-trait {
  border-radius: 1.1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 50, 74, 0.09);
}

.ah-trait span,
.ah-offer-card span {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ah-trait p {
  margin: 0.55rem 0 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.ah-offers {
  background: #12324a;
  color: #fffaf0;
}

.ah-offers .ah-kicker,
.ah-offers .ah-offer-card span {
  color: #8dd8e0;
}

.ah-offers h2 {
  color: #fffaf0;
}

.ah-section__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.ah-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.65rem, 2.1vw, 2rem);
}

.ah-offer-card {
  min-height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.ah-offer-card:first-child {
  transform: translateY(2rem);
}

.ah-offer-card:nth-child(2) {
  transform: translateY(-1.5rem);
}

.ah-offer-card__image {
  height: 14rem;
  border-radius: 1.6rem 1.6rem 0 0;
  overflow: hidden;
}

.ah-offer-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.06);
}

.ah-offer-card__body {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
}

.ah-offer-card h3,
.ah-step h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.ah-offer-card p,
.ah-step p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.58;
}

.ah-offer-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  padding: 0.66rem 0.9rem;
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.ah-offer-card__link:hover,
.ah-offer-card__link:focus-visible {
  border-color: #fffaf0;
  background: #fffaf0;
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.ah-support__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.ah-signal-list {
  display: grid;
  gap: 0.78rem;
}

.ah-signal {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(18, 50, 74, 0.13);
  padding: 1rem 0;
}

.ah-signal span {
  color: var(--color-secondary);
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.ah-signal p {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.42;
}

.ah-signal-list--stagger .ah-signal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.ah-signal-list--stagger.revealed .ah-signal {
  opacity: 1;
  transform: translateY(0);
}

.ah-signal-list--stagger.revealed .ah-signal:nth-child(1) { transition-delay: 140ms; }
.ah-signal-list--stagger.revealed .ah-signal:nth-child(2) { transition-delay: 230ms; }
.ah-signal-list--stagger.revealed .ah-signal:nth-child(3) { transition-delay: 320ms; }
.ah-signal-list--stagger.revealed .ah-signal:nth-child(4) { transition-delay: 410ms; }
.ah-signal-list--stagger.revealed .ah-signal:nth-child(5) { transition-delay: 500ms; }
.ah-signal-list--stagger.revealed .ah-signal:nth-child(6) { transition-delay: 590ms; }

.ah-process {
  background:
    radial-gradient(circle at 17% 22%, rgba(242, 139, 120, 0.22), transparent 22rem),
    radial-gradient(circle at 86% 18%, rgba(65, 183, 199, 0.2), transparent 25rem),
    radial-gradient(circle at 68% 82%, rgba(255, 250, 240, 0.74), transparent 20rem),
    linear-gradient(135deg, rgba(246, 251, 247, 0.98), rgba(219, 239, 244, 0.82) 52%, rgba(250, 233, 224, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(18, 50, 74, 0.035),
    inset 0 -1px 0 rgba(18, 50, 74, 0.035);
}

.ah-process__head {
  margin-bottom: 2.2rem;
}

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

.ah-step {
  min-height: 18rem;
  border-radius: 1.35rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(18, 50, 74, 0.1);
  box-shadow: 0 20px 46px rgba(18, 50, 74, 0.08);
}

.ah-step span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff0ea;
  color: #a54d41;
  font-weight: 820;
}

.ah-step p {
  color: var(--color-text-secondary);
}

.ah-steps--stagger .ah-step {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.ah-steps--stagger.revealed .ah-step {
  opacity: 1;
  transform: translateY(0);
}

.ah-steps--stagger.revealed .ah-step:nth-child(1) { transition-delay: 300ms; }
.ah-steps--stagger.revealed .ah-step:nth-child(2) { transition-delay: 410ms; }
.ah-steps--stagger.revealed .ah-step:nth-child(3) { transition-delay: 520ms; }
.ah-steps--stagger.revealed .ah-step:nth-child(4) { transition-delay: 630ms; }

.ah-contact {
  padding-bottom: 6rem;
}

.ah-contact__grid {
  align-items: start;
}

.ah-contact__details {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ah-contact__details a,
.ah-contact__details span {
  width: fit-content;
  color: var(--color-primary-dark);
  font-size: 1.08rem;
  font-weight: 680;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.ah-form {
  max-width: none;
  margin: 0;
  border-radius: 1.7rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid rgba(18, 50, 74, 0.11);
  box-shadow: 0 28px 70px rgba(18, 50, 74, 0.12);
}

.ah-form-lazy {
  min-width: 0;
}

.ah-form--loading {
  display: grid;
  gap: 0.72rem;
}

.ah-form__skeleton {
  display: block;
  height: 3.1rem;
  border-radius: 0.95rem;
  background: linear-gradient(90deg, rgba(18, 50, 74, 0.06), rgba(65, 183, 199, 0.12), rgba(18, 50, 74, 0.06));
  background-size: 220% 100%;
  animation: ahFormSkeleton 1.4s ease-in-out infinite;
}

.ah-form__skeleton--label {
  width: 5.2rem;
  height: 0.9rem;
  border-radius: 999px;
}

.ah-form__skeleton--message {
  height: 9.5rem;
}

.ah-form__skeleton--button {
  width: 12rem;
  margin: 0.68rem 0 0 auto;
  border-radius: 999px;
  background: rgba(18, 50, 74, 0.12);
}

@keyframes ahFormSkeleton {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

.ah-detail {
  overflow: hidden;
}

.ah-detail-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(82dvh, 54rem);
  padding: clamp(7rem, 10vw, 9.5rem) var(--page-gutter) clamp(4.5rem, 7vw, 7rem);
}

.ah-detail-hero--background-image {
  background-image: var(--detail-hero-bg);
  background-position: center;
  background-size: cover;
}

.ah-detail-hero--background-image .ah-detail-hero__ambient {
  display: none;
}

.ah-detail-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(65, 183, 199, 0.2), transparent 26rem),
    radial-gradient(circle at 12% 78%, rgba(242, 139, 120, 0.16), transparent 21rem);
}

.ah-detail-hero__inner,
.ah-detail-section__inner,
.ah-detail-cta__inner {
  width: min(100%, var(--container-max));
  margin-inline: auto;
}

.ah-detail-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.ah-detail-hero h1,
.ah-detail-heading h2,
.ah-detail-prose__title,
.ah-detail-cta h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.ah-detail-hero h1 {
  max-width: 9.6em;
  font-size: clamp(3.4rem, 7vw, 5.3rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.ah-detail--ruhe .ah-detail-hero h1 {
  max-width: none;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.ah-detail-hero__lead {
  max-width: 43rem;
  margin: 1.45rem 0 0;
  color: var(--color-text-secondary);
  font-size: clamp(1.1rem, 1.75vw, 1.34rem);
  line-height: 1.65;
}

.ah-detail-hero__media,
.ah-detail-media-block__image {
  position: relative;
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 34px 86px rgba(18, 50, 74, 0.18);
}

.ah-detail-hero__media::before,
.ah-detail-media-block__image::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 1.35rem;
  pointer-events: none;
}

.ah-detail-hero__media {
  aspect-ratio: 1.28;
}

.ah-detail-hero__image,
.ah-detail-media-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
}

.ah-detail--lesen .ah-detail-hero__media {
  background: #fcf7ed;
}

.ah-detail--lesen .ah-detail-hero__image {
  object-fit: contain;
  padding: clamp(0.7rem, 2vw, 1.25rem);
}

.ah-detail-section {
  padding: clamp(5.5rem, 8vw, 8rem) var(--page-gutter);
}

.ah-detail-section--intro {
  background: linear-gradient(180deg, rgba(246, 251, 247, 0.78), rgba(255, 250, 240, 0.92));
}

.ah-detail--lesen .ah-detail-section--intro {
  background: #e7f5f3;
}

.ah-detail-intro,
.ah-detail-split,
.ah-detail-media-block {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.ah-detail-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.48fr);
}

.ah-detail-intro--with-illustration {
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 0.68fr) minmax(18rem, 0.48fr);
  align-items: center;
}

.ah-detail-intro--top-illustration {
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  align-items: start;
}

.ah-detail-intro__illustration {
  margin: 0;
  justify-self: center;
}

.ah-detail-intro--top-illustration .ah-detail-intro__illustration {
  grid-column: 1 / -1;
  width: min(100%, 58rem);
  margin-bottom: clamp(0.75rem, 2.4vw, 1.5rem);
}

.ah-detail-intro__illustration img {
  display: block;
  width: min(100%, 32rem);
  height: auto;
  border-radius: 1.65rem;
  box-shadow: 0 26px 70px rgba(18, 50, 74, 0.12);
}

.ah-detail-intro--top-illustration .ah-detail-intro__illustration img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.ah-detail-split,
.ah-detail-media-block {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 0.9fr);
}

.ah-detail-prose,
.ah-detail-list,
.ah-detail-note {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.72;
}

.ah-detail-prose p,
.ah-detail-list p {
  margin: 0 0 1rem;
}

.ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > p:nth-of-type(2),
.ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > p:nth-of-type(2) {
  margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.ah-detail--lesen .ah-detail-section--intro .ah-kicker {
  margin-bottom: 1rem;
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
  letter-spacing: 0.12em;
}

.ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > p:nth-of-type(n + 3),
.ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > p:nth-of-type(n + 3) {
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.ah-detail-prose__title {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
}

.ah-detail-prose h3,
.ah-detail-list h3 {
  margin: 1.5rem 0 0.75rem;
  color: var(--color-primary-dark);
  font-size: 1.15rem;
}

.ah-detail-prose a,
.ah-detail-list a {
  color: var(--color-primary);
  font-weight: 760;
}

.ah-detail-note {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  border: 1px solid rgba(18, 50, 74, 0.12);
  border-radius: 1.5rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(18, 50, 74, 0.08);
}

.ah-detail-note span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ah-detail-note strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.ah-detail-note p {
  margin: 1rem 0 0;
}

.ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong {
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.18;
}

.ah-detail--lesen .ah-detail-section--intro .ah-detail-note p {
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
}

.ah-detail-heading h2 {
  max-width: 8.8em;
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.ah-detail-list {
  border-top: 1px solid rgba(18, 50, 74, 0.12);
}

.ah-detail-list ul,
.ah-detail-prose ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ah-detail-list li,
.ah-detail-prose li {
  position: relative;
  padding: 1rem 0 1rem 2.1rem;
  border-bottom: 1px solid rgba(18, 50, 74, 0.12);
}

.ah-detail-list li::before,
.ah-detail-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--color-secondary);
}

.ah-detail--lesen .ah-detail-section--signals .ah-detail-list ul {
  display: block;
  columns: 2 18rem;
  column-gap: clamp(2rem, 5vw, 4rem);
}

.ah-detail--zahlen .ah-detail-section--signals .ah-detail-list ul {
  display: block;
  columns: 2 18rem;
  column-gap: clamp(2rem, 5vw, 4rem);
}

.ah-detail--lesen .ah-detail-section--signals .ah-detail-split {
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.ah-detail--zahlen .ah-detail-section--signals .ah-detail-split {
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.ah-detail--ruhe .ah-detail-section--signals .ah-detail-split {
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.ah-detail--lesen .ah-detail-section--signals .ah-detail-heading {
  max-width: 68rem;
}

.ah-detail--zahlen .ah-detail-section--signals .ah-detail-heading {
  max-width: 68rem;
}

.ah-detail--ruhe .ah-detail-section--signals .ah-detail-heading {
  max-width: 68rem;
}

.ah-detail--lesen .ah-detail-section--signals .ah-detail-heading h2 {
  max-width: 10.5em;
}

.ah-detail--zahlen .ah-detail-section--signals .ah-detail-heading h2 {
  max-width: 10.5em;
}

.ah-detail--ruhe .ah-detail-section--signals .ah-detail-heading h2 {
  max-width: 10.5em;
}

.ah-detail--lesen .ah-detail-section--signals .ah-detail-list li {
  break-inside: avoid;
}

.ah-detail--zahlen .ah-detail-section--signals .ah-detail-list li {
  break-inside: avoid;
}

.ah-stress-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.ah-stress-columns h3 {
  margin: 0 0 0.8rem;
  color: var(--color-primary-dark);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

.ah-stress-columns ul {
  display: grid;
}

.ah-detail-section--signals {
  background: #fffaf0;
}

.ah-detail-section--soft {
  background:
    radial-gradient(circle at 80% 16%, rgba(65, 183, 199, 0.17), transparent 28rem),
    radial-gradient(circle at 10% 88%, rgba(242, 139, 120, 0.15), transparent 22rem),
    #f6fbf7;
}

.ah-detail-section--training {
  background: var(--color-primary-dark);
}

.ah-detail-section--training .ah-kicker,
.ah-detail-section--training h2 {
  color: #fffaf0;
}

.ah-detail-section--training .ah-detail-prose,
.ah-detail-section--training .ah-detail-prose p,
.ah-detail-section--training .ah-detail-prose li {
  color: rgba(255, 250, 240, 0.82);
}

.ah-detail-section--training .ah-detail-prose li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.ah-detail-section--training .ah-detail-prose a {
  color: #8dd8e0;
}

.ah-detail-media-block__image {
  min-height: 34rem;
  align-self: stretch;
}

.ah-detail--lesen .ah-detail-section--training .ah-detail-media-block__image {
  border-radius: 0;
  background: var(--color-primary-dark);
  box-shadow: none;
  overflow: visible;
}

.ah-detail--zahlen .ah-detail-section--training .ah-detail-media-block__image {
  border-radius: 0;
  background: var(--color-primary-dark);
  box-shadow: none;
  overflow: visible;
}

.ah-detail--lesen .ah-detail-section--training .ah-detail-media-block__image::before {
  display: none;
}

.ah-detail--zahlen .ah-detail-section--training .ah-detail-media-block__image::before {
  display: none;
}

.ah-detail--lesen .ah-detail-section--training .ah-detail-media-block__image img {
  object-fit: contain;
  padding: 0;
}

.ah-detail--zahlen .ah-detail-section--training .ah-detail-media-block__image img {
  object-fit: contain;
  padding: 0;
}

.ah-detail--ruhe .ah-detail-section--training .ah-detail-media-block__image img {
  object-position: center bottom;
}

.ah-detail-training-tail {
  grid-column: 1 / -1;
  width: min(100%, 54rem);
  margin: clamp(0.6rem, 2vw, 1.5rem) auto 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.72;
}

.ah-detail-training-tail p {
  margin: 0 0 1rem;
}

.ah-detail-training-tail h2 {
  margin: 2rem 0 0.8rem;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  font-weight: 760;
  line-height: 1.05;
}

.ah-detail-training-tail a {
  color: #8dd8e0;
  font-weight: 760;
}

.ah-detail-training-tail ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ah-detail-training-tail li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ah-detail-training-tail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--color-secondary);
}

.ah-detail-cta {
  padding: clamp(5.5rem, 8vw, 8rem) var(--page-gutter);
  background:
    radial-gradient(circle at 22% 30%, rgba(242, 139, 120, 0.15), transparent 22rem),
    radial-gradient(circle at 76% 60%, rgba(65, 183, 199, 0.17), transparent 28rem),
    #fffaf0;
}

.ah-detail-cta__inner {
  max-width: 56rem;
  text-align: center;
}

.ah-detail-cta h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.ah-detail-cta p {
  max-width: 42rem;
  margin: 1.1rem auto 2rem;
  color: var(--color-text-secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  text-wrap: balance;
}

.ah-form__row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.ah-form label {
  color: var(--color-primary-dark);
  font-weight: 720;
}

.ah-form input,
.ah-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 50, 74, 0.16);
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
  background: #fffaf0;
  color: var(--color-primary-dark);
  font: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.ah-form input:focus,
.ah-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(65, 183, 199, 0.18);
}

.ah-form .ah-btn {
  display: flex;
  width: fit-content;
  min-width: 12rem;
  margin: 1.4rem 0 0 auto;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
}

.form-feedback {
  margin-top: 1rem;
  color: var(--color-primary-dark);
  font-weight: 650;
}

.footer {
  background: #12324a;
  color: rgba(255, 250, 240, 0.82);
}

.footer p,
.footer-tagline,
.footer-services,
.footer-claim,
.footer-credit,
.footer-copyright {
  color: rgba(255, 250, 240, 0.82);
}

.footer-claim {
  color: rgba(255, 250, 240, 0.68);
}

.footer .footer-credit {
  margin: 0;
  color: rgba(255, 250, 240, 0.46);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.footer a {
  color: #fffaf0;
}

.footer-credit a {
  color: rgba(255, 250, 240, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.55);
}

.footer .footer-logo {
  width: min(220px, 100%);
  height: auto;
  justify-content: flex-start;
}

.footer-brand-name,
.footer-col-heading {
  color: #fffaf0;
}

.footer .footer-logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.revealed {
  transform: translateY(0);
}

/* Nibbly visual-editor compatibility for custom homepage components. */
body.alexandra-site.has-admin-bar .ah-hero__card > .editable-image-wrapper,
body.alexandra-site.has-admin-bar .ah-personality__image > .editable-image-wrapper,
body.alexandra-site.edit-mode-active .ah-hero__card > .editable-image-wrapper,
body.alexandra-site.edit-mode-active .ah-personality__image > .editable-image-wrapper {
  display: block !important;
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

body.alexandra-site.has-admin-bar .ah-personality__image > .editable-image-wrapper,
body.alexandra-site.edit-mode-active .ah-personality__image > .editable-image-wrapper {
  position: relative !important;
}

body.alexandra-site.has-admin-bar .ah-hero__card .editable-image-wrapper::after,
body.alexandra-site.has-admin-bar .ah-personality__image .editable-image-wrapper::after,
body.alexandra-site.edit-mode-active .ah-hero__card .editable-image-wrapper::after,
body.alexandra-site.edit-mode-active .ah-personality__image .editable-image-wrapper::after {
  display: none;
}

body.alexandra-site.has-admin-bar .ah-hero__image,
body.alexandra-site.has-admin-bar .ah-personality__image img,
body.alexandra-site.edit-mode-active .ah-hero__image,
body.alexandra-site.edit-mode-active .ah-personality__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

body.alexandra-site.has-admin-bar .ah-hero__image,
body.alexandra-site.edit-mode-active .ah-hero__image {
  position: absolute;
  inset: 0;
  object-position: center 20%;
}

body.alexandra-site.has-admin-bar .ah-personality__image img,
body.alexandra-site.edit-mode-active .ah-personality__image img {
  object-position: 12% center;
}

body.alexandra-site.has-admin-bar .ah-trait,
body.alexandra-site.has-admin-bar .ah-offer-card__body,
body.alexandra-site.has-admin-bar .ah-step,
body.alexandra-site.edit-mode-active .ah-trait,
body.alexandra-site.edit-mode-active .ah-offer-card__body,
body.alexandra-site.edit-mode-active .ah-step {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

body.alexandra-site.has-admin-bar .ah-offer-card__body {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
}

body.alexandra-site.has-admin-bar .ah-step {
  min-height: 18rem;
  border-radius: 1.35rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(18, 50, 74, 0.1);
  box-shadow: 0 20px 46px rgba(18, 50, 74, 0.08);
}

body.alexandra-site.has-admin-bar .ah-trait > span,
body.alexandra-site.has-admin-bar .ah-trait > span .editable-field-active,
body.alexandra-site.has-admin-bar .ah-offer-card__body > span,
body.alexandra-site.has-admin-bar .ah-offer-card__body > span .editable-field-active,
body.alexandra-site.edit-mode-active .ah-trait > span,
body.alexandra-site.edit-mode-active .ah-trait > span .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card__body > span,
body.alexandra-site.edit-mode-active .ah-offer-card__body > span .editable-field-active {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.alexandra-site.has-admin-bar .ah-offer-card__body > span,
body.alexandra-site.has-admin-bar .ah-offer-card__body > span .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card__body > span,
body.alexandra-site.edit-mode-active .ah-offer-card__body > span .editable-field-active {
  color: #a5ecf3;
}

body.alexandra-site.has-admin-bar .ah-trait p,
body.alexandra-site.has-admin-bar .ah-offer-card p,
body.alexandra-site.has-admin-bar .ah-step p,
body.alexandra-site.has-admin-bar .ah-signal p,
body.alexandra-site.has-admin-bar .ah-signal .editable-field-active,
body.alexandra-site.edit-mode-active .ah-trait p,
body.alexandra-site.edit-mode-active .ah-offer-card p,
body.alexandra-site.edit-mode-active .ah-step p,
body.alexandra-site.edit-mode-active .ah-signal p,
body.alexandra-site.edit-mode-active .ah-signal .editable-field-active {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-kicker,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-kicker .editable-field,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-kicker .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-kicker,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-kicker .editable-field,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-kicker .editable-field-active {
  color: var(--color-primary) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.76rem, 0.95vw, 0.9rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html,
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html,
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html,
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html,
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html {
  color: var(--color-text-secondary) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.45vw, 1.12rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.72 !important;
  text-transform: none !important;
}

body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type,
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type,
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type,
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type,
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:first-of-type .editable-field-active {
  margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem) !important;
  color: var(--color-primary-dark) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.25rem, 4.7vw, 5rem) !important;
  font-weight: 760 !important;
  letter-spacing: -0.035em !important;
  line-height: 0.98 !important;
  text-transform: none !important;
}

body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.has-admin-bar .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:nth-of-type(n + 2),
body.alexandra-site.edit-mode-active .ah-detail--zahlen .ah-detail-section--intro .ah-detail-prose > .editable-field-wrapper > .editable-field-html > p:nth-of-type(n + 2) {
  max-width: 52rem;
  color: var(--color-text-secondary) !important;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.72 !important;
  text-transform: none !important;
}

body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note {
  color: var(--color-text-secondary) !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note .editable-field,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note .editable-field,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note .editable-field-active {
  font: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-transform: inherit !important;
}

body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note span,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note span .editable-field,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note span .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note span,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note span .editable-field,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note span .editable-field-active {
  color: var(--color-secondary) !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note strong,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note strong .editable-field,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note strong .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note strong,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note strong .editable-field,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note strong .editable-field-active {
  color: var(--color-primary-dark) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.45rem, 2.2vw, 2rem) !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  line-height: 1.16 !important;
  text-transform: none !important;
}

body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note p,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note p .editable-field,
body.alexandra-site.has-admin-bar .ah-detail-section--intro .ah-detail-note p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note p,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note p .editable-field,
body.alexandra-site.edit-mode-active .ah-detail-section--intro .ah-detail-note p .editable-field-active {
  color: var(--color-text-secondary) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.72 !important;
  text-transform: none !important;
}

body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong .editable-field,
body.alexandra-site.has-admin-bar .ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong .editable-field-active,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong .editable-field,
body.alexandra-site.edit-mode-active .ah-detail--lesen .ah-detail-section--intro .ah-detail-note strong .editable-field-active {
  font-size: clamp(1.25rem, 1.7vw, 1.7rem) !important;
  line-height: 1.18 !important;
}

body.alexandra-site.has-admin-bar .ah-trait p,
body.alexandra-site.edit-mode-active .ah-trait p {
  margin: 0.7rem 0 0;
  color: var(--color-text-secondary);
  line-height: 1.48;
}

body.alexandra-site.has-admin-bar .ah-offer-card h3,
body.alexandra-site.has-admin-bar .ah-step h3,
body.alexandra-site.has-admin-bar .ah-offer-card h3 .editable-field-active,
body.alexandra-site.has-admin-bar .ah-step h3 .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card h3,
body.alexandra-site.edit-mode-active .ah-step h3,
body.alexandra-site.edit-mode-active .ah-offer-card h3 .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-active {
  margin: 0.5rem 0 0;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

body.alexandra-site.has-admin-bar .ah-step h3,
body.alexandra-site.has-admin-bar .ah-step h3 .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step h3 {
  color: var(--color-primary-dark);
}

body.alexandra-site.has-admin-bar .ah-offer-card p,
body.alexandra-site.has-admin-bar .ah-offer-card p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.58;
}

body.alexandra-site.has-admin-bar .ah-step p,
body.alexandra-site.has-admin-bar .ah-step p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step p {
  color: var(--color-text-secondary);
  line-height: 1.58;
}

body.alexandra-site.has-admin-bar .ah-signal span,
body.alexandra-site.has-admin-bar .ah-signal span .editable-field-active,
body.alexandra-site.edit-mode-active .ah-signal span,
body.alexandra-site.edit-mode-active .ah-signal span .editable-field-active {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

body.alexandra-site.has-admin-bar .ah-signal p,
body.alexandra-site.has-admin-bar .ah-signal p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-signal p,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-active {
  color: var(--color-primary-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.42;
}

body.alexandra-site.has-admin-bar .ah-trait p .editable-field-wrapper,
body.alexandra-site.has-admin-bar .ah-trait p .editable-field-active,
body.alexandra-site.has-admin-bar .ah-offer-card p .editable-field-wrapper,
body.alexandra-site.has-admin-bar .ah-offer-card p .editable-field-active,
body.alexandra-site.has-admin-bar .ah-step h3 .editable-field-wrapper,
body.alexandra-site.has-admin-bar .ah-step h3 .editable-field-active,
body.alexandra-site.has-admin-bar .ah-step p .editable-field-wrapper,
body.alexandra-site.has-admin-bar .ah-step p .editable-field-active,
body.alexandra-site.has-admin-bar .ah-signal p .editable-field-wrapper,
body.alexandra-site.has-admin-bar .ah-signal p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-trait p .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-trait p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-active {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-transform: inherit !important;
}

body.alexandra-site.edit-mode-active .ah-trait p .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-trait p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-active {
  display: block !important;
}

body.alexandra-site.edit-mode-active .ah-trait p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-active,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-active,
body.alexandra-site.edit-mode-active .ah-trait p .editable-field-active:hover,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-active:hover,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-active:hover,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-active:hover,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-active:hover,
body.alexandra-site.edit-mode-active .ah-trait p .editable-field-active:focus,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-active:focus,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-active:focus,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-active:focus,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-active:focus {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  text-decoration: none !important;
}

body.alexandra-site.edit-mode-active .ah-trait p .editable-field-editing,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-editing,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-editing,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-editing,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-editing {
  background: rgba(255, 250, 240, 0.16) !important;
  border-radius: 0.35rem !important;
  outline: 2px solid var(--color-secondary) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(68, 181, 196, 0.18) !important;
  caret-color: currentColor;
}

body.alexandra-site.edit-mode-active .ah-trait p .editable-field-editing::selection,
body.alexandra-site.edit-mode-active .ah-offer-card p .editable-field-editing::selection,
body.alexandra-site.edit-mode-active .ah-step h3 .editable-field-editing::selection,
body.alexandra-site.edit-mode-active .ah-step p .editable-field-editing::selection,
body.alexandra-site.edit-mode-active .ah-signal p .editable-field-editing::selection {
  background: rgba(68, 181, 196, 0.35);
  color: currentColor;
}

body.alexandra-site.edit-mode-active .editable-field-editing::selection,
body.alexandra-site.edit-mode-active .editable-field-editing *::selection {
  background: rgba(68, 181, 196, 0.35);
  color: currentColor;
}

body.alexandra-site.edit-mode-active .ah-trait.editable-group-active:hover,
body.alexandra-site.edit-mode-active .ah-offer-card.editable-group-active:hover,
body.alexandra-site.edit-mode-active .ah-step.editable-group-active:hover,
body.alexandra-site.edit-mode-active .ah-signal.editable-group-active:hover,
body.alexandra-site.edit-mode-active .ah-trait.editable-group-active:focus-within,
body.alexandra-site.edit-mode-active .ah-offer-card.editable-group-active:focus-within,
body.alexandra-site.edit-mode-active .ah-step.editable-group-active:focus-within,
body.alexandra-site.edit-mode-active .ah-signal.editable-group-active:focus-within {
  background: transparent !important;
}

body.alexandra-site.has-admin-bar .ah-offer-card__link,
body.alexandra-site.edit-mode-active .ah-offer-card__link {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  color: #fffaf0;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

body.alexandra-site.edit-mode-active .ah-offer-card__link:hover,
body.alexandra-site.edit-mode-active .ah-offer-card__link:focus-visible {
  border-color: rgba(255, 250, 240, 0.36);
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
  transform: none;
}

body.alexandra-site.has-admin-bar .ah-offer-card__link .editable-field-wrapper,
body.alexandra-site.has-admin-bar .ah-offer-card__link .editable-field-active,
body.alexandra-site.edit-mode-active .ah-offer-card__link .editable-field-wrapper,
body.alexandra-site.edit-mode-active .ah-offer-card__link .editable-field-active {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-transform: inherit !important;
}

body.alexandra-site.has-admin-bar .ah-step > span,
body.alexandra-site.edit-mode-active .ah-step > span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff0ea;
  color: #a54d41;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 980px) {
  .ah-hero__inner,
  .ah-detail-hero__inner,
  .ah-detail-intro,
  .ah-detail-split,
  .ah-detail-media-block,
  .ah-personality__grid,
  .ah-support__grid,
  .ah-contact__grid {
    grid-template-columns: 1fr;
  }

  .ah-hero {
    padding-top: 6.8rem;
  }

  .ah-hero h1 {
    font-size: clamp(3.4rem, 14vw, 6.3rem);
  }

  .ah-hero__portrait {
    width: min(100%, 39rem);
    justify-self: center;
  }

  .ah-hero__card {
    min-height: 34rem;
  }

  .ah-hero__note {
    left: 1rem;
  }

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

  .ah-traits {
    grid-template-columns: 1fr;
  }

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

  .ah-offer-card,
  .ah-offer-card:first-child,
  .ah-offer-card:nth-child(2) {
    transform: none;
  }

  .ah-offer-card {
    min-height: auto;
  }

  .ah-step {
    min-height: 12.5rem;
  }

  .ah-section__head {
    display: block;
  }

  .ah-personality__image {
    min-height: 32rem;
  }

  .ah-detail-note {
    position: relative;
    top: auto;
  }

  .ah-detail-hero__media {
    aspect-ratio: 1.35;
  }

  .ah-detail--lesen .ah-detail-section--signals .ah-detail-list ul,
  .ah-detail--zahlen .ah-detail-section--signals .ah-detail-list ul {
    columns: 1;
  }
}

@media (max-width: 760px) {
  .ah-offer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .ah-offer-card {
    width: min(100%, 34.375rem);
  }

  .ah-stress-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-logo-img {
    width: 164px;
  }

  .ah-personality {
    background-image:
      linear-gradient(90deg, rgba(18, 50, 74, 0.86) 0%, rgba(18, 50, 74, 0.62) 58%, rgba(18, 50, 74, 0.18) 100%),
      url("../assets/images/alexandra-about.webp");
    background-size: cover;
    background-position: left center;
    color: #fffaf0;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .ah-personality__grid {
    min-height: auto;
    align-items: end;
  }

  .ah-personality__image {
    display: none;
  }

  .ah-personality__copy {
    padding: 6.25rem 0 0;
  }

  .ah-personality .ah-kicker,
  .ah-personality h2,
  .ah-personality .ah-lead {
    color: #fffaf0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  }

  .ah-personality .ah-trait {
    background: rgba(18, 50, 74, 0.58);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
  }

  .ah-personality .ah-trait span {
    color: #8dd8e0;
  }

  .ah-personality .ah-trait p {
    color: rgba(255, 250, 240, 0.88);
  }

  .ah-hero__card {
    min-height: 29rem;
    border-radius: 1.45rem;
  }

  .ah-actions {
    align-items: flex-start;
  }

  .footer-bottom {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }

  .footer .footer-credit {
    text-align: left;
  }

  .ah-btn--text {
    justify-content: flex-start;
  }

  .ah-traits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 35rem;
  }

  .ah-step {
    min-height: 11rem;
    padding: 1rem;
  }

  .ah-step span {
    width: 2.65rem;
    height: 2.65rem;
  }

  .ah-section h2 {
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

  .ah-steps {
    gap: 0.75rem;
  }

  .ah-detail-hero {
    padding-top: 6.6rem;
  }

  .ah-detail-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.8rem);
  }

  .ah-detail-heading h2,
  .ah-detail-prose__title,
  .ah-detail-cta h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.6rem);
  }

  .ah-detail-media-block__image {
    min-height: 24rem;
  }

  .ah-chip {
    font-size: 0.82rem;
  }

  .ah-chip--numbers {
    top: 5.4rem;
  }
}

@media (max-width: 480px) {
  .ah-traits,
  .ah-steps {
    grid-template-columns: 1fr;
  }

  .ah-step {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ah-signal-list--stagger .ah-signal,
  .ah-steps--stagger .ah-step {
    opacity: 1;
    transform: none;
  }

  .ah-chip,
  .ah-hero__note {
    animation: none;
    translate: none;
  }
}
