:root {
  --green-950: #06120f;
  --green-900: #0b1e17;
  --green-850: #0d241d;
  --green-800: #0f2d25;
  --green-700: #173a30;
  --gold: #d4af37;
  --gold-light: #f0d68a;
  --champagne: #ead8b5;
  --paper: #f5eedf;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(212, 175, 55, 0.34);
  --glass: rgba(11, 30, 23, 0.72);
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.36);
  --shadow-gold: 0 0 34px rgba(212, 175, 55, 0.32);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1160px, calc(100vw - 36px));
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Manrope, Lato, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.book-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 10, 8, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 280ms ease;
}

.book-popup.is-visible {
  opacity: 1;
}

.book-popup-card {
  position: relative;
  width: min(980px, 100%);
  border: 1px solid rgba(212, 175, 55, 0.54);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.15), transparent 34%),
    linear-gradient(145deg, #102c24, #07130f 72%);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.65), 0 0 42px rgba(212, 175, 55, 0.12);
  overflow: hidden;
  transform: translateY(18px) scale(0.98);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.book-popup.is-visible .book-popup-card {
  transform: translateY(0) scale(1);
}

.book-popup-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.35fr) minmax(300px, 0.85fr);
  align-items: center;
  animation: book-popup-float 4.2s ease-in-out infinite;
}

.book-popup-books {
  min-height: 500px;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  padding: 34px 12px 28px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 42%, rgba(212, 175, 55, 0.13), transparent 38%),
    #07130f;
}

.book-popup-book {
  min-width: 0;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.book-popup-book:hover,
.book-popup-book:focus-visible {
  transform: translateY(-7px) scale(1.025);
  filter: brightness(1.06);
}

.book-popup-book:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 5px;
  border-radius: 12px;
}

.book-popup-book-image {
  width: 100%;
  height: auto;
  max-height: 440px;
  display: block;
  object-fit: contain;
}

.book-popup-book-image--maerchen {
  width: 157%;
  max-width: none;
  clip-path: polygon(19.5% 8.5%, 22.5% 7.4%, 76.3% 5.5%, 80.2% 8.2%, 80.3% 94.7%, 76.3% 96%, 19.7% 91.6%);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.38));
}

.book-popup-book-image--bauchgewitter {
  clip-path: polygon(9.5% 12.5%, 84.2% 10.1%, 84.9% 11.1%, 89.7% 11.2%, 90.2% 90.5%, 85% 91.6%, 10% 86.8%);
  transform: scale(1.12);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.42));
}

.book-popup-copy {
  padding: clamp(30px, 4vw, 50px) clamp(28px, 4vw, 48px) clamp(30px, 4vw, 50px) clamp(24px, 3vw, 38px);
}

.book-popup-copy h2 {
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.book-popup-copy > p:not(.section-kicker) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.book-popup-actions {
  display: grid;
  gap: 12px;
}

.book-popup-actions .button {
  width: 100%;
  justify-content: space-between;
  padding-inline: 20px;
  text-align: left;
}

.book-popup-actions .button-secondary {
  border-color: rgba(234, 216, 181, 0.55);
  color: var(--champagne);
  background: transparent;
}

.book-popup-actions .button-secondary:hover,
.book-popup-actions .button-secondary:focus-visible {
  color: #07130f;
  background: var(--champagne);
}

.book-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(234, 216, 181, 0.5);
  border-radius: 50%;
  color: var(--champagne);
  background: rgba(5, 17, 13, 0.88);
  font: 300 1.9rem/1 var(--sans);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.book-popup-close:hover,
.book-popup-close:focus-visible {
  color: #07130f;
  background: var(--champagne);
  transform: rotate(6deg) scale(1.06);
}

body.has-book-popup {
  overflow: hidden;
}

@keyframes book-popup-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 640px) {
  .book-popup {
    padding: 14px;
  }

  .book-popup-card {
    width: min(390px, 100%);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    border-radius: 23px;
  }

  .book-popup-layout {
    grid-template-columns: 1fr;
  }

  .book-popup-books {
    min-height: 0;
    height: min(42vh, 330px);
    gap: 4px;
    padding: 28px 12px 10px;
  }

  .book-popup-book-image {
    max-height: min(38vh, 300px);
  }

  .book-popup-copy {
    padding: 18px 20px 22px;
    text-align: center;
  }

  .book-popup-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .book-popup-copy > p:not(.section-kicker) {
    margin-bottom: 16px;
    font-size: 0.95rem;
  }

  .book-popup-actions .button {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
  }
}

[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(920px, calc(100% - 36px));
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 55, 0.54);
  border-radius: 22px;
  background: rgba(7, 18, 15, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.54), inset 0 1px rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.cookie-consent-copy {
  max-width: 580px;
}

.cookie-consent-copy strong {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.cookie-consent-copy p {
  margin: 7px 0 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
  line-height: 1.55;
}

.cookie-consent-copy a {
  color: var(--gold-light);
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-consent-actions .button {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.cookie-settings-button {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .button {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--white);
  background:
    radial-gradient(circle at 75% 0%, rgba(212, 175, 55, 0.15), transparent 32rem),
    radial-gradient(circle at 16% 24%, rgba(54, 98, 80, 0.34), transparent 28rem),
    linear-gradient(180deg, var(--green-950), var(--green-900) 42%, #07130f);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 20px;
}

.header-inner {
  position: relative;
  width: var(--container);
  min-height: 92px;
  margin: 0 auto;
  padding: 10px 12px 10px 0;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(12, 42, 33, 0.94), rgba(5, 20, 16, 0.9) 54%, rgba(9, 27, 22, 0.92));
  backdrop-filter: blur(22px) saturate(125%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner::after {
  content: "";
  position: absolute;
  left: 148px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.28), transparent);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  padding: 6px 22px 6px 18px;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
  background:
    radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.16), transparent 58%),
    rgba(5, 18, 14, 0.32);
}

.brand img {
  content: url("../images/bioanker-logo-cropped.png");
  width: 92px;
  height: 92px;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 28px);
  min-width: 0;
  padding: 3px clamp(12px, 1.6vw, 22px);
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 240ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 36px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f3d985, #d4af37 55%, #a8711b);
  color: #07130f;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 0 rgba(212, 175, 55, 0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.84rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 28px rgba(212, 175, 55, 0.34);
}

.button.secondary {
  color: var(--champagne);
  background: rgba(7, 18, 15, 0.36);
  border-color: rgba(234, 216, 181, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  background: rgba(11, 30, 23, 0.68);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--gold-light);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

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

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px 0 72px;
  background-image:
    linear-gradient(90deg, rgba(4, 12, 9, 0.92) 0%, rgba(9, 23, 18, 0.74) 39%, rgba(9, 23, 18, 0.22) 68%, rgba(9, 23, 18, 0.48) 100%),
    url("../images/brand/hero-mountains-clean.png");
  background-size: cover;
  background-position: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 77% 30%, rgba(245, 212, 128, 0.34), transparent 18rem),
    radial-gradient(circle at 50% 83%, rgba(212, 175, 55, 0.23), transparent 14rem);
  mix-blend-mode: screen;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px;
  background: linear-gradient(0deg, var(--green-900), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.45rem, 7vw, 6.75rem);
  max-width: 820px;
}

