:root {
  --cream: #fbf7f1;
  --sand: #f4eee6;
  --warm: #eadfce;
  --clay: #b8886f;
  --clay-dark: #8d604e;
  --sage: #9aaa8b;
  --ink: #332c28;
  --muted: #766b63;
  --white: #ffffff;
  --line: rgba(51, 44, 40, 0.12);
  --shadow: 0 18px 46px rgba(83, 63, 49, 0.08);
  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

p {
  margin: 0 0 1.1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.14;
  color: var(--ink);
}

h1,
.coaching-fit-copy h2 {
  font-size: clamp(2.45rem, 5.8vw, 4.9rem);
  letter-spacing: -0.032em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.6vw, 4.05rem);
  line-height: 1.16;
  letter-spacing: -0.026em;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  letter-spacing: -0.026em;
}

h3 {
  font-size: 1.32rem;
  letter-spacing: -0.012em;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 105px 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sand);
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(83, 63, 49, 0.06);
}

.header-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 48px);
  padding-block: 8px;
}

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

.site-header .logo-image {
  display: block;
  width: auto;
  max-width: min(44vw, 268px);
  max-height: 138px;
  height: auto;
  aspect-ratio: 701 / 709;
  object-fit: contain;
  object-position: center;
  transform: translateX(-8px);
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  margin-left: auto;
  gap: clamp(10px, 1.25vw, 18px);
  font-size: clamp(0.84rem, 0.88vw, 0.92rem);
  color: var(--muted);
}

.main-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:not(.nav-cta):not(.nav-icon)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--clay);
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

.main-nav a.is-active:not(.nav-cta):not(.nav-icon),
.main-nav a[aria-current="page"]:not(.nav-cta):not(.nav-icon) {
  color: var(--clay-dark);
}

.main-nav a.is-active:not(.nav-cta):not(.nav-icon)::after,
.main-nav a[aria-current="page"]:not(.nav-cta):not(.nav-icon)::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.main-nav a:not(.is-active):not([aria-current="page"]):not(.nav-cta):not(.nav-icon):hover::after,
.main-nav a:not(.is-active):not([aria-current="page"]):not(.nav-cta):not(.nav-icon):focus-visible::after {
  opacity: 0.32;
  transform: scaleX(0.86);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: -6px;
  color: var(--muted);
  border-radius: 999px;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  color: var(--ink);
  background: rgba(184, 136, 111, 0.12);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-left: clamp(8px, 1.2vw, 16px);
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 18px 36px rgba(51, 44, 40, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(51, 44, 40, 0.22);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.75;
}

.hero::before {
  width: 52vw;
  height: 52vw;
  max-width: 620px;
  max-height: 620px;
  right: -12vw;
  top: 4vh;
  background: radial-gradient(
    circle,
    rgba(184, 136, 111, 0.22),
    transparent 64%
  );
}

.hero::after {
  width: 40vw;
  height: 40vw;
  left: -18vw;
  bottom: 6vh;
  background: radial-gradient(
    circle,
    rgba(154, 170, 139, 0.23),
    transparent 64%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-left: clamp(8px, 1.2vw, 16px);
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(51, 44, 40, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--white);
  box-shadow: 0 22px 42px rgba(51, 44, 40, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.hero-card {
  justify-self: end;
  width: min(100%, 460px);
}

.portrait-card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.soft-orb {
  display: none;
}

.portrait-image {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 30px;
  display: block;
  box-shadow: 0 22px 58px rgba(80, 62, 52, 0.12);
}

.portrait-placeholder {
  position: relative;
  height: 410px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    linear-gradient(rgba(51, 44, 40, 0.04), rgba(51, 44, 40, 0.04)),
    radial-gradient(
      circle at 50% 34%,
      #fbf7f1 0 18%,
      #e9d9c7 19% 31%,
      #cda48d 32% 47%,
      #9aaa8b 48% 100%
    );
}

.portrait-placeholder span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
}

.portrait-card p {
  position: relative;
  margin: 18px 0 0;
  padding: 0 4px;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.32rem, 2vw, 1.52rem);
  line-height: 1.35;
}

.teaser-grid,
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.teaser-grid .text-link,
.center-heading .text-link,
.for-whom-intro .text-link,
.experiences-intro .text-link {
  margin-top: 18px;
}

@media (min-width: 961px) {
  .desktop-heading-line,
  .desktop-heading-line-part {
    display: block;
  }

  .desktop-heading-line-part {
    white-space: nowrap;
  }

  #ueber-mich .image-frame {
    width: 76%;
    justify-self: end;
  }

  #ueber-mich .teaser-image {
    min-height: 400px;
  }
}

.teaser-image {
  min-height: 460px;
}

.detail-hero {
  padding-top: 96px;
}

.detail-hero h1,
.coaching-fit-copy h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 120px;
}

.section-heading p:not(.eyebrow),
.center-heading p:not(.eyebrow),
.about-grid p,
.contact-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-stack {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.intro-stack .section-heading {
  position: static;
  max-width: 820px;
}

.body-large {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  line-height: 1.78;
  margin-top: 34px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  max-width: 920px;
}

.issue-grid article {
  min-height: 148px;
  padding: clamp(26px, 3.4vw, 34px);
  border: 1px solid rgba(51, 44, 40, 0.06);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 34px rgba(83, 63, 49, 0.045);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.34rem, 2.1vw, 1.74rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.warm-section {
  background: var(--sand);
}

.for-whom-intro,
#ueber-mich .teaser-grid > .reveal:first-child,
#ablauf .section-heading {
  max-width: 900px;
  padding-block: clamp(24px, 5vw, 62px);
  text-align: left;
}

.for-whom-intro h2,
#ueber-mich .teaser-grid > .reveal:first-child h2,
#ablauf .section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.25rem, 4.9vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.for-whom-intro p:not(.eyebrow),
#ueber-mich .teaser-grid > .reveal:first-child p:not(.eyebrow),
#ablauf .section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: clamp(28px, 3.5vw, 38px) 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.82;
}

