/* Basis */
body {
  margin: 0;
  background: #f8f8f8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing-body {
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  gap: 3rem;
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 3rem 1.5rem 4rem;
  }
}

/* Über-Seite und Nominierungs-Seite: großes Wort "Über den Preis" links neben dem Textblock */
.ueber-page .ueber-side-label,
.nominierung-page .ueber-side-label {
  position: absolute;
  left: -180px;
  top: calc(20% + 335px); /* weitere 70px nach unten */
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}

.impressum-page .impressum-side-label {
  position: absolute;
  left: calc(-180px + 200px); /* insgesamt 200px weiter nach rechts */
  top: calc(50% - 300px);    /* nochmal 200px nach oben */
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-size: 6.0rem;          /* 150% der ursprünglichen Größe */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}

@media (max-width: 900px) {
  .ueber-page .ueber-side-label,
  .nominierung-page .ueber-side-label {
    display: none;
  }
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

@media (min-width: 901px) {
  .hero {
    height: 100vh;
    align-items: flex-start;   /* beide Spalten oben ausrichten */
    padding-top: 0;            /* kein globales Padding mehr */
  }

  .hero-content {
    padding-top: 0;
    margin-top: 200px;         /* Textblock ca. 200px unter der oberen Kante */
    margin-left: calc(9vw + 80px); /* zusätzlich ca. 80px weiter nach rechts */
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 0.75rem;
}

.stimme-highlight {
  color: #1d3b7a; /* samtiges Blau für S.T.I.M.M.E.-Preis */
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #2f2f2f;
}

.hero-lead {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3b3b3b;
}

.hero-sub {
  margin: 0 0 1.8rem;
  font-size: 0.98rem;
  color: #666;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.hero-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.98rem;
  color: #555;
}

.hero-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #555, #aaaaaa);
  transition: width 0.22s ease;
}

.hero-link:hover::after {
  width: 100%;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual img {
  max-width: 312%;
  height: auto;
  display: block;
  transform: translateX(-20%) translateY(-20%);
}

/* Hero-Übergang beim Klick auf „Mehr erfahren“ */

.landing-body.is-transitioning {
  background-color: #ffffff;
  transition: background-color 1.5s ease;
}

@keyframes heroTextOut {
  to {
    opacity: 0;
    transform: translateY(-24px) scale(1.05);
  }
}

@keyframes heroImageOut {
  0% {
    opacity: 1;
    transform: translateX(-20%) translateY(-20%) scale(1.0);
  }
  40% {
    opacity: 0;
    transform: translateX(10%) translateY(-20%) scale(1.01);
  }
  100% {
    opacity: 0;
    transform: translateX(36%) translateY(-20%) scale(1.02);
  }
}

.hero.is-leaving .hero-content {
  animation: heroTextOut 1.5s ease-out forwards;
}

.hero.is-leaving .hero-visual img {
  animation: heroImageOut 1.5s linear forwards;
}

/* Hochkant/Tablet/halbe Breite: Bild etwas kleiner, damit es nicht dominiert */
@media (max-width: 900px) {
  .hero-visual img {
    max-width: 180%;
    transform: translateX(-10%) translateY(-10%);
  }
}

/* Layout für Startseite /stimme (neues Design mit Milchpokal-Bild oben) */
.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 3rem;
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.app-nav {
  padding-top: 0.75rem;
}

.app-logo {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
}

.app-menu {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.app-menu a {
  padding: 0.55rem 0.3rem;
  border-radius: 999px;
  font-size: 0.98rem;
  color: #555;
}

.app-menu a.is-active {
  background: #fff;
  color: #111;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.app-main-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2.5rem 2.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2.5rem;
}

@media (max-width: 960px) {
  .app-main-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.app-main-content h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.app-main-content p {
  margin: 0 0 0.7rem;
  color: #444;
  line-height: 1.6;
}

.app-main-content h2 {
  margin: 2rem 0 0.9rem;
  font-size: 1.25rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-card {
  flex: 1 1 150px;
  min-width: 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #f9fafb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
}

.badge-label {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.app-main-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-main-side img {
  max-width: 100%;
  height: auto;
}

.app-cta-row {
  margin-top: 2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #d0d0d0;
  background: #fff;
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn-secondary:hover {
  background: #f8f8f8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Mobile-Optimierungen (z.B. iPhone SE hochkant) */
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1.25rem 3rem;
    row-gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-visual img {
    max-width: 220%;
    transform: translateX(-10%) translateY(-10%);
  }

  .app-shell {
    padding: 2.2rem 1.25rem 2.5rem;
    gap: 1.5rem;
  }

  .app-main-card {
    padding: 1.7rem 1.5rem 1.8rem;
    gap: 1.7rem;
  }

  .app-main-content h1 {
    font-size: 1.6rem;
  }

  .app-main-side {
    margin-top: 0.5rem;
  }
}

/* Neue Startseite: Milchpokal-Hero, Menü, Text */

.start-body {
  background: #f8f8f8;
  color: #222;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.start-body.is-ready {
  opacity: 1;
}

.start-body.is-leaving .start-hero-inner {
  animation: startHeroOut 0.8s ease forwards;
}

@keyframes startHeroOut {
  to {
    opacity: 0;
    transform: translateY(-24px);
  }
}

.start-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.start-hero-media {
  position: absolute;
  inset: 0;
  height: 82vh;
  background-image: url("../img/stimme/start-hero.jpg");
  background-size: auto 82vh;
  background-repeat: no-repeat;
  background-position: 75% bottom; /* deutlich nach rechts verschoben */
  opacity: 0.15;
}

/* Auf der Nominierungsseite kein Hintergrundbild anzeigen */
.nominierung-page .start-hero-media {
  background-image: none;
}

/* Auf der Startseite: Bild beim Verlassen mit ausblenden */
.start-body.is-leaving .start-hero-media {
  animation: startHeroMediaOut 0.8s ease forwards;
}

@keyframes startHeroMediaOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Auf Über- und Kriterien-Seite: hero-bg als Hintergrund auf dem Hero-Container */
.ueber-page .start-hero-media,
.kriterien-page .start-hero-media {
  background-image: url("../img/stimme/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: auto 40vh;
  /* An der Seitenmitte ausrichten, damit der Abstand zum zentrierten Textblock stabil bleibt */
  background-position: calc(50% + 220px) top;
  opacity: 1; /* volle Deckkraft auf Über- und Kriterien-Seite */
}

.start-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.3rem clamp(1.5rem, 6vw, 5rem) 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0; /* Abstände werden gezielt über margin-top gesetzt */
  margin-top: 100px; /* gesamten Header um 100px nach unten verschieben */
}

/* Über-, Kriterien-, Statut- und Archiv-Seite: Inhaltsbereich zentrieren */
.ueber-page .start-hero-inner,
.kriterien-page .start-hero-inner,
.statut-page .start-hero-inner,
.archiv-page .start-hero-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Auf der Statut- und Archiv-Seite: Abstand nach oben reduzieren */
.statut-page .start-hero-inner,
.archiv-page .start-hero-inner {
  margin-top: 25px;
}

.start-title {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #666;
}

.start-nav {
  display: flex;
  justify-content: center;
}

.start-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

/* Textblöcke auf Über- und Kriterien-Seite: linksbündig mit ca. 8vw Einrückung */
.ueber-page .start-intro,
.kriterien-page .start-intro {
  margin: 0 0 0 8vw;
}

/* Statut- und Archiv-Seite: Textblöcke bleiben innerhalb des zentrierten Bereichs */
.statut-page .start-intro,
.archiv-page .start-intro {
  margin: 0 auto;
}

.statut-page .start-intro img,
.archiv-page .start-intro img {
  max-width: 80%;
  height: auto;
  display: block;
  margin-left: 0;
}

.ueber-page .start-title,
.ueber-page .start-subtitle {
  text-align: left;
}

/* Auf der Kriterien-Seite: oberer Titelblock ebenfalls linksbündig */
.kriterien-page .start-title,
.kriterien-page .start-subtitle {
  text-align: left;
}

/* Auf Über-, Kriterien- und Archiv-Seite: Menü innerhalb des
   zentrierten Blocks wieder mittig ausrichten */
.ueber-page .start-nav,
.kriterien-page .start-nav,
.archiv-page .start-nav {
  justify-content: center;
  margin-left: 0;
}

.ueber-page .start-menu,
.kriterien-page .start-menu,
.statut-page .start-menu,
.archiv-page .start-menu {
  justify-content: center;
}

/* Auf Über-, Kriterien- und Statut-Seite: Menü linksbündig mit derselben Einrückung wie der Text */
.ueber-page .start-nav,
.kriterien-page .start-nav,
.statut-page .start-nav {
  justify-content: flex-start;
  margin-left: 8vw;
}

/* Statut-Seite: Menü zusätzlich 40px weiter nach rechts */
.statut-page .start-nav {
  margin-left: calc(8vw + 30px);
}

.ueber-page .start-menu,
.kriterien-page .start-menu {
  justify-content: flex-start;
}

/* Im Impressum: Zurück-Menü in derselben Spalte wie der Textblock, darin linksbündig */
.impressum-page .start-nav {
  max-width: 640px;   /* gleiche Breite wie .start-intro */
  margin: 0 auto;     /* zentriert, wie der Archiv-Textblock */
  justify-content: flex-start;
}

.impressum-page .start-menu {
  justify-content: flex-start;
  padding-left: 0;
}

.impressum-page .start-menu li {
  margin-left: 0;
}

.impressum-page .start-menu a {
  padding-left: 0;
  margin-left: -320px; /* insgesamt 320px nach links schieben */
}

/* Im Impressum: Text im Zurück-Menü explizit linksbündig, nicht zentriert */
.impressum-page .start-nav,
.impressum-page .start-menu,
.impressum-page .start-menu li,
.impressum-page .start-menu a {
  text-align: left;
}

/* Archiv-Seite: Menü soll nicht links einrücken wie auf Über/Statut,
   sondern im Block zentriert bleiben */
.archiv-page .start-nav {
  justify-content: center;
  margin-left: -200px; /* Menü auf der Archiv-Seite insgesamt 200px nach links verschieben */
}

.archiv-page .start-menu {
  justify-content: center;
}

/* Sonderfall: Impressum erbt archiv-page, soll aber links statt zentriert sein */
.archiv-page.impressum-page .start-nav {
  margin-left: 0;       /* keine zusätzliche Verschiebung auf der Impressumsseite */
}

.archiv-page.impressum-page .start-menu {
  justify-content: flex-start;
}

.start-menu a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  color: #333;
  padding-bottom: 0.15rem;
}

.start-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #555, #aaaaaa);
  transition: width 0.22s ease;
}

.start-menu a:hover::after {
  width: 100%;
}

.start-intro {
  max-width: 640px;
  margin: 0 auto;
}

@keyframes fadeUpIntroBlock {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Über- und Statut-Seite: unterer Textblock blendet verzögert ein,
   Überschrift oben erscheint normal ohne Verzögerung */
.ueber-page .start-hero-inner > .start-intro:last-of-type,
.statut-page .start-hero-inner > .start-intro:last-of-type {
  opacity: 0;
  transform: translateY(8px);
}

.ueber-page.start-body.is-ready .start-hero-inner > .start-intro:last-of-type,
.statut-page.start-body.is-ready .start-hero-inner > .start-intro:last-of-type {
  animation: fadeUpIntroBlock 0.7s ease forwards;
  animation-delay: 0.8s;
}

/* der zweite start-intro-Block unter dem Menü soll weiter unten sitzen */
.start-hero-inner > .start-intro:last-of-type {
  margin-top: 2.4rem;  /* zusätzlicher Abstand nur unterhalb des Menüs */
}

.start-nav {
  margin-top: 8px; /* deutlich geringerer Abstand Titel/Unterzeile → Menü */
}

.start-title {
  margin: 0 0 0.2rem;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #444;
}

/* Auf Über- und Kriterien-Seite: flexible, mitskalierende Größe für "S.T.I.M.M.E.-Preis" */
.ueber-page #ueber .start-title,
.kriterien-page #kriterien .start-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.start-subtitle {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  line-height: 1.5;
  text-align: center;
  color: #555;
}

/* Über-Seite: inhaltliche Überschrift im Textblock als Eyebrow-artiger Titel */
.ueber-page .start-intro h1 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Startseite: Grafik links, Titel+Menü rechts ausrichten */
.start-body:not(.ueber-page) .start-header-layout {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.start-body:not(.ueber-page) .start-header-main {
  display: flex;
  flex-direction: column;
}

.start-body:not(.ueber-page) .start-logo-leftbox {
  height: 125px;
  width: auto;
  display: block;
}

.start-body:not(.ueber-page) .start-title,
.start-body:not(.ueber-page) .start-subtitle {
  text-align: left;
}

.start-body:not(.ueber-page) .start-nav {
  justify-content: flex-start;
}

/* Mobile: Logo auf der Startseite unter 750px Breite ausblenden */
@media (max-width: 750px) {
  .start-body:not(.ueber-page) .start-logo-leftbox {
    display: none;
  }
}

.start-intro-line {
  margin: 0 0 1.6rem; /* ca. zwei Zeilen Abstand zwischen den Sätzen */
  font-size: 1.02rem;
  line-height: 1.6;
  color: #333;
  opacity: 0;
  transform: translateY(8px);
}

/* Startseite: Block zum S.T.I.M.M.E.-Projekt unter den Einleitungssätzen */
.start-project-block {
  margin-top: 200px;
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.start-project-logo img {
  max-width: 140px;
  height: auto;
  display: block;
}

.start-project-text p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 800px) {
  .start-project-block {
    flex-direction: column;
  }

  .start-project-logo img {
    max-width: 130px;
  }
}

/* Startseite: Info-Block zum S.T.I.M.M.E.-Projekt mit Logo und Text */
.start-body .start-footer-info {
  max-width: 960px;
  margin: 3rem auto 2.5rem;
  padding: 0 2rem 1rem;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}

.start-footer-logo img {
  max-width: 160px;
  height: auto;
  display: block;
}

.start-footer-text p {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 800px) {
  .start-body .start-footer-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem 1.5rem;
  }

  .start-footer-logo img {
    max-width: 140px;
  }
}

@keyframes fadeUpLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.start-body.is-ready .start-intro-line:nth-child(1) {
  animation: fadeUpLine 0.7s ease forwards;
  animation-delay: 0.4s;
}

.start-body.is-ready .start-intro-line:nth-child(2) {
  animation: fadeUpLine 0.7s ease forwards;
  animation-delay: 0.7s;
}

.start-body.is-ready .start-intro-line:nth-child(3) {
  animation: fadeUpLine 0.7s ease forwards;
  animation-delay: 1.0s;
}

.start-body.is-ready .start-menu li {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUpLine 0.6s ease forwards;
}

.start-body.is-ready .start-menu li:nth-child(1) { animation-delay: 0.1s; }
.start-body.is-ready .start-menu li:nth-child(2) { animation-delay: 0.2s; }
.start-body.is-ready .start-menu li:nth-child(3) { animation-delay: 0.3s; }
.start-body.is-ready .start-menu li:nth-child(4) { animation-delay: 0.4s; }
.start-body.is-ready .start-menu li:nth-child(5) { animation-delay: 0.5s; }

/* Feste Footer-Links unten links auf allen STIMME-Seiten */
.stimme-footer-links {
  position: fixed;
  left: 1.5rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: #555;
}

.stimme-footer-links a {
  text-decoration: none;
  color: inherit;
}

.stimme-footer-links a:hover {
  text-decoration: underline;
}

/* Kontaktseite: kompaktes Formular mit breiten Eingabefeldern */
.kontakt-page .kontakt-form {
  max-width: 520px;
  margin-top: 1.5rem;
}

.kontakt-page .kontakt-form p {
  margin: 0 0 0.9rem;
}

.kontakt-page .kontakt-form label {
  font-size: 0.96rem;
  color: #333;
}

.kontakt-page .kontakt-form input[type="email"],
.kontakt-page .kontakt-form input[type="text"],
.kontakt-page .kontakt-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.35rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  font-size: 0.95rem;
  font-family: inherit;
}

.kontakt-page .kontakt-form textarea {
  min-height: 120px;
  resize: vertical;
}

.kontakt-page .kontakt-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.kontakt-page .kontakt-form button[type="submit"]:hover {
  background: #000;
}

/* Unterhalb von 1240px: Footer-Links auf allen start-body-Seiten (nicht Landing-Index) vertikal drehen */
@media (max-width: 1240px) {
  .start-body .stimme-footer-links {
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }
}

@media (max-width: 900px) {
  .start-hero-media {
    height: 32vh;
  }

  .start-hero-inner {
    padding-top: 2.3rem;
    gap: 2.2rem;
  }

  .start-intro {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .start-hero-inner {
    padding: 2.2rem 1.4rem 3rem;
  }

  .start-menu {
    gap: 1rem;
  }

  .start-intro-line {
    font-size: 0.96rem;
  }
}

/* Mobile-Korrektur für die Über-Seite:
   Unter ~750px Breite soll der Pokal nicht über der Überschrift hängen.
   Deshalb: Bild kleiner und weiter nach unten, Position zentriert. */
@media (max-width: 750px) {
  .ueber-page .start-hero-media,
  .kriterien-page .start-hero-media {
    height: 32vh;
    background-size: auto 32vh;
    /* 70px nach links relativ zur Mitte verschieben */
    background-position: calc(50% - 70px) bottom;
  }

  /* Auf der Über-Seite: Textblock (Überschrift, Unterzeile, Menü) etwas weiter nach unten,
     damit das Bild den Text nicht überdeckt. */
  .ueber-page .start-hero-inner {
    margin-top: 240px; /* um weitere 40px nach unten verschoben */
  }
}

/* Absatzabstand in längeren Textblöcken (z.B. Über-Seite) */
.start-intro p {
  margin: 0 0 1.6rem; /* etwa zwei Zeilen Abstand zwischen Absätzen */
}

/* Nominierungsseite: erster Absatz im Inhalt etwas weiter nach unten setzen */
.nominierung-page .start-intro[aria-hidden="false"] > p:first-of-type {
  margin-top: 60px;
}

/* Nominierungsseite: "Ablauf des Nominierungsverfahrens" weiter nach unten setzen */
.nominierung-page .start-intro[aria-hidden="false"] h2:nth-of-type(2) {
  margin-top: 50px;
}

/* Nominierungsseite, Kriterienseite und Über-Seite: inhaltlicher Block als Bezugspunkt für das große Wort */
.nominierung-page .start-intro[aria-hidden="false"],
.kriterien-page .start-intro,
.ueber-page .start-hero-inner > .start-intro:last-of-type {
  position: relative;
}

/* Seitlicher Orientierungstitel auf der Nominierungsseite
   orientiert sich direkt am flexiblen start-intro-Block */
.nominierung-page .nominierung-side-label {
  position: absolute;
  left: -180px;               /* klar sichtbar links neben dem Textblock */
  top: calc(20% + 90px);      /* weitere 40px nach unten */
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-size: 4.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e0e0e0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;                  /* oberste Ebene über Bild und Inhalt */
}

@media (max-width: 900px) {
  .nominierung-page .nominierung-side-label {
    display: none;
  }
}

/* Kriterienseite: großes Wort "Kriterien" links neben dem Textblock */
.kriterien-page .kriterien-side-label {
  position: absolute;
  left: -180px;
  top: 20%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-size: 4.0rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e0e0e0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}

@media (max-width: 900px) {
  .kriterien-page .kriterien-side-label {
    display: none;
  }
}

/* Nominierungsformular: filigran und an das STIMME-Design angepasst */
.nominierung-form {
  margin-top: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e2e2;
  opacity: 1;
  transition: opacity 1s ease;
}

.nominierung-form.is-fading-out {
  opacity: 0;
}

.nominierung-form fieldset {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 1.2rem 1.4rem 1.3rem;
  margin: 0 0 1.4rem;
}

.nominierung-form legend {
  padding: 0 0.4rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: #333;
}

.nominierung-form label {
  display: block;
  font-size: 0.95rem;
  color: #333;
  margin: 0 0 0.9rem;
  position: relative;
}

.nominee-reason-help {
  margin-top: 0.6rem; /* optisch eine Zeile unter dem Feld */
  font-size: 0.9rem;
  color: #777;         /* helleres Grau für Label und Text */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1s ease, opacity 1s ease;
}

.nominee-reason-help-intro {
  margin: 0 0 0.18rem; /* halbierter Abstand unter dem Label */
}

.nominee-reason-help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.4rem;
}

.nominee-reason-help-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.nominee-reason-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #777;
  background: #f5f5f5;
  color: #333;
  font-size: 0.75rem;
  padding: 0;
  cursor: pointer;
}

.nominee-reason-help-popover {
  display: none;
  margin-top: 0.2rem;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent; /* kein weißer Hintergrund */
  font-size: 0.9rem;
  line-height: 1.5;
}

.nominee-reason-help-popover.is-visible {
  display: block;
}

.nominee-reason-help.is-visible {
  max-height: 400px; /* genug Platz für längste Erläuterung */
  opacity: 1;
}

.nominierung-form input[type="text"],
.nominierung-form input[type="email"],
.nominierung-form input[type="url"],
.nominierung-form select,
.nominierung-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

.nominierung-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-bottom: 1.4rem; /* Platz für den Wortzähler unten im Feld */
}

.nominierung-word-counter {
  position: absolute;
  left: 0.75rem;
  bottom: 0.55rem;
  font-size: 0.8rem;
  color: #777;
  pointer-events: none;
}

.nominierung-form input.nominierung-invalid,
.nominierung-form select.nominierung-invalid,
.nominierung-form textarea.nominierung-invalid {
  border-color: #c0392b;
  border-width: 2px;
}

.nominierung-form input[type="checkbox"].nominierung-invalid {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

.nominierung-error-hint {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: #777;
}

.nominierung-error-hint.is-visible {
  color: #c0392b;
}

.nominierung-form input[type="file"] {
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.nominierung-upload-dropzone {
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px dashed #c8c8c8;
  background: #fafafa;
  cursor: pointer;
}

.nominierung-upload-dropzone.is-dragover {
  border-color: #1d3b7a;
  background: #f0f4ff;
}

.nominierung-upload-text {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.nominierung-upload-input {
  display: none;
}

.nominierung-upload-meta {
  margin-top: 0.4rem;
}

.nominierung-upload-total {
  margin: 0 0 0.2rem;
  font-size: 0.85rem;
  color: #777;
}

.nominierung-upload-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.nominierung-upload-list li {
  margin-bottom: 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nominierung-upload-remove {
  margin-left: 0.5rem;
  border: none;
  background: transparent;
  color: #888;
  font-size: 0.9rem;
  cursor: pointer;
}

.nominierung-upload-warning {
  margin: 0;
  font-size: 0.85rem;
  color: #c0392b;
}

.nominierung-field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nominierung-field-row > label {
  flex: 1 1 180px;
}

.nominierung-checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.nominierung-checkbox-inline input[type="checkbox"] {
  width: auto;
}

.nominierung-legal {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.nominierung-legal input[type="checkbox"] {
  margin-right: 0.4rem;
}

.nominierung-submit {
  margin-top: 1rem;
}

.nominierung-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nominierung-submit button:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.nominierung-submit button:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.nominierung-summary {
  margin-top: 2rem;
  padding: 2rem 2.2rem;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e4e4e4;
}

.nominierung-summary h2 {
  margin: 0 0 0.2rem;
  font-size: 1.3rem;
}

.nominierung-summary h3 {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #555;
}

.nominierung-summary-section {
  margin-bottom: 1.4rem;
}

.nominierung-summary-section h4 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777; /* fest und grau */
}

.nominierung-summary-section p {
  margin: 0.1rem 0;
  font-size: 0.95rem;
  color: #777; /* Labelteil grau */
}

.nominierung-summary-value {
  color: #222; /* konkrete Eingaben/Werte schwarz */
}

.nominierung-summary-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
}

.nominierung-summary-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.nominierung-summary-submit {
  background: #111;
  color: #fff;
}

.nominierung-summary-edit {
  background: #f3f3f3;
  color: #333;
}

/* Übergang Vorschau: weich einblenden */
.nominierung-summary {
  opacity: 0;
  transition: opacity 1s ease;
}

.nominierung-summary.is-visible {
  opacity: 1;
}

/* Seite "Über den Preis" */

.ueber-body {
  margin: 0;
  background: #ffffff;
  color: #222;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ueber-body.is-ready {
  opacity: 1;
  transform: translateY(0);
}

/* Seiten "Statut" und "Archiv": Hero-Hintergrundbild ausblenden */
.statut-page .start-hero-media,
.archiv-page .start-hero-media {
  display: none;
}
