/* SEEDTOWER HERO */
.hero {
  position: relative;
  min-height: clamp(520px, 68vw, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--tap-green);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,31,26,.76) 0%,
    rgba(15,31,26,.42) 36%,
    rgba(15,31,26,.08) 74%
  );
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 0 32px 140px;
  color: white;
}

.hero-title {
  margin: 0;
  max-width: 620px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.02em;
}

.hero .gold-rule {
  width: 70px;
  height: 1px;
  margin: 28px 0 22px;
  background: var(--tap-gold);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: .02em;
}

.hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
  font-weight: 400;
  color: rgba(255,255,255,.92);
}

/* SEEDTOWER INTRO / CHAPTERS */
.seedtower-section {
  background: var(--tap-white);
  padding: 86px 32px 96px;
}

.seedtower-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.manifest-intro {
  max-width: 820px;
  margin: 0 0 120px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.35;
  font-style: italic;
  color: var(--tap-green);
}

.section-label {
  margin: 0 0 28px;
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--tap-gold);
  text-transform: uppercase;
  font-weight: 400;
}

.seedtower-heading {
  margin: 0 0 68px;
  max-width: 780px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--tap-green);
}

.seedtower-chapters {
  display: grid;
  gap: 0;
}

.seedtower-chapter {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  padding: 46px 0 50px;
  border-bottom: 1px solid rgba(200,167,106,.42);
}

.seedtower-chapter:last-child {
  border-bottom: 0;
}

.chapter-index {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--tap-gold);
  font-size: 15px;
  letter-spacing: .12em;
  padding-top: 8px;
}

.chapter-index::after {
  content: "";
  width: 74px;
  height: 1px;
  background: var(--tap-gold);
}

.seedtower-chapter h3 {
  margin: 0 0 14px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--tap-green);
}

.seedtower-chapter p {
  max-width: 720px;
  margin: 0;
  color: #3f4541;
  font-size: 17px;
  line-height: 1.65;
}

/* ==========================================
   LONGFORM STORY SECTIONS
========================================== */

.story-section {
  background: var(--tap-white);
}

.story-visual {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Historische Postkarten */
.story-visual-postcard {
  min-height: auto;
  aspect-ratio: 16 / 9;
}

.story-visual-document {
  min-height: auto;
  aspect-ratio: 4 / 3;
}
.story-visual-structure {
    position: relative;
    min-height: auto;
    max-width: 980px;
    margin: 5rem auto 1rem;
    display: block;
    overflow: hidden;
}

.story-visual-structure img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.story-visual-structure .story-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0 32px 70px;
    z-index: 2;
}

/* 04.1 Der Stamm */

.story-visual-evening {
    position: relative;
    max-width: 1400px;
    margin: 5rem auto 1rem;

    min-height: auto;
    overflow: hidden;
}
.story-visual-evening .story-caption {
    position: absolute;

    left: 70px;
    bottom: 70px;

    width: calc(100% - 140px);
    padding: 0;

    z-index: 2;
}

.story-visual-evening img {
    position: relative;
    inset: auto;

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}
/* 04.2 Der Raum */

.story-visual-space {
    position: relative;
    max-width: 1100px;
    margin: 5rem auto 1rem;

    min-height: auto;
    overflow: hidden;
}