h1 .gold,
h2 .gold {
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.22);
}

.lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-process-panel {
  position: relative;
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 26px;
  background:
    radial-gradient(circle at 74% 8%, rgba(212, 175, 55, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(247, 240, 226, 0.96), rgba(239, 225, 199, 0.92));
  color: var(--green-900);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), 0 0 44px rgba(212, 175, 55, 0.16);
  overflow: hidden;
}

.hero-process-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent 58%),
    radial-gradient(circle at 12% 88%, rgba(15, 45, 37, 0.08), transparent 28%);
}

.hero-process-panel > * {
  position: relative;
  z-index: 1;
}

.hero-process-panel .section-kicker {
  margin-bottom: 0;
  color: #9a741d;
  text-align: center;
  font-size: clamp(1.26rem, 1.9vw, 1.72rem);
  font-weight: 900;
  letter-spacing: 0.24em;
}

.hero-process-panel img {
  width: min(112%, 760px);
  max-width: none;
  margin: clamp(22px, 3vw, 34px) 50% 16px;
  transform: translateX(-50%);
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(32, 24, 8, 0.12), 0 0 30px rgba(212, 175, 55, 0.12);
}

.hero-process-panel p:last-child {
  margin: 0;
  color: rgba(11, 30, 23, 0.7);
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
}

.process-showcase {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 18px;
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 34rem),
    linear-gradient(180deg, #07130f, var(--green-900));
}

.process-showcase .hero-process-panel {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
}

.process-showcase .hero-process-panel img {
  width: min(100%, 900px);
}

.trust-band {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(8, 22, 17, 0.88);
}

.trust-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  min-height: 112px;
  padding: 24px 26px;
  border-left: 1px solid rgba(212, 175, 55, 0.12);
}

.trust-item:last-child {
  border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.trust-item strong {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0;
}

.section.light {
  color: var(--green-900);
  background:
    radial-gradient(circle at 78% 20%, rgba(212, 175, 55, 0.16), transparent 27rem),
    linear-gradient(180deg, #f7f0e2, #f0e3c9);
}

.section.dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(212, 175, 55, 0.14), transparent 24rem),
    radial-gradient(circle at 16% 72%, rgba(77, 116, 88, 0.2), transparent 26rem),
    var(--green-900);
}

#angebote {
  background:
    radial-gradient(circle at 86% 18%, rgba(212, 175, 55, 0.12), transparent 20rem),
    radial-gradient(circle at 10% 84%, rgba(48, 94, 74, 0.26), transparent 22rem),
    linear-gradient(180deg, #071b15, #0b1e17);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
}

.section-head p:not(.section-kicker) {
  margin: 16px auto 0;
  color: currentColor;
  opacity: 0.75;
  max-width: 680px;
}

.section-subtitle {
  margin: 14px 0 0;
  color: var(--gold-light);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 48px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 88px;
  height: 34px;
  background:
    radial-gradient(circle at 25% 45%, rgba(255, 242, 185, 0.95), transparent 9px),
    linear-gradient(100deg, transparent, rgba(212, 175, 55, 0.78), rgba(255, 232, 166, 0.95), rgba(212, 175, 55, 0.6), transparent);
  filter: blur(0.2px) drop-shadow(0 0 18px rgba(212, 175, 55, 0.42));
  border-radius: 999px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.process-step {
  position: relative;
  padding: 0 18px 28px;
  text-align: center;
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.22);
  overflow: hidden;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.process-step h3 {
  color: var(--gold);
  font-size: 1.65rem;
}

.process-step p {
  margin: 12px auto 0;
  max-width: 250px;
  color: currentColor;
  opacity: 0.78;
  font-size: 0.95rem;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
  overflow: visible;
  padding: 8px 0 18px;
}

.offer-pair {
  display: contents;
}

.offer-grid > .offer-card,
.offer-pair > .offer-card {
  flex: 0 1 calc((100% - 88px) / 5);
  min-width: 0;
}

@media (max-width: 1120px) {
  .offer-grid > .offer-card,
  .offer-pair > .offer-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

.offer-card {
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 10px;
  overflow: hidden;
  background: #f4ecdd;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(240, 214, 138, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42), var(--shadow-gold);
}

.offer-card:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

.offer-image {
  height: 150px;
  overflow: hidden;
  background: var(--green-900);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body {
  position: relative;
  flex: 1;
  min-height: 214px;
  padding: 34px 18px 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent),
    #f4ecdd;
}

.offer-badge {
  position: absolute;
  top: -28px;
  left: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
  overflow: hidden;
}

.offer-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.offer-badge img.offer-badge-icon-aligned {
  transform: translate(-1.5px, -2.5px) scale(0.965);
  transform-origin: center;
}

.offer-card h3 {
  color: var(--green-900);
  font-size: clamp(1.28rem, 1.45vw, 1.5rem);
  line-height: 1.08;
}

.offer-card p {
  color: rgba(11, 30, 23, 0.72);
  margin: 10px 0 18px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a621d;
  font-weight: 760;
  font-size: 0.86rem;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.about-visual {
  min-height: 360px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 18, 15, 0.22), rgba(7, 18, 15, 0.74)),
    url("../images/brand/section-mountains.jpg") center / cover;
}

.about-visual img {
  width: min(78%, 340px);
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.34));
}

.about-portrait-shell {
  position: relative;
  min-height: 420px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 46%, rgba(240, 214, 138, 0.2), transparent 37%),
    linear-gradient(180deg, rgba(7, 18, 15, 0.34), rgba(7, 18, 15, 0.78)),
    url("../images/brand/section-mountains.jpg") center / cover;
}

.about-portrait-shell::before,
.about-portrait-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(76%, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.about-portrait-shell::before {
  border: 1px solid rgba(240, 214, 138, 0.44);
  box-shadow: 0 0 46px rgba(212, 175, 55, 0.16);
  transform: scale(1.1);
}

.about-portrait-shell::after {
  border: 1px solid rgba(212, 175, 55, 0.18);
  transform: scale(1.27);
}

.about-visual img.about-portrait {
  width: clamp(210px, 24vw, 272px);
  height: clamp(210px, 24vw, 272px);
  max-width: calc(100% - 48px);
  max-height: calc(100% - 48px);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: 50% 20%;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(212, 175, 55, 0.74),
    0 0 38px rgba(212, 175, 55, 0.25);
  filter: none;
}

.home-social {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.home-social > span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: 50%;
  background: rgba(6, 18, 14, 0.54);
  color: var(--champagne);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-social-links a:hover,
.home-social-links a:focus-visible {
  color: var(--green-900);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
}

.home-social-links svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-social-links svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.home-social-links a:first-child svg path:last-child {
  fill: none;
  stroke: currentColor;
}

.home-social-links a:nth-child(2) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.hero-copy > .home-social {
  display: grid;
  justify-items: center;
  margin-right: auto;
  margin-left: auto;
}

.hero-copy .home-social-links {
  justify-content: center;
}

.offer-detail-visual {
  min-height: 460px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: var(--green-900);
  box-shadow: inset 0 0 34px rgba(212, 175, 55, 0.08);
}

.offer-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: none;
}

.offer-detail-media {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.offer-video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.13), transparent 42%),
    linear-gradient(145deg, rgba(15, 45, 37, 0.96), rgba(6, 18, 15, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.offer-video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.offer-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  color: var(--champagne);
  text-align: left;
}

.offer-video-placeholder strong,
.offer-video-placeholder span {
  display: block;
}

.offer-video-placeholder strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.offer-video-placeholder div > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.offer-video-play {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(7, 18, 15, 0.72);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.24);
}

