:root {
  --color-bg: #ffffff;
  --color-dark: #0e0e0e;
  --color-gray: #e7e4e0;
  --color-text: #1a1a1a;
  --color-text-inverse: #f5f3ef;
  --color-muted: #6b6b6b;
  --color-muted-inverse: #b9b6b1;
  --max-width: 1160px;
  --font-headline: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.25;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-dark);
  color: var(--color-text-inverse);
  border-bottom: 1px solid #222;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.logo {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--color-muted-inverse);
}

.btn.btn--nav {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid var(--color-text-inverse);
}

.btn.btn--nav:hover {
  background: var(--color-text-inverse);
  color: var(--color-dark);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-inverse);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--color-dark);
  color: var(--color-text-inverse);
  display: flex;
  align-items: stretch;
  min-height: 88vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.9;
}

.hero-img--mobile {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 88vh;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.05) 75%);
}

.hero-copy .container {
  max-width: 640px;
  margin: 0;
  margin-left: 10%;
  padding: 0 2rem 0 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero .lead {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

.hero p {
  color: var(--color-muted-inverse);
}

.hero .lead {
  color: var(--color-text-inverse);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 6rem 0;
}

.section h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-sub {
  text-align: center;
  color: var(--color-muted);
  max-width: 480px;
  margin: 0 auto 3rem;
}

/* ===== GENESIS ===== */
.genesis {
  background: linear-gradient(90deg, #b9b6b1 0%, #ddd9d4 22%, #f7f6f4 50%, #ddd9d4 78%, #b9b6b1 100%);
}

.genesis-intro {
  max-width: 640px;
}

.genesis-figures {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.genesis .link-more {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.genesis-figures img {
  height: 320px;
  width: auto;
  object-fit: contain;
}

/* ===== GRAMMATIK ===== */
.grammatik {
  position: relative;
  background: var(--color-dark) url("../assets/Images/Garderobe_Desktop.jpg") center center / cover no-repeat;
  color: var(--color-text-inverse);
  padding: 7rem 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.grammatik .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.grammatik h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.grammatik .lead,
.grammatik p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.grammatik .btn--outline {
  margin-top: 1rem;
}

/* ===== ATELIER ===== */
.atelier {
  background: var(--color-bg);
  margin-top: -1px;
}

.atelier-copy {
  max-width: 640px;
  padding: 6rem 2rem 3.5rem;
  text-align: center;
}

.atelier-copy h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.atelier-copy p {
  margin-bottom: 1.25rem;
}

.atelier-media {
  position: relative;
}

.atelier-img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.atelier-overlay-text {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: var(--color-text-inverse);
}

.atelier-overlay-text h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.atelier-overlay-text p {
  margin-bottom: 0.25rem;
}

.atelier-overlay-text .atelier-address {
  color: var(--color-muted-inverse);
  margin-bottom: 1.5rem;
}

.atelier-cta {
  margin-top: 2rem;
}

.btn--overlay {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.7);
}

.btn--overlay:hover {
  background: rgba(0,0,0,0.5);
}

.link-more {
  display: inline-block;
  vertical-align: middle;
  margin-top: 1.75rem;
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.link-more:hover {
  background: var(--color-text-inverse);
  color: var(--color-dark);
}

.link-more--on-light {
  color: var(--color-text);
}

.link-more--on-light:hover {
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

/* ===== COUTURE / ANIKO ===== */
.couture {
  background: linear-gradient(90deg, #b9b6b1 0%, #ddd9d4 22%, #f7f6f4 50%, #ddd9d4 78%, #b9b6b1 100%);
}

.couture-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.couture-copy {
  flex: 1 1 420px;
}

.couture-copy h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.couture-media {
  flex: 0 0 300px;
  text-align: center;
}

.couture-media img {
  width: 100%;
  max-width: 300px;
}

/* ===== ANIKO ARTICLE PAGE ===== */
.aniko-page {
  background: linear-gradient(90deg, #b9b6b1 0%, #ddd9d4 22%, #f7f6f4 50%, #ddd9d4 78%, #b9b6b1 100%);
  color: var(--color-text);
  padding: 8rem 0 6rem;
}

.aniko-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.aniko-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.aniko-subhead {
  color: var(--color-muted);
}

.aniko-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto 5rem;
}

.aniko-row:last-of-type {
  margin-bottom: 0;
}

.aniko-row--reverse {
  flex-direction: row-reverse;
}

.aniko-row-copy {
  flex: 1 1 480px;
}

.aniko-row-copy p {
  margin-bottom: 1.5rem;
}

.aniko-row-media {
  flex: 0 0 360px;
  text-align: center;
}

.aniko-row-media img {
  width: 100%;
  max-width: 360px;
}

.aniko-closing {
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
}

/* ===== ETERNAL GENESIS ARTICLE PAGE ===== */
.genesis-article {
  background: linear-gradient(90deg, #b9b6b1 0%, #ddd9d4 22%, #f7f6f4 50%, #ddd9d4 78%, #b9b6b1 100%);
  color: var(--color-text);
  padding: 8rem 0 6rem;
}

.genesis-article-copy {
  max-width: 620px;
  margin: 0 auto 4rem;
  text-align: center;
}

.genesis-article-copy h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.genesis-article-copy p {
  margin-bottom: 1.5rem;
}

.genesis-article-figures {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.genesis-figure {
  text-align: center;
}

.genesis-figure img {
  display: block;
  height: 320px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.genesis-figure figcaption {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* ===== EINSTIEG / PRICING ===== */
.einstieg {
  background: var(--color-bg);
  color: var(--color-text);
}

.einstieg h2 {
  font-size: 2rem;
}

.einstieg .einstieg-start-title {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.einstieg .section-sub {
  color: var(--color-muted);
}

.einstieg-intro {
  max-width: 640px;
  margin-bottom: 4.5rem;
}

.einstieg-outro {
  max-width: 640px;
  margin: 5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  text-align: center;
}

.einstieg-outro-text {
  max-width: 640px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid--3 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 3.5rem auto;
  max-width: 900px;
  gap: 0 2.5rem;
  position: relative;
}

.pricing-card {
  padding: 0 1rem;
}

.pricing-grid--3 .pricing-card {
  position: relative;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 2.5rem 2rem;
}

.pricing-grid--3 .pricing-card--tool {
  order: 1;
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  width: 100%;
  max-width: 440px;
  position: relative;
}

.pricing-grid--3 .pricing-card--tool::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 1rem;
  background: rgba(0,0,0,0.25);
  transform: translateX(-50%);
}

.pricing-grid--3 .pricing-card--weg1 {
  order: 2;
  grid-column: 1;
  grid-row: 3;
}

.pricing-grid--3 .pricing-card--weg2 {
  order: 3;
  grid-column: 2;
  grid-row: 3;
}

.pricing-grid--3::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  margin-top: 1rem;
  width: 50%;
  height: calc(3.5rem - 1rem);
  border-top: 1px solid rgba(0,0,0,0.25);
  border-left: 1px solid rgba(0,0,0,0.25);
  border-right: 1px solid rgba(0,0,0,0.25);
  border-radius: 6px 6px 0 0;
}

.pricing-grid--3::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  margin-top: 1rem;
  width: 7px;
  height: 7px;
  background: var(--color-text);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pricing-card--tool .pricing-weg {
  color: var(--color-text);
  font-weight: 600;
}

.pricing-card--tool h3 {
  font-size: 1.6rem;
}

.pricing-weg {
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.pricing-teaser {
  display: none;
}

.pricing-teaser-root {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 340px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 1.75rem 1.75rem;
  text-align: center;
}

.pricing-teaser-label {
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.pricing-teaser-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
}

.pricing-teaser-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.pricing-teaser-amount {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.pricing-teaser-root::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 1rem;
  background: rgba(0,0,0,0.25);
  transform: translateX(-50%);
}

.pricing-teaser-boxes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.25rem auto;
  gap: 0 1rem;
  max-width: 380px;
  margin: 1rem auto 0;
}

.pricing-teaser-box {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pricing-teaser-box .pricing-teaser-label {
  font-size: 0.65rem;
}

.pricing-teaser-box .pricing-teaser-title {
  font-size: 0.85rem;
}

.pricing-teaser-box:hover,
.pricing-teaser-box:active {
  border-color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.02);
}

.pricing-teaser-boxes::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  align-self: end;
  width: 55%;
  height: 100%;
  border-top: 1px solid rgba(0,0,0,0.25);
  border-left: 1px solid rgba(0,0,0,0.25);
  border-right: 1px solid rgba(0,0,0,0.25);
  border-radius: 6px 6px 0 0;
}

.pricing-teaser-boxes::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  width: 5px;
  height: 5px;
  background: var(--color-text);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pricing-tagline {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pricing-card p {
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.pricing-amount {
  color: var(--color-text) !important;
  padding-top: 0;
}

.vorab {
  text-align: center;
  max-width: 520px;
  margin: 5rem auto 4rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.vorab-label {
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.vorab h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vorab p {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.einstieg .btn {
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--color-text-inverse);
  color: var(--color-dark);
  border-radius: 2px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn--outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid var(--color-text-inverse);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
}

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-text-inverse);
  opacity: 1;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a:hover {
  color: var(--color-text);
}

/* ===== Article pages ===== */
.article-hero {
  position: relative;
  background: var(--color-dark) url("../assets/Images/BG_Article_1.jpg") center top / cover no-repeat;
  color: var(--color-text-inverse);
  min-height: 100vh;
  padding: 8rem 0 6rem;
  text-align: center;
}

.article-hero-inner {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.article-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.article-hero-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.article-subhead {
  font-size: 1.5rem;
  color: var(--color-muted-inverse);
}

.article-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.article-col p {
  margin-bottom: 1.75rem;
}

.article-highlight {
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.6;
}

.article-closing {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.article-closing p {
  margin-bottom: 1rem;
}

.article-back {
  text-align: center;
  margin-top: 3.5rem;
}

.article-single {
  max-width: 620px;
  margin: 0 auto;
}

.article-single p {
  margin-bottom: 1.75rem;
}

.article-hero--grammatik {
  background-image: url("../assets/Images/Garderobe Abend.jpg");
}

.article-hero--autorenschaft {
  background-image: url("../assets/Images/Atelier_Autorenschaft_BG.jpg");
}

.article-hero--grammatik::before,
.article-hero--autorenschaft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.article-hero--grammatik .container,
.article-hero--autorenschaft .container {
  position: relative;
  z-index: 1;
}

/* ===== Legal pages ===== */
.legal {
  padding: 4rem 0 6rem;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal .legal-updated {
  color: var(--color-muted);
  margin-bottom: 3rem;
}

.legal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal p {
  margin-bottom: 1.25rem;
}

.legal ul {
  margin: 0 0 1.25rem 1.5rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal a {
  text-decoration: underline;
}

.legal a:hover {
  color: var(--color-muted);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .couture-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .couture-copy,
  .couture-media {
    flex: 0 0 auto;
  }

  .couture-copy {
    display: contents;
  }

  .couture-heading {
    order: 1;
    text-align: center;
  }

  .couture-media {
    order: 2;
  }

  .couture-link {
    order: 3;
    margin: 0 auto;
  }

  .couture {
    padding-bottom: 2rem;
  }

  .genesis {
    padding-top: 1.5rem;
  }

  .aniko-row,
  .aniko-row--reverse {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .aniko-row-media {
    order: -1;
  }

  .aniko-row-media img {
    max-width: 250px;
    margin: 0 auto;
  }

  .aniko-row-copy {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .container.header-inner {
    justify-content: space-between;
    padding: 1.75rem 2rem;
  }

  .main-nav,
  .header-inner > .btn--nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    text-align: center;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .mobile-nav.is-open {
    display: flex;
    max-height: 400px;
    padding: 1rem 1.5rem 1.5rem;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .article-hero {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .article-hero-inner {
    margin-bottom: 2.5rem;
  }

  .article-hero h1 {
    font-size: 2rem;
  }

  .article-hero-lead {
    font-size: 1.05rem;
  }

  .article-subhead {
    font-size: 1.15rem;
  }

  .article-columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .article-highlight {
    font-size: 1.05rem;
  }

  /* Hero: text centered directly over the image, no dark backdrop */
  .hero {
    flex-direction: column;
    min-height: 100vh;
  }

  .hero-media {
    position: absolute;
    height: 100%;
  }

  .hero-img--desktop {
    display: none;
  }

  .hero-img--mobile {
    display: block;
    object-position: center top;
  }

  .hero-copy {
    min-height: 100vh;
    background: none;
    padding: 26vh 0 3rem;
    text-align: center;
    justify-content: flex-start;
  }

  .hero-copy .container {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }

  .hero .lead {
    margin-bottom: 1rem;
  }

  .hero .lead,
  .hero p {
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  }

  .section {
    padding: 4rem 0;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .genesis-figures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: end;
    gap: 1.5rem 0.5rem;
  }

  .genesis-figures img {
    height: 220px;
  }

  .genesis-article-figures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: end;
    gap: 1.5rem 0.5rem;
  }

  .genesis-figure img {
    height: 220px;
  }

  .grammatik {
    padding: 4rem 0;
    background-image: url("../assets/Images/Garderobe_Mobile.jpg");
  }

  .grammatik h2 {
    font-size: 1.9rem;
  }

  .atelier-copy {
    padding: 3.5rem 1.5rem 2.5rem;
  }

  .atelier-img {
    height: 420px;
  }

  .atelier-overlay-text h2 {
    font-size: 1.6rem;
  }

  .couture-media img {
    max-width: 220px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .pricing-grid--3 {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 3.5rem;
  }

  .pricing-grid--3 .pricing-card--tool {
    display: none;
  }

  .pricing-grid--3 .pricing-card--weg1 {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-grid--3 .pricing-card--weg2 {
    order: 3;
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-grid--3::before,
  .pricing-grid--3::after {
    display: none;
  }

  .pricing-teaser {
    display: block;
    margin-bottom: 3.5rem;
  }

  .einstieg-intro {
    margin-bottom: 3.5rem;
  }
}

/* ===== ETERNAL IM ALLTAG ===== */
.alltag-intro {
  padding-bottom: 2rem;
  text-align: center;
}

.alltag-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.alltag-pairs {
  padding-top: 2rem;
}

.alltag-pair {
  margin-bottom: 5rem;
}

.alltag-pair:last-child {
  margin-bottom: 0;
}

.alltag-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.alltag-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
}

.alltag-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.alltag-img-wrap:hover img {
  transform: scale(1.05);
}

.ai-badge,
.photo-badge {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--color-text-inverse);
  background: rgba(0,0,0,0.55);
  border-radius: 2px;
}

.ai-badge {
  left: 0.5rem;
  bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.6rem;
}

.alltag-pair-text {
  text-align: center;
  margin-top: 1.5rem;
}

.alltag-pair-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.alltag-pair-text p {
  color: var(--color-muted);
}

.alltag-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===== ETERNAL IN BEWEGUNG ===== */
.bewegung-hero {
  min-height: 95vh;
}

.bewegung-hero .hero-img {
  object-position: 80% center;
}

.bewegung-hero .hero-copy {
  align-items: center;
  min-height: 95vh;
  background: linear-gradient(100deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0) 65%);
}

.bewegung-hero .hero-copy .container {
  max-width: 460px;
  margin-left: 18%;
  padding: 0;
}

.bewegung-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.75rem;
}

.bewegung-hero .lead {
  margin-bottom: 1.5rem;
}

.bewegung-videos {
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

.bewegung-intro {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.video-tile h2 {
  text-align: left;
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0.15rem;
}

.video-tile p {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--color-muted-inverse);
}

.video-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: #1a1a1a;
}

.video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  color: var(--color-text-inverse);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-text-inverse);
  border-radius: 50%;
}

.video-play svg {
  position: relative;
  margin-left: 3px;
}

.video-play:hover {
  background: rgba(0,0,0,0.4);
}

.video-wrap.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-mute {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  border: none;
  border-radius: 50%;
  color: var(--color-text-inverse);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.video-wrap.is-playing .video-mute {
  opacity: 1;
  pointer-events: auto;
}

.video-mute:hover {
  background: rgba(0,0,0,0.8);
}

.video-mute .icon-muted {
  display: none;
}

.video-wrap.is-muted .video-mute .icon-unmuted {
  display: none;
}

.video-wrap.is-muted .video-mute .icon-muted {
  display: block;
}

.bewegung-closing {
  text-align: center;
  margin-top: 5rem;
}

.bewegung-closing h2 {
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.bewegung-closing h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 2px;
  background: #a12626;
}

@media (max-width: 768px) {
  .alltag-intro h1 {
    font-size: 2rem;
  }

  .alltag-pair-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .alltag-pair {
    margin-bottom: 3.5rem;
  }

  .bewegung-hero {
    min-height: 60vh;
  }

  .bewegung-hero .hero-copy {
    min-height: 60vh;
    padding-top: 20vh;
    justify-content: flex-start;
    text-align: center;
  }

  .bewegung-hero .hero-copy .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
  }

  .bewegung-hero h1 {
    font-size: 2.1rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .bewegung-closing {
    margin-top: 3.5rem;
  }
}

@media (max-width: 520px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== 12 FRAUEN ===== */
.frauen-intro {
  padding-bottom: 2rem;
  text-align: center;
}

.frauen-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.frauen-intro .lead {
  max-width: 620px;
  margin: 0 auto 1rem;
  font-size: 1.15rem;
}

.frauen-intro p:not(.lead) {
  color: var(--color-muted);
}

.frauen-grid-section {
  padding-top: 2rem;
}

.frauen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.frauen-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
}

.frauen-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.frauen-img-wrap:hover img {
  transform: scale(1.05);
}

.frauen-name {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.frauen-role {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .frauen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .frauen-intro h1 {
    font-size: 2rem;
  }

  .frauen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }
}

/* ===== PRODUKT ===== */
.produkt-intro {
  padding-bottom: 1.5rem;
  text-align: center;
}

.produkt-intro h2 {
  font-size: 2.25rem;
}

.produkt-slider-section {
  padding: 2.5rem 0;
}

.slider-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 3rem;
}

.slider-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track.is-dragging {
  cursor: grabbing;
}

.slider-item {
  flex: 0 0 auto;
  width: 200px;
}

.slider-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-gray);
}

.slider-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-item p {
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.slider-arrow {
  flex: 0 0 auto;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.slider-arrow:hover {
  color: var(--color-muted);
}

/* ===== FEATURE BAR ===== */
.feature-bar {
  background: var(--color-bg);
  padding: 4rem 0;
}

.feature-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.feature-items {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4.5rem;
}

.feature-item {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-text);
  text-align: center;
}

.feature-item svg {
  width: 52px;
  height: 52px;
}

.feature-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.feature-item p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .slider {
    padding: 0 2.25rem;
  }

  .slider-item {
    width: 150px;
  }

  .feature-row {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }

  .feature-label {
    position: static;
    transform: none;
    flex: 0 0 auto;
  }

  .feature-items {
    justify-content: center;
    gap: 1.75rem;
    width: 100%;
  }
}
