/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --br-white: #ffffff;
  --br-mid-blue: #1028a3;
  --br-dark-blue: #081044;
  --br-light-grey: #e6e7eb;

  --padding-small: 24px;
  --padding-big: 40px;
  --padding-sections: 64px;

  --size-0: 0px;
  --size-20: 20px;
  --size-24: 24px;
  --size-32: 32px;
  --size-48: 48px;

  --columns-4: 440px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--br-white);
  color: var(--br-dark-blue);
}

img {
  display: block;
  max-width: 100%;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
.hero-title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #f7f7f7;
  text-align: center;
  margin: 0;
  max-width: 1271px;
}

.h2-dark {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 60px;
  line-height: 1.2;
  color: var(--br-dark-blue);
  margin: 0;
}

.intro-text {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 22px;
  line-height: 1.35;
  color: var(--br-dark-blue);
  opacity: 0.75;
  max-width: 670px;
  margin: 0;
}

.h3-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  color: var(--br-white);
  margin: 0 0 48px 0;
}

.p-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.35;
  color: var(--br-white);
  margin: auto 0 0 0;
}

/* ==========================================================================
   Main navigation
   ========================================================================== */
.main-nav {
  position: relative;
  z-index: 10;
  height: 64px;
  width: 100%;
  background: #f1f1f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--padding-small) var(--padding-big) 0;
}

.logo img {
  width: 230px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-20);
}

.menu-link {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: var(--br-dark-blue);
  white-space: nowrap;
}

.dropdown-toggle {
background: none;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.button-dark {
  background: var(--br-mid-blue);
  color: var(--br-white);
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  padding: 8px var(--size-20);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  margin: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Produkte dropdown
   ========================================================================== */
.container-drop-down {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  width: max-content;
  max-width: calc(100vw - var(--padding-big) * 2);
  background: #f1f1f3; 
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: var(--size-20) 164px var(--size-32) var(--size-32);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.container-drop-down.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-down-list-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-20);
  width: max-content;
}

.dropdown-item {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--br-dark-blue);
  width: 100%;
  white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  text-decoration: underline;
}

.dropdown-separator {
  width: 100%;
  height: 1px;
  background: var(--br-light-grey);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-wrapper {
  width: 100%;
  background: #f1f1f3;
  padding: var(--size-20) var(--padding-big) 0;
}

.hero-module-home {
  position: relative;
  width: 100%;
  min-height: 776px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 93.5px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay-lighten {
  position: absolute;
  inset: 0;
  background: var(--br-dark-blue);
  mix-blend-mode: plus-lighter;
  z-index: 1;
}

.hero-overlay-multiply {
  position: absolute;
  inset: 0;
  background: rgba(16, 40, 163, 0.75);
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero-title {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Intro section
   ========================================================================== */
.intro-section {
  width: 100%;
  background: #f1f1f3;
  padding: var(--size-48) var(--padding-big);
}

.intro-container {
  display: flex;
  flex-direction: column;
  gap: var(--size-24);
}

/* ==========================================================================
   About ("Über mich") section
   ========================================================================== */
.about-section {
  width: 100%;
  background: var(--br-light-grey);
  padding: var(--padding-sections) var(--padding-big);
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: var(--size-32);
}

.about-heading {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 60px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.info-cards {
  display: flex;
  align-items: center;
  gap: var(--size-20);
  flex-wrap: wrap;
}

.info-card {
  background: var(--br-mid-blue);
  color: var(--br-white);
  flex: 1 1 0;
  min-width: 280px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: var(--padding-small) 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  width: 100%;
  background: var(--br-dark-blue);
  padding: 33.75px 30px 57px;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 189px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 334px;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11.25px;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #f7f7f7;
}

.footer-nav a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* ==========================================================================
   Kontakt page
   ========================================================================== */
body.kontakt-body {
  background: #f1f1f3;
}

.main-nav--kontakt {
  background: #f1f1f3;
}

.kontakt-hero {
  width: 100%;
  padding: 95px var(--padding-big) 0;
}

.kontakt-title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--br-mid-blue);
  margin: 0;
}

.kontakt-section {
  width: 100%;
  padding: 95px var(--padding-big);
}

.kontakt-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.kontakt-card {
  display: flex;
  flex-direction: column;
  gap: var(--size-32);
  width: 325px;
}

.kontakt-photo {
  width: 100%;
  height: 325px;
  overflow: hidden;
}

.kontakt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: var(--size-24);
  color: #152a96;
}

.kontakt-name {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.kontakt-info-group {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 22px;
  line-height: 1.35;
}

.kontakt-info-group p {
  margin: 0 0 16px 0;
}

.kontakt-info-group p:last-child {
  margin-bottom: 0;
}

.kontakt-info-group a {
  color: inherit;
  text-decoration: none;
}

.kontakt-info-group a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Partner page
   ========================================================================== */
body.partner-body {
  background: #f1f1f3;
}

.main-nav--partner {
  background: #f1f1f3;
}

.partner-hero {
  width: 100%;
  padding: 95px var(--padding-big) 0;
}

.partner-title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--br-mid-blue);
  margin: 0;
}

.partner-section {
  width: 100%;
  padding: 95px var(--padding-big);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--size-20);
  width: 100%;
}