.offer-video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  transform: translate(-42%, -50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--gold-light);
}

.video-course-showcase {
  margin-top: clamp(44px, 6vw, 76px);
}

.video-courses-page {
  display: grid;
  gap: 0;
}

.video-courses-main-image {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow-soft), inset 0 0 34px rgba(212, 175, 55, 0.08);
}

.video-courses-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-course-showcase-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.video-course-showcase-head h2 {
  color: var(--champagne);
}

.video-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.video-course-item {
  display: grid;
  align-content: start;
  gap: 14px;
}

.video-course-card {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 0%, rgba(212, 175, 55, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(15, 45, 37, 0.98), rgba(5, 18, 14, 0.99));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.05);
}

.video-course-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.video-course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 18, 14, 0.5));
  pointer-events: none;
}

.video-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-course-card:hover .video-course-image img {
  transform: scale(1.035);
}

.video-course-play {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(246, 221, 148, 0.84);
  border-radius: 50%;
  background: rgba(7, 18, 15, 0.78);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.video-course-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  transform: translate(-42%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--gold-light);
}

.video-course-content {
  padding: clamp(24px, 3.2vw, 38px);
}

.video-course-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-course-content h3 {
  margin: 17px 0 13px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.video-course-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.video-course-availability {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.video-course-about {
  max-width: 900px;
  margin-top: clamp(64px, 8vw, 104px);
}

.video-course-about h2 {
  max-width: 780px;
  margin: 12px 0 30px;
  color: var(--champagne);
  font-size: clamp(2.15rem, 4vw, 4.3rem);
  line-height: 1.04;
  text-wrap: balance;
}

.video-course-player {
  width: min(100%, 920px);
  margin-top: clamp(42px, 6vw, 68px);
}

.video-course-back {
  margin-top: clamp(36px, 5vw, 54px);
}

.book-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 82px) clamp(22px, 5vw, 68px) clamp(30px, 4vw, 54px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 30%, rgba(234, 216, 181, 0.13), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(15, 45, 37, 0.96), rgba(5, 18, 14, 0.99));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.06);
  text-align: center;
}

.book-showcase::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 126px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(28px);
}

.book-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(42px, 10vw, 150px);
  perspective: 1500px;
}

.book-slot {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: clamp(190px, 24vw, 310px);
}

.book-product {
  display: block;
  width: 100%;
  transform-style: preserve-3d;
  outline-offset: 10px;
}

.book-model {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
  filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.46));
}

.book-product-left .book-model {
  transform: rotateY(15deg) rotateX(1deg);
  transform-origin: left center;
}

.book-product-right .book-model {
  transform: rotateY(-15deg) rotateX(1deg);
  transform-origin: right center;
}

.book-model::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7px -12px 7px 8px;
  border-radius: 0 4px 4px 0;
  background:
    repeating-linear-gradient(90deg, #eee4cf 0 1px, #cbbd9f 1px 2px, #f6efdf 2px 4px);
  transform: translateZ(-12px);
  box-shadow: 5px 4px 12px rgba(0, 0, 0, 0.34);
}

.book-spine {
  position: absolute;
  z-index: -1;
  top: 4px;
  bottom: 4px;
  left: -18px;
  width: 20px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg, #06131c, #122f3b 65%, #09191f);
  transform: rotateY(-78deg);
  transform-origin: right center;
  box-shadow: inset 1px 0 rgba(212, 175, 55, 0.28);
}

.book-model img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px 6px 6px 2px;
  object-fit: cover;
  backface-visibility: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.book-product:hover .book-model,
.book-product:focus-visible .book-model {
  transform: rotateY(0deg) translateY(-14px) scale(1.025);
  filter: drop-shadow(0 38px 34px rgba(0, 0, 0, 0.56)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.2));
}

.book-release {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.3vw, 1.12rem);
  line-height: 1.35;
  text-align: center;
}

.book-back-link {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 6vw, 76px);
  color: var(--champagne);
}

.book-back-link:hover {
  color: var(--gold-light);
}

.book-detail {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 110px);
  background:
    radial-gradient(circle at 14% 24%, rgba(212, 175, 55, 0.11), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(234, 216, 181, 0.07), transparent 30%),
    linear-gradient(145deg, #0f2d25, #05120e 72%);
}

.book-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.9%, rgba(212, 175, 55, 0.05) 50%, transparent 50.1%);
  opacity: 0.48;
}

.book-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(42px, 8vw, 104px);
}

.book-detail-cover-column {
  position: sticky;
  top: 128px;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.book-detail-cover {
  width: min(100%, 360px);
  perspective: 1400px;
}

.book-detail-cover .book-model {
  transform: rotateY(10deg) rotateX(1deg);
  transform-origin: left center;
}

.book-detail-cover:hover .book-model {
  transform: rotateY(3deg) translateY(-8px);
}

.book-detail-release {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 17px;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-detail-copy {
  max-width: 780px;
}

.book-detail-copy .section-kicker {
  margin-bottom: 14px;
}

.book-detail-copy h2 {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--champagne);
  font-size: clamp(2.15rem, 4.4vw, 4.7rem);
  line-height: 1.03;
}

.book-detail-lead {
  margin: 0 0 30px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.42;
}

.book-detail-summary {
  display: grid;
  gap: 18px;
}

.book-detail-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.78;
}

