:root {
  --ink: #12131f;
  --muted: #5f6374;
  --soft: #f6f6fb;
  --paper: #ffffff;
  --primary: #6260ff;
  --primary-soft: #e4e4ff;
  --line: rgba(18, 19, 31, 0.13);
  --green: #2d7d59;
  --yellow: #f6c85f;
  --shadow: 0 24px 70px rgba(18, 19, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-loading * {
  transition: none !important;
}

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

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(1120px, calc(100% - 2rem));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--paper);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(18, 19, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  padding-right: 0.85rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--paper);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a {
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
}

.nav a:hover {
  background: rgba(98, 96, 255, 0.14);
}

.nav a:focus-visible {
  background: rgba(98, 96, 255, 0.14);
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 220ms ease;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 220ms ease, opacity 220ms ease, width 220ms ease;
}

.nav-toggle:hover {
  background: rgba(98, 96, 255, 0.14);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 19, 31, 0.74), rgba(18, 19, 31, 0.32) 50%, rgba(18, 19, 31, 0.1)),
    linear-gradient(180deg, rgba(18, 19, 31, 0.28), rgba(18, 19, 31, 0.2) 55%, rgba(18, 19, 31, 0.8));
}

.hero::after {
  display: block;
  position: absolute;
  right: 4vw;
  bottom: 10vh;
  z-index: -1;
  width: min(42rem, 48vw);
  height: min(42rem, 48vw);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-content {
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  min-height: 100svh;
  align-content: center;
  margin: 0 auto;
  padding: 6.5rem 0 4rem;
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--primary-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(760px, 100%);
  margin-bottom: 1.05rem;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  line-height: 1.16;
}

.hero-copy {
  width: min(680px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
}

.button.primary {
  background: var(--primary);
  color: var(--paper);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--paper);
}

.button.ghost.dark {
  border-color: var(--line);
  color: var(--ink);
}

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

.button.primary:hover {
  box-shadow: 0 8px 28px rgba(98, 96, 255, 0.42);
}

.button:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.button.ghost:focus-visible {
  outline-color: var(--paper);
}

.scroll-cue {
  position: absolute;
  right: max(1rem, calc((100vw - 1120px) / 2));
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 2.8rem;
  height: 1px;
  background: currentColor;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

section[id] {
  scroll-margin-top: 5rem;
}

.profile-grid,
.split-heading,
.engagement-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.lead,
.split-heading p,
.books-intro p,
.contact-section h2 + p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.principles {
  display: grid;
  gap: 0.75rem;
}

.principle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--paper);
  padding: 1rem;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.principle span {
  color: var(--primary);
  font-size: 0.78rem;
}

.principle.is-active,
.principle:hover {
  border-color: transparent;
  background: var(--primary-soft);
}

.principle:focus-visible {
  border-color: transparent;
  background: var(--primary-soft);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.principle-panel {
  border-left: 4px solid var(--primary);
  background: var(--soft);
  padding: 1.1rem;
  color: var(--muted);
  transition: opacity 150ms ease;
}

/* ── Profile section rework ── */
.profile-subtext {
  color: var(--muted);
  margin-top: 0.85rem;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.68;
}

.belief-list {
  display: grid;
  gap: 0.75rem;
}

.belief-card {
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: 0.5rem;
  background: var(--soft);
  padding: 1.05rem 1.2rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.belief-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}

.belief-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Antrieb section ── */
.antrieb-intro {
  max-width: 54rem;
  margin-bottom: 3rem;
}

.antrieb-heading {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

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

.antrieb-pillar {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--soft);
  padding: 1.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.antrieb-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-index {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.antrieb-pillar p {
  color: var(--muted);
  margin: 0;
}

/* ── Privat section ── */
.privat-section {
  background: var(--soft);
}

.privat-heading {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  margin-bottom: 0;
}

.privat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.privat-block {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--paper);
  padding: 1.75rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.privat-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.privat-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1.1rem;
}

.privat-block h3 {
  margin-bottom: 0.75rem;
}

.privat-block p {
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

.values-section {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
}

.values-section > .section-kicker,
.values-section .value-grid {
  width: min(1120px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.values-section .section-kicker {
  color: var(--primary-soft);
}

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

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

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

.value-tile,
.project-card,
.book-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--paper);
  padding: 1.25rem;
}

.value-tile {
  min-height: 18rem;
  border-color: rgba(98, 96, 255, 0.35);
  background: rgba(98, 96, 255, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(98, 96, 255, 0.28);
}

.value-tile:nth-child(2) {
  background: rgba(98, 96, 255, 0.2);
  border-color: rgba(98, 96, 255, 0.28);
}

.value-tile:nth-child(3) {
  background: rgba(98, 96, 255, 0.1);
  border-color: rgba(98, 96, 255, 0.16);
}

.value-tile:nth-child(4) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.value-tile p {
  color: rgba(255, 255, 255, 0.74);
}

.tile-index,
.project-status,
.book-card span,
.timeline-date {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9rem;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.timeline-item > div {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--soft);
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.timeline-item > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline-item p,
.project-card p,
.book-card p,
.engagement-list p,
.credential-card p,
.award-video p,
.legal-card p {
  color: var(--muted);
}

.timeline-meta {
  margin-bottom: 0.75rem;
  color: var(--ink) !important;
  font-weight: 800;
}

.credentials-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.award-video {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin: 3rem 0 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(98, 96, 255, 0.11), rgba(228, 228, 255, 0.68)),
    var(--paper);
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.award-video:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.award-video > div {
  display: grid;
  align-content: center;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.award-video video {
  width: 100%;
  min-height: 18rem;
  max-height: 32rem;
  border-radius: 0.45rem;
  background: var(--ink);
  object-fit: cover;
}

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

.credential-group {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.credential-group > div:first-child {
  max-width: 48rem;
}

.credential-group > div:first-child h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
}

.participation-group {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

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

.credential-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--soft);
  padding: 1.15rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.credential-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.credential-card h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
}

.project-card {
  min-height: 20rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.project-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 900;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.engagement-section {
  width: 100%;
  background: var(--primary-soft);
}

.engagement-band {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.engagement-list {
  display: grid;
  gap: 1rem;
}

.engagement-list article {
  border: 1px solid rgba(98, 96, 255, 0.18);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.engagement-list article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--soft);
  padding: 1.5rem;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.recommendation-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.recommendation-card h3 {
  margin-bottom: 0;
}

.recommendation-card p {
  color: var(--muted);
  flex: 1;
}

.rec-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.rec-link {
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.9rem;
}

.rec-link:hover {
  text-decoration: underline;
}

.books-section {
  height: 300vh;
  background: var(--paper);
}

.books-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  padding: 6rem 0;
}

.books-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  align-items: end;
}

.book-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-left: max(1rem, calc((100vw - 1120px) / 2));
  will-change: transform;
}

.book-card {
  display: grid;
  width: min(22rem, calc(100vw - 3rem));
  min-height: 24rem;
  align-content: space-between;
  flex: 0 0 auto;
  background:
    linear-gradient(140deg, rgba(228, 228, 255, 0.72), rgba(255, 255, 255, 0) 46%),
    var(--paper);
}

.book-card:nth-child(2n) {
  background:
    linear-gradient(140deg, rgba(45, 125, 89, 0.18), rgba(255, 255, 255, 0) 48%),
    var(--paper);
}

.book-card:nth-child(3n) {
  background:
    linear-gradient(140deg, rgba(246, 200, 95, 0.22), rgba(255, 255, 255, 0) 48%),
    var(--paper);
}

.book-card h3 {
  font-size: 2rem;
}

.book-author {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: -0.35rem;
  margin-bottom: 0.6rem;
}

.book-link {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.book-link:hover {
  text-decoration: underline;
}

.contact-section {
  align-items: center;
}

.contact-section h2 {
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
}

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

.legal-section .split-heading {
  grid-template-columns: 1fr;
}

.legal-card {
  background: var(--soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.legal-card a {
  color: var(--primary);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.site-footer > div {
  display: flex;
  width: min(1120px, calc(100% - 2rem));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer a {
  color: var(--primary-soft);
}

@media (max-width: 560px) {
  .site-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    border-radius: 1rem;
    flex-wrap: wrap;
  }

  .site-header.nav-open {
    align-items: flex-start;
    border-radius: 1.25rem;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    max-width: none;
    overflow: visible;
    padding: 0.5rem 0 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-header.is-scrolled .nav {
    border-top-color: var(--line);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    border-radius: 0.5rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
  }

  .hero-content {
    align-content: end;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .profile-grid,
  .split-heading,
  .engagement-band,
  .contact-section,
  .books-intro {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .project-grid,
  .legal-grid,
  .credential-grid,
  .participation-grid,
  .award-video,
  .recommendation-grid,
  .antrieb-pillars,
  .privat-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 0.35rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-left: 1.5rem;
  }

  .timeline-date {
    width: fit-content;
    margin-bottom: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 0.5rem;
    width: calc(100% - 1rem);
  }

  .brand {
    padding-right: 0;
  }

  .brand > span:last-child {
    display: none;
  }

  .nav a {
    padding: 0.7rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .book-card {
    min-height: 21rem;
  }
}

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

  .reveal,
  .button,
  .project-card,
  .belief-card,
  .value-tile,
  .antrieb-pillar,
  .privat-block,
  .credential-card,
  .timeline-item > div,
  .engagement-list article,
  .award-video,
  .recommendation-card,
  .legal-card,
  .nav-toggle span {
    transition: none;
  }
}
