:root {
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Poppins', 'Arial', sans-serif;
  --color-bg: #ffffff;
  --color-text: #282828;
  --color-muted: #4d4d4d;
  --color-primary: #ffa600;
  --color-primary-hover: #e89400;
  --color-cream: #fff5e3;
  --color-header: #fbf5ea;
  --color-footer-dark: #282828;
  --color-border: rgb(40 40 40 / 0.16);
  --color-shadow: 0 6px 16px rgb(0 0 0 / 0.22);
  --text-xs: clamp(0.75rem, 0.7rem + 0.18vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.22vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.04rem + 0.42vw, 1.35rem);
  --text-xl: clamp(1.7rem, 1.28rem + 1.3vw, 2.375rem);
  --text-2xl: clamp(2.4rem, 1.22rem + 4.4vw, 4.7rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  overflow-x: hidden;
}

.container {
  width: min(1140px, calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
}

.container.narrow {
  width: min(980px, calc(100% - clamp(32px, 7vw, 96px)));
}

.centered {
  text-align: center;
}

.text-nowrap {
  white-space: nowrap;
}

.section-white {
  background: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-header), transparent 5%);
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.07);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 119px;
  width: min(1288px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(260px, 26vw, 405px);
  white-space: nowrap;
  color: #0f0f0f;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.18vw, 1.88rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-logo span {
  color: var(--color-primary);
}

.brand-logo sup {
  top: -0.32em;
  font-size: 0.78em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
}

.site-nav > a,
.nav-dropdown > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-3);
  color: var(--color-text);
  font-weight: 400;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current='page'] {
  color: var(--color-primary);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 240px;
  padding: var(--space-3);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: var(--text-xs);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cta {
  width: 100%;
  min-width: 252px;
  min-height: 28px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff !important;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-weight: 500 !important;
  letter-spacing: 0.035em;
  line-height: 1.1 !important;
  padding: 7px 16px 0 !important;
  padding-bottom: 0 !important;
  white-space: nowrap;
}

.nav-cta-wrap {
  display: grid;
  min-width: 252px;
  gap: 1px;
  margin-left: var(--space-2);
  justify-items: center;
  padding: 0 0 7px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px rgb(255 166 0 / 0.18);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.nav-cta-wrap span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: lowercase;
}

.nav-cta-wrap:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.nav-cta:hover {
  background: transparent;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
}

.hero {
  min-height: 633px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgb(0 0 0 / 0.06), rgb(0 0 0 / 0.18)),
    url('./assets/hero.png') center center / cover no-repeat;
}

.hero-hr {
  min-height: 625px;
  background:
    linear-gradient(rgb(0 0 0 / 0.18), rgb(0 0 0 / 0.28)),
    url('./assets/hero-hr.png') center center / cover no-repeat;
}

.hero-hr .hero-content {
  margin-top: -14px;
}

.hero-hr h1 {
  max-width: 1140px;
}

.hero-hr p {
  max-width: 760px;
}

.hero-betroffene {
  min-height: 625px;
  background:
    linear-gradient(rgb(0 0 0 / 0.12), rgb(0 0 0 / 0.38)),
    url('./assets/hero.png') center center / cover no-repeat;
}

.hero-betroffene h1 {
  max-width: 1080px;
}

.hero-betroffene p {
  max-width: 790px;
}

.hero-leadership {
  min-height: 625px;
  background:
    linear-gradient(rgb(0 0 0 / 0.16), rgb(0 0 0 / 0.34)),
    url('./assets/hero-hr.png') center center / cover no-repeat;
}

.hero-leadership h1 {
  max-width: 1120px;
}

.hero-leadership p {
  max-width: 820px;
}