.partner-card {
  position: relative;
  background: var(--br-white);
  width: 100%;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding-small);
}

.partner-logo {
  width: 100%;
  aspect-ratio: 336.73 / 130.86;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.partner-link {
  position: absolute;
  left: 43px;
  right: 43px;
  bottom: 0;
  padding: 0 var(--padding-small) var(--padding-small);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.partner-link-icon {
  width: 18px;
  height: 18px;
}

.partner-link span {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  color: #152a96;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  white-space: nowrap;
}

/* ==========================================================================
   Über mich page
   ========================================================================== */
body.ueber-mich-body {
  background: #f1f1f3;
}

.main-nav--ueber-mich {
  background: #f1f1f3;
}

.ueber-mich-hero {
  width: 100%;
  padding: 95px var(--padding-big) 0;
}

.ueber-mich-title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--br-mid-blue);
  margin: 0;
}

body.ueber-mich-body .about-section {
  background: #f1f1f3;
}

.vorteile-section {
  width: 100%;
  background: var(--br-light-grey);
  padding: 95px var(--padding-big);
  display: flex;
  flex-direction: column;
  gap: var(--padding-small);
}

.vorteile-heading {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 62px;
  line-height: 1.2;
  color: var(--br-dark-blue);
  margin: 0;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: var(--size-20);
  width: 100%;
}

.vorteile-card {
  background: var(--br-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 310px;
  min-height: 310px;
  max-height: 310px;
  min-width: 215px;
  padding: var(--padding-small) var(--padding-small) var(--size-20);
}

.vorteile-icon {
  width: 80px;
  height: 80px;
}

.vorteile-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vorteile-text {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.35;
  color: var(--br-mid-blue);
  margin: 0;
}

.about-mich-section {
  width: 100%;
  padding: 95px var(--padding-big);
  display: flex;
  flex-direction: column;
  gap: var(--padding-big);
}

.about-mich-title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  color: var(--br-dark-blue);
  margin: 0;
  max-width: 670px;
}

.about-mich-columns {
  display: flex;
  gap: var(--size-20);
  align-items: flex-start;
  justify-content: center;   /* ← add this */
  width: 100%;
}

.about-mich-columns p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  color: var(--br-dark-blue);
  margin: 0;
  max-width: 555px;
  flex: 1 1 0;
}

/* ==========================================================================
   Produkt detail page (subpage of Produkte)
   ========================================================================== */
body.produkt-body {
  background: #f1f1f3;
}

.main-nav--produkt {
  background: #f1f1f3;
}

.page-spacer-24 {
  width: 100%;
  height: 24px;
}

.produkt-hero {
  width: 100%;
  background: var(--br-light-grey);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-20);
  padding: 95px var(--padding-big);
}

.produkt-hero-text {
  max-width: 670px;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.produkt-hero-title {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 62px;
  line-height: 1.2;
  color: var(--br-mid-blue);
  margin: 0;
}

.produkt-hero-image {
  width: 670px;
  max-width: 100%;
  height: 440px;
  overflow: hidden;
}

.produkt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produkt-intro {
  width: 100%;
  padding: var(--size-48) var(--padding-big);
  display: flex;
  justify-content: center;
}

.produkt-intro-row {
  display: flex;
  gap: var(--size-20);
  max-width: 1130px;
  width: 100%;
}

.produkt-intro-row p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  color: var(--br-dark-blue);
  margin: 0;
  max-width: 555px;
  flex: 1 1 0;
}