.book-detail-summary p:last-child {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.book-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.book-detail-actions .button.secondary {
  color: var(--champagne);
}

.book-detail-actions .button.secondary:hover {
  color: var(--gold-light);
}

.book-purchase-panel {
  margin-top: 38px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(212, 175, 55, 0.045));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.book-purchase-panel h3 {
  margin: 0 0 10px;
  color: var(--champagne);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.book-purchase-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.book-purchase-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.book-purchase-options .button {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  text-align: center;
}

.book-purchase-option {
  display: grid;
  align-content: start;
  gap: 10px;
}

.book-purchase-options .book-coming-soon {
  cursor: default;
  color: var(--champagne);
  background: transparent;
  opacity: 1;
}

.book-purchase-options .book-coming-soon:hover {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.book-purchase-option:only-child {
  grid-column: 1 / -1;
}

.book-purchase-format {
  color: var(--gold-light);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.book-purchase-options .is-pending {
  cursor: default;
  opacity: 0.58;
  filter: saturate(0.72);
}

.book-purchase-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  color: var(--champagne);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.about-intro-section {
  padding-top: clamp(64px, 7vw, 96px);
}

.about-copy .about-lead {
  margin: 18px 0 20px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.about-credentials span {
  padding: 7px 12px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(212, 175, 55, 0.07);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.about-editorial-heading {
  position: sticky;
  top: 126px;
}

.about-editorial-heading h2 {
  max-width: 9.5ch;
  margin-top: 10px;
  color: var(--green-900);
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  line-height: 1.02;
}

.about-editorial-copy {
  display: grid;
  gap: 22px;
}

.about-editorial-copy p {
  margin: 0;
  color: rgba(11, 30, 23, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.82;
}

.about-editorial-copy blockquote {
  margin: 8px 0;
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--gold);
  color: #815d1c;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  font-weight: 700;
  line-height: 1.42;
}

.about-seeing-section {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, 0.98), rgba(6, 18, 15, 0.8)),
    url("../images/brand/section-mountains.jpg") center / cover;
}

.about-seeing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.about-seeing-copy h2 {
  max-width: 13ch;
  margin: 10px 0 28px;
  color: var(--champagne);
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 1.02;
}

.about-seeing-copy > p:not(.section-kicker):not(.about-highlight) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.82;
}

.about-seeing-copy .about-highlight {
  margin: 0 0 26px;
  padding-left: 23px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.15vw, 1.75rem);
  line-height: 1.52;
}

.about-seeing-aside {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 28px;
  background: rgba(4, 15, 12, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.about-aside-label {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-seeing-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-seeing-aside li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-seeing-aside li span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.about-aside-conclusion {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-principles article {
  min-height: 238px;
  padding: 30px;
  border: 1px solid rgba(11, 30, 23, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 20px 46px rgba(43, 35, 18, 0.08);
}

.about-principles article > span {
  color: #967020;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.about-principles h3 {
  margin: 22px 0 12px;
  color: var(--green-900);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.about-principles p {
  margin: 0;
  color: rgba(11, 30, 23, 0.72);
  line-height: 1.7;
}

.about-closing {
  max-width: 860px;
  margin: clamp(42px, 6vw, 72px) auto 0;
  text-align: center;
}

.about-closing p {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.12rem);
  font-weight: 700;
  line-height: 1.45;
}

.about-closing .button {
  margin-top: 20px;
}

.offer-detail-copy {
  display: grid;
  gap: 19px;
  margin-top: 0;
}

.offer-detail-heading {
  max-width: 720px;
  margin: 12px 0 30px;
  color: var(--champagne);
  font-size: clamp(2.15rem, 4vw, 4.3rem);
  line-height: 1.04;
  text-wrap: balance;
}

.offer-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.78;
}

.offer-detail-copy .offer-detail-lead {
  margin: 0 0 9px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.23rem, 2vw, 1.7rem);
  line-height: 1.46;
}

.consultation-flow {
  margin-top: clamp(42px, 6vw, 66px);
}

.about-panel.has-consultation-flow {
  align-items: start;
  row-gap: 0;
}

.about-panel.has-consultation-flow > .offer-detail-media {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.about-panel.has-consultation-flow > .about-copy {
  display: contents;
}

.about-panel.has-consultation-flow .about-copy > .section-kicker,
.about-panel.has-consultation-flow .about-copy > .offer-detail-heading,
.about-panel.has-consultation-flow .about-copy > .offer-detail-copy {
  grid-column: 2;
}

.about-panel.has-consultation-flow .consultation-flow,
.about-panel.has-consultation-flow .hero-actions {
  grid-column: 1 / -1;
}

.consultation-flow > h3 {
  margin: 10px 0 28px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.consultation-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px);
}

.consultation-flow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.13), transparent 48%),
    linear-gradient(145deg, rgba(15, 45, 37, 0.98), rgba(5, 18, 14, 0.99));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.06);
}

.consultation-flow-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: clamp(-34px, -2.6vw, -22px);
  color: rgba(240, 214, 138, 0.58);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  transform: translateY(-50%);
}

.consultation-flow-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.consultation-flow-card h4 {
  margin: 12px 0 14px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.36rem);
  line-height: 1.08;
}

.consultation-flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .about-panel.has-consultation-flow > .offer-detail-media,
  .about-panel.has-consultation-flow .about-copy > .section-kicker,
  .about-panel.has-consultation-flow .about-copy > .offer-detail-heading,
  .about-panel.has-consultation-flow .about-copy > .offer-detail-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .consultation-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consultation-flow-card::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .consultation-flow-grid {
    grid-template-columns: 1fr;
  }

  .consultation-flow-card {
    min-height: 0;
  }

  .consultation-flow-card:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -29px;
    transform: translateX(50%) rotate(90deg);
  }
}

.offer-general-note {
  max-width: 940px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.biotraxing-tickets {
  margin-top: clamp(62px, 8vw, 108px);
  scroll-margin-top: 118px;
}

.biotraxing-tickets > .section-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.biotraxing-tickets > .section-head h2 {
  color: var(--champagne);
}

.biotraxing-tickets > .section-head p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  max-width: 980px;
  margin: 34px auto 0;
}

.ticket-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 44%),
    linear-gradient(145deg, rgba(15, 45, 37, 0.96), rgba(5, 18, 14, 0.98));
  box-shadow: var(--shadow-soft);
}

.ticket-card-featured {
  border-color: rgba(240, 214, 138, 0.68);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), 0 0 34px rgba(212, 175, 55, 0.1);
}

