/* Startseite: ein klarer Einstieg statt eines Inhaltsverzeichnisses. */
.home-clean {
  --home-line: color-mix(in srgb, var(--ink, #171612) 14%, transparent);
  --home-paper: var(--paper, #f6f1e7);
  --home-ink: var(--ink, #171612);
  --home-muted: var(--slate, #4b463d);
  --home-rust: var(--rust, #a04a2d);
  color: var(--home-ink);
}

.home-clean__hero {
  position: relative;
  min-height: min(43rem, calc(100svh - 4.5rem));
  display: grid;
  align-items: end;
  overflow: clip;
  background: #18313c;
}

.home-clean__hero-media,
.home-clean__hero-media::after {
  position: absolute;
  inset: 0;
}

.home-clean__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .78;
}

.home-clean__hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(10, 28, 34, .91) 0%, rgba(10, 28, 34, .66) 47%, rgba(10, 28, 34, .15) 100%), linear-gradient(0deg, rgba(10, 28, 34, .76) 0%, transparent 55%);
}

.home-clean__hero-inner,
.home-clean__section,
.home-clean__route,
.home-clean__afterword {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.home-clean__hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 12vw, 9rem) clamp(2.2rem, 5vw, 4.4rem);
  color: #fffaf0;
}

.home-clean__eyebrow {
  margin: 0 0 .85rem;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-clean__hero .home-clean__eyebrow { color: #edba7b; }

.home-clean h1,
.home-clean h2,
.home-clean h3 {
  font-family: var(--font-display, Georgia, serif);
  letter-spacing: -.025em;
}

.home-clean h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.15rem);
  line-height: .92;
  text-wrap: balance;
}

.home-clean__lede {
  max-width: 48ch;
  margin: 1.35rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.48;
  color: rgba(255, 250, 240, .9);
}

.home-clean__choices {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  width: min(100% - 2rem, 72rem);
  margin: -2.15rem auto 0;
}

.home-choice {
  min-height: 11.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  color: var(--home-ink);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(244,238,226,.96)),
    var(--home-paper);
  border: 1px solid var(--home-line);
  border-radius: .45rem;
  box-shadow: 0 14px 34px rgba(24, 24, 20, .1);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.home-choice:hover,
.home-choice:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--home-rust) 62%, transparent);
  box-shadow: 0 24px 48px rgba(24, 24, 20, .17);
}