.produkt-gallery {
  width: 100%;
  background: var(--br-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--size-20);
  padding: var(--size-20) var(--padding-big);
}

.produkt-gallery img {
  height: 174px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

.highlights-section {
  width: 100%;
  padding: 95px var(--padding-big);
  display: flex;
  flex-direction: column;
  gap: var(--padding-big);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--size-20);
  width: 100%;
}

.highlight-card {
  background: var(--br-mid-blue);
  color: var(--br-white);
  display: flex;
  flex-direction: column;
  gap:95px;
  justify-content: space-between;
  padding: var(--padding-small) 24px;
  min-height: 420px;
}

.highlight-title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.highlight-text {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

.produkt-partner-section {
  width: 100%;
  background: #f1f1f3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-20);
  padding: 95px var(--padding-big);
}

.produkt-partner-section .partner-card {
  background: var(--br-light-grey);
}

.partner-card--big {
  flex: 0 0 670px;
  width: 670px;
  min-width: 325px;
}

.partner-logo--big {
  width: 440px;
  max-width: 100%;
  aspect-ratio: 440 / 170.99;
}

/* ==========================================================================
   Lasermarkierer page additions
   ========================================================================== */
.produkt-hero-subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 22px;
  line-height: 1.35;
  color: var(--br-dark-blue);
  margin: 0;
  max-width: 440px;
}

.produkt-hero-image--contain img {
  object-fit: contain;
}

.about-mich-section--grey {
  background: var(--br-light-grey);
}

.partner-download-section {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-20);
  padding: 95px var(--padding-big);
}

.partner-card-download {
  position: relative;
  background: var(--br-white);
  width: 670px;
  min-width: 325px;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding-small);
}

.partner-card-download-logo {
  width: 440px;
  max-width: 100%;
  aspect-ratio: 440 / 170.99;
}

.partner-card-download-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.partner-card-download-links {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  padding: 0 var(--padding-small) var(--padding-small);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--size-20);
  flex-wrap: wrap;
}

.partner-download-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-download-link span {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  color: #152a96;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  white-space: nowrap;
}

.vorteile-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.produkt-body .vorteile-card {
  gap: 40px;
}

/* ==========================================================================
   Datenschutzerklärung page
   ========================================================================== */
.legal-hero {
  width: 100%;
  padding: 95px var(--padding-big) 0;
}

.legal-section {
  width: 100%;
  padding: var(--size-48) var(--padding-big) 95px;
  display: flex;
  justify-content: flex-start;
}

.legal-content {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--size-32);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: var(--size-20);
}

.legal-subheading {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: var(--br-dark-blue);
  margin: 0;
}

.legal-block p,
.legal-block li {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--br-dark-blue);
  margin: 0;
}

.legal-block ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-block a {
  text-decoration: underline;
}

/* ==========================================================================
   Produktübersicht download module
   ========================================================================== */
.download-section {
  width: 100%;
  background: var(--br-dark-blue);
  padding: var(--padding-big);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-20);
}

.download-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 397px;
  max-width: 690px;
  width: 100%;
}

.download-heading-group {
  display: flex;
  flex-direction: column;
  gap: var(--padding-small);
}

.download-title {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 62px;
  line-height: 1.2;
  color: var(--br-white);
  margin: 0;
}

.download-subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 24px;
  line-height: 1.35;
  color: var(--br-white);
  margin: 0;
}

.download-image {
  width: 281.78px;
  height: 398.46px;
  flex-shrink: 0;
}