.ticket-type {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket-card h3 {
  margin: 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.ticket-price {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.ticket-features {
  display: grid;
  flex: 1;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  list-style: none;
}

.ticket-features li {
  position: relative;
  padding-left: 24px;
  line-height: 1.58;
}

.ticket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.ticket-card .button {
  width: 100%;
  min-height: 62px;
  margin-top: 0;
  justify-content: center;
  text-align: center;
}

.button.is-unavailable,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.ticket-availability-note {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  text-align: center;
}

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

.consent-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(26px, 5vw, 64px);
}

.consent-summary {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 48%),
    rgba(6, 20, 15, 0.9);
  box-shadow: var(--shadow-soft);
}

.consent-summary h2,
.consent-card h2 {
  margin: 8px 0 18px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.consent-summary .text-link {
  display: inline-block;
  margin-top: 8px;
}

.consent-card {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(7, 24, 18, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.consent-copy {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border-left: 2px solid rgba(212, 175, 55, 0.64);
  border-radius: 0 16px 16px 0;
  background: rgba(4, 16, 12, 0.5);
}

.consent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.consent-copy strong,
.consent-copy a,
.consent-checks a {
  color: var(--gold-light);
}

.consent-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.consent-fields label:last-child {
  grid-column: 1 / -1;
}

.consent-fields label {
  display: grid;
  gap: 8px;
  color: var(--champagne);
  font-weight: 700;
}

.consent-fields label span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
}

.consent-fields input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 12px;
  color: var(--white);
  background: rgba(6, 18, 15, 0.7);
  font: inherit;
}

.consent-checks {
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
}

.consent-checks legend {
  padding: 0 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 750;
}

.consent-checks .checkbox span {
  line-height: 1.58;
}

.consent-card > .button {
  width: 100%;
  min-height: 56px;
  white-space: normal;
  text-align: center;
}

.consent-card > .button[disabled] {
  cursor: not-allowed;
  filter: grayscale(0.5);
  opacity: 0.5;
}

.consent-availability {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  text-align: center;
}

@media (max-width: 880px) {
  .consent-layout {
    grid-template-columns: 1fr;
  }

  .consent-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .consent-fields {
    grid-template-columns: 1fr;
  }

  .consent-fields label:last-child {
    grid-column: auto;
  }

  .consent-checks {
    padding: 20px 16px;
  }
}

.offer-schedule,
.offer-contact-panel {
  margin-top: clamp(56px, 7vw, 92px);
  scroll-margin-top: 118px;
}

.offer-schedule .section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.offer-schedule .section-head h2 {
  color: var(--champagne);
}

.offer-schedule .section-head p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.schedule-table-shell {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 15, 0.72);
  box-shadow: var(--shadow-soft);
}

.schedule-years {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 30px;
}

.schedule-year-card {
  min-width: 0;
}

.schedule-year-card > h3 {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  text-align: center;
}

.schedule-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.76);
}

.schedule-table-compact {
  min-width: 0;
  table-layout: fixed;
}

.schedule-table-compact th:first-child {
  width: 36%;
}

.schedule-date-confirmed {
  background: rgba(212, 175, 55, 0.085);
}

.schedule-date-confirmed td strong,
.schedule-date-confirmed td span {
  display: block;
}

.schedule-date-confirmed td strong {
  color: var(--champagne);
}

.schedule-table th,
.schedule-table td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  text-align: left;
}

.schedule-table thead th {
  color: #07130f;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  font-family: var(--serif);
  font-size: 1.08rem;
}

.schedule-table tbody th {
  width: 22%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.schedule-table tbody tr:last-child th,
.schedule-table tbody tr:last-child td {
  border-bottom: 0;
}

.schedule-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.045);
}

.offer-contact-panel {
  max-width: 860px;
}

.offer-contact-panel .form-card {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 27, 21, 0.9);
}

.offer-contact-panel .section-kicker {
  margin-bottom: -4px;
}

.offer-contact-panel h2 {
  margin-bottom: 8px;
}

.offer-contact-panel .checkbox a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-copy .section-subtitle {
  color: var(--gold-light);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 45, 36, 0.9), rgba(7, 18, 15, 0.92));
  box-shadow: var(--shadow-soft);
}

.contact-box h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  color: var(--champagne);
}

.contact-box p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-box .section-subtitle {
  margin-top: 12px;
  color: var(--gold-light);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
}

.contact-strip-section {
  padding: clamp(34px, 5vw, 58px) 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 17, 0.96), rgba(11, 30, 23, 0.98));
}

.contact-strip-section .contact-box {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.contact-strip-section .contact-box h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.site-footer {
  position: relative;
  padding: clamp(20px, 2.6vw, 30px) 0 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.26);
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.1), transparent 28%),
    linear-gradient(180deg, #10271f 0%, #081611 68%, #050d0a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 242, 204, 0.05);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 4%, rgba(212, 175, 55, 0.28), transparent 42%),
    radial-gradient(circle at 14% 18%, rgba(234, 216, 181, 0.07), transparent 20%);
  opacity: 0.52;
}

.footer-grid {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1.18fr) repeat(4, minmax(110px, 0.78fr));
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.footer-grid-simple {
  grid-template-columns: minmax(150px, 220px) minmax(120px, 1fr) minmax(160px, 220px);
  grid-template-areas:
    "brand spacer nav"
    "social spacer nav";
  gap: 10px clamp(34px, 7vw, 100px);
  align-items: start;
}

.footer-brand {
  grid-area: brand;
  display: inline-flex;
  width: fit-content;
}

.footer-logo {
  width: clamp(116px, 12vw, 148px);
  margin: -4px 0 0;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.48;
}

.footer-grid p {
  max-width: 240px;
  margin: 0;
}

.footer-grid h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 4px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-grid a:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

.footer-nav {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: flex-end;
  justify-content: flex-start;
  justify-self: end;
  text-align: right;
}

.footer-nav a {
  margin: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-social {
  grid-area: social;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  justify-self: start;
}

.footer-social a {
  width: 38px;
  height: 38px;
  min-height: 38px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: 999px;
  background: rgba(6, 18, 14, 0.54);
  color: var(--champagne);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-social a:first-child svg path:last-child {
  fill: none;
  stroke: currentColor;
}

.footer-social a:nth-child(2) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover {
  color: var(--green-900);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  width: var(--container);
  margin: 16px auto 0;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.page-hero {
  padding: 160px 0 72px;
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.92), rgba(7, 18, 15, 0.58)),
    url("../images/brand/section-mountains.jpg") center / cover;
}

.page-hero .container {
  max-width: 920px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-card,
.form-card,
.legal-card {
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.content-card h3,
.form-card h2,
.legal-card h2 {
  color: var(--gold-light);
}

.content-card p,
.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.76);
}

.knowledge-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.knowledge-intro h2 {
  max-width: 15ch;
  margin: 8px auto 18px;
  color: var(--gold-light);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

.knowledge-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.knowledge-grid {
  align-items: stretch;
}

.knowledge-card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  color: var(--white);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.knowledge-card:hover,
.knowledge-card:focus-visible {
  border-color: rgba(240, 214, 138, 0.72);
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.44), 0 0 30px rgba(212, 175, 55, 0.14);
}

.knowledge-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.knowledge-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.knowledge-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 16, 12, 0.62));
}

.knowledge-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 28%;
  transition: transform 700ms ease, filter 300ms ease;
}

.knowledge-card:hover .knowledge-card-media img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.knowledge-card-copy {
  display: flex;
  padding: 26px 28px 28px;
  flex: 1;
  flex-direction: column;
}

.knowledge-card-number {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.knowledge-card p {
  margin: 0 0 22px;
}

.knowledge-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--champagne);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.knowledge-card-link::after {
  content: "→";
  color: var(--gold);
  font-size: 1.15rem;
  transition: transform 220ms ease;
}

.knowledge-card:hover .knowledge-card-link::after {
  transform: translateX(5px);
}

.knowledge-bridge {
  margin-top: 62px;
  padding: 32px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.025));
}

.knowledge-bridge h2 {
  margin: 0 0 12px;
  color: var(--gold-light);
}

.knowledge-bridge p {
  max-width: 78ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.knowledge-detail-hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
  background: #07130f;
}

