:root {
  --rose-soft: #ebccd4;
  --stone-mist: #e3d9df;
  --ink: #1a1520;
  --ink-muted: #3d3545;
  --surface-dark: #2a2230;
  --surface-light: #f7f2f5;
  --accent: #8b3d5c;
  --accent-bright: #c45b7a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 21, 32, 0.12);
  --radius: 14px;
  --header-h: 72px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: clamp(15px, 2.8vw, 17px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-bright);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(247, 242, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 21, 32, 0.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(26, 21, 32, 0.2);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle i {
  font-size: 1.35rem;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(26, 21, 32, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100%;
  background: var(--surface-light);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  padding: 1.25rem 1.1rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile.is-open .nav-mobile-panel {
  transform: translateX(0);
}

.nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 21, 32, 0.08);
}

.nav-mobile-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 760px);
  background: var(--rose-soft);
}

.hero-media {
  position: relative;
  min-height: 280px;
  background: linear-gradient(145deg, var(--stone-mist), var(--rose-soft));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--surface-dark);
  color: var(--surface-light);
}

.hero-content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.15;
  color: var(--white);
}

.hero-lead {
  margin: 0 0 1.25rem;
  color: #e8dfe6;
  max-width: 36ch;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--rose-soft);
}

.price-note {
  font-size: 0.88rem;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(26, 21, 32, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.1rem 4rem;
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.section-alt-a {
  background: var(--stone-mist);
  color: var(--ink);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.section-alt-b {
  background: var(--rose-soft);
  color: var(--ink);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(26, 21, 32, 0.06);
}

.section-dark {
  background: var(--surface-dark);
  color: #efe8ee;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: #e5dce3;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.section h2 i {
  color: var(--accent);
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.split-block.reverse {
  direction: rtl;
}

.split-block.reverse > * {
  direction: ltr;
}

.figure-rounded {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 21, 32, 0.08);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(26, 21, 32, 0.07);
  box-shadow: 0 8px 24px rgba(26, 21, 32, 0.06);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #efe8ee;
}

.section-dark .card p {
  color: #dfd6df;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
}

.icon-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  min-width: 1.1em;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 21, 32, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
}

th,
td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 21, 32, 0.08);
  color: var(--ink);
}

th {
  background: var(--stone-mist);
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 21, 32, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.faq-q i {
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-a-inner {
  padding-bottom: 1rem;
  color: var(--ink-muted);
}

.review {
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(26, 21, 32, 0.15);
}

.review:last-child {
  border-bottom: none;
}

.stars {
  color: #b8860b;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.form-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-section input,
.form-section textarea,
.form-section select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 21, 32, 0.18);
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.form-section textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-hint {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

.disclaimer-box {
  font-size: 0.88rem;
  line-height: 1.6;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.site-footer {
  background: var(--surface-dark);
  color: #d8ced8;
  padding: 2.5rem 1.1rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer h3 {
  color: var(--white);
  margin-top: 0;
  font-size: 1rem;
}

.site-footer a {
  color: #f0e6ee;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bfb3c0;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 220px;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface-dark);
  color: #e8dfe6;
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(110%);
  transition: transform var(--transition);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-banner a {
  color: var(--rose-soft);
}

.btn-cookie {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 850;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--accent-bright);
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.1rem 3.5rem;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal-page h3 {
  margin-top: 1.35rem;
  font-size: 1.05rem;
}

.legal-page p {
  margin: 0.65rem 0 1rem;
}

.legal-page ul,
.legal-page ol {
  margin: 0.5rem 0 1.1rem;
  padding-left: 1.35rem;
}

.legal-page li {
  margin-bottom: 0.45rem;
}

.legal-page table {
  font-size: 0.86rem;
  margin: 1rem 0;
}

.legal-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 0.85rem;
  margin: 1.25rem 0;
  background: rgba(235, 204, 212, 0.25);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nem-strip {
  padding: 1rem 1.1rem;
  margin: 0;
  background: var(--surface-dark);
  color: #e8dfe6;
}

.nem-box {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 0.88rem;
  line-height: 1.55;
}

.nem-box p {
  margin: 0 0 0.65rem;
  color: #e5dce3;
}

.nem-box p:last-child {
  margin-bottom: 0;
}

.nem-box strong {
  color: var(--white);
  font-weight: 600;
}

.site-footer .nem-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #c4b8c8;
}

.site-footer .nem-footer[lang="de"] p {
  margin: 0.35rem 0;
}

.compliance-footer {
  margin-top: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1.55;
  color: #c9becb;
}

.compliance-footer p {
  margin: 0 0 0.65rem;
}

.compliance-footer a {
  color: #f0e6ee;
}

.supplement-facts-block {
  margin-top: 1.25rem;
}

.supplement-facts-figure {
  margin: 0;
  text-align: center;
}

.supplement-facts-photo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: min(100%, 420px);
  height: auto;
  border-radius: var(--radius);
  border: 3px solid #0a0a0a;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(10, 10, 10, 0.18);
  object-fit: contain;
}

.supplement-facts-photo[hidden] {
  display: none !important;
}

.label-placeholder-card {
  box-sizing: border-box;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.35rem 1.35rem;
  text-align: left;
  background: #ffffff;
  color: #0a0a0a;
  border: 3px solid #0a0a0a;
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(10, 10, 10, 0.18);
}

.label-placeholder-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0a0a0a;
}

.label-placeholder-card__lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #141414;
}

.label-placeholder-card__rule {
  border: none;
  border-top: 2px solid #0a0a0a;
  margin: 0.65rem 0 0.85rem;
}

.label-placeholder-card__nem {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0a0a0a;
}

.label-placeholder-card__nem:last-child {
  margin-bottom: 0;
}

.supplement-facts-block figcaption,
.supplement-facts-caption {
  margin-top: 0.65rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .supplement-facts-block figcaption,
.section-dark .supplement-facts-caption {
  color: #f2eaef;
}

.section-dark .supplement-facts-block h3 {
  color: var(--white);
}

.section-dark .supplement-facts-block p,
.section-dark .supplement-facts-block a {
  color: #e8dfe6;
}

.section-dark .supplement-facts-block .label-placeholder-card {
  background: #ffffff;
  color: #0a0a0a;
}

.section-dark .supplement-facts-block .label-placeholder-card__title,
.section-dark .supplement-facts-block .label-placeholder-card__lead,
.section-dark .supplement-facts-block .label-placeholder-card__nem {
  color: #0a0a0a;
}

.section-dark .supplement-facts-block a:hover {
  color: var(--rose-soft);
}

.cookie-banner .cookie-inner p {
  margin-bottom: 0.65rem;
}

.cookie-lang-note {
  font-size: 0.82rem;
  opacity: 0.9;
}

.success-hero {
  text-align: center;
  padding: clamp(3rem, 10vw, 5rem) 1rem;
}

.success-hero i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 220px;
  }

  .split-block,
  .split-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0.55rem 0.65rem;
  }

  main {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .section {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .brand span {
    font-size: 0.82rem;
    max-width: 9rem;
    line-height: 1.2;
  }
}