.download-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.download-text .button-dark {
  align-self: flex-start;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) and (min-width: 901px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 48px;
  }
  .h2-dark,
  .about-heading {
    font-size: 40px;
  }
  .info-cards {
    flex-direction: column;
  }
  .info-card {
    width: 100%;
  }
  .footer-content {
    gap: 40px;
  }
  .menu {
    gap: 12px;
  }
  .container-drop-down {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    padding: var(--size-20) var(--padding-small) var(--size-32);
    align-items: flex-start;
  }
  .drop-down-list-items {
    width: 100%;
  }
  .kontakt-title {
    font-size: 48px;
  }
  .kontakt-content {
    flex-direction: column;
  }
  .kontakt-card {
    width: 100%;
    max-width: 325px;
  }
  .partner-title {
    font-size: 48px;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-card {
    width: 100%;
    max-width: 325px;
  }
  .ueber-mich-title {
    font-size: 48px;
  }
  .vorteile-heading {
    font-size: 40px;
  }
  .vorteile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-mich-columns {
    flex-direction: column;
  }
  .about-mich-columns p {
    max-width: 100%;
  }
  .produkt-hero {
    flex-direction: column;
  }
  .produkt-hero-title {
    font-size: 40px;
  }
  .produkt-hero-image {
    width: 100%;
  }
  .produkt-intro-row {
    flex-direction: column;
  }
  .produkt-intro-row p {
    max-width: 100%;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .produkt-partner-section {
    flex-direction: column;
  }
  .partner-download-section {
    flex-direction: column;
  }
  .partner-card-download-links {
    position: static;
    justify-content: flex-start;
    padding: var(--size-20) 0 0;
  }
  .legal-content {
    max-width: 100%;
  }
  .download-section {
    flex-direction: column;
  }
  .download-text {
    height: auto;
    max-width: 100%;
    gap: var(--size-24);
  }
  .download-title {
    font-size: 40px;
  }
  .download-image {
    width: 100%;
    height: auto;
  }
}

/* ==========================================================================
   Phone-only responsive (iPad/tablet already handled above)
   ========================================================================== */
@media (max-width: 600px) {
  :root {
    --padding-big: 20px;
    --padding-small: 16px;
  }

  /* Hamburger nav */
  .mobile-menu-toggle {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-20);
    background: #f1f1f3;
    padding: var(--size-20) var(--padding-small) var(--size-32);
    display: none;
    z-index: 15;
  }
  .menu.mobile-open {
    display: flex;
  }
  .menu .menu-link,
  .menu .button-dark {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
  .menu .button-dark {
    background: none;
    color: var(--br-dark-blue);
    padding: 0;
  }

  /* Produkte dropdown becomes an in-flow accordion on mobile,
     pushing Partner/Über Mich/Kontakt down instead of overlaying them */
  .menu .container-drop-down {
    position: static;
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 0 0 0 var(--size-20);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .menu .container-drop-down.open {
    display: flex;
    margin-top: var(--size-20);
  }
  .menu .drop-down-list-items {
    align-items: flex-start;
  }
  .menu .dropdown-item {
    text-align: left;
  }

  /* Dropdown text must wrap on narrow screens */
  .dropdown-item {
    white-space: normal;
  }

  /* Home hero */
  .hero-module-home {
    min-height: 480px;
    padding: 40px 20px;
  }
  .hero-title {
    font-size: 32px;
  }

  /* Page hero titles */
  .kontakt-title,
  .partner-title,
  .ueber-mich-title {
    font-size: 36px;
  }
  .kontakt-hero,
  .partner-hero,
  .ueber-mich-hero,
  .legal-hero {
    padding-top: 48px;
  }
  .legal-section {
    padding-bottom: 48px;
  }
  .kontakt-section,
  .partner-section,
  .vorteile-section,
  .produkt-hero,
  .highlights-section,
  .produkt-partner-section,
  .partner-download-section,
  .about-mich-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .about-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Every heading that renders at 40px, brought down together for consistency */
  .h3-light,
  .kontakt-name,
  .about-mich-title,
  .highlight-title,
  .h2-dark,
  .about-heading {
    font-size: 28px;
  }

  /* Produkt hero */
  .produkt-hero-title {
    font-size: 32px;
    order: 1;
  }
  .produkt-hero-text {
    display: contents;
  }
  .produkt-hero-image {
    height: auto;
    aspect-ratio: 4 / 3;
    order: 2;
  }
  .produkt-hero-subtitle {
    order: 3;
  }

  /* Unser Partner box: full width on phone only */
  .partner-card--big {
    width: 100%;
    flex-basis: auto;
  }
  .partner-card-download {
    width: 100%;
  }
  .partner-card {
    max-width: 100%;
  }

  /* Vorteile grid: avoid overflow from fixed min-width cards */
  .vorteile-heading {
    font-size: 32px;
  }
  .vorteile-grid {
    grid-template-columns: 1fr;
  }
  .vorteile-card {
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
  }
  body.ueber-mich-body .vorteile-card {
    gap: 40px;
  }

  /* Download module */
  .download-title {
    font-size: 32px;
  }
  .download-image {
    display: none;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-logo {
    width: 220px;
  }
}