.for-whom-intro .quiet-emphasis {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: var(--clay-dark);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  text-underline-offset: 0.24em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  transform: translateX(3px);
}

.calm-section {
  background: linear-gradient(180deg, var(--cream), #f1eadf);
}

.quote-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-large);
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 16px 40px rgba(83, 63, 49, 0.09);
  overflow: hidden;
}

.quote-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.024em;
}

.image-quote-card {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.image-quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(51, 44, 40, 0.01),
    rgba(51, 44, 40, 0.58)
  );
}

.image-quote-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.image-quote-card p {
  padding: 44px;
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(51, 44, 40, 0.32);
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.55);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.image-frame {
  padding: 0;
  border: 0;
  border-radius: var(--radius-large);
  background: transparent;
  box-shadow: none;
}

.about-image {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 44%;
  border-radius: var(--radius-large);
  display: block;
}

.image-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 26px;
  background:
    linear-gradient(rgba(51, 44, 40, 0.03), rgba(51, 44, 40, 0.03)),
    radial-gradient(
      circle at 52% 24%,
      #fbf7f1 0 14%,
      #e7d5c2 15% 27%,
      #b8886f 28% 43%,
      #9aaa8b 44% 100%
    );
  color: rgba(51, 44, 40, 0.68);
}

.image-placeholder span,
.image-placeholder small {
  display: block;
}

.image-placeholder span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.image-placeholder small {
  max-width: 220px;
  margin-top: 8px;
}

.about-visual {
  display: grid;
  gap: 28px;
}

.certificate {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 390px);
  margin-inline: auto;
  text-align: center;
  padding: 0;
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.certificate,
.certificate-seal,
.certificate-badge,
.footer-certificate,
.footer-certificate-seal,
.about-certificate {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.certificate-seal {
  display: block;
  width: min(100%, clamp(240px, 25vw, 340px));
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
  filter: none;
}

.certificate strong {
  display: block;
  color: var(--clay-dark);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.coaching-image {
  width: min(100%, 760px);
  max-height: 440px;
  margin: -10px auto 42px;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius-large);
  box-shadow: 0 14px 34px rgba(83, 63, 49, 0.07);
}

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

.info-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.42);
}

.info-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--clay-dark);
  font-weight: 700;
}

.info-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

/* Ablauf detail page process cards */
.process-cards-section {
  background: var(--cream);
}

.process-cards-eyebrow {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.process-cards .info-card {
  min-height: 330px;
  padding: clamp(34px, 4vw, 46px);
}

.process-cards .info-card > span {
  width: auto;
  height: auto;
  display: block;
  place-items: initial;
  border-radius: 0;
  background: transparent;
  color: rgba(139, 91, 68, 0.66);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-cards .info-card h3 {
  margin: clamp(26px, 3vw, 34px) 0 0;
  font-size: clamp(1.48rem, 2.35vw, 2.1rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.process-cards .info-card p {
  margin-top: clamp(22px, 2.8vw, 30px);
}

.ablauf-final-cta {
  background: linear-gradient(
    180deg,
    var(--sand) 0%,
    var(--cream) 42%,
    var(--cream) 100%
  );
}

.ablauf-final-cta .final-cta-inner {
  justify-items: start;
}

.ablauf-final-cta .cta-box {
  max-width: 760px;
  justify-self: start;
  padding-inline: 0;
  text-align: left;
}

.ablauf-final-cta .cta-box h2 {
  max-width: 680px;
  margin-inline: 0;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.ablauf-final-cta .cta-box p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: 0;
}

.ablauf-final-cta .cta-actions {
  justify-content: flex-start;
}

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

.process-list article {
  display: grid;
  gap: 8px;
  padding: 30px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(51, 44, 40, 0.08);
  box-shadow: none;
}

.process-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.25;
}

.process-list span {
  color: var(--muted);
}

.testimonial-section {
  background: var(--sand);
}

.experiences-intro {
  max-width: 900px;
  margin-inline: auto;
  padding-block: clamp(24px, 5vw, 62px) 0;
  text-align: left;
}

.experiences-intro h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.25rem, 4.9vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.experiences-intro p:not(.eyebrow) {
  max-width: 700px;
  margin: clamp(28px, 3.5vw, 38px) 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.82;
}

.experiences-intro .text-link {
  margin-top: 18px;
}

#erfahrungen .testimonial-grid--single {
  max-width: 900px;
  margin: clamp(42px, 5vw, 70px) auto 0;
  justify-content: start;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(51, 44, 40, 0.09);
}

.testimonial-grid blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.36;
  letter-spacing: -0.012em;
}

.testimonial-grid figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  padding: clamp(86px, 10vw, 132px) 0 clamp(72px, 8vw, 104px);
  background: linear-gradient(
    180deg,
    var(--sand) 0%,
    var(--cream) 42%,
    var(--cream) 100%
  );
}

.final-cta-inner {
  display: grid;
  gap: clamp(42px, 6vw, 72px);
}

.cta-image-band {
  overflow: hidden;
  width: min(100%, 980px);
  justify-self: center;
  border-radius: 999px;
  aspect-ratio: 5.8 / 1;
  background: var(--warm);
}