.story-visual-space img {
    position: relative;
    inset: auto;

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.story-visual-space .story-caption {
    position: absolute;

    left: 70px;
    bottom: 70px;

    width: calc(100% - 140px);
    padding: 0;

    z-index: 2;
}

/* 04.3 Die Krone */

.story-visual-crown {
    position: relative;
    max-width: 1200px;
    margin: 5rem auto 1rem;

    min-height: auto;
    overflow: hidden;
}

.story-visual-crown img {
    position: relative;
    inset: auto;

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.story-visual-crown .story-caption {
    position: absolute;

    left: 70px;
    bottom: 70px;

    width: calc(100% - 140px);
    padding: 0;

    z-index: 2;
}
/* 05 Das Signal */

.story-visual-signal {
    position: relative;
    max-width: 1200px;
    margin: 5rem auto 1rem;

    min-height: auto;
    overflow: hidden;
}

.story-visual-signal img {
    position: relative;
    inset: auto;

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.story-visual-signal .story-caption {
    position: absolute;

    left: 70px;
    bottom: 70px;

    width: calc(100% - 140px);
    padding: 0;

    z-index: 2;
}
/* Morphogenese – Naturbeispiel */

.morphogenesis-nature {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;

    max-width: 1200px;
    margin: 5rem auto 2rem;
}

.morphogenesis-image {
    overflow: hidden;
}

.morphogenesis-image img {
    width: 100%;
    display: block;
}

.morphogenesis-image-wide,
.morphogenesis-image-detail {
    min-height: 620px;
}

.morphogenesis-caption {
    grid-column: 2;
    max-width: 460px;
    margin-top: 1rem;

    align-self: start;

    font-family: Bahnschrift, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .06em;

    color: var(--tap-gold);
    opacity: .85;
}

.morphogenesis-caption strong {
    display: block;
    margin-bottom: .75rem;

    font-weight: 600;
    color: var(--tap-gold);
}

.morphogenesis-caption p {
    margin: 0;
}

@media (max-width: 900px) {
    .morphogenesis-nature {
        grid-template-columns: 1fr;
    }

    .morphogenesis-image-wide,
    .morphogenesis-image-detail {
        min-height: auto;
    }

    .morphogenesis-image img {
        height: auto;
        object-fit: contain;
    }
	    .morphogenesis-caption {
        grid-column: 1;
        max-width: none;
        margin-top: 1rem;
    }

}
.story-visual-document img {
  object-fit: contain;
  background: var(--tap-white);
}

.story-visual-roots {
    position: relative;
    max-width: 1400px;
    margin: 5rem auto 1rem;
}

.story-visual-roots img {
    width: 100%;
    height: auto;
    display: block;
}

.story-visual-roots .story-caption {
    position: absolute;
    left: 50px;
    bottom: 550px;
    z-index: 2;
	width: calc(100% - 100px);
    padding: 0;
}

.story-visual-roots .story-kicker {
    position: absolute;
    top: -50px;
    left: 0;

    color: var(--tap-gold);

    margin: 0;
    z-index: 3;
}

.story-visual-roots h2 {
    color: var(--tap-white);
}
.story-visual-document .story-caption {
    padding-bottom: 55px;
}

.story-visual-postcard .story-caption {
    padding-bottom: 45px;
}

.story-visual-postcard img {
  object-fit: contain;
  background: var(--tap-white);
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,31,26,.42),
    rgba(15,31,26,.08)
  );
}

.story-caption {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 0 32px 70px;
  color: white;
}
.story-visual-document .story-caption-question {
    padding-bottom: 640px;
}

.story-kicker {
  margin: 0 0 24px;
  color: var(--tap-gold);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.story-caption h2,
.story-caption h3 {
  max-width: 760px;
  margin: 0;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.05;
  font-weight: 400;
}

.story-caption p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.story-text {
  max-width: 980px;
  margin: 0 auto;
  padding: 110px 32px;
  font-family: Cambria, Georgia, serif;
  color: var(--tap-green);
}

.story-text p {
  margin: 0 0 28px;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.35;
}

.metaphase-heading {
    margin: 4rem 0 2rem;

    font-family: Bahnschrift, Arial, sans-serif;
    font-size: clamp(24px, 1.6vw, 26px);
    line-height: 1.4;
    font-weight: 400;

    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--tap-gold);
}
/* Bildunterschriften */

.story-image-note {
    max-width: 1200px;
    margin: 18px auto 30px;
    padding: 0 32px;

    font-family: Bahnschrift, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.7;

    letter-spacing: .06em;

    color: var(--tap-gold);
    opacity: .85;
}
.evening-note {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 32px;

    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .04em;

    opacity: .65;
}

.story-transition {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 32px 140px;
  font-family: Cambria, Georgia, serif;
  color: var(--tap-green);
}
.question-transition {
    max-width: 760px;
    margin: 110px auto 120px;
    padding: 0 32px;

    font-family: Cambria, Georgia, serif;
    font-style: italic;
    color: var(--tap-green);
}

.question-transition p {
    margin: 0;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.28;
}

.story-transition p {
  margin: 0;
  font-style: italic;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.28;
}

/* SEEDTOWER MANIFEST / ABOUT BLOCK */
.about-section {
  background: var(--tap-cream);
  padding: 76px 32px;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 1px 180px;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.portrait {
  aspect-ratio: 4 / 5;
  background: #ddd;
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-label {
  margin: 0 0 16px;
  color: var(--tap-gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.about-title {
  margin: 0 0 20px;
  max-width: 620px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--tap-green);
}

.about-copy {
  max-width: 620px;
  margin: 0 0 22px;
  color: #3f4541;
  font-size: 17px;
  line-height: 1.65;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.detail-link::after {
  content: "\2192";
  color: var(--tap-gold);
  font-size: 20px;
  transition: transform .25s var(--ease);
}

.detail-link:hover::after {
  transform: translateX(3px);
}

.seedtower-note {
  margin: 18px 0 0;
  color: var(--tap-gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vertical-rule {
  height: 180px;
  background: var(--tap-gold);
  justify-self: center;
}

.about-logo img {
  width: 150px;
  margin: 0 auto;
}

/* ==========================================
   COPYRIGHT
========================================== */

.copyright-section {
    max-width: 1200px;
    margin: 5rem auto 3rem;
    padding: 0 32px;
}

.copyright-text {
    margin: 0;

    text-align: center;

    font-family: Bahnschrift, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.8;

    letter-spacing: .06em;

    color: var(--tap-gold);
    opacity: .75;
}

/* RESPONSIVE TABLET */

@media (max-width: 980px) {

  .seedtower-chapter {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-inner {
    grid-template-columns: 180px 1fr;
  }

  .vertical-rule,
  .about-logo {
    display: none;
  }
}


/* RESPONSIVE SMARTPHONE */

@media (max-width: 700px) {
	
	.manifest-intro {
  margin-bottom: 70px;
  font-size: 34px;
  line-height: 1.25;
  }

  .hero {
    min-height: 560px;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(15,31,26,.78),
      rgba(15,31,26,.28)
    );
  }

  .hero-content {
    padding: 0 28px 90px;
  }

  .hero-title {
    max-width: 340px;
    font-size: 46px;
    line-height: 1.02;
  }

  .hero .gold-rule {
    width: 48px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-top: 14px;
  }

  .seedtower-section {
    padding: 58px 24px 66px;
  }

  .seedtower-heading {
    margin-bottom: 42px;
    font-size: 34px;
  }

  .seedtower-chapter {
    padding: 34px 0 38px;
  }

  .chapter-index {
    font-size: 14px;
  }

  .seedtower-chapter h3 {
    font-size: 30px;
  }

  .seedtower-chapter p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-section {
    padding: 56px 24px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .portrait {
    max-width: 220px;
  }
  
  /* Smartphone – Story-Bilder */

	.story-visual,
	.story-visual-postcard,
	.story-visual-document,
	.story-visual-structure,
	.story-visual-roots,
	.story-visual-evening,
	.story-visual-space,
	.story-visual-crown,
	.story-visual-signal {
		max-width: none;
		width: calc(100% - 32px);
		margin: 3rem auto 1rem;
	}

	.story-visual-postcard,
	.story-visual-document {
		aspect-ratio: auto;
	}

	.story-visual img,
	.story-visual-postcard img,
	.story-visual-document img {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.story-caption,
	.story-visual-structure .story-caption,
	.story-visual-evening .story-caption,
	.story-visual-space .story-caption,
	.story-visual-crown .story-caption,
	.story-visual-signal .story-caption,
	.story-visual-roots .story-caption {
		position: absolute;
		left: 24px;
		bottom: 4px;
		width: calc(100% - 48px);
		padding: 0;
	}

	.story-caption h2,
	.story-caption h3 {
		font-size: clamp(18px, 6vw, 28px);
		line-height: 1.08;
	}

	.story-kicker {
		font-size: 11px;
		letter-spacing: .22em;
		margin-bottom: 14px;
	}

	.story-image-note {
		width: calc(100% - 32px);
		max-width: none;
		padding: 0;
		margin: 14px auto 42px;
		font-size: 11px;
		line-height: 1.7;
	}

	.story-text {
		padding: 72px 28px;
	}

	.story-text p {
		font-size: 24px;
		line-height: 1.38;
	}

	/* Smartphone Sonderregel Poststraße 2026 */

	.story-caption-question {
		bottom: 8px !important;
		padding: 0 !important;
	}

	.story-caption-question h3 {
		font-size: clamp(1px, 5.8vw, 26px);
		line-height: 1.08;
	}

	}