.hero-content {
  width: min(1140px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  min-width: 0;
  margin-top: -20px;
  color: #fefefe;
  text-align: center;
}

.hero h1 {
  max-width: 1140px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 0.9rem + 1.875vw, 2.625rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero p {
  max-width: 640px;
  margin: var(--space-6) auto var(--space-8);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.45);
}

.hero .hero-cta-note {
  margin: 10px auto 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.45);
  text-transform: lowercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 17px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.button-primary {
  color: #f2f2f2;
  background: var(--color-primary);
  box-shadow: 0 11px 26px rgb(0 0 0 / 0.15);
}

.button-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.button-light {
  min-height: 42px;
  padding: 13px 20px;
  color: #dd9808;
  background: #fff;
  box-shadow: 0 7px 16px rgb(0 0 0 / 0.14);
}

.button-small {
  min-height: 44px;
  padding: 13px 22px;
  color: #fff;
  background: var(--color-primary);
  font-size: var(--text-xs);
  align-self: center;
}

.challenge {
  padding: 60px 0 74px;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
}

.lead-copy,
.intro-lines {
  max-width: 760px;
  margin: var(--space-6) auto var(--space-8);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.75;
}

.challenge h3 {
  margin: var(--space-8) 0 var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.05rem + 0.9vw, 1.75rem);
  font-weight: 600;
}

.hurdles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  text-align: left;
}

.hurdle-card,
.perspective-card {
  background: #fff;
  border: 1px solid rgb(0 0 0 / 0.17);
  border-radius: 9px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.28);
}

.hurdle-card {
  min-height: 206px;
  padding: 28px 16px 24px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-weight: 700;
  line-height: 1;
}

.hurdle-card h4 {
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.hurdle-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
}

.phases {
  padding: 60px 0;
}

.phases h2 {
  margin-bottom: 52px;
  text-align: center;
}

.phase-list {
  display: grid;
  gap: 30px;
}

.phase-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 161px;
  padding: 10px;
  background: #fff;
}

.phase-number {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 141px;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.4rem + 3vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
}