.cta-image-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.cta-box {
  max-width: 860px;
  justify-self: center;
  padding: 0 clamp(8px, 3vw, 32px);
  text-align: center;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.cta-box h2 {
  max-width: 830px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.7vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.cta-box p:not(.eyebrow) {
  max-width: 620px;
  margin: clamp(24px, 3vw, 34px) auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.cta-actions {
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}

.home-final-cta .final-cta-inner {
  justify-items: start;
}

.home-final-cta .cta-box {
  width: min(100%, 1040px);
  max-width: 1040px;
  justify-self: start;
  padding-inline: 0;
  text-align: left;
}

.home-final-cta .cta-box .eyebrow,
.home-final-cta .cta-box h2,
.home-final-cta .cta-box p:not(.eyebrow) {
  margin-inline: 0;
  text-align: left;
}

.home-final-cta .cta-box h2 {
  max-width: 920px;
  font-size: clamp(2.15rem, 4.45vw, 4.15rem);
  white-space: nowrap;
}

.home-final-cta .cta-box p:not(.eyebrow) {
  max-width: 880px;
  margin-top: clamp(18px, 2.4vw, 26px);
}

.home-final-cta .cta-actions {
  justify-content: flex-start;
  margin-top: clamp(8px, 1.6vw, 16px);
}

@media (min-width: 768px) {
  .home-final-cta {
    padding-top: clamp(36px, 6vw, 82px);
  }
}

.home-final-cta .button {
  margin-left: 0;
}

.contact-section {
  background: linear-gradient(180deg, var(--cream), var(--sand));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: stretch;
}

.contact-intro {
  display: grid;
  align-content: start;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-large);
  background: transparent;
  box-shadow: none;
}

.contact-copy h3 {
  margin-bottom: 14px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form-cta {
  margin-top: 26px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center 52%;
  border-radius: var(--radius-large);
  box-shadow: none;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.contact-options .contact-email {
  display: grid;
  gap: 2px;
  align-items: start;
  border-radius: 20px;
  line-height: 1.28;
}

.contact-email span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-email strong {
  font-size: 1rem;
}

.email-link,
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.52em;
  line-height: 1.2;
}

.email-link__icon,
.instagram-link__icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  color: var(--clay);
  transform: translateY(0.02em);
}

.email-link__icon svg,
.instagram-link__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(51, 44, 40, 0.09);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(51, 44, 40, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(184, 136, 111, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.35em;
}

.contact-form.is-success .form-status {
  color: #5f7457;
}

.contact-form.is-error .form-status {
  color: #9a4f3f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 64px 0 20px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm) 100%);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  justify-content: space-between;
  gap: clamp(48px, 8vw, 120px);
}

.footer-grid p {
  max-width: 340px;
  color: var(--muted);
  margin-top: 18px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
}

.footer-grid a:not(.logo) {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
}

.footer-grid a.email-link,
.footer-grid a.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.62em;
}

.footer-email-link .email-link__icon,
.footer-instagram-link .instagram-link__icon {
  width: 1.22em;
  height: 1.22em;
  color: rgba(118, 107, 99, 0.86);
}

.footer-email-link .email-link__label,
.footer-instagram-link .instagram-link__label {
  font-weight: 500;
}

.footer-grid a[href^="mailto:"] {
  color: rgba(83, 63, 49, 0.78);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--clay-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 46px);
}

.footer-logo {
  align-items: center;
}

.footer-logo-image {
  width: clamp(172px, 15.5vw, 210px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(83, 63, 49, 0.12));
}

.footer-certificate-seal {
  width: clamp(126px, 11.8vw, 160px);
  flex: 0 0 auto;
  display: block;
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.footer-certificate-heading {
  display: none;
}


.home-page .hero .lead {
  max-width: 610px;
}

.home-page .issue-grid article {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.home-page .issue-grid article:hover,
.home-page .issue-grid article:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(83, 63, 49, 0.075);
}

.home-page .issue-grid article:focus-visible {
  outline: 1px solid rgba(141, 96, 78, 0.36);
  outline-offset: 4px;
}


@media (min-width: 961px) {
  .site-footer > .container {
    width: min(
      calc(var(--container) - 200px),
      calc(100% - clamp(160px, 14vw, 240px))
    );
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    column-gap: clamp(48px, 5vw, 76px);
    align-items: center;
  }

  .footer-brand {
    display: contents;
  }

  .footer-logo {
    justify-self: start;
  }

  .footer-logo-image {
    width: clamp(166px, 13.5vw, 184px);
  }

  .footer-certificate-seal {
    width: clamp(158px, 13vw, 176px);
    justify-self: center;
  }

  .footer-grid > :last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: end;
    margin-top: 0;
  }
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: clamp(44px, 5.8vw, 64px);
  padding-top: clamp(20px, 2.8vw, 28px);
  border-top: 1px solid rgba(118, 107, 99, 0.16);
  color: rgba(118, 107, 99, 0.66);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 34px);
}

.footer-legal a {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--clay-dark);
}