.knowledge-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(212, 175, 55, 0.17), transparent 30rem),
    linear-gradient(180deg, rgba(4, 12, 9, 0.12), #07130f 92%);
  pointer-events: none;
}

.knowledge-detail-heading {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding-bottom: 50px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.breadcrumbs span {
  color: rgba(212, 175, 55, 0.66);
}

.knowledge-detail-heading h1 {
  max-width: 13ch;
  margin: 8px 0 20px;
  color: var(--gold-light);
  font-size: clamp(3.15rem, 7.7vw, 7rem);
  line-height: 0.94;
}

.knowledge-detail-heading > p:last-child {
  max-width: 68ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.knowledge-detail-visual {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

.knowledge-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 90px rgba(5, 15, 11, 0.6);
  pointer-events: none;
}

.knowledge-detail-visual img {
  width: 100%;
  height: clamp(360px, 54vw, 650px);
  max-width: none;
  object-fit: cover;
  object-position: 50% 26%;
}

.knowledge-detail-section {
  padding: 74px 0 96px;
  background:
    radial-gradient(circle at 12% 14%, rgba(54, 98, 80, 0.28), transparent 28rem),
    linear-gradient(180deg, #07130f, var(--green-900));
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.knowledge-toc {
  position: sticky;
  top: 118px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(5, 16, 12, 0.62);
  box-shadow: var(--shadow-soft);
}

.knowledge-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.knowledge-toc nav {
  display: grid;
  gap: 4px;
}

.knowledge-toc a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.11);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.35;
}

.knowledge-toc a:last-child {
  border-bottom: 0;
}

.knowledge-toc a:hover {
  color: var(--gold-light);
}

.knowledge-article {
  min-width: 0;
}

.knowledge-perspective {
  margin-bottom: 52px;
  padding: 30px 32px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.025));
}

.knowledge-perspective .eyebrow {
  margin-bottom: 8px;
}

.knowledge-perspective p:last-child {
  margin-bottom: 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.5vw, 1.78rem);
  line-height: 1.45;
}

.knowledge-article section {
  scroll-margin-top: 120px;
  margin-bottom: 64px;
}

.knowledge-article h2 {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: clamp(2.05rem, 4.6vw, 3.65rem);
  line-height: 1.07;
}

.knowledge-article h3 {
  margin: 32px 0 12px;
  color: var(--champagne);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.knowledge-article p,
.knowledge-article li {
  color: rgba(255, 255, 255, 0.78);
}

.knowledge-article p {
  margin: 0 0 18px;
}

.knowledge-article a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.46);
  text-underline-offset: 4px;
}

.knowledge-article ul,
.knowledge-article ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.knowledge-article li::marker {
  color: var(--gold);
}

.knowledge-principles,
.knowledge-state-grid,
.knowledge-reflection-grid {
  display: grid;
  gap: 18px;
}

.knowledge-principles {
  counter-reset: principle;
}

.knowledge-principle,
.knowledge-state,
.knowledge-reflection {
  padding: 25px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.knowledge-principle {
  position: relative;
  padding-left: 78px;
  counter-increment: principle;
}

.knowledge-principle::before {
  content: counter(principle, decimal-leading-zero);
  position: absolute;
  top: 25px;
  left: 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.knowledge-principle h3,
.knowledge-state h3,
.knowledge-reflection h3 {
  margin: 0 0 8px;
}

.knowledge-principle p:last-child,
.knowledge-state p:last-child,
.knowledge-reflection p:last-child {
  margin-bottom: 0;
}

.knowledge-state-grid {
  grid-template-columns: repeat(3, 1fr);
}

.knowledge-state {
  position: relative;
  overflow: hidden;
}

.knowledge-state::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.knowledge-reflection-grid {
  grid-template-columns: repeat(2, 1fr);
}

.knowledge-note {
  padding: 24px 26px;
  border: 1px solid rgba(240, 214, 138, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.08);
}

.knowledge-note strong {
  color: var(--gold-light);
}

.knowledge-faq {
  display: grid;
  gap: 12px;
}

.knowledge-faq details {
  padding: 0 22px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.knowledge-faq summary {
  position: relative;
  padding: 19px 38px 19px 0;
  color: var(--champagne);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.knowledge-faq summary::-webkit-details-marker {
  display: none;
}

.knowledge-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 0;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

.knowledge-faq details[open] summary::after {
  content: "−";
}

.knowledge-faq details p {
  padding: 0 0 19px;
  margin: 0;
}

.knowledge-sources {
  padding-top: 34px;
  border-top: 1px solid rgba(212, 175, 55, 0.24);
}

.knowledge-sources ol {
  gap: 15px;
}

.knowledge-sources li {
  padding-left: 5px;
  font-size: 0.88rem;
}

.knowledge-disclaimer {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.79rem;
}

.knowledge-crosslinks {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(rgba(7, 18, 15, 0.8), rgba(7, 18, 15, 0.9)),
    var(--crosslinks-image, url("../images/wissen/5-biologische-naturgesetze.jpg")) center 34% / cover no-repeat;
}

.knowledge-crosslinks::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.14), transparent 28rem),
    linear-gradient(90deg, rgba(5, 15, 11, 0.18), transparent 48%, rgba(5, 15, 11, 0.18));
}

.knowledge-crosslinks > .container {
  position: relative;
  z-index: 1;
}

.knowledge-crosslinks .section-head {
  max-width: 980px;
  margin-bottom: 30px;
}

.knowledge-crosslinks .section-head .eyebrow {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.58);
}

.knowledge-crosslinks .section-head h2 {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.75vw, 1.45rem);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-crosslink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.knowledge-crosslink {
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  background: rgba(5, 16, 12, 0.62);
  transition: transform 220ms ease, border-color 220ms ease;
}

.knowledge-crosslink:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.knowledge-crosslink span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.knowledge-crosslink h3 {
  margin: 8px 0;
  color: var(--gold-light);
}

.knowledge-crosslink p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-intro {
  margin: -6px 0 2px;
  color: rgba(255, 255, 255, 0.76);
}

.form-intro a,
.checkbox a {
  color: var(--gold-light);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.form-status.is-success {
  color: #9fe0b7;
}

.form-status.is-error {
  color: #ffb4a8;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--champagne);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(6, 18, 15, 0.7);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.76) !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.story {
  position: relative;
  height: 600svh;
  background: var(--green-950);
}

.story-stage {
  --story-progress: 0;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: #030a08;
}

.story-frames,
.story-frame,
.story-shade {
  position: absolute;
  inset: 0;
}

.story-frame {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.03);
  will-change: opacity, transform;
}

.story-frame.is-active {
  opacity: 1;
}

.story-frame:nth-child(1) { transform-origin: 50% 58%; }
.story-frame:nth-child(2) { transform-origin: 50% 62%; }
.story-frame:nth-child(3) { transform-origin: 50% 48%; }
.story-frame:nth-child(4) { transform-origin: 50% 40%; }
.story-frame:nth-child(5) { transform-origin: 50% 34%; }
.story-frame:nth-child(6) { transform-origin: 50% 48%; }