.phase-card h3 {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.phase-card p {
  max-width: 720px;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.perspectives {
  padding: 70px 0 86px;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-8);
  text-align: left;
}

.perspective-card {
  min-height: 396px;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 24px;
}

.perspective-card h3 {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.perspective-card p {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.perspective-card ul {
  display: grid;
  gap: var(--space-3);
  margin: 0 0 var(--space-6) 0;
  padding-left: 0;
  list-style: none;
  font-size: var(--text-xs);
  line-height: 1.55;
}

.perspective-card li {
  position: relative;
  padding-left: 20px;
}

.perspective-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 0.8;
}

.perspective-card .button {
  margin-top: auto;
}

.about {
  padding: 0 0 82px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  align-items: stretch;
  overflow: hidden;
  min-height: 330px;
  padding: 44px 24px 0;
  border-radius: 10px;
  background: var(--color-primary);
  box-shadow: var(--color-shadow);
}

.about-copy {
  padding: 0 0 22px;
}

.about-copy h2 {
  margin-bottom: var(--space-5);
}

.about-copy p {
  max-width: 680px;
  margin-bottom: var(--space-5);
  font-size: var(--text-sm);
}

.about-copy ul {
  margin: var(--space-4) 0 var(--space-6) 18px;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.about-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 300px;
}

.about-image img {
  width: min(390px, 100%);
  filter: drop-shadow(0 12px 16px rgb(0 0 0 / 0.1));
}

.cta {
  padding: 70px 0 76px;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta blockquote {
  max-width: 760px;
  margin: 0 auto var(--space-5);
  color: var(--color-primary);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.cta p {
  max-width: 760px;
  margin: 0 auto var(--space-5);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.cta .confidential {
  margin-top: var(--space-3);
  margin-bottom: 0;
  font-size: var(--text-xs);
  font-style: italic;
}

.hr-compare {
  padding: 64px 0 72px;
}

.hr-compare h2,
.hr-process h2 {
  margin-bottom: var(--space-8);
  text-align: center;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compare-column h3 {
  min-height: 2.6em;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.03rem + 0.7vw, 1.5rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.compare-column h3 span {
  color: var(--color-primary);
}

.compare-card {
  min-height: 102px;
  margin-bottom: 26px;
  padding: 17px 16px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.33);
}

.compare-card h4 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.compare-card p {
  font-size: var(--text-xs);
  line-height: 1.6;
}

.compare-card-dark {
  color: var(--color-primary);
  background: #282828;
}

.compare-card-orange {
  color: #282828;
  background: var(--color-primary);
}

.hr-modules {
  padding: 60px 0 68px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: var(--space-8);
  text-align: left;
}

.module-card {
  min-height: 174px;
  padding: 24px 20px 22px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 0.14);
  border-radius: 9px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.module-card h3 {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.module-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.hr-process {
  padding: 62px 0 70px;
}

.process-list {
  display: grid;
  gap: 20px;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 9px;
  box-shadow: 0 3px 9px rgb(0 0 0 / 0.14);
}

.process-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.process-step p {
  max-width: 900px;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.consult-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: 28px 30px;
  border-radius: 10px;
  background: var(--color-primary);
  box-shadow: var(--color-shadow);
}

.consult-card h3 {
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.consult-card p {
  font-size: var(--text-sm);
}

.hr-invest {
  padding: 62px 0 70px;
}

.faq-promo {
  padding: 64px 0;
}

.faq-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: 34px 32px;
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.14);
}

.faq-promo-card h2 {
  margin-bottom: var(--space-4);
  text-align: left;
}

.faq-promo-card p:not(.section-kicker) {
  max-width: 760px;
  font-size: var(--text-sm);
  line-height: 1.7;
}

.faq-promo-card .button {
  flex: 0 0 auto;
}

.investment-list {
  display: grid;
  gap: 30px;
  margin-top: var(--space-8);
  text-align: left;
}

.investment-card h3 {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.betroffene-tension,
.betroffene-phases,
.leadership-pressure,
.leadership-formats,
.takeaway-section,
.faq-section {
  padding: 66px 0 78px;
}

.tension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: var(--space-8);
  text-align: left;
}

.tension-card,
.clarity-card,
.testimonial-card,
.faq-item {
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.14);
}

.tension-card {
  min-height: 188px;
  padding: 24px 20px;
}

.tension-card h3,
.clarity-card h3,
.testimonial-card p,
.faq-item summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.tension-card h3,
.clarity-card h3 {
  margin-bottom: var(--space-3);
}

.tension-card p,
.clarity-card p,
.testimonial-card blockquote,
.faq-item p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.clarity-section {
  padding: 64px 0 74px;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: var(--space-8);
  text-align: left;
}

.clarity-card {
  padding: 28px 22px 26px;
}

.clarity-card .icon-circle {
  color: #fff;
}

.betroffene-phases h2,
.faq-section h2 {
  margin-bottom: var(--space-8);
  text-align: center;
}

.testimonial-section {
  padding: 66px 0 78px;
}

.testimonial-section h2 {
  margin-bottom: var(--space-8);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.testimonial-card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 22px;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p {
  margin-top: var(--space-5);
  color: var(--color-primary);
}

.faq-section .section-kicker {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 24px;
}

.about-hero {
  padding: 70px 0 0;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: end;
  min-height: 610px;
}

.about-hero-copy {
  align-self: center;
  padding: 44px 0 72px;
}

.eyebrow,
.section-kicker {
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 760px;
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.7625rem, 1.02rem + 2.85vw, 3.3375rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.about-hero-copy p {
  max-width: 660px;
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: 1.65;
}

.hero-statement {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem) !important;
  font-weight: 600;
}

.about-portrait {
  position: relative;
  display: flex;
  min-height: 480px;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
  transform: translateX(clamp(20px, 3vw, 48px));
}

.about-portrait::before {
  content: '';
  position: absolute;
  inset: 44px 8% 0;
  z-index: -1;
  border-radius: 260px 260px 0 0;
  background: var(--color-primary);
  box-shadow: 0 24px 44px rgb(0 0 0 / 0.16);
}

.about-portrait img {
  width: min(390px, 88%);
  filter: drop-shadow(0 18px 18px rgb(0 0 0 / 0.14));
}

.about-story,
.why-section,
.work-method,
.insights-section,
.stage-teaser {
  padding: 72px 0 82px;
}

.about-story h2,
.about-credentials h2,
.today-section h2,
.work-method h2,
.fit-section h2 {
  margin-bottom: var(--space-8);
  text-align: center;
}

.about-story .section-kicker,
.why-section .section-kicker,
.insights-section .section-kicker {
  text-align: left;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.story-card,
.credential-card,
.fit-card,
.insights-card,
.method-item {
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.14);
}

.story-card {
  padding: 32px 28px;
}

.story-card-dark {
  color: #fff;
  background: var(--color-footer-dark);
}

.story-card h3 {
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
}

.story-card p,
.prose-block p,
.method-item p,
.fit-card li,
.credential-card li,
.credential-card p,
.today-grid p,
.insights-card p,
.insights-panel li {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.story-card p + p,
.prose-block p + p,
.credential-card p + p,
.today-grid p + p,
.insights-card p + p {
  margin-top: var(--space-4);
}

.stage-teaser-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: 34px 32px;
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 12px;
  background: var(--color-footer-dark);
  color: #fff;
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.18);
}

.stage-teaser-card h2 {
  margin-bottom: var(--space-4);
  color: #fff;
  text-align: left;
}

.stage-teaser-card p:not(.section-kicker) {
  max-width: 760px;
  font-size: var(--text-sm);
  line-height: 1.7;
}

.stage-teaser-card .button {
  flex: 0 0 auto;
}

.pull-line {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.about-credentials,
.today-section,
.fit-section {
  padding: 68px 0 76px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.credential-card {
  padding: 26px 24px;
}

.credential-card h3,
.fit-card h3,
.method-item h3,
.insights-panel h3 {
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.credential-card ul,
.fit-card ul,
.compact-list,
.insights-panel ul {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.credential-card li,
.fit-card li,
.compact-list li,
.insights-panel li {
  position: relative;
  padding-left: 22px;
}

.credential-card li::before,
.fit-card li::before,
.compact-list li::before,
.insights-panel li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
}

.insights-panel li::before {
  color: var(--color-footer-dark);
}

.credential-wide {
  grid-column: span 2;
}

.membership-card {
  background: var(--color-primary);
}

.membership-card p {
  font-weight: 500;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.why-grid h2 {
  text-align: left;
}

.prose-block {
  padding-top: var(--space-2);
}

.today-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: var(--space-8);
  text-align: left;
}

.today-grid .module-card {
  min-height: 330px;
}

.work-method h2 {
  text-align: left;
}

.method-list {
  display: grid;
  gap: 18px;
}

.method-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: var(--space-5);
  padding: 24px;
}

.method-item span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fit-card {
  padding: 28px 26px;
}

.fit-positive {
  color: #fff;
  background: var(--color-footer-dark);
}

.fit-positive h3 {
  color: #fff;
}

.insights-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
}

.insights-card h2 {
  margin-bottom: var(--space-5);
  text-align: left;
}

.insights-panel {
  padding: 28px 24px;
  border-radius: 10px;
  background: var(--color-primary);
  box-shadow: var(--color-shadow);
}

.insights-panel .button {
  width: 100%;
  margin-top: var(--space-5);
  text-align: center;
}

.insights-qr {
  display: grid;
  justify-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  text-align: center;
}

.insights-qr img {
  width: min(170px, 72%);
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 16px rgb(0 0 0 / 0.14);
}

.insights-qr figcaption {
  max-width: 25ch;
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.35;
}

.insights-panel .button-primary {
  color: #fff;
  background: var(--color-footer-dark);
}

.press-hero {
  padding: 72px 0 78px;
}

.press-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.press-hero h1 {
  max-width: 820px;
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.725rem, 1.035rem + 2.85vw, 3.525rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.press-lead,
.press-hero blockquote {
  max-width: 760px;
  font-size: var(--text-base);
  line-height: 1.72;
}

.press-hero blockquote {
  margin-top: var(--space-6);
  padding-left: var(--space-5);
  border-left: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.press-hero-truth {
  max-width: 760px;
  margin-top: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.68;
  font-weight: 600;
  color: var(--color-ink);
}

.press-mission,
.press-card,
.press-list-card {
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--color-shadow);
}

.press-mission {
  padding: 28px 26px;
}

.press-mission span {
  display: inline-flex;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-mission p {
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.press-inline-action {
  margin-top: var(--space-8);
  padding-top: var(--space-2);
}

.press-profile-links {
  display: grid;
  gap: var(--space-4);
  margin: 0;
}

.press-profile-links div {
  display: grid;
  gap: var(--space-1);
}

.press-profile-links dt {
  color: var(--color-footer-dark);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-profile-links dd,
.press-profile-links a {
  color: var(--color-footer-dark);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.press-profile-links a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.press-profile-links a:hover {
  color: var(--color-footer-dark);
}

.press-section {
  padding: 68px 0 76px;
}

.press-section h2 {
  max-width: 860px;
  margin-bottom: var(--space-8);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 0.9375rem + 1.5vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.press-grid,
.press-profile-grid,
.press-two-column,
.press-contact-grid {
  display: grid;
  gap: var(--space-6);
}

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

.press-profile-grid,
.press-two-column,
.press-contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: start;
}

.press-card,
.press-list-card {
  padding: 28px 24px;
}

.press-card h3 {
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: 15.75px;
  font-weight: 600;
}

.books-feature-card {
  border-color: rgb(255 166 0 / 0.45);
  background: linear-gradient(180deg, #fff, rgb(255 244 224 / 0.72));
}

.book-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: var(--space-4);
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--color-footer-dark);
  background: rgb(255 166 0 / 0.28);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.book-shop-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: var(--space-7);
  align-items: start;
  margin-top: var(--space-8);
  padding: 30px 28px;
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 12px;
  background: var(--color-footer-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgb(0 0 0 / 0.16);
}

.book-shop-panel h3 {
  margin-bottom: var(--space-4);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
}

.book-shop-panel p {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.book-shop-links {
  display: grid;
  gap: var(--space-3);
}

.book-shop-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 14px 16px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgb(255 255 255 / 0.08);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
}

.book-shop-links a:hover {
  color: var(--color-footer-dark);
  background: var(--color-primary);
}

.press-card p,
.press-profile-grid p,
.press-list li,
.press-arrow-list li {
  font-size: var(--text-sm);
  line-height: 1.72;
}

.press-card p + p,
.press-profile-grid p + p {
  margin-top: var(--space-4);
}

.press-list,
.press-arrow-list {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.press-list li,
.press-arrow-list li {
  position: relative;
  padding-left: 24px;
}

.press-list li::before,
.press-arrow-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.press-list li::before {
  content: '•';
  font-size: 22px;
  line-height: 1;
}

.press-list li.press-list-heading {
  padding-left: 0;
  margin-top: var(--space-2);
}

.press-list li.press-list-heading::before {
  content: none;
}

.press-arrow-list li::before {
  content: '→';
}

.press-list strong {
  display: block;
  margin-bottom: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-base);
}

.press-list strong a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.press-list.compact {
  gap: var(--space-3);
}

.press-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.press-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--color-footer-dark);
  background: #fff;
  box-shadow: 0 7px 16px rgb(0 0 0 / 0.08);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
}

.press-download-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.press-download-links a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 18px 20px;
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 10px;
  color: var(--color-footer-dark);
  background: #fff;
  box-shadow: var(--color-shadow);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
}

.press-vita,
.press-download,
.press-contact {
  background: var(--color-primary);
}

.press-vita h3,
.press-vita p,
.press-download h2,
.press-download p,
.press-contact h2,
.press-contact p,
.press-contact a,
.press-download .section-kicker,
.press-contact .section-kicker {
  color: var(--color-footer-dark);
}

.press-download .button {
  margin-top: var(--space-5);
}

.press-photo-form {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.press-photo-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.press-photo-form legend,
.press-form-field span {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-footer-dark);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.press-photo-option {
  display: grid;
  gap: var(--space-2);
  cursor: pointer;
  color: var(--color-footer-dark);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
}

.press-photo-option input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.press-photo-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 0.7);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.68);
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.12);
}

.press-photo-frame img {
  inline-size: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.press-photo-option input:checked + .press-photo-frame {
  border-color: var(--color-footer-dark);
  box-shadow:
    0 0 0 3px rgb(255 255 255 / 0.9),
    0 14px 28px rgb(0 0 0 / 0.16);
}

.press-photo-option input:focus-visible + .press-photo-frame {
  outline: 2px solid var(--color-footer-dark);
  outline-offset: 3px;
}

.press-form-field input {
  inline-size: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgb(0 0 0 / 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--color-footer-dark);
}

.press-form-note {
  padding: var(--space-4);
  border-radius: 10px;
  background: rgb(255 255 255 / 0.62);
  font-size: var(--text-xs) !important;
}

.press-form-status {
  min-height: 1.6em;
  font-family: var(--font-display);
  font-weight: 700;
}

.stage-hero {
  padding: 74px 0 82px;
}

.stage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.stage-hero h1 {
  max-width: 780px;
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.7625rem, 1.02rem + 2.85vw, 3.3375rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.stage-hero-copy p {
  max-width: 720px;
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: 1.72;
}

.stage-lead {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem) !important;
  font-weight: 600;
}

.stage-quote-card,
.stage-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgb(40 40 40 / 0.94), rgb(40 40 40 / 0.72)),
    radial-gradient(circle at 20% 20%, rgb(255 166 0 / 0.58), transparent 42%);
  box-shadow: 0 24px 52px rgb(0 0 0 / 0.2);
}

.stage-photo-card {
  min-height: 0;
  display: grid;
  padding: 0;
  align-self: center;
  background: var(--color-footer-dark);
}

.stage-photo-card img,
.stage-wide-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stage-photo-card img {
  aspect-ratio: 4 / 3;
  object-position: center center;
}

.stage-photo-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgb(40 40 40 / 0.78);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.stage-quote-card::before {
  content: '„';
  position: absolute;
  top: -38px;
  left: 24px;
  color: rgb(255 166 0 / 0.4);
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
}

.stage-quote-card span {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-quote-card p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.3;
}

.stage-section,
.stage-cta {
  padding: 70px 0 78px;
}

.stage-section h2,
.stage-cta h2 {
  max-width: 880px;
  margin-bottom: var(--space-8);
  line-height: 1.18;
}

.stage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stage-card,
.stage-list-card,
.stage-mini-card {
  border: 1px solid rgb(0 0 0 / 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--color-shadow);
}

.stage-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}

.stage-card-dark {
  color: #fff;
  background: var(--color-footer-dark);
}

.stage-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-6);
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
}

.stage-card h3,
.stage-mini-card h3 {
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.stage-card p,
.stage-list-card li,
.stage-impact-copy p,
.stage-mini-card p {
  font-size: var(--text-sm);
  line-height: 1.72;
}

.stage-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.stage-list-card {
  padding: 30px 28px;
}

.stage-list-card ul {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage-list-card li {
  position: relative;
  padding-left: 26px;
}

.stage-list-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
}

.stage-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.stage-impact-copy {
  max-width: 920px;
}

.stage-impact-copy p + p {
  margin-top: var(--space-4);
}

.stage-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--space-8);
}