@media (prefers-reduced-motion: reduce) {
  .main-nav a,
  .main-nav a:not(.nav-cta):not(.nav-icon)::after {
    transition: none;
  }

  .home-page .issue-grid article {
    transition: box-shadow 0.22s ease;
  }

  .home-page .issue-grid article:hover,
  .home-page .issue-grid article:focus-visible {
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.legal-page {
  padding: 90px 0 110px;
}

.legal-content {
  max-width: 820px;
  padding: 44px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(83, 63, 49, 0.07);
}

.legal-content h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content .eyebrow {
  color: var(--clay-dark);
}

.legal-note {
  padding: 18px 20px;
  border-radius: var(--radius-small);
  background: var(--sand);
  color: var(--ink) !important;
  font-weight: 700;
}

@media (max-width: 960px) {
  #ueber-mich .desktop-heading-line,
  #ueber-mich .desktop-heading-line-part {
    display: block;
    white-space: nowrap;
  }

  .section {
    padding: 80px 0;
  }

  .site-header .logo-image {
    max-height: 112px;
    max-width: min(45vw, 230px);
    transform: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 101;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 92px 26px 30px;
    background: rgba(251, 247, 241, 0.98);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    font-size: 1.2rem;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(234, 223, 206, 0.42);
  }

  .main-nav a:not(.nav-cta):not(.nav-icon)::after {
    left: 18px;
    right: auto;
    bottom: 10px;
    width: 42px;
  }

  .main-nav a.is-active:not(.nav-cta):not(.nav-icon),
  .main-nav a[aria-current="page"]:not(.nav-cta):not(.nav-icon) {
    color: var(--clay-dark);
    background: rgba(184, 136, 111, 0.14);
  }

  .nav-icon {
    width: 56px;
    height: 56px;
    margin: 0;
    align-self: flex-start;
    background: rgba(234, 223, 206, 0.42);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .main-nav .nav-cta {
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white) !important;
  }

  .hero-grid,
  .teaser-grid,
  .detail-hero-grid,
  .two-column,
  .about-grid,
  .contact-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-card {
    gap: 28px;
  }
  .coaching-fit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coaching-fit-collage {
    justify-self: start;
    width: min(100%, 560px);
    margin-top: 0;
  }

  .contact-image {
    min-height: 360px;
    max-height: 520px;
  }

  .hero-card {
    justify-self: stretch;
  }

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

  .portrait-placeholder,
  .image-placeholder,
  .portrait-image,
  .about-image {
    min-height: 360px;
    height: auto;
  }

  .portrait-image {
    height: auto;
    min-height: 0;
  }

  .image-quote-card {
    min-height: 520px;
  }

  .section-heading {
    position: static;
  }

  .reverse-mobile .quote-card {
    order: 2;
  }

  .cards-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  /* Keep the transition from the final CTA into the footer compact on phones. */
  .site-footer {
    padding-top: 32px;
  }

  .for-whom-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .for-whom-link span {
    white-space: nowrap;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 92px;
    gap: 16px;
    padding-block: 6px;
  }

  .site-header .logo-image {
    max-height: 86px;
    max-width: min(54vw, 190px);
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand {
    align-items: center;
    gap: 12px;
  }

  .footer-logo {
    display: flex;
  }

  .footer-logo-image {
    width: clamp(168px, 50vw, 205px);
  }

  .footer-certificate-seal {
    width: clamp(94px, 28vw, 118px);
  }

  .footer-bottom {
    gap: 6px;
    font-size: 0.8rem;
  }

  .footer-legal {
    flex-wrap: nowrap;
    gap: 30px;
  }

  .certificate {
    width: min(100%, 330px);
  }

  .certificate-seal {
    width: min(100%, 300px);
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 3rem);
    line-height: 1.18;
    letter-spacing: -0.024em;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }

  .issue-grid article {
    min-height: auto;
    padding: 24px;
  }

  .quote-card,
  .legal-content,
  .contact-form {
    padding: 26px;
  }

  .image-quote-card {
    padding: 0;
    min-height: 460px;
  }

  .image-quote-card p {
    padding: 28px;
  }

  .contact-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .coaching-fit-collage {
    width: 100%;
    max-width: 520px;
    gap: 8px;
  }

  .coaching-fit-copy .check-list {
    margin-top: 16px;
  }

  .process-list article,
  .info-card,
  .testimonial-grid figure {
    padding: 24px;
  }
}

/* Über mich page */
.about-page .section {
  overflow: hidden;
}

.about-intro-section {
  padding: clamp(72px, 9vw, 118px) 0 clamp(36px, 4.5vw, 58px);
  background: var(--cream);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.about-hero-image {
  border-radius: var(--radius-large);
}

.about-hero-image .about-image {
  width: 100%;
  min-height: clamp(500px, 52vw, 660px);
  display: block;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius-large);
  box-shadow: 0 22px 54px rgba(83, 63, 49, 0.08);
}

@media (min-width: 961px) {
  .about-hero-image {
    width: 90%;
    transform: translateX(24px);
  }

  .about-hero-image .about-image {
    min-height: clamp(450px, 46.8vw, 594px);
  }
}

.about-hero-copy {
  max-width: 620px;
}

.about-hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.25rem);
}

.about-hero-copy .lead {
  max-width: 600px;
  margin-top: clamp(24px, 3vw, 34px);
  font-size: clamp(1.14rem, 1.75vw, 1.34rem);
  line-height: 1.75;
}

.about-text-section {
  padding: clamp(36px, 5vw, 66px) 0 clamp(60px, 8vw, 108px);
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(244, 238, 230, 0.54) 100%
  );
}

.about-text-column,
.about-narrow {
  width: min(100%, 820px);
  margin: 0 auto;
}

.about-text-column {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.16rem);
  line-height: 1.86;
}

.about-text-column p {
  margin-bottom: clamp(20px, 2.6vw, 30px);
}

.about-text-column p:last-child {
  margin-bottom: 0;
}