.story-shade {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 8, 6, 0.38), transparent 24%, transparent 66%, rgba(2, 8, 6, 0.74)),
    linear-gradient(90deg, rgba(2, 8, 6, 0.52), transparent 48%);
}

.story-shade::after {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: calc(0.08 + var(--story-progress) * 0.3);
  background: radial-gradient(circle at 50% 42%, rgba(240, 214, 138, 0.38), transparent 31%);
  mix-blend-mode: screen;
}

.story-intro {
  position: absolute;
  z-index: 3;
  top: clamp(116px, 16vh, 170px);
  left: max(24px, calc((100vw - 1160px) / 2));
  width: min(560px, calc(100vw - 48px));
  opacity: var(--story-intro-opacity, 1);
  transform: translateY(var(--story-intro-shift, 0));
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.72);
  will-change: opacity, transform;
}

.story-intro h2 {
  max-width: 9ch;
  margin: 10px 0 20px;
  color: var(--white);
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.story-intro > p:last-child {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.story-caption {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - 1160px) / 2));
  bottom: clamp(52px, 8vh, 88px);
  width: min(510px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  opacity: var(--story-caption-opacity, 0);
  transform: translateY(var(--story-caption-shift, 12px));
  transition: opacity 220ms ease;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.88);
}

.story-caption span {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.story-caption p {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.25;
}

.story-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.story-progress span {
  display: block;
  width: calc(var(--story-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, #88601c, var(--gold-light), var(--white));
  box-shadow: 0 0 18px rgba(240, 214, 138, 0.75);
}

@keyframes breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -8px, 0) scale(1.018); }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-process-panel {
    max-width: 680px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .process-line::before {
    left: 56px;
    right: auto;
    top: 50px;
    bottom: 34px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.92), transparent);
  }

  .process-step {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 22px;
    text-align: left;
    padding: 0 0 22px;
  }

  .process-icon {
    margin: 0;
  }

  .process-step p {
    margin-left: 0;
  }

  .about-panel,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 360px;
  }

  .about-editorial-grid,
  .about-seeing-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-heading {
    position: relative;
    top: auto;
  }

  .about-editorial-heading h2,
  .about-seeing-copy h2 {
    max-width: 14ch;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 0;
  }

  .knowledge-layout {
    grid-template-columns: 1fr;
  }

  .knowledge-toc {
    position: relative;
    top: auto;
  }

  .knowledge-state-grid {
    grid-template-columns: 1fr;
  }

  .book-detail-grid {
    grid-template-columns: 1fr;
  }

  .book-detail-cover-column {
    position: relative;
    top: auto;
  }

  .book-detail-cover {
    width: min(60vw, 330px);
  }

  .book-detail-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .contact-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid-simple {
    grid-template-columns: minmax(140px, 1fr) minmax(150px, auto);
    grid-template-areas:
      "brand nav"
      "social nav";
    justify-items: start;
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-nav {
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 880px) and (min-width: 561px) {
  .site-header {
    top: 10px;
    padding: 0 14px;
  }

  .header-inner {
    width: calc(100vw - 28px);
    min-height: 152px;
    padding: 8px 12px 10px;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 92px 42px;
    gap: 0 12px;
    border-radius: 20px;
  }

  .header-inner::after {
    left: 18px;
    right: 18px;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    padding: 0 16px;
    border-right: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.16), transparent 66%);
  }

  .brand img {
    width: 92px;
    height: 92px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .site-nav a {
    padding: 8px 2px;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 192px;
  }

  .page-hero {
    padding-top: 202px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 9px;
    padding: 0 9px;
  }

  .header-inner {
    width: calc(100vw - 18px);
    min-height: 92px;
    padding: 5px 10px 5px 8px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    border-radius: 18px;
  }

  .header-inner::after {
    left: 22px;
    right: 70px;
  }

  .brand {
    justify-content: flex-start;
    padding: 0 12px;
    border-right: 0;
    background: transparent;
  }

  .brand img {
    width: 82px;
    height: 82px;
    max-height: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    left: 8px;
    right: 8px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 18px;
    background: rgba(7, 18, 15, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-copy > .home-social {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 58px;
    background-position: 62% center;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-process-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-process-panel h2 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

  .hero-process-panel img {
    margin-top: 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 1px solid rgba(212, 175, 55, 0.12);
  }

  .section {
    padding: 68px 0;
  }

  .about-panel {
    padding: 12px;
    border-radius: 26px;
  }

  .about-panel > *,
  .about-panel .about-copy,
  .offer-detail-media,
  .offer-detail-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-panel .about-copy {
    overflow-wrap: anywhere;
  }

  .about-visual,
  .about-portrait-shell {
    min-height: 320px;
  }

  .about-copy {
    padding: 10px 10px 20px;
  }

  .about-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .about-editorial-copy blockquote,
  .about-seeing-copy .about-highlight {
    padding-left: 18px;
  }

  .about-seeing-aside {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .about-principles article {
    padding: 24px;
  }

  .offer-detail-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 20px;
  }

  .offer-detail-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .video-course-grid {
    grid-template-columns: 1fr;
  }

  .video-course-card {
    border-radius: 22px;
  }

  .offer-schedule,
  .offer-contact-panel {
    margin-top: 48px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 12px 10px;
    overflow-wrap: anywhere;
  }

  .schedule-years {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 24px;
  }

  .schedule-table-compact {
    font-size: 0.9rem;
  }

  .schedule-table-compact th:first-child {
    width: 34%;
  }

  .book-showcase {
    padding: 36px 18px 30px;
  }

  .book-stage {
    gap: 28px;
  }

  .book-product {
    width: 100%;
  }

  .book-slot {
    width: min(39vw, 230px);
  }

  .book-product-left .book-model {
    transform: rotateY(10deg);
  }

  .book-product-right .book-model {
    transform: rotateY(-10deg);
  }

  .book-detail {
    padding-block: 62px;
  }

  .knowledge-detail-hero {
    padding-top: 118px;
  }

  .knowledge-detail-heading {
    padding-bottom: 36px;
  }

  .knowledge-detail-heading h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .knowledge-detail-visual {
    width: calc(100vw - 20px);
    border-radius: 20px 20px 0 0;
  }

  .knowledge-detail-visual img {
    height: 330px;
  }

  .knowledge-detail-section {
    padding-top: 56px;
  }

  .knowledge-perspective {
    padding: 24px 22px;
  }

  .knowledge-principle {
    padding: 72px 22px 22px;
  }

  .knowledge-principle::before {
    top: 20px;
    left: 22px;
  }

  .knowledge-reflection-grid,
  .knowledge-crosslink-grid {
    grid-template-columns: 1fr;
  }

  .book-detail-cover {
    width: min(72vw, 310px);
  }

  .book-detail-lead {
    padding-left: 17px;
  }

  .book-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .book-purchase-options {
    grid-template-columns: 1fr;
  }

  .story {
    height: 540svh;
  }

  .story-stage {
    min-height: 560px;
  }

  .story-frame {
    object-position: center center;
  }

  .story-frame:nth-child(1),
  .story-frame:nth-child(2) {
    object-position: 50% 50%;
  }

  .story-frame:nth-child(3),
  .story-frame:nth-child(4) {
    object-position: 50% 42%;
  }

  .story-frame:nth-child(5),
  .story-frame:nth-child(6) {
    object-position: 50% 45%;
  }

  .story-shade {
    background:
      linear-gradient(180deg, rgba(2, 8, 6, 0.46), transparent 25%, transparent 58%, rgba(2, 8, 6, 0.86)),
      linear-gradient(90deg, rgba(2, 8, 6, 0.2), transparent);
  }

  .story-intro {
    top: 118px;
  }

  .story-intro h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .story-caption {
    bottom: 42px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-step {
    grid-template-columns: 78px 1fr;
    gap: 16px;
  }

  .process-icon {
    width: 78px;
    height: 78px;
  }

  .process-line::before {
    left: 39px;
  }

  .offer-grid {
    overflow: visible;
  }

  .offer-grid > .offer-card,
  .offer-pair > .offer-card {
    flex-basis: 100%;
  }

  .offer-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-simple {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "social"
      "nav";
    gap: 12px;
    justify-items: start;
    text-align: left;
  }

  .footer-nav {
    align-items: flex-start;
    justify-self: start;
    gap: 8px;
    text-align: left;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }
}

@media (max-width: 640px) and (min-width: 561px) {
  .hero {
    padding-top: 192px;
  }

  .page-hero,
  .knowledge-detail-hero {
    padding-top: 202px;
  }
}

/* Compact navigation-only header */
.site-header {
  top: 12px;
  padding: 0 14px;
}

.header-inner {
  display: block;
  width: var(--container);
  min-height: 58px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(6, 22, 17, 0.86);
  backdrop-filter: blur(20px) saturate(125%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-inner::after,
.site-header .brand,
.site-header .header-cta,
.site-header .nav-toggle {
  display: none !important;
}

.site-header .site-nav {
  position: static;
  display: flex !important;
  grid-column: auto;
  grid-row: auto;
  justify-content: space-evenly;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 3px 18px;
  gap: clamp(12px, 3vw, 48px);
  overflow-x: auto;
  border: 0;
  border-radius: inherit;
  background: transparent;
  scrollbar-width: none;
}

.site-header .site-nav::-webkit-scrollbar {
  display: none;
}

.site-header .site-nav a {
  flex: 0 0 auto;
  padding: 12px 8px;
  border-bottom: 0;
}

.hero {
  padding-top: 102px;
}

.page-hero,
.knowledge-detail-hero {
  padding-top: 122px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 760px);
  gap: 14px;
}

.hero-actions .button {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  text-align: center;
}

/* Centered homepage hero with the original BIOAnker mark */
.hero-inner {
  justify-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(250px, 40vw, 390px);
  height: auto;
  margin: 0 auto clamp(10px, 1.6vh, 18px);
  opacity: 0.86;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.48));
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead {
  margin-right: auto;
  margin-left: auto;
}

.hero-copy h1 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
}

.hero-copy .lead {
  max-width: 820px;
}

.hero-copy .hero-actions {
  width: min(100%, 820px);
  margin-right: auto;
  margin-left: auto;
}

.hero-actions .button {
  min-height: 44px;
  padding: 0 10px;
  gap: 7px;
  white-space: nowrap;
  font-size: clamp(0.72rem, 1.15vw, 0.9rem);
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4.25rem);
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    padding: 0 8px;
  }

  .header-inner {
    width: calc(100vw - 16px);
    min-height: 54px;
    border-radius: 15px;
  }

  .site-header .site-nav {
    justify-content: flex-start;
    min-height: 52px;
    padding: 2px 8px;
    gap: 5px;
    font-size: 0.72rem;
  }

  .site-header .site-nav a {
    padding: 11px 8px;
  }

  .hero {
    padding-top: 82px;
  }

  .page-hero,
  .knowledge-detail-hero {
    padding-top: 98px;
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-actions .button {
    padding: 0 7px;
    gap: 5px;
    font-size: clamp(0.64rem, 2.1vw, 0.76rem);
  }
}

@media (max-width: 460px) {
  .hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }
}

/* Archaische Melodien – eigener Klangraum */
.melodies-hero {
  background:
    linear-gradient(90deg, rgba(5, 16, 12, 0.92), rgba(5, 16, 12, 0.46)),
    url("../images/brand/offer-archaische-melodien.jpg") center 54% / cover;
}

.melody-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.melody-visual {
  min-height: clamp(320px, 43vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(212, 175, 55, 0.12);
}

.melody-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.melody-copy h2,
.melody-release h2 {
  color: var(--champagne);
  font-size: clamp(2.25rem, 4vw, 4.4rem);
}

.melody-copy > p:not(.section-kicker),
.melody-release p {
  color: rgba(255, 255, 255, 0.74);
}

.melody-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(56px, 8vw, 96px);
}

.melody-step {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(212, 175, 55, 0.035));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.melody-step-number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.melody-step h3 {
  color: var(--champagne);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.melody-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.melody-release {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  margin-top: clamp(28px, 5vw, 54px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 22px;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.13), transparent 30%), rgba(5, 17, 13, 0.68);
}

.melody-release > img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}