.stage-mini-card {
  padding: 24px 22px;
}

.stage-wide-photo {
  overflow: hidden;
  margin-top: clamp(34px, 5vw, 70px);
  min-height: 0;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 0.18);
}

.stage-wide-band {
  width: 100%;
}

.stage-wide-photo img {
  aspect-ratio: 1000 / 433;
  height: auto;
}

.site-footer {
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: clamp(32px, 6vw, 84px);
  padding: 78px max(8vw, 32px) 64px;
  background: var(--color-primary);
}

.footer-column {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.footer-column p + p {
  margin-top: var(--space-5);
}

.footer-book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: var(--space-6);
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 14px 30px rgb(0 0 0 / 0.14);
}

.footer-book-button:hover,
.footer-book-button:focus-visible {
  transform: translateY(-1px);
  background: var(--color-cream);
}

.footer-book-note {
  max-width: 320px;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}

.footer-contact h2 {
  margin-bottom: var(--space-8);
  color: #fff;
  font-size: 23px;
}

address {
  font-style: normal;
}

.footer-mark img {
  width: 150px;
  height: 150px;
  margin-bottom: var(--space-8);
  background: #fff;
}

.footer-mark p {
  max-width: 310px;
}

.footer-bottom {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--space-8);
  padding: 28px max(8vw, 32px);
  background: var(--color-footer-dark);
  font-size: var(--text-sm);
}