.home-choice__label,
.home-choice__arrow {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-choice__label { color: var(--home-rust); }
.home-choice__arrow { color: var(--home-muted); }
.home-choice strong { font-family: var(--font-display, Georgia, serif); font-size: 1.35rem; line-height: 1.05; }

.home-choice--roman {
  background:
    linear-gradient(145deg, rgba(24, 49, 60, .98), rgba(34, 77, 91, .96)),
    #18313c;
  border-color: rgba(255, 250, 240, .18);
  color: #fffaf0;
}

.home-choice--roman .home-choice__label { color: #edba7b; }
.home-choice--roman .home-choice__arrow { color: rgba(255, 250, 240, .78); }

.home-clean__section { padding-block: clamp(4.25rem, 8vw, 6.5rem); }
.home-clean__section--book { padding-top: clamp(3.8rem, 7vw, 5.75rem); }

.home-clean__book {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: linear-gradient(135deg, #153341, #224d5b);
  border: 1px solid rgba(255,250,240,.16);
  border-radius: .7rem;
  color: #fffaf0;
}
.home-clean__book img { width: 100%; height: auto; border-radius: .25rem .75rem .75rem .25rem; box-shadow: 0 24px 50px rgba(0,0,0,.35); }
.home-clean__book .home-clean__eyebrow { color: #edba7b; }
.home-clean__book h2 { max-width: 15ch; margin: 0; font-size: clamp(2.2rem, 4.6vw, 4.5rem); line-height: .95; }
.home-clean__book p:not(.home-clean__eyebrow) { max-width: 52ch; margin: 1rem 0 1.35rem; color: rgba(255,250,240,.86); line-height: 1.58; }
.home-clean__book-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.home-clean__button { display: inline-flex; align-items: center; min-height: 44px; padding: .65rem 1rem; border: 1px solid rgba(255,250,240,.56); border-radius: 999px; color: #fffaf0; font-family: var(--font-sans, system-ui, sans-serif); font-size: .9rem; font-weight: 800; text-decoration: none; }
.home-clean__button--solid { background: #f3c182; border-color: #f3c182; color: #18313c; }

.home-clean__second-book {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: center;
  margin-top: .85rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--home-line);
  border-radius: .55rem;
  background: color-mix(in srgb, var(--home-paper) 92%, white);
  box-shadow: 0 10px 28px rgba(24, 24, 20, .06);
}

.home-clean__second-book-cover {
  display: block;
  line-height: 0;
}

.home-clean__second-book img {
  width: 100%;
  height: auto;
  border-radius: .1rem .3rem .3rem .1rem;
  box-shadow: 0 8px 18px rgba(24, 24, 20, .18);
  transform: rotate(-1deg);
}

.home-clean__second-book .home-clean__eyebrow {
  margin-bottom: .3rem;
  color: var(--home-rust);
}

.home-clean__second-book h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.home-clean__second-book p:not(.home-clean__eyebrow) {
  max-width: 62ch;
  margin: .45rem 0 0;
  color: var(--home-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.home-clean__text-link {
  white-space: nowrap;
  color: var(--home-rust);
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.home-clean__route {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(18rem, 1.06fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  padding-block: clamp(4.25rem, 8vw, 6.5rem);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}
.home-clean__route h2 { max-width: 13ch; margin: 0; font-size: clamp(2.25rem, 4.5vw, 4.2rem); line-height: .98; }
.home-clean__route p:not(.home-clean__eyebrow) { max-width: 39ch; margin: 1.05rem 0 0; color: var(--home-muted); line-height: 1.55; }

.home-route-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--home-line); }
.home-route-list a { display: grid; gap: .25rem; min-height: 7.2rem; align-content: end; padding: 1rem 1rem 1rem 0; color: inherit; text-decoration: none; border-bottom: 1px solid var(--home-line); }
.home-route-list a:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--home-line); }
.home-route-list a:hover span, .home-route-list a:focus-visible span { color: var(--home-rust); }
.home-route-list span { font-family: var(--font-display, Georgia, serif); font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1; transition: color .16s ease; }
.home-route-list em { color: var(--home-muted); font-family: var(--font-sans, system-ui, sans-serif); font-size: .78rem; font-style: normal; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.home-route-list .home-route-list__all { display: flex; align-items: center; min-height: 4rem; padding: .8rem 0 0; border-bottom: 0; color: var(--home-rust); font-family: var(--font-sans, system-ui, sans-serif); font-size: .9rem; font-weight: 800; }
.home-route-list .home-route-list__all span { margin-left: .45rem; font-family: inherit; font-size: 1rem; }

.home-clean__afterword { margin-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem); }
.home-clean__afterword-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 5vw, 4rem); padding-top: 1.1rem; border-top: 1px solid var(--home-line); }
.home-clean__afterword p { margin: 0; color: var(--home-muted); line-height: 1.58; }
.home-clean__afterword a { color: var(--home-ink); font-weight: 750; text-decoration-color: color-mix(in srgb, var(--home-rust) 55%, transparent); text-underline-offset: .2em; }

@media (max-width: 800px) {
  .home-clean__hero { min-height: 36rem; }
  .home-clean__choices { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -1.2rem; }
  .home-choice { min-height: 8.5rem; }
  .home-clean__book { grid-template-columns: minmax(6.7rem, 11rem) minmax(0, 1fr); gap: 1.25rem; }
  .home-clean__second-book { grid-template-columns: 3.8rem minmax(0, 1fr); }
  .home-clean__second-book .home-clean__text-link { grid-column: 2; justify-self: start; }
  .home-clean__route { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 470px) {
  .home-clean__hero-inner, .home-clean__section, .home-clean__route, .home-clean__afterword { width: min(100% - 1.25rem, 72rem); }
  .home-clean__choices { width: min(100% - 1.25rem, 72rem); gap: .55rem; }
  .home-choice { padding: 1rem; }
  .home-choice strong { font-size: 1.18rem; }
  .home-clean__book { grid-template-columns: 1fr; }
  .home-clean__book img { width: min(10rem, 38vw); }
  .home-clean__second-book { grid-template-columns: 3.4rem minmax(0, 1fr); padding: .9rem; }
  .home-clean__second-book p:not(.home-clean__eyebrow) { font-size: .86rem; }
  .home-route-list, .home-clean__afterword-grid { grid-template-columns: 1fr; }
  .home-route-list a:nth-child(even) { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-choice { transition: none; }
  .home-choice:hover, .home-choice:focus-visible { transform: none; }
}