.about-belief {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.about-belief .eyebrow {
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

.about-emphasis {
  color: var(--ink) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.48rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.018em;
}

.about-belief-statement,
.about-belief-action {
  display: block;
}

.about-belief-statement {
  max-width: 18.5em;
}

.about-belief-action {
  margin-top: clamp(20px, 2.4vw, 28px);
}

.about-belief-statement span {
  display: block;
}

.about-work-section {
  padding: clamp(84px, 10vw, 136px) 0;
  background: var(--sand);
}

.about-narrow h2 {
  max-width: 800px;
}

.about-work-text {
  max-width: 760px;
  margin-top: clamp(30px, 4vw, 46px);
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.15rem);
  line-height: 1.84;
}

.about-work-text p {
  margin: 0;
}

.about-work-text p + p {
  margin-top: clamp(14px, 2vw, 20px);
}

.about-attitude-section {
  padding: clamp(82px, 9vw, 126px) 0 clamp(72px, 8vw, 112px);
  background: linear-gradient(180deg, var(--cream), #f5eee5);
}

.about-attitude-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

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

.about-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(51, 44, 40, 0.09);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 34px rgba(83, 63, 49, 0.045);
}

.about-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.about-list {
  display: grid;
  gap: clamp(14px, 1.6vw, 18px);
  margin: clamp(24px, 2.8vw, 34px) 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.about-list li {
  position: relative;
  padding: 0 0 0 30px;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  line-height: 1.78;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay-dark);
  box-shadow: none;
}

.about-actions {
  justify-content: center;
  margin-top: clamp(32px, 4.5vw, 52px);
}

.about-final-cta {
  padding-top: clamp(70px, 8vw, 108px);
  background: linear-gradient(
    180deg,
    #f5eee5 0%,
    var(--cream) 58%,
    var(--cream) 100%
  );
}

.about-final-cta .final-cta-inner {
  justify-items: center;
}

.about-final-cta .cta-box {
  max-width: 960px;
}

.about-final-cta .cta-box > .button {
  margin-top: clamp(14px, 2vw, 24px);
}

@media (min-width: 961px) {
  .about-final-cta .cta-box h2 {
    max-width: 14.2em;
    font-size: clamp(2.4rem, 4.05vw, 3.95rem);
    line-height: 1.06;
  }

  .about-final-cta .about-cta-nowrap {
    white-space: nowrap;
  }

  .about-final-cta .cta-box p:not(.eyebrow) {
    max-width: 39ch;
    margin-top: clamp(22px, 2.5vw, 30px);
    font-size: clamp(1.08rem, 1.35vw, 1.18rem);
    line-height: 1.62;
  }

  .about-final-cta .cta-box > .button {
    margin-top: clamp(28px, 3.4vw, 42px);
  }
}

@media (max-width: 960px) {
  .about-hero-grid,
  .about-cards-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero-image .about-image {
    min-height: 0;
    max-height: 620px;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  body.about-route .main-nav a.is-active:not(.nav-cta):not(.nav-icon) {
    background: transparent;
  }

  .about-intro-section {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .about-text-section {
    padding-top: 24px;
  }

  .about-hero-grid {
    gap: 34px;
  }

  .about-hero-image .about-image {
    aspect-ratio: 3 / 4;
    border-radius: 24px;
  }

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

  .about-actions {
    align-items: stretch;
  }
}

/* Shared editorial alignment for detail pages */
.detail-hero-simple {
  max-width: var(--container);
  padding-block: clamp(16px, 4vw, 46px);
  text-align: left;
}

.detail-hero-simple h1 {
  max-width: 920px;
}

.detail-hero-simple .lead {
  max-width: 680px;
  margin-inline: 0;
}

.for-whom-hero .detail-hero-simple .lead {
  max-width: 760px;
}

.experiences-hero .center-heading,
.contact-page-hero .center-heading {
  max-width: var(--container);
  text-align: left;
}

.experiences-hero .center-heading h1,
.contact-page-hero .center-heading h1,
.contact-page-hero .center-heading .lead {
  max-width: 760px;
  margin-inline: 0;
}

.experiences-hero .center-heading h1 {
  max-width: 980px;
}

.experiences-hero .center-heading .lead {
  max-width: 760px;
  margin-inline: 0;
}

.experiences-hero__lead {
  display: grid;
  gap: 0.45rem;
}

.experiences-hero__lead p {
  margin: 0;
}

.desktop-line-break {
  display: initial;
}

.about-work-mobile-line-break {
  display: none;
}

.about-work-mobile-hyphen {
  display: none;
}

.ablauf-desktop-line-break,
.kennenlernen-desktop-line-break {
  display: none;
}

@media (min-width: 961px) {
  .ablauf-desktop-line-break,
  .kennenlernen-desktop-line-break {
    display: initial;
  }

  .ablauf-desktop-nowrap {
    white-space: nowrap;
  }
}

.coaching-fit-desktop-break {
  display: none;
}

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

.coaching-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.53fr) minmax(360px, 0.47fr);
  gap: clamp(46px, 5vw, 70px);
  align-items: start;
}

.coaching-fit-copy {
  max-width: 660px;
  padding-top: clamp(16px, 2vw, 28px);
}

.coaching-fit-copy .check-list {
  gap: clamp(14px, 1.6vw, 18px);
  margin-top: clamp(24px, 2.8vw, 34px);
}

.coaching-fit-copy .check-list li {
  padding: 0 0 0 30px;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  line-height: 1.78;
}

.coaching-fit-copy .check-list li::before {
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  background: var(--clay-dark);
  box-shadow: none;
}

.coaching-fit-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  width: min(100%, 520px);
  justify-self: end;
  margin: clamp(-12px, -1vw, -4px) clamp(40px, 4vw, 56px) 0 0;
  overflow: visible;
}

@media (min-width: 961px) {
  .coaching-fit-desktop-break {
    display: initial;
  }
}

.coaching-fit-collage__item {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  border-radius: calc(var(--radius-medium) + 2px);
  box-shadow: 0 18px 38px rgba(83, 63, 49, 0.1);
}

.coaching-fit-collage__item--portrait {
  object-position: center 38%;
}

.coaching-fit-collage__item--workspace {
  object-position: center 52%;
}

.coaching-fit-collage__item--embrace {
  object-position: center 45%;
}

.coaching-fit-collage__item--floor {
  object-position: center 62%;
}

.recognition-grid {
  max-width: none;
}

.recognition-grid article {
  display: flex;
  align-items: flex-end;
}

.recognition-note {
  max-width: 860px;
}

.coaching-fit-section {
  padding-bottom: clamp(72px, 8vw, 92px);
}

.coaching-fit-copy .check-list {
  margin-top: clamp(18px, 2vw, 24px);
}

.image-story-section {
  padding-block: clamp(54px, 7vw, 88px);
  background: linear-gradient(180deg, #f1eadf 0%, var(--sand) 100%);
}

.image-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  max-width: 760px;
  padding: clamp(8px, 1.2vw, 14px);
  overflow: hidden;
  border-radius: calc(var(--radius-large) + 10px);
  align-items: stretch;
  background: rgba(255, 252, 247, 0.68);
  box-shadow: 0 18px 42px rgba(83, 63, 49, 0.1);
}