.footer-bottom span,
.footer-bottom a {
  color: var(--color-primary);
}

.linkedin {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 4px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .header-inner {
    width: min(100% - 32px, 960px);
    min-height: 86px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 86px 16px auto;
    display: grid;
    gap: 0;
    padding: var(--space-3);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.16);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a,
  .nav-dropdown > a {
    min-height: 48px;
    width: 100%;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: grid;
    min-width: 0;
    padding: 0 0 0 var(--space-4);
    border: 0;
    box-shadow: none;
  }

  .nav-cta-wrap {
    margin: var(--space-3) 0 0;
    justify-items: stretch;
    padding-bottom: 7px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-cta-wrap span {
    text-align: center;
  }

  .hero {
    min-height: 560px;
  }

  .hurdles-grid,
  .perspective-grid,
  .compare-grid,
  .module-grid,
  .tension-grid,
  .clarity-grid,
  .testimonial-grid,
  .about-hero-grid,
  .story-grid,
  .credential-grid,
  .why-grid,
  .today-grid,
  .fit-grid,
  .insights-card,
  .stage-hero-grid,
  .stage-card-grid,
  .stage-split,
  .stage-impact-grid,
  .press-hero-grid,
  .press-grid-three,
  .press-profile-grid,
  .press-two-column,
  .press-contact-grid,
  .press-download-links,
  .book-shop-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .about-hero {
    padding-top: 48px;
  }

  .about-hero-grid {
    min-height: 0;
  }

  .about-hero-copy {
    padding: 24px 0 10px;
  }

  .about-portrait {
    min-height: 360px;
  }

  .credential-wide {
    grid-column: auto;
  }

  .today-grid .module-card {
    min-height: auto;
  }

  .faq-promo-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-teaser-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-card {
    min-height: auto;
  }

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

  .consult-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-image {
    justify-content: flex-end;
    min-height: 240px;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    width: 240px;
    font-size: 1.32rem;
  }

  .hero {
    min-height: 590px;
    background-position: center top;
  }

  .hero-hr {
    min-height: 620px;
    background-position: center center;
  }

  .hero-betroffene {
    min-height: 650px;
    background-position: center center;
  }

  .hero-leadership {
    min-height: 650px;
    background-position: center center;
  }

  .hero-hr h1 {
    font-size: clamp(1.5rem, 0.945rem + 2.25vw, 1.8375rem);
  }

  .hero-betroffene h1 {
    font-size: clamp(1.5rem, 0.84rem + 2.85vw, 2.1375rem);
  }

  .hero-leadership h1 {
    font-size: clamp(1.5rem, 0.825rem + 2.85vw, 2.1375rem);
  }

  .hero-content {
    margin-top: 0;
  }

  .hero p br,
  .intro-lines br,
  .cta br {
    display: none;
  }

  .button {
    width: min(100%, 360px);
    letter-spacing: 0.02em;
  }

  .challenge,
  .perspectives,
  .betroffene-tension,
  .clarity-section,
  .betroffene-phases,
  .leadership-pressure,
  .leadership-formats,
  .takeaway-section,
  .testimonial-section,
  .faq-section,
  .faq-promo,
  .about-story,
  .about-credentials,
  .why-section,
  .today-section,
  .work-method,
  .fit-section,
  .insights-section,
  .stage-teaser,
  .stage-hero,
  .stage-section,
  .stage-cta,
  .press-hero,
  .press-section,
  .cta {
    padding-block: 52px;
  }

  .phase-card {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .tension-card,
  .clarity-card,
  .testimonial-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .about-hero h1 {
    font-size: clamp(1.5375rem, 0.9rem + 3vw, 2.0625rem);
  }

  .about-hero-copy p,
  .stage-hero-copy p,
  .story-card p,
  .prose-block p,
  .method-item p,
  .fit-card li,
  .credential-card li,
  .credential-card p,
  .today-grid p,
  .insights-card p,
  .insights-panel li,
  .stage-card p,
  .stage-list-card li,
  .stage-impact-copy p,
  .stage-mini-card p {
    font-size: 0.95rem;
  }

  .about-portrait {
    min-height: 300px;
  }

  .about-portrait::before {
    inset: 28px 10% 0;
  }

  .story-card,
  .credential-card,
  .fit-card,
  .insights-card,
  .method-item,
  .faq-promo-card,
  .stage-teaser-card,
  .stage-card,
  .stage-list-card,
  .stage-mini-card {
    padding: 22px 20px;
  }

  .stage-mini-grid {
    grid-template-columns: 1fr;
  }

  .stage-quote-card {
    min-height: 280px;
  }

  .method-item {
    grid-template-columns: 1fr;
  }

  .method-item span {
    width: 52px;
    height: 52px;
  }

  .insights-panel {
    padding: 24px 20px;
  }

  .compare-card {
    margin-bottom: 18px;
  }

  .phase-number {
    min-height: 90px;
  }

  .about {
    padding-bottom: 52px;
  }

  .about-card {
    width: min(100% - 24px, 1140px);
    padding: 32px 20px 0;
  }

  .footer-top,
  .footer-bottom {
    padding-inline: 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}