.melody-release .section-kicker {
  margin-bottom: 8px;
}

.melody-release h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.melody-release p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .melody-intro,
  .melody-release {
    grid-template-columns: 1fr;
  }

  .melody-steps {
    grid-template-columns: 1fr;
  }

  .melody-release {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Videoarchiv Preisbox */
.offer-pricing-card {
  position: relative;
  overflow: hidden;
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(210, 174, 93, 0.42);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(11, 38, 34, 0.98), rgba(16, 56, 50, 0.9));
  box-shadow: 0 22px 55px rgba(4, 18, 16, 0.2);
}

.offer-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d2ae5d, transparent);
}

.offer-pricing-eyebrow {
  margin: 0 0 0.45rem;
  color: #d2ae5d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-pricing-main {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.offer-pricing-main strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
}

.offer-pricing-main span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.offer-pricing-limit {
  margin: 0 0 1.15rem;
  color: #f0d893;
  font-weight: 650;
}

.offer-pricing-regular {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.08rem;
}

.offer-pricing-includes {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.offer-pricing-note {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-actions .button.is-disabled,
.hero-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  filter: saturate(0.72);
}

@media (max-width: 640px) {
  .offer-pricing-card {
    border-radius: 18px;
  }

  .offer-pricing-main {
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
  }

  .offer-pricing-main strong {
    font-size: clamp(3.3rem, 18vw, 4.4rem);
  }
}

/* Angebotsbilder am Textbeginn ausrichten */
.about-panel[data-standard-offer] {
  align-items: start;
}

.about-panel[data-standard-offer] .offer-detail-media {
  align-self: start;
}