.image-story-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--radius-large) - 6px);
}

.image-story-item--portrait {
  object-position: center 34%;
}

.for-whom-final-cta {
  padding-top: clamp(58px, 7vw, 92px);
}

.for-whom-final-cta .cta-box .eyebrow {
  margin-bottom: 14px;
}

.for-whom-final-cta .cta-box p:not(.eyebrow) {
  margin-top: clamp(18px, 2.4vw, 26px);
}

.for-whom-cta-button {
  margin-top: clamp(22px, 2.5vw, 28px);
}

@media (max-width: 640px) {
  .detail-hero-simple {
    text-align: left;
  }

  .for-whom-hero .detail-hero-simple,
  .experiences-hero .center-heading {
    padding-inline: 14px;
  }

  .image-story-grid {
    gap: 8px;
    padding: 8px;
  }

  .for-whom-final-cta {
    padding-top: clamp(46px, 11vw, 62px);
  }

  .for-whom-final-cta .cta-box .eyebrow {
    margin-bottom: 12px;
  }

  .for-whom-final-cta .cta-box p:not(.eyebrow) {
    margin-top: clamp(16px, 5vw, 20px);
  }

  .for-whom-cta-button {
    margin-top: clamp(18px, 5vw, 22px);
  }
}

.experiences-hero {
  padding-bottom: clamp(24px, 3vw, 38px);
}

.experiences-hero .center-heading {
  margin-bottom: 0;
}

.experiences-testimonials {
  padding-top: clamp(16px, 2vw, 28px);
}

.experiences-testimonials .testimonial-grid {
  align-items: stretch;
}

.experiences-testimonials .testimonial-grid figure {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.experiences-testimonials .testimonial-grid blockquote {
  flex-grow: 1;
}

.testimonial-desktop-break {
  display: none;
}

.experiences-copy-desktop-break {
  display: none;
}

@media (min-width: 961px) {
  .testimonial-desktop-break,
  .experiences-copy-desktop-break {
    display: initial;
  }

  .experiences-copy-desktop-nowrap {
    white-space: nowrap;
  }
}

.experiences-testimonials .testimonial-grid figcaption {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(51, 44, 40, 0.12);
}

.testimonial-details {
  margin-top: 18px;
  color: var(--muted);
}

.testimonial-details summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
  color: var(--clay-dark);
  font-weight: 700;
}

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

.testimonial-details summary::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 2px;
  background: currentColor;
  opacity: 0.42;
}

.testimonial-details p {
  margin: 14px 0 0;
}

.experiences-process-cards .info-card {
  display: grid;
  grid-template-rows: 34px minmax(76px, auto) auto;
  align-content: start;
  justify-content: initial;
  row-gap: 0;
}

.experiences-process-cards .info-card h3 {
  align-self: start;
  margin-top: clamp(26px, 3vw, 34px);
}

.experiences-process-cards .info-card p {
  align-self: start;
  margin-top: clamp(22px, 2.8vw, 30px);
}

.experiences-process-cards .info-card:nth-child(3) p > span {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

@media (min-width: 961px) {
  .experiences-final-cta .cta-box {
    max-width: 980px;
  }

  .experiences-final-cta .cta-box h2 {
    max-width: 13.4em;
  }

  .experiences-final-cta .desktop-nowrap {
    white-space: nowrap;
  }
}

.experiences-final-cta .cta-box p:not(.eyebrow) {
  max-width: 31ch;
}

.experiences-final-cta .button {
  margin-top: clamp(30px, 4vw, 46px);
}

.testimonial-grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

@media (min-width: 961px) {
  #erfahrungen .testimonial-grid--single {
    grid-template-columns: minmax(0, 790px);
  }

  #erfahrungen .testimonial-grid--single blockquote {
    max-width: 68ch;
  }

  .testimonial-desktop-nowrap {
    white-space: nowrap;
  }
}

.testimonial-grid--single figure {
  padding: clamp(34px, 5vw, 58px) clamp(28px, 5.5vw, 64px);
  text-align: left;
  background: rgba(255, 255, 255, 0.58);
}

.testimonial-grid--single blockquote {
  max-width: 66ch;
  font-size: clamp(1.42rem, 2.4vw, 1.9rem);
}

.testimonial-grid--single figcaption {
  max-width: 66ch;
}

.testimonial-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--clay-dark);
  font-weight: 700;
  text-transform: lowercase;
}

.testimonial-more::after {
  content: "→";
  margin-left: 8px;
}

.contact-page-hero {
  padding-bottom: clamp(32px, 4vw, 52px);
  background: linear-gradient(180deg, var(--cream), var(--sand));
}

.contact-page-section {
  padding-top: clamp(36px, 5vw, 64px);
  scroll-margin-top: clamp(96px, 12vw, 150px);
}

.contact-direct-note {
  margin-top: 18px;
}

.contact-direct-note a {
  color: var(--clay-dark);
  font-weight: 700;
}

/* Impulse page */
.impulse-hero {
  padding-bottom: clamp(24px, 3vw, 38px);
  background: var(--sand);
}

.impulse-hero .center-heading {
  max-width: 760px;
  margin-bottom: 0;
  text-align: left;
}

.impulse-hero h1,
.impulse-hero .lead {
  max-width: 760px;
  margin-inline: 0;
}

.impulse-hero .lead {
  margin-top: clamp(22px, 2.8vw, 26px);
}

.impulse-section {
  padding-top: clamp(16px, 2vw, 28px);
  background: var(--sand);
}

.impulse-list {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 860px;
}

.impulse-card__content {
  display: block;
  padding: clamp(30px, 4.5vw, 48px);
  border: 1px solid rgba(51, 44, 40, 0.09);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.46);
}

.impulse-card time {
  display: block;
  margin-bottom: 18px;
  color: rgba(139, 91, 68, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impulse-card h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.impulse-card p {
  max-width: 650px;
  margin-top: clamp(18px, 2.2vw, 24px);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
}

/* Häufige Fragen page */
.faq-hero {
  padding: clamp(82px, 10vw, 132px) 0 clamp(92px, 11vw, 148px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 140px;
  max-width: 640px;
}

.faq-intro h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.55rem);
}

.faq-intro .lead {
  max-width: 590px;
  line-height: 1.76;
}

.faq-accordion {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item-title {
  margin: 0;
  font-family: inherit;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(24px, 3.2vw, 34px) 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.018em;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--clay-dark);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(184, 136, 111, 0.24);
  outline-offset: 6px;
  border-radius: 14px;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(51, 44, 40, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  border-color: rgba(184, 136, 111, 0.28);
  background: rgba(184, 136, 111, 0.12);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.34s ease;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 clamp(54px, 6vw, 72px) clamp(26px, 3.4vw, 36px) 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.78;
}

.faq-final-cta {
  background: linear-gradient(
    180deg,
    var(--sand) 0%,
    var(--cream) 62%,
    var(--cream) 100%
  );
}

.faq-final-cta .cta-box h2 {
  max-width: 8.6em;
}

.faq-final-cta .cta-actions {
  justify-content: flex-start;
  margin-top: clamp(22px, 3vw, 32px);
}


/* Subpage CTA editorial alignment */
.about-final-cta .final-cta-inner,
.experiences-final-cta .final-cta-inner,
.faq-final-cta .final-cta-inner,
.for-whom-final-cta .final-cta-inner {
  justify-items: start;
}

.about-final-cta .cta-box,
.experiences-final-cta .cta-box,
.faq-final-cta .cta-box,
.for-whom-final-cta .cta-box {
  max-width: 820px;
  justify-self: start;
  padding-inline: 0;
  text-align: left;
}

.about-final-cta .cta-box .eyebrow,
.about-final-cta .cta-box h2,
.about-final-cta .cta-box p:not(.eyebrow),
.experiences-final-cta .cta-box .eyebrow,
.experiences-final-cta .cta-box h2,
.experiences-final-cta .cta-box p:not(.eyebrow),
.faq-final-cta .cta-box .eyebrow,
.faq-final-cta .cta-box h2,
.faq-final-cta .cta-box p:not(.eyebrow),
.for-whom-final-cta .cta-box .eyebrow,
.for-whom-final-cta .cta-box h2,
.for-whom-final-cta .cta-box p:not(.eyebrow) {
  margin-inline: 0;
  text-align: left;
}

.about-final-cta .button,
.experiences-final-cta .button,
.faq-final-cta .button,
.for-whom-final-cta .button,
.contact-form .button {
  margin-left: 0;
}

@media (max-width: 960px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }
}

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

  .faq-question {
    align-items: flex-start;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }

  .faq-answer p {
    padding-right: 0;
  }
}

@media (min-width: 961px) and (max-width: 1160px) {
  .header-inner {
    gap: 20px;
  }

  .site-header .logo-image {
    max-width: min(28vw, 268px);
  }

  .main-nav {
    gap: 9px;
    font-size: 0.8rem;
  }

  .nav-cta {
    margin-left: 8px;
    padding-inline: 16px;
  }
}

.thanks-page-hero {
  min-height: calc(100vh - 320px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--cream), var(--sand));
}

.thanks-page-hero .center-heading {
  margin-bottom: 0;
}

.thanks-page-hero .button {
  margin-top: 18px;
}

/* Prices page */
.price-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.price-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.price-card p {
  color: var(--muted);
}

.price-card .button {
  margin-top: 12px;
}

.prices-container {
  max-width: 1080px;
}

.prices-heading {
  position: static;
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.intro-price-card {
  display: block;
  margin-bottom: clamp(22px, 3.5vw, 34px);
  padding: clamp(26px, 3.6vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 34px rgba(83, 63, 49, 0.055);
}

.intro-price-card h2,
.offer-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.price-duration {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-wrap: balance;
}

.price-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card h3 {
  margin: 12px 0 18px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.prices-container .check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card .check-list {
  color: var(--ink);
}

.prices-container .check-list li {
  position: relative;
  padding: 0 0 0 24px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-wrap: pretty;
}

.intro-price-card > div > p:last-child {
  max-width: 920px;
  text-wrap: pretty;
}

.prices-container .check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: none;
}

.prices-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 56px);
}

.prices-cta .button {
  margin-left: 0;
}

@media (max-width: 760px) {
  .price-offers {
    grid-template-columns: 1fr;
  }
}

/* Focused mobile responsive hardening */
@media (max-width: 960px) {
  .site-header,
  .header-inner {
    width: 100%;
    max-width: 100%;
  }

  .main-nav {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
  }

  .hero-grid,
  .teaser-grid,
  .detail-hero-grid,
  .two-column,
  .about-grid,
  .contact-grid,
  .contact-card,
  .about-hero-grid,
  .about-cards-grid,
  .faq-layout,
  .coaching-fit-grid,
  .price-offers {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid,
  .teaser-grid,
  .detail-hero-grid,
  .two-column,
  .about-grid,
  .contact-grid,
  .contact-card,
  .about-hero-grid,
  .faq-layout,
  .coaching-fit-grid {
    min-width: 0;
  }

  .coaching-fit-copy {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .coaching-fit-collage {
    order: 2;
    justify-self: stretch;
    width: 100%;
    max-width: 560px;
    margin: 0;
  }

  .coaching-fit-copy h2 {
    max-width: 100%;
  }

  .cards-grid,
  .testimonial-grid,
  .about-cards-grid,
  .price-offers {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .headline-line {
    display: inline;
  }

  .desktop-break {
    display: none;
  }

  .home-final-cta .cta-box h2 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-inline: 20px;
  }

  .section,
  .legal-page,
  .about-intro-section,
  .about-work-section,
  .about-attitude-section,
  .faq-hero,
  .final-cta {
    padding-block: clamp(54px, 14vw, 76px);
  }

  .header-inner {
    min-height: 82px;
    padding-left: 27px;
    padding-block: 4px;
  }

  .site-header .logo-image {
    max-height: 72px;
    max-width: min(50vw, 170px);
    transform: none;
  }

  .nav-toggle {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  h1,
  .detail-hero h1,
  .detail-hero-simple h1,
  .about-hero-copy h1,
  .faq-intro h1,
  .coaching-fit-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  h2,
  .section-heading h2,
  .center-heading h2,
  .for-whom-intro h2,
  .cta-box h2,
  .about-narrow h2,
  .price-card h2,
  .intro-price-card h2,
  .offer-card h2,
  .impulse-card h2 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .about-work-section .about-narrow h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.12;
    max-width: 100%;
  }

  p,
  li,
  .lead,
  .body-large,
  .section-heading p:not(.eyebrow),
  .center-heading p:not(.eyebrow),
  .about-grid p,
  .contact-grid p:not(.eyebrow),
  .about-hero-copy .lead,
  .about-text-column,
  .about-work-text,
  .for-whom-intro p:not(.eyebrow),
  .cta-box p:not(.eyebrow),
  .impulse-card p,
  .faq-answer p,
  .coaching-fit-copy .check-list li,
  .about-list li {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero,
  .detail-hero,
  .faq-hero {
    padding-top: 48px;
  }

  .button-row,
  .cta-actions,
  .about-actions {
    gap: 12px;
  }

  .button,
  .nav-cta {
    margin-left: 0;
  }

  .check-list li,
  .coaching-fit-copy .check-list li,
  .about-list li,
  .prices-container .check-list li {
    padding-left: 26px;
  }

  .coaching-fit-grid {
    gap: 30px;
  }

  .coaching-fit-collage,
  .image-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .coaching-fit-collage__item,
  .image-story-item {
    border-radius: 18px;
    min-width: 0;
  }

  .cards-grid,
  .testimonial-grid,
  .about-cards-grid,
  .price-offers,
  .issue-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-card,
  .testimonial-grid figure,
  .about-card,
  .price-card,
  .intro-price-card,
  .impulse-card__content,
  .legal-content,
  .contact-form,
  .quote-card {
    width: 100%;
    padding: 24px;
    border-radius: 22px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-logo-image {
    width: clamp(154px, 51vw, 176px);
  }

  .footer-certificate-seal {
    width: clamp(100px, 33vw, 118px);
  }

  .home-page .site-footer .footer-brand {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .home-page .site-footer .footer-logo {
    display: none;
  }

  .home-page .site-footer .footer-grid > :last-child {
    text-align: left;
  }

  body:not(.home-page) .site-footer .footer-brand {
    justify-content: flex-start;
    align-items: flex-start;
  }

  body:not(.home-page) .site-footer .footer-logo {
    display: none;
  }

  body:not(.home-page) .site-footer .footer-grid > :last-child {
    text-align: left;
  }

  .footer-grid a:not(.logo),
  .contact-options a,
  .contact-options .contact-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .container {
    padding-inline: 18px;
  }

  h1,
  .detail-hero h1,
  .detail-hero-simple h1,
  .about-hero-copy h1,
  .faq-intro h1,
  .coaching-fit-copy h2 {
    font-size: clamp(2.05rem, 10.5vw, 2.65rem);
  }

  h2,
  .section-heading h2,
  .center-heading h2,
  .for-whom-intro h2,
  .cta-box h2,
  .about-narrow h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.35rem);
  }

  .info-card,
  .testimonial-grid figure,
  .about-card,
  .price-card,
  .intro-price-card,
  .impulse-card__content,
  .legal-content,
  .contact-form,
  .quote-card {
    padding: 22px;
  }
}

/* Mobile spacing and CTA density refinement */
@media (max-width: 767px) {
  .section,
  .legal-page,
  .about-page .section,
  .faq-hero,
  .final-cta {
    padding-block: 48px;
  }

  .detail-hero,
  .faq-hero {
    padding-top: 48px;
  }

  .impulse-section {
    padding-top: 24px;
  }

  .about-intro-section {
    padding-bottom: 18px;
  }

  .about-text-section {
    padding-top: 18px;
  }

  .about-hero-grid {
    gap: 28px;
  }

  .about-text-column p,
  .about-work-text p + p,
  .body-large + .body-large {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .about-belief {
    margin-top: 32px;
    padding-top: 28px;
  }

  .about-belief-statement {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .lead,
  .about-hero-copy .lead,
  .body-large {
    margin-top: 20px;
  }

  .desktop-line-break {
    display: none;
  }

  .about-work-mobile-line-break {
    display: initial;
  }

  .about-work-mobile-hyphen {
    display: initial;
  }

  .about-work-text,
  .check-list,
  .about-list {
    margin-top: 24px;
  }

  .button-row,
  .cta-actions,
  .about-actions {
    margin-top: 28px;
  }

  .final-cta .button,
  .cta-box > .button,
  .experiences-final-cta .button,
  .for-whom-final-cta .button,
  .faq-final-cta .button {
    margin-top: 20px;
  }

  .experiences-final-cta .cta-box,
  .for-whom-final-cta .cta-box {
    padding-inline: 24px;
  }

  .experiences-final-cta .cta-box h2,
  .for-whom-final-cta .cta-box h2 {
    font-size: clamp(1.95rem, 8.55vw, 2.7rem);
  }

  .two-column {
    gap: 32px;
  }

  .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .about-intro-section {
    padding-bottom: 28px;
  }

  .about-text-section {
    padding-top: 18px;
  }
}
