@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0D1B2A;
  --bg-soft: #122338;
  --champagne: #E6D3B3;
  --paper: #F8F6F2;
  --text-light: #EFE9DD;
  --text-dark: #223247;
  --muted: rgba(239, 233, 221, .72);
  --muted-dark: rgba(34, 50, 71, .7);
  --line: rgba(230, 211, 179, .18);
  --line-strong: rgba(230, 211, 179, .28);
  --card: rgba(255,255,255,.03);
  --shadow: 0 24px 80px rgba(2, 8, 18, .28);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 78% 14%, rgba(230,211,179,.10), transparent 24rem),
    radial-gradient(circle at 20% 32%, rgba(230,211,179,.06), transparent 18rem),
    linear-gradient(180deg, #081321 0%, #0D1B2A 100%);
  color: var(--text-light);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.stack-xl > * + * { margin-top: 48px; }
.section { padding: clamp(88px, 10vw, 150px) 0; }
.section-light {
  background: linear-gradient(180deg, #f7f1e6 0%, #efe6d7 100%);
  color: var(--text-dark);
  border-top: 1px solid rgba(13, 27, 42, .06);
  border-bottom: 1px solid rgba(13, 27, 42, .06);
}
.skip-link { position: absolute; left: -999px; top: auto; }
.skip-link:focus {
  left: 16px; top: 16px; z-index: 1000;
  background: var(--paper); color: #0b1726; padding: .8rem 1rem; border-radius: 10px;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 19, 33, .74);
  border-bottom: 1px solid rgba(230,211,179,.10);
}
.header-inner {
  min-height: 82px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}
.menu-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(230,211,179,.20);
  background: rgba(255,255,255,.045);
  color: var(--paper);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.menu-toggle-icon {
  display: inline-flex;
  width: 18px;
  height: 14px;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--champagne);
}
.menu-toggle-text {
  font-size: 14px;
  letter-spacing: .04em;
}
.header-brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.header-brand img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 18px; border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}
.header-brand strong,
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 13px;
  color: var(--champagne);
  font-weight: 600;
  margin: 0 0 16px;
}
.header-brand strong { margin: 0; font-size: 13px; }
.header-brand small {
  display: block; font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.site-nav a,
.footer-nav a {
  text-decoration: none; color: var(--text-light); opacity: .84; transition: opacity .35s ease, color .35s ease;
}
.site-nav a:hover,
.site-nav a:focus,
.footer-nav a:hover,
.footer-nav a:focus { opacity: 1; color: var(--champagne); }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(230,211,179,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.language-button span { font-size: 16px; line-height: 1; }
.language-button strong { letter-spacing: .08em; font-weight: 700; }
.language-button:hover,
.language-button:focus {
  color: var(--paper);
  border-color: rgba(230,211,179,.18);
}
.language-button.is-active {
  background: var(--paper);
  color: #102033;
  border-color: rgba(230,211,179,.32);
}
.hero { padding-top: clamp(52px, 8vw, 92px); }
.hero-centered {
  display: grid;
  gap: clamp(40px, 5vw, 68px);
}
.hero-video-wrap {
  width: min(100%, 1040px);
  margin: 0 auto;
}
.video-card-main {
  padding: clamp(12px, 2vw, 18px);
}
.hero-copy-under-video {
  width: min(100%, 900px);
  margin: 0 auto;
}
.hero-copy-under-video h1 {
  max-width: 13ch;
}
.hero-grid,
.content-grid {
  display: grid; gap: clamp(28px, 4vw, 42px); align-items: start;
}
.hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.brand-layout { grid-template-columns: 1.15fr .85fr; }
.noah-layout { grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); align-items: center; }
.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hero-copy { max-width: 720px; }
.hero-logo,
.product-logo {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-logo { width: min(100%, 720px); margin-bottom: 32px; }
.product-logo { width: min(100%, 760px); margin-bottom: 28px; }
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}
h1 { font-size: clamp(4rem, 8vw, 6rem); max-width: 12ch; }
h2 { font-size: clamp(3rem, 6vw, 4.6rem); max-width: 12ch; }
h3 { font-size: clamp(2rem, 3.8vw, 2.8rem); }
p { margin: 0 0 18px; font-size: clamp(18px, 1.45vw, 22px); color: var(--text-light); }
.section-light p { color: var(--text-dark); }
.lead { font-size: clamp(21px, 1.8vw, 26px); color: var(--paper); max-width: 34ch; }
.section-head { max-width: 920px; }
.action-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  background: var(--paper); color: #102033; font-weight: 600; text-decoration: none;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.button:hover, .button:focus { transform: translateY(-1px); }
.button-secondary { background: transparent; color: var(--text-light); border-color: var(--line-strong); }
.button-dark { background: #102033; color: var(--paper); }
.video-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.video-frame { position: relative; overflow: hidden; border-radius: 22px; background: #08101c; }
.hero-video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #050b14; }
.video-unmute {
  position: absolute; left: 16px; bottom: 16px;
  appearance: none; border: 1px solid var(--line-strong); cursor: pointer;
  background: rgba(13, 27, 42, .82); color: var(--paper); padding: 14px 18px; border-radius: 999px;
  font-weight: 600; font-size: 15px; backdrop-filter: blur(10px);
}
.video-note { font-size: 15px; color: var(--muted); margin: 16px 4px 0; }
.panel,
.feature-card,
.person-card,
.journal-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.panel-dark,
.person-card,
.journal-card,
.footer-panels .panel {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
}
.panel-outline { background: rgba(255,255,255,.015); border: 1px solid var(--line-strong); }
.panel-light,
.feature-card {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(13,27,42,.08);
  box-shadow: 0 20px 60px rgba(11, 27, 50, .09);
}
.panel-light h3,
.feature-card h3,
.coming-soon-box h3,
.section-light h2,
.section-light .lead,
.section-light .eyebrow,
.section-light .button-secondary,
.section-light .button-secondary:hover,
.section-light .button-secondary:focus,
.person-card h3,
.journal-card h3 { color: var(--text-dark); }
.eyebrow-dark { color: #b5843a; }
.pill-row,
.difference-cards { display: grid; gap: 16px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pill-row span,
.light-pills span {
  display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border-radius: 999px;
  background: rgba(230,211,179,.08); border: 1px solid var(--line); color: var(--champagne); font-size: 15px;
}
.light-pills span { background: rgba(181,132,58,.08); border-color: rgba(181,132,58,.16); color: #7a5420; }
.difference-cards.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }
.difference-cards article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.difference-cards span,
.feature-card span {
  display: inline-block; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 700; color: var(--champagne);
}
.difference-cards strong { display: block; font-size: 24px; margin-bottom: 10px; }
.difference-cards p { margin: 0; font-size: 17px; color: var(--muted); }
.section-light .difference-cards p { color: var(--muted-dark); }
.principles-list { list-style: none; padding: 0; margin: 0; }
.principles-list li { position: relative; padding-left: 22px; margin-bottom: 16px; font-size: clamp(18px, 1.35vw, 20px); }
.principles-list li::before {
  content: ''; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--champagne);
}
.card-grid { display: grid; gap: 22px; }
.three-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.five-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.feature-card { min-height: 290px; }
.feature-card span { color: #b5843a; }
.noah-media img,
.noah-media video {
  display: block;
  width: min(100%, 420px);
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.noah-media video {
  aspect-ratio: 1080 / 1348;
  object-fit: cover;
  background: #e9e3d8;
}
.footer-panels { padding-bottom: 24px; }
.site-footer { padding: 30px 0 46px; border-top: 1px solid rgba(230,211,179,.12); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: flex-end; }
.footer-copy { max-width: 36ch; font-size: 16px; color: var(--muted); margin: 0; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 1140px) {
  .hero-grid,
  .brand-layout,
  .noah-layout,
  .footer-grid,
  .five-grid,
  .three-grid,
  .two-up { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .site-nav { gap: 10px 16px; }
}
@media (max-width: 840px) {
  .header-inner { flex-direction: row; align-items: center; padding: 12px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 14px 0; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-flex; }
  .menu-panel {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(86vw, 340px);
    padding: 18px;
    border: 1px solid rgba(230,211,179,.18);
    border-radius: 24px;
    background: rgba(8, 19, 33, .96);
    box-shadow: 0 24px 80px rgba(2,8,18,.45);
    backdrop-filter: blur(20px);
  }
  .site-header.menu-open .menu-panel {
    display: grid;
    gap: 18px;
  }
  .menu-panel .site-nav {
    display: grid;
    gap: 12px;
  }
  .menu-panel .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(230,211,179,.10);
  }
  .menu-panel .language-switcher {
    width: 100%;
    justify-content: space-between;
  }
  .menu-panel .language-button {
    flex: 1;
    justify-content: center;
  }
  h1 { max-width: none; }
  .difference-cards.compact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .header-brand small { max-width: 140px; }
  .menu-toggle-text { display: none; }
  .button,
  .button-secondary,
  .button-dark { width: 100%; }
  .video-unmute { left: 12px; right: 12px; bottom: 12px; text-align: center; }
  p { font-size: 18px; }
}


/* v13 hard fix – Hero video zentral + echtes mobiles Menü */
.hero-video-only {
  padding-top: clamp(56px, 8vw, 92px);
}
.hero-video-centered {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(36px, 5vw, 68px);
  justify-items: center;
}
.hero-video-centered .video-card-main {
  width: min(100%, 1040px);
  margin-inline: auto;
}
.hero-video-centered .hero-copy-centered {
  width: min(100%, 900px);
  margin-inline: auto;
}
.hero-video-centered .hero-copy-centered h1 {
  max-width: 13ch;
}
.hero-video-centered .hero-logo,
.hero-video-centered .company-logo,
.hero-video-centered #companyLogo {
  display: none !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(230,211,179,.20);
  background: rgba(255,255,255,.045);
  color: var(--paper);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.menu-toggle-icon {
  display: inline-flex;
  width: 18px;
  height: 14px;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--champagne);
}
.menu-toggle-text {
  font-size: 14px;
  letter-spacing: .04em;
}
.header-actions {
  position: relative;
}
.menu-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

@media (max-width: 840px) {
  .site-header {
    overflow: visible;
  }
  .header-inner {
    flex-direction: row !important;
    align-items: center !important;
    min-height: 74px;
    padding-block: 10px;
  }
  .header-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .menu-panel {
    display: none !important;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(86vw, 340px);
    padding: 18px;
    border: 1px solid rgba(230,211,179,.18);
    border-radius: 24px;
    background: rgba(8, 19, 33, .97);
    box-shadow: 0 24px 80px rgba(2,8,18,.45);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .site-header.menu-open .menu-panel {
    display: grid !important;
    gap: 18px;
  }
  .menu-panel .site-nav {
    display: grid !important;
    gap: 12px;
  }
  .menu-panel .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(230,211,179,.10);
  }
  .menu-panel .language-switcher {
    width: 100%;
    justify-content: space-between;
  }
  .menu-panel .language-button {
    flex: 1;
    justify-content: center;
  }
  .hero-video-centered {
    gap: 34px;
  }
  .hero-video-centered .hero-copy-centered h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .header-brand small {
    max-width: 150px;
  }
  .menu-toggle-text {
    display: none;
  }
  .menu-toggle {
    width: 46px;
    padding: 0;
  }
}


/* v14 – interaktive Raumansicht mit aufklappender Buchseite */
.room-explorer {
  padding: clamp(28px, 3.6vw, 42px);
}
.room-explorer-head {
  max-width: 70ch;
  margin-bottom: 28px;
}
.room-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.room-tab {
  appearance: none;
  text-align: left;
  min-height: 116px;
  border-radius: 24px;
  border: 1px solid rgba(18, 34, 56, 0.12);
  background: rgba(255,255,255,0.72);
  padding: 18px 18px 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.room-tab:hover,
.room-tab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 24, 44, 0.10);
  border-color: rgba(181,132,58,0.35);
  outline: none;
}
.room-tab.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(249,244,236,.96));
  border-color: rgba(181,132,58,0.42);
  box-shadow: 0 22px 44px rgba(10, 24, 44, 0.12);
}
.room-tab-number,
.room-panel-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b5843a;
}
.room-tab-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: .95;
  color: var(--ink);
}
.room-panels {
  position: relative;
  min-height: 320px;
  perspective: 1600px;
}
.room-panel {
  position: absolute;
  inset: 0;
}
.room-panel[hidden] {
  display: block;
  pointer-events: none;
  visibility: hidden;
}
.room-panel .room-page {
  min-height: 320px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,242,234,.98));
  border: 1px solid rgba(18, 34, 56, 0.10);
  box-shadow: 0 24px 64px rgba(10, 24, 44, 0.10);
  padding: clamp(28px, 4vw, 40px);
  transform-origin: left center;
  transform: rotateY(-92deg) scale(.98);
  opacity: 0;
  transition: transform .65s cubic-bezier(.22,1,.36,1), opacity .5s ease;
  display: grid;
  align-content: start;
  gap: 18px;
}
.room-panel.is-active {
  position: relative;
  z-index: 2;
}
.room-panel.is-active .room-page {
  transform: rotateY(0deg) scale(1);
  opacity: 1;
}
.room-panel h3 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
}
.room-panel p {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(21px, 2vw, 24px);
  line-height: 1.65;
  color: rgba(13, 27, 42, 0.90);
}
@media (max-width: 1140px) {
  .room-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 840px) {
  .room-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .room-panels {
    min-height: 360px;
  }
  .room-panel .room-page {
    min-height: 360px;
  }
}
@media (max-width: 560px) {
  .room-tabs {
    grid-template-columns: 1fr;
  }
  .room-tab {
    min-height: 92px;
  }
  .room-panels {
    min-height: 390px;
  }
  .room-panel .room-page {
    min-height: 390px;
    padding: 24px;
  }
  .room-panel p {
    font-size: 19px;
  }
}


/* v15 – Raum-Reiter direkt im Feld „Für wen?“ */
.room-explorer {
  display: none !important;
}
.embedded-room-explorer {
  margin-top: 28px;
}
.embedded-room-explorer .room-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.embedded-room-explorer .room-tab {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(181,132,58,.18);
  background: rgba(181,132,58,.07);
  color: #7a5420;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.embedded-room-explorer .room-tab:hover,
.embedded-room-explorer .room-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(181,132,58,.35);
  box-shadow: 0 10px 26px rgba(10,24,44,.08);
  outline: none;
}
.embedded-room-explorer .room-tab.is-active {
  background: #102033;
  color: #f8f6f2;
  border-color: #102033;
}
.embedded-room-explorer .room-tab-title {
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  color: inherit;
  font-weight: 600;
}
.room-panels-embedded {
  min-height: 210px;
  perspective: 1400px;
}
.room-panels-embedded .room-panel .room-page {
  min-height: 210px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,242,234,.96));
  border: 1px solid rgba(18,34,56,.10);
  box-shadow: 0 18px 44px rgba(10,24,44,.10);
}
.room-panels-embedded .room-panel h3 {
  font-size: clamp(30px, 4vw, 44px);
}
.room-panels-embedded .room-panel p {
  max-width: 34ch;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.58;
}
.room-panels-embedded .room-panel-number {
  font-size: 12px;
}
@media (max-width: 840px) {
  .room-panels-embedded {
    min-height: 240px;
  }
  .room-panels-embedded .room-panel .room-page {
    min-height: 240px;
  }
}
@media (max-width: 560px) {
  .embedded-room-explorer .room-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .embedded-room-explorer .room-tab {
    justify-content: center;
    text-align: center;
  }
  .room-panels-embedded {
    min-height: 290px;
  }
  .room-panels-embedded .room-panel .room-page {
    min-height: 290px;
  }
}


/* v16 – zentrierte Reiter-Schrift + automatischer Seitenwechsel */
.embedded-room-explorer .room-tab {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}
.embedded-room-explorer .room-tab-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  transform: translateY(0);
}
.embedded-room-explorer .room-tab.is-active {
  position: relative;
  overflow: hidden;
}
.embedded-room-explorer .room-tab.is-active::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(248,246,242,.62);
  transform-origin: left center;
  animation: alnoaRoomProgress 10s linear forwards;
}
@keyframes alnoaRoomProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.room-panels-embedded .room-panel .room-page {
  transform-origin: left center;
}
.room-panels-embedded .room-panel.is-leaving .room-page {
  animation: alnoaPageClose .58s cubic-bezier(.22,1,.36,1) forwards;
}
.room-panels-embedded .room-panel.is-active .room-page {
  animation: alnoaPageOpen .72s cubic-bezier(.22,1,.36,1) both;
}
@keyframes alnoaPageOpen {
  0% {
    opacity: 0;
    transform: rotateY(-82deg) translateX(-10px) scale(.985);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
  }
}
@keyframes alnoaPageClose {
  0% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotateY(62deg) translateX(8px) scale(.985);
  }
}
@media (prefers-reduced-motion: reduce) {
  .embedded-room-explorer .room-tab.is-active::after,
  .room-panels-embedded .room-panel.is-leaving .room-page,
  .room-panels-embedded .room-panel.is-active .room-page {
    animation: none !important;
  }
}


/* v17 – Sprachwechsel zum Seitenanfang, cleaner Video-Button, Video-Pfeil am Logo */
.header-brand {
  position: relative;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}
.header-brand .brand-mark img {
  display: block;
}
.brand-video-arrow {
  position: absolute;
  left: -4px;
  bottom: -4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248,246,242,.94);
  color: #102033;
  border: 1px solid rgba(230,211,179,.55);
  box-shadow: 0 10px 26px rgba(2,8,18,.28);
  font-size: 10px;
  line-height: 1;
  padding-left: 1px;
  transition: transform .3s ease, background .3s ease;
}
.header-brand:hover .brand-video-arrow,
.header-brand:focus .brand-video-arrow {
  transform: translateY(-1px) scale(1.04);
  background: #fff;
}
.video-note {
  display: none !important;
}
.video-play-only {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.video-play-only span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateX(1px);
}
@media (max-width: 560px) {
  .brand-video-arrow {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }
}


/* v18 HARD FIX – Video-Button, Hinweistext, Logo-Video-Pfeil, Sprachwechsel */
.header-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-logo-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}
.brand-logo-main img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}
.brand-logo-main strong,
.header-brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 13px;
  color: var(--champagne);
  font-weight: 600;
  margin: 0;
}
.brand-logo-main small,
.header-brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-video-arrow,
.brand-video-arrow-link {
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248,246,242,.96);
  color: #102033;
  border: 1px solid rgba(230,211,179,.58);
  box-shadow: 0 10px 26px rgba(2,8,18,.30);
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  padding-left: 1px;
  z-index: 3;
  transition: transform .28s ease, background .28s ease;
}
.brand-video-arrow-link:hover,
.brand-video-arrow-link:focus {
  transform: translateY(-1px) scale(1.04);
  background: #fff;
  outline: none;
}
.video-note {
  display: none !important;
}
.video-play-only,
#videoStartBtn.video-play-only {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
}
.video-play-only span,
#videoStartBtn.video-play-only span {
  display: inline-block;
  font-size: 18px !important;
  line-height: 1;
  transform: translateX(1px);
}
@media (max-width: 560px) {
  .brand-logo-main img {
    width: 48px;
    height: 48px;
  }
  .brand-video-arrow-link {
    width: 23px;
    height: 23px;
    font-size: 9px;
  }
}


/* v19 HARD CLEAN – Video without extra text button/note + visible logo play arrow */
.video-note,
.video-card .video-note {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* In case an older index.html is cached on the server: hide text in any custom video button. */
.video-unmute,
#videoStartBtn {
  font-size: 0 !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.video-unmute::before,
#videoStartBtn::before {
  content: '▶';
  font-size: 18px !important;
  line-height: 1;
  transform: translateX(1px);
}
.video-unmute span,
#videoStartBtn span {
  font-size: 18px !important;
  line-height: 1;
  transform: translateX(1px);
}
.video-card-main {
  padding-bottom: clamp(12px, 2vw, 18px) !important;
}

.header-brand {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
}
.brand-logo-main {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  color: inherit !important;
}
.brand-logo-main img {
  width: 52px !important;
  height: 52px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.2) !important;
}
.brand-logo-main strong,
.header-brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 13px;
  color: var(--champagne);
  font-weight: 600;
  margin: 0;
}
.brand-logo-main small,
.header-brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-video-arrow-link {
  position: absolute !important;
  left: -7px !important;
  bottom: -7px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #F8F6F2 !important;
  color: #102033 !important;
  border: 1px solid rgba(230,211,179,.72) !important;
  box-shadow: 0 10px 26px rgba(2,8,18,.35) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  padding-left: 1px !important;
  z-index: 10 !important;
}
.brand-video-arrow-link:hover,
.brand-video-arrow-link:focus {
  transform: translateY(-1px) scale(1.04);
  outline: none;
}
@media (max-width: 560px) {
  .brand-video-arrow-link {
    width: 25px !important;
    height: 25px !important;
    font-size: 10px !important;
  }
}


/* v20 – final cache-buster video cleanup */
.video-note,
p.video-note,
[class*="video-note"],
#videoStartBtn,
.video-unmute {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}


/* v21 – mobile menu/js fix marker */
.site-header.menu-open .menu-panel {
  display: grid !important;
}


/* v22 COMPLETE CLEAN – CSS-only mobile menu, no dependency on JS for opening */
.menu-state {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.menu-toggle {
  user-select: none;
}
@media (min-width: 841px) {
  .menu-panel {
    display: flex !important;
    align-items: center;
    gap: 22px;
  }
  .menu-toggle,
  .menu-state {
    display: none !important;
  }
}
@media (max-width: 840px) {
  .site-header {
    overflow: visible !important;
  }
  .header-actions {
    position: relative !important;
  }
  .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    min-height: 52px !important;
    min-width: 52px !important;
  }
  .menu-panel {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 14px) !important;
    right: 0 !important;
    width: min(86vw, 340px) !important;
    padding: 18px !important;
    border: 1px solid rgba(230,211,179,.20) !important;
    border-radius: 24px !important;
    background: rgba(8, 19, 33, .98) !important;
    box-shadow: 0 24px 80px rgba(2,8,18,.48) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 9999 !important;
  }
  .menu-state:checked + .menu-toggle + .menu-panel {
    display: grid !important;
    gap: 18px !important;
  }
  .menu-state:checked + .menu-toggle .menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-state:checked + .menu-toggle .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }
  .menu-state:checked + .menu-toggle .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .menu-toggle-icon span {
    transition: transform .28s ease, opacity .28s ease;
  }
  .menu-panel .site-nav {
    display: grid !important;
    gap: 12px !important;
  }
  .menu-panel .site-nav a {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(230,211,179,.10) !important;
  }
  .menu-panel .language-switcher {
    width: 100% !important;
    justify-content: space-between !important;
  }
  .menu-panel .language-button {
    flex: 1 !important;
    justify-content: center !important;
  }
}
/* Keep video clean even if an old snippet somehow appears */
.video-note,
#videoStartBtn,
.video-unmute {
  display: none !important;
}


/* v23 – iOS Home-Screen-Web-App / PWA */
html {
  min-height: 100%;
  background: #0D1B2A;
}
body {
  min-height: 100dvh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
@supports (padding: max(0px)) {
  .site-header {
    padding-top: max(0px, env(safe-area-inset-top));
  }
  .site-footer {
    padding-bottom: max(46px, calc(46px + env(safe-area-inset-bottom)));
  }
}
@media (display-mode: standalone) {
  body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
  }
  input, textarea, [contenteditable="true"], p, h1, h2, h3 {
    -webkit-user-select: text;
    user-select: text;
  }
  .site-header {
    background: rgba(8, 19, 33, .92);
  }
}
.ios-install-hint {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, calc(18px + env(safe-area-inset-bottom)));
  z-index: 10000;
  width: min(520px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 14px 48px 14px 14px;
  border-radius: 24px;
  border: 1px solid rgba(230,211,179,.22);
  background: rgba(8, 19, 33, .94);
  color: var(--paper);
  box-shadow: 0 24px 80px rgba(2,8,18,.55);
  backdrop-filter: blur(22px);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}
.ios-install-hint[hidden] {
  display: none !important;
}
.ios-install-icon img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(230,211,179,.25);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.ios-install-title {
  margin: 0 0 2px;
  font-weight: 700;
  font-size: 16px;
  color: var(--paper);
}
.ios-install-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(239,233,221,.78);
}
.ios-install-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(230,211,179,.18);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 560px) {
  .ios-install-hint {
    grid-template-columns: 48px 1fr;
    padding: 12px 44px 12px 12px;
    border-radius: 22px;
  }
  .ios-install-icon img {
    width: 48px;
    height: 48px;
  }
}


/* v27 – Reiter wie umschlagende Buchseiten */
.embedded-room-explorer {
  position: relative;
}

.room-panels-embedded {
  position: relative;
  perspective: 2200px;
  transform-style: preserve-3d;
}

.room-panels-embedded .room-panel {
  position: relative;
  isolation: isolate;
}

.room-panels-embedded .room-panel .room-page {
  position: relative;
  overflow: hidden;
  transform-origin: left center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.985), rgba(248,244,237,.97));
  box-shadow:
    0 20px 44px rgba(10,24,44,.11),
    inset 0 0 0 1px rgba(18,34,56,.05);
}

.room-panels-embedded .room-panel .room-page::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 22px;
  border-radius: 24px 0 0 24px;
  background:
    linear-gradient(90deg,
      rgba(10,24,44,.12) 0%,
      rgba(10,24,44,.07) 18%,
      rgba(255,255,255,.0) 100%);
  pointer-events: none;
  z-index: 2;
}

.room-panels-embedded .room-panel .room-page::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.0) 0%,
      rgba(255,255,255,.0) 58%,
      rgba(255,255,255,.12) 72%,
      rgba(10,24,44,.08) 84%,
      rgba(10,24,44,.18) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.room-panels-embedded .room-panel.is-active {
  z-index: 3;
}

.room-panels-embedded .room-panel.is-leaving {
  z-index: 2;
}

.room-panels-embedded .room-panel.is-active .room-page {
  animation: alnoaBookPageOpen .92s cubic-bezier(.2,.9,.16,1) both;
}

.room-panels-embedded .room-panel.is-active .room-page::after {
  animation: alnoaBookSheenIn .92s ease-out both;
}

.room-panels-embedded .room-panel.is-leaving .room-page {
  animation: alnoaBookPageTurn .84s cubic-bezier(.55,.02,.32,.97) both;
}

.room-panels-embedded .room-panel.is-leaving .room-page::after {
  opacity: 1;
  animation: alnoaBookSheenTurn .84s ease-in both;
}

@keyframes alnoaBookPageOpen {
  0% {
    opacity: .18;
    transform: rotateY(-88deg) translateX(-14px) scale(.985);
    box-shadow:
      0 10px 24px rgba(10,24,44,.08),
      26px 0 30px rgba(10,24,44,.10),
      inset 0 0 0 1px rgba(18,34,56,.04);
    filter: brightness(.985);
  }
  48% {
    opacity: .72;
    transform: rotateY(-24deg) translateX(-3px) scale(.995);
    box-shadow:
      0 18px 38px rgba(10,24,44,.11),
      14px 0 22px rgba(10,24,44,.08),
      inset 0 0 0 1px rgba(18,34,56,.05);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
    box-shadow:
      0 20px 44px rgba(10,24,44,.11),
      inset 0 0 0 1px rgba(18,34,56,.05);
    filter: brightness(1);
  }
}

@keyframes alnoaBookPageTurn {
  0% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
    box-shadow:
      0 20px 44px rgba(10,24,44,.11),
      inset 0 0 0 1px rgba(18,34,56,.05);
    filter: brightness(1);
  }
  45% {
    opacity: .98;
    transform: rotateY(26deg) translateX(4px) scale(.997);
    box-shadow:
      0 18px 38px rgba(10,24,44,.11),
      -10px 0 18px rgba(10,24,44,.08),
      inset 0 0 0 1px rgba(18,34,56,.05);
  }
  100% {
    opacity: 0;
    transform: rotateY(92deg) translateX(8px) scale(.986);
    box-shadow:
      0 12px 26px rgba(10,24,44,.06),
      -18px 0 26px rgba(10,24,44,.10),
      inset 0 0 0 1px rgba(18,34,56,.04);
    filter: brightness(.97);
  }
}

@keyframes alnoaBookSheenIn {
  0% {
    opacity: .22;
    transform: translateX(34%) scaleX(1.08);
  }
  60% {
    opacity: .14;
    transform: translateX(10%) scaleX(1.02);
  }
  100% {
    opacity: 0;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes alnoaBookSheenTurn {
  0% {
    opacity: .08;
    transform: translateX(0) scaleX(1);
  }
  45% {
    opacity: .26;
    transform: translateX(-8%) scaleX(1.04);
  }
  100% {
    opacity: .34;
    transform: translateX(-18%) scaleX(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-panels-embedded .room-panel.is-active .room-page,
  .room-panels-embedded .room-panel.is-active .room-page::after,
  .room-panels-embedded .room-panel.is-leaving .room-page,
  .room-panels-embedded .room-panel.is-leaving .room-page::after {
    animation: none !important;
  }
}


/* v28 – echterer physischer Buchseiten-Umschlag ohne gestapelte Panels */
.embedded-room-explorer {
  position: relative;
}

.room-panels-embedded {
  position: relative;
  min-height: 320px;
  perspective: 2600px;
  transform-style: preserve-3d;
  overflow: visible;
}

.room-panels-embedded .room-panel {
  position: absolute !important;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.room-panels-embedded .room-panel[hidden] {
  display: none !important;
}

.room-panels-embedded .room-panel .room-page {
  position: absolute;
  inset: 0;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform-origin: left center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.985), rgba(247,242,234,.97));
  box-shadow:
    0 18px 40px rgba(10,24,44,.09),
    inset 0 0 0 1px rgba(18,34,56,.05);
}

.room-panels-embedded .room-panel .room-page::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 28px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(90deg,
    rgba(10,24,44,.12) 0%,
    rgba(10,24,44,.07) 18%,
    rgba(10,24,44,.03) 38%,
    rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 2;
}

.room-panels-embedded .room-panel .room-page::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 58%,
    rgba(255,255,255,.10) 72%,
    rgba(10,24,44,.06) 84%,
    rgba(10,24,44,.14) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.room-panels-embedded .room-panel.is-active {
  z-index: 2;
}

.room-panels-embedded .room-panel.is-leaving {
  z-index: 3;
}

/* neue Seite liegt ruhig darunter und wird nur sanft sichtbar */
.room-panels-embedded .room-panel.is-active .room-page {
  animation: alnoaPageUnderReveal .56s ease-out both;
}

.room-panels-embedded .room-panel.is-active .room-page::after {
  animation: alnoaPageUnderGlow .56s ease-out both;
}

/* alte Seite schlägt wie eine physische Buchseite nach links um */
.room-panels-embedded .room-panel.is-leaving .room-page {
  animation: alnoaPhysicalPageTurn .95s cubic-bezier(.34,.02,.18,.99) forwards;
}

.room-panels-embedded .room-panel.is-leaving .room-page::after {
  opacity: 1;
  animation: alnoaPhysicalPageShade .95s ease-in forwards;
}

@keyframes alnoaPageUnderReveal {
  0% {
    opacity: .82;
    transform: scale(.992) translateY(2px);
    filter: brightness(.985);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: brightness(1);
  }
}

@keyframes alnoaPageUnderGlow {
  0% {
    opacity: .12;
    transform: translateX(6%);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

@keyframes alnoaPhysicalPageTurn {
  0% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
    box-shadow:
      0 18px 40px rgba(10,24,44,.09),
      inset 0 0 0 1px rgba(18,34,56,.05);
    filter: brightness(1);
  }
  22% {
    opacity: 1;
    transform: rotateY(-18deg) translateX(-1px) scale(1);
    box-shadow:
      0 18px 40px rgba(10,24,44,.10),
      20px 0 24px rgba(10,24,44,.10),
      inset 0 0 0 1px rgba(18,34,56,.05);
  }
  54% {
    opacity: .98;
    transform: rotateY(-58deg) translateX(-2px) scale(.998);
    box-shadow:
      0 14px 28px rgba(10,24,44,.07),
      30px 0 38px rgba(10,24,44,.13),
      inset 0 0 0 1px rgba(18,34,56,.04);
    filter: brightness(.985);
  }
  100% {
    opacity: 0;
    transform: rotateY(-103deg) translateX(-2px) scale(.996);
    box-shadow:
      0 8px 16px rgba(10,24,44,.04),
      34px 0 44px rgba(10,24,44,.16),
      inset 0 0 0 1px rgba(18,34,56,.03);
    filter: brightness(.97);
  }
}

@keyframes alnoaPhysicalPageShade {
  0% {
    opacity: .06;
    transform: translateX(0) scaleX(1);
  }
  45% {
    opacity: .24;
    transform: translateX(-8%) scaleX(1.06);
  }
  100% {
    opacity: .36;
    transform: translateX(-18%) scaleX(1.10);
  }
}

@media (max-width: 560px) {
  .room-panels-embedded {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-panels-embedded .room-panel.is-active .room-page,
  .room-panels-embedded .room-panel.is-active .room-page::after,
  .room-panels-embedded .room-panel.is-leaving .room-page,
  .room-panels-embedded .room-panel.is-leaving .room-page::after {
    animation: none !important;
  }
}


/* v30 – HARD FIX: sichtbare Trennlinie zwischen Hero und ALNOA-AI-Abschnitt */
.section-divider-after-hero {
  width: min(var(--container), calc(100% - 48px));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(230, 211, 179, 0) 0%,
    rgba(230, 211, 179, .34) 13%,
    rgba(230, 211, 179, .86) 50%,
    rgba(230, 211, 179, .34) 87%,
    rgba(230, 211, 179, 0) 100%
  );
  box-shadow: 0 0 18px rgba(230, 211, 179, .16);
  opacity: 1;
}
@media (max-width: 560px) {
  .section-divider-after-hero {
    width: calc(100% - 24px);
  }
}

/* v30 – HARD FIX: Reiter-Autoslider + echte überlagerte Buchseite */
.embedded-room-explorer {
  position: relative;
  margin-top: 28px;
}

.embedded-room-explorer .room-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 0 18px !important;
}

.embedded-room-explorer .room-tab {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  line-height: 1 !important;
}

.embedded-room-explorer .room-tab-title {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.05 !important;
  width: 100%;
}

.embedded-room-explorer .room-tab.is-active {
  position: relative;
  overflow: hidden;
}

.embedded-room-explorer .room-tab.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 246, 242, .66);
  transform-origin: left center;
  animation: alnoaRoomProgressV30 10s linear forwards;
}

@keyframes alnoaRoomProgressV30 {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.room-panels-embedded {
  position: relative !important;
  min-height: 360px !important;
  margin-top: 18px !important;
  perspective: 2400px !important;
  transform-style: preserve-3d !important;
  overflow: visible !important;
}

.room-panels-embedded .room-panel {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.room-panels-embedded .room-panel[hidden] {
  display: block !important;
}

.room-panels-embedded .room-panel .room-page {
  position: absolute !important;
  inset: 0 !important;
  min-height: 360px !important;
  height: 100% !important;
  border-radius: 26px !important;
  padding: clamp(24px, 4vw, 40px) !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,244,237,.97)) !important;
  border: 1px solid rgba(18,34,56,.10) !important;
  box-shadow: 0 20px 54px rgba(10,24,44,.10), inset 0 1px 0 rgba(255,255,255,.55) !important;
  transform-origin: left center !important;
  transform-style: preserve-3d !important;
  backface-visibility: hidden !important;
  will-change: transform, opacity;
}

.room-panels-embedded .room-panel .room-page::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 30px;
  border-radius: 26px 0 0 26px;
  background: linear-gradient(90deg, rgba(10,24,44,.13), rgba(10,24,44,.06) 45%, rgba(255,255,255,0));
  pointer-events: none;
  z-index: 2;
}

.room-panels-embedded .room-panel .room-page::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 55%, rgba(10,24,44,.10) 78%, rgba(10,24,44,.22) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.room-panels-embedded .room-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 3;
}

.room-panels-embedded .room-panel.is-under {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.room-panels-embedded .room-panel.is-turning {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.room-panels-embedded .room-panel.is-active .room-page {
  transform: rotateY(0deg) translateX(0) scale(1);
}

.room-panels-embedded .room-panel.is-under .room-page {
  transform: scale(.993);
  filter: brightness(.985);
}

.room-panels-embedded .room-panel.is-turning .room-page {
  animation: alnoaPhysicalPageTurnV30 1.12s cubic-bezier(.42, 0, .16, 1) forwards !important;
}

.room-panels-embedded .room-panel.is-turning .room-page::after {
  animation: alnoaPhysicalPageShadeV30 1.12s ease-in-out forwards !important;
}

@keyframes alnoaPhysicalPageTurnV30 {
  0% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) scale(1);
    box-shadow: 0 20px 54px rgba(10,24,44,.10), inset 0 1px 0 rgba(255,255,255,.55);
  }
  28% {
    opacity: 1;
    transform: rotateY(-24deg) translateX(-1.5%) scale(1);
    box-shadow: 22px 14px 34px rgba(10,24,44,.12), inset 0 1px 0 rgba(255,255,255,.5);
  }
  62% {
    opacity: .98;
    transform: rotateY(-68deg) translateX(-3%) scale(.996);
    box-shadow: 34px 14px 42px rgba(10,24,44,.16), inset 0 1px 0 rgba(255,255,255,.42);
  }
  100% {
    opacity: 0;
    transform: rotateY(-112deg) translateX(-4%) scale(.992);
    box-shadow: 38px 10px 50px rgba(10,24,44,.18), inset 0 1px 0 rgba(255,255,255,.30);
  }
}

@keyframes alnoaPhysicalPageShadeV30 {
  0% { opacity: .05; transform: translateX(0) scaleX(1); }
  40% { opacity: .34; transform: translateX(-8%) scaleX(1.04); }
  100% { opacity: .52; transform: translateX(-18%) scaleX(1.08); }
}

@media (max-width: 560px) {
  .embedded-room-explorer .room-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .room-panels-embedded {
    min-height: 350px !important;
  }
  .room-panels-embedded .room-panel .room-page {
    min-height: 350px !important;
  }
}


/* v31 – Autoslider-Fix: Progress/Timing sichtbar neu starten */
.embedded-room-explorer .room-tab.is-active::after {
  animation-name: alnoaRoomProgressV31 !important;
  animation-duration: 10s !important;
  animation-timing-function: linear !important;
  animation-fill-mode: forwards !important;
}

@keyframes alnoaRoomProgressV31 {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}


/* v33 – ALNOA Farbanpassung für „Über uns“-Karten */
.person-card {
  background:
    linear-gradient(180deg, rgba(19, 34, 53, .92), rgba(13, 27, 42, .86)) !important;
  border-color: rgba(230, 211, 179, .22) !important;
  box-shadow:
    0 22px 60px rgba(2, 8, 18, .20),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.person-card .eyebrow {
  color: #E6D3B3 !important;
  opacity: 1 !important;
}

.person-card h3 {
  color: #D8C8B0 !important;
  opacity: 1 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.04);
}

.person-card p:not(.eyebrow) {
  color: #EFE9DD !important;
  opacity: 1 !important;
}

/* kleine Qualitätskorrektur für Lesbarkeit auf dunklen Karten */
.person-card h3 + p,
.person-card p {
  max-width: 48ch;
}


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

.social-follow-section {
  padding-top: 32px;
  padding-bottom: 56px;
}

.social-follow-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.social-follow-heading {
  margin: 0;
  color: #F8F6F2;
}

.social-follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.social-follow-link {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E6D3B3;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(230,211,179,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
  -webkit-tap-highlight-color: transparent;
}

.social-follow-link svg {
  width: 34px;
  height: 34px;
}

.social-follow-link:hover,
.social-follow-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(230,211,179,0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 42px rgba(0,0,0,0.18);
}

@media (max-width: 767px) {
  .social-follow-section {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .social-follow-links {
    gap: 16px;
  }

  .social-follow-link {
    width: 84px;
    height: 84px;
    border-radius: 22px;
  }

  .social-follow-link svg {
    width: 30px;
    height: 30px;
  }
}


/* v35 – App card links, legal disclaimer, full privacy */
.action-row {
  display: none !important;
}

.difference-title-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  margin: 8px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(230, 211, 179, .26);
  background: rgba(255, 255, 255, .055);
  color: #F8F6F2;
  font-weight: 700;
  text-decoration: none;
  transition: transform .32s ease, background-color .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.difference-title-link:hover,
.difference-title-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(230, 211, 179, .12);
  border-color: rgba(230, 211, 179, .48);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  outline: none;
}

.one-up {
  grid-template-columns: 1fr;
}

.one-up > article {
  max-width: 760px;
}

.legal-grid {
  align-items: start;
}

.legal-panel {
  min-height: auto;
}

.legal-panel p + p {
  margin-top: 16px;
}

.legal-panel-wide {
  grid-column: 1 / -1;
}

.privacy-content {
  display: grid;
  gap: 22px;
}

.privacy-content section {
  display: grid;
  gap: 10px;
}

.privacy-content h4 {
  margin: 0;
  color: #D8C8B0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.privacy-content p {
  margin: 0;
  color: #EFE9DD;
  opacity: .92;
}

.privacy-note {
  margin-top: 4px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(230,211,179,.16);
  color: #D8C8B0 !important;
}

@media (max-width: 760px) {
  .difference-title-link {
    min-height: 42px;
    padding: 0 18px;
  }

  .one-up > article {
    max-width: none;
  }
}


/* v36 – Datenschutz hinter dem bestehenden Reiter/Kasten + Für-wen-Label */
.privacy-details {
  padding: 0 !important;
  overflow: hidden;
}

.privacy-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
}

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

.privacy-summary span:first-child {
  display: grid;
  gap: 10px;
}

.privacy-summary .eyebrow {
  color: #E6D3B3;
  margin: 0;
}

.privacy-summary strong {
  display: block;
  color: #D8C8B0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.privacy-summary em {
  color: #EFE9DD;
  font-style: normal;
  max-width: 76ch;
  opacity: .86;
  line-height: 1.65;
}

.privacy-summary-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(230, 211, 179, .24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E6D3B3;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform .3s ease, background-color .3s ease;
}

.privacy-details[open] .privacy-summary-icon {
  transform: rotate(45deg);
  background: rgba(230, 211, 179, .08);
}

.privacy-details .privacy-content {
  padding: 0 clamp(28px, 4vw, 44px) clamp(30px, 4vw, 46px);
}

@media (max-width: 700px) {
  .privacy-summary {
    align-items: flex-start;
    padding: 28px 24px;
  }

  .privacy-summary-icon {
    width: 38px;
    height: 38px;
  }

  .privacy-details .privacy-content {
    padding: 0 24px 32px;
  }
}


/* v37 – Datenschutz als eigene Seite */
.legal-page-hero {
  padding-bottom: clamp(42px, 6vw, 80px);
}

.legal-page-hero h1 {
  max-width: 900px;
  margin: 18px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: .92;
  color: #F8F6F2;
}

.legal-page-hero .lead {
  max-width: 860px;
}

.legal-page-section {
  padding-top: 0;
}

.privacy-page-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
}

.privacy-page-panel .privacy-content {
  display: grid;
  gap: 28px;
}

.privacy-page-panel .privacy-content section {
  display: grid;
  gap: 10px;
}

.privacy-page-panel .privacy-content h4 {
  margin: 0;
  color: #D8C8B0;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.privacy-page-panel .privacy-content p {
  margin: 0;
  color: #EFE9DD;
  opacity: .92;
  line-height: 1.75;
}

.privacy-page-panel .privacy-note {
  margin-top: 8px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(230,211,179,.16);
  color: #D8C8B0 !important;
}

@media (max-width: 720px) {
  .privacy-page-panel {
    padding: 28px 22px;
  }
}


/* v39 – visuell stimmigere Kacheln + sprachsaubere Entdecken-Buttons */
.difference-cards.compact {
  align-items: stretch;
  gap: 18px;
}
.difference-cards.compact article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  min-height: 196px;
  padding: 24px 24px 26px;
}
.difference-cards.compact article span {
  margin-bottom: 0;
}
.difference-cards.compact article p {
  max-width: 30ch;
  line-height: 1.52;
}
.difference-title-link {
  margin: 0;
  padding: 0 18px;
  min-height: 40px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .difference-cards.compact article {
    min-height: auto;
    gap: 12px;
  }
  .difference-cards.compact article p {
    max-width: none;
  }
  .difference-title-link {
    min-height: 44px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    padding: 8px 16px;
  }
}


/* v40 – Impressum + Haftungsausschluss auf eigener Seite */
.legal-page-grid {
  align-items: start;
}

.legal-page-grid .legal-panel {
  min-height: auto;
}

.legal-page-grid .legal-panel p + p {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .legal-page-grid {
    grid-template-columns: 1fr;
  }
}


/* v41 – Legal pages + Instagram hardfix */
body.home-page #contact.footer-panels {
  display: none !important;
}

.legal-page-hero h1 {
  color: #F8F6F2;
}

.social-follow-link[data-social-link="instagram"] {
  cursor: pointer;
}

.social-follow-link[data-social-link="instagram"]::after {
  content: "";
}

.footer-nav a[href="impressum.html"],
.footer-nav a[href="datenschutz.html"] {
  cursor: pointer;
}


/* v42 – Cache Reset + Legal/Instagram hardfix */
body.home-page #contact.footer-panels,
body.home-page #impressum,
body.home-page #disclaimer,
body.home-page #privacy {
  display: none !important;
}

.social-follow-link[data-social-link="instagram"] {
  cursor: pointer;
}

.cache-reset-note {
  display: none !important;
}


/* v43 – finaler Instagram-Sprachfix */
.social-follow-link[data-social-link="instagram"] {
  cursor: pointer;
}


/* v44 – helle Video-Umrandung */
.video-card,
.video-card-main,
.video-frame {
  border-color: #FFF8F4 !important;
}

.video-card-main {
  box-shadow:
    0 0 0 1px rgba(255, 248, 244, 0.68),
    0 34px 90px rgba(0, 0, 0, 0.24) !important;
}

.video-frame {
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 244, 0.72),
    0 18px 52px rgba(0, 0, 0, 0.20) !important;
}

.video-frame::before,
.video-frame::after,
.video-card::before,
.video-card::after {
  border-color: rgba(255, 248, 244, 0.78) !important;
}


/* v45 – Warteliste, Noah-Erlebnis, Roadmap und Social-Einladung */
.section-head-centered {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.waitlist-section,
.noah-experience-section,
.social-invite-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 211, 179, .28), transparent 24rem),
    linear-gradient(180deg, #FFF8F4 0%, #F8F6F2 100%);
  color: var(--text-dark);
}

.waitlist-card,
.social-invite-card {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 36px;
  padding: clamp(32px, 6vw, 68px);
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(181, 132, 58, .18);
  box-shadow: 0 28px 80px rgba(34, 50, 71, .10);
  text-align: center;
}

.waitlist-copy h2,
.social-invite-card h2,
.noah-experience-section h2 {
  margin: 12px 0 18px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: .96;
}

.waitlist-copy p:not(.eyebrow),
.social-invite-card > p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.waitlist-form {
  margin: clamp(24px, 4vw, 38px) auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  max-width: 660px;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(34, 50, 71, .16);
  background: rgba(255, 255, 255, .78);
  color: var(--text-dark);
  padding: 0 22px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.waitlist-form input::placeholder {
  color: rgba(34, 50, 71, .48);
}

.waitlist-form input:focus {
  border-color: rgba(181,132,58,.55);
  box-shadow: 0 0 0 4px rgba(181,132,58,.12);
}

.waitlist-form button,
.social-invite-primary {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: linear-gradient(180deg, #C49A5A, #B5843A);
  color: #FFF8F4;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(181,132,58,.22);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible,
.social-invite-primary:hover,
.social-invite-primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 20px 42px rgba(181,132,58,.28);
  outline: none;
}

.waitlist-success {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: #7A5420;
  font-weight: 700;
}

.noah-experience-section {
  padding-top: clamp(72px, 9vw, 118px);
}

.noah-conversation {
  max-width: 860px;
  margin: clamp(34px, 5vw, 56px) auto 0;
  display: grid;
  gap: 22px;
}

.conversation-step {
  display: grid;
  gap: 12px;
}

.conversation-step-label {
  margin: 0;
  color: #B5843A;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.chat-bubble {
  max-width: min(78%, 620px);
  padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 28px);
  border-radius: 26px;
  line-height: 1.62;
  box-shadow: 0 18px 46px rgba(34, 50, 71, .10);
}

.user-bubble {
  justify-self: end;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(34, 50, 71, .10);
  color: rgba(34, 50, 71, .86);
  border-bottom-right-radius: 10px;
}

.noah-bubble {
  justify-self: start;
  background: #102033;
  color: #FFF8F4;
  border: 1px solid rgba(230, 211, 179, .18);
  border-bottom-left-radius: 10px;
}

.final-bubble {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.roadmap-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(230,211,179,.10), transparent 24rem),
    linear-gradient(180deg, #081321 0%, #0D1B2A 100%);
  color: var(--text-light);
}

.roadmap-intro {
  max-width: 820px;
}

.roadmap-intro h2 {
  margin: 14px 0 18px;
  color: #F8F6F2;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: .96;
}

.roadmap-intro p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 5vw, 56px);
}

.roadmap-card {
  min-height: 220px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(230,211,179,.16);
  box-shadow: 0 24px 70px rgba(2,8,18,.20);
}

.roadmap-phase {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.roadmap-card p:not(.roadmap-phase) {
  margin: 0;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1.04;
}

.social-invite-section {
  padding-top: clamp(72px, 9vw, 116px);
  padding-bottom: clamp(72px, 9vw, 116px);
}

.social-invite-actions {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: clamp(26px, 4vw, 38px);
}

.social-invite-secondary {
  color: #7A5420;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(181,132,58,.34);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}

.social-invite-secondary:hover,
.social-invite-secondary:focus-visible {
  color: #102033;
  border-color: #102033;
  outline: none;
}

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

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

@media (max-width: 700px) {
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form button,
  .social-invite-primary {
    width: 100%;
    justify-content: center;
  }

  .chat-bubble {
    max-width: 92%;
  }

  .waitlist-card,
  .social-invite-card {
    padding: 30px 22px;
    border-radius: 28px;
  }
}


/* v46 – Go-Live Cleanup */
.coming-soon-box {
  display: none !important;
}

.waitlist-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(34, 50, 71, .62);
  font-size: .92rem;
}

.legal-placeholder-list {
  display: grid;
  gap: 14px;
}

.legal-placeholder-list p {
  margin: 0;
}

.legal-placeholder-list strong {
  color: #D8C8B0;
}

/* v47 – Waitlist Double-Opt-In Backend */
.waitlist-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}.waitlist-form button:disabled{opacity:.72;cursor:wait;transform:none!important}.waitlist-note{grid-column:1/-1;margin:4px 0 0;color:rgba(34,50,71,.62);font-size:.92rem}.legal-placeholder-list{display:grid;gap:14px}.legal-placeholder-list p{margin:0}.legal-placeholder-list strong{color:#D8C8B0}.waitlist-status-page{min-height:100vh;display:flex;flex-direction:column}.waitlist-status-main{flex:1;display:grid;place-items:center;padding:clamp(90px,13vw,150px) 0}.waitlist-status-card{max-width:820px;margin:0 auto;border-radius:36px;padding:clamp(34px,6vw,72px);background:rgba(255,248,244,.92);border:1px solid rgba(230,211,179,.44);color:var(--text-dark);text-align:center;box-shadow:0 34px 90px rgba(2,8,18,.22)}.waitlist-status-card h1{margin:14px 0 18px;font-family:var(--font-display);font-size:clamp(3rem,7vw,6.2rem);line-height:.92;color:var(--text-dark)}.waitlist-status-card p:not(.eyebrow){margin:0 auto;max-width:52ch;color:rgba(34,50,71,.78);font-size:clamp(1.08rem,1.7vw,1.25rem)}.waitlist-status-card .button{margin-top:32px}


/* v49 – Website refinements */
.brand-video-arrow-link {
  display: none !important;
}

.noah-trait-experience {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.noah-trait-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.noah-trait-tab {
  appearance: none;
  border: 1px solid rgba(230, 211, 179, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: var(--text-light);
  padding: 10px 16px;
  font: inherit;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .28s ease, border-color .28s ease, color .28s ease, transform .28s ease;
}

.noah-trait-tab:hover,
.noah-trait-tab:focus-visible {
  border-color: rgba(230, 211, 179, .46);
  transform: translateY(-1px);
  outline: none;
}

.noah-trait-tab.is-active {
  background: rgba(230, 211, 179, .92);
  border-color: rgba(230, 211, 179, .92);
  color: #102033;
}

.noah-trait-stage {
  position: relative;
  min-height: 128px;
  border-radius: 28px;
  border: 1px solid rgba(230, 211, 179, .16);
  background:
    radial-gradient(circle at 12% 20%, rgba(230, 211, 179, .10), transparent 18rem),
    rgba(255, 255, 255, .028);
  box-shadow: 0 24px 70px rgba(2, 8, 18, .20);
  overflow: hidden;
}

.noah-trait-panel {
  padding: clamp(22px, 3vw, 32px);
  animation: noahTraitFade .48s ease both;
}

.noah-trait-panel p {
  margin: 0;
  color: rgba(239, 233, 221, .86);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

@keyframes noahTraitFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-invite-secondary[hidden] {
  display: none !important;
}

.legal-address-block {
  display: grid;
  gap: 18px;
}

.legal-address-block p {
  margin: 0;
}

.legal-address-block a {
  color: var(--champagne);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 211, 179, .42);
}

.legal-address-block a:hover,
.legal-address-block a:focus-visible {
  border-color: var(--champagne);
}

@media (max-width: 700px) {
  .noah-trait-tabs {
    gap: 8px;
  }

  .noah-trait-tab {
    padding: 9px 13px;
    font-size: .88rem;
  }

  .noah-trait-stage {
    min-height: 150px;
  }
}


/* v51 – Über-uns Story-Bilder */
.about-story-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(230, 211, 179, .10), transparent 24rem),
    linear-gradient(180deg, #081321 0%, #0D1B2A 100%);
}

.about-story-head {
  max-width: 860px;
}

.about-story-head h2 {
  margin-bottom: 18px;
}

.about-story-head p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}

.about-story-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(22px, 2.3vw, 34px);
  background: rgba(255, 248, 244, .045);
  border: 1px solid rgba(230, 211, 179, .20);
  box-shadow: 0 28px 90px rgba(2, 8, 18, .28);
  transform: translateZ(0);
}

.about-story-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 244, .10);
}

.about-story-card-offset {
  margin-top: clamp(34px, 5vw, 70px);
}

.about-story-card:nth-child(2),
.about-story-card:nth-child(4) {
  margin-top: clamp(18px, 3vw, 44px);
}

@media (max-width: 1180px) {
  .about-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    margin-inline: auto;
  }

  .about-story-card-offset,
  .about-story-card:nth-child(2),
  .about-story-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
}


/* v52 – Über-uns Reihenfolge & Weblayout-Optimierung */
.about-story-grid-balanced {
  max-width: 1180px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(210px, 268px));
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
}

.about-story-grid-balanced .about-story-card {
  margin-top: 0 !important;
  border-radius: clamp(24px, 2.4vw, 34px);
}

.about-story-card-family {
  transform: translateY(-8px);
}

.about-story-card-franziska {
  transform: translateY(26px);
}

.about-story-card-arthur {
  transform: translateY(8px);
}

.about-story-card-noah {
  transform: translateY(26px);
}

.about-story-grid-balanced .about-story-card img {
  width: 100%;
  height: auto;
}

@media (min-width: 1181px) {
  .about-story-grid-balanced {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .about-story-card-family,
  .about-story-card-noah {
    max-width: 258px;
  }

  .about-story-card-franziska,
  .about-story-card-arthur {
    max-width: 268px;
  }
}

@media (max-width: 1180px) {
  .about-story-grid-balanced {
    grid-template-columns: repeat(2, minmax(0, 360px));
    max-width: 780px;
    align-items: start;
  }

  .about-story-card-family,
  .about-story-card-franziska,
  .about-story-card-arthur,
  .about-story-card-noah {
    transform: none;
  }
}

@media (max-width: 680px) {
  .about-story-grid-balanced {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
}

/* v53 – Admin-Benachrichtigung bei bestätigter Wartelisten-Anmeldung */


/* v54 – Kontaktformular, echte Bio-Texte, Buchlink */
.about-bio-section {
  margin-top: clamp(42px, 6vw, 82px);
}

.about-bio-head {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.about-bio-head h3 {
  margin: 10px 0 0;
  color: #F8F6F2;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: .98;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.about-bio-card {
  border-radius: 30px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(230,211,179,.18);
  box-shadow: 0 26px 80px rgba(2,8,18,.20);
}

.about-bio-card h4 {
  margin: 10px 0 18px;
  color: #F8F6F2;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.about-bio-card p {
  color: rgba(239,233,221,.84);
  line-height: 1.72;
}

.about-bio-card-featured {
  background:
    radial-gradient(circle at 15% 12%, rgba(230,211,179,.13), transparent 18rem),
    rgba(255,255,255,.045);
}

.about-book-link {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(230,211,179,.30);
  background: rgba(255,248,244,.06);
  color: #FFF8F4;
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.about-book-link span {
  color: var(--champagne);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-book-link strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
}

.about-book-link:hover,
.about-book-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,211,179,.62);
  background: rgba(255,248,244,.09);
  outline: none;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(230, 211, 179, .26), transparent 24rem),
    linear-gradient(180deg, #FFF8F4 0%, #F8F6F2 100%);
  color: var(--text-dark);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-radius: 38px;
  padding: clamp(30px, 5vw, 68px);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(181,132,58,.18);
  box-shadow: 0 32px 90px rgba(34,50,71,.10);
}

.contact-copy h2 {
  margin: 12px 0 18px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .96;
}

.contact-copy p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--muted-dark);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact-direct a {
  width: fit-content;
  color: #7A5420;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(181,132,58,.32);
}

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

.contact-form label {
  color: rgba(34,50,71,.78);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(34,50,71,.14);
  background: rgba(255,255,255,.78);
  color: var(--text-dark);
  padding: 15px 18px;
  font: inherit;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(181,132,58,.55);
  box-shadow: 0 0 0 4px rgba(181,132,58,.12);
}

.contact-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: linear-gradient(180deg, #C49A5A, #B5843A);
  color: #FFF8F4;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(181,132,58,.22);
}

.contact-form button:disabled {
  opacity: .72;
  cursor: wait;
}

.contact-status {
  margin: 4px 0 0;
  color: #7A5420;
  font-weight: 800;
}

.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 920px) {
  .contact-card,
  .about-bio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-card {
    padding: 28px 22px;
    border-radius: 30px;
  }
}


/* v55 – Über-uns: Bilder als semantische HTML-Karten, keine sichtbaren Bio-Texte darunter */
.about-bio-section,
.about-bio-grid,
.about-bio-card,
.about-bio-head {
  display: none !important;
}

.about-story-grid-balanced figure,
.about-story-grid-balanced a.about-story-card {
  margin: 0;
}

.about-story-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-story-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.about-story-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, rgba(8,19,33,.10));
  opacity: 0;
  transition: opacity .28s ease;
}

.about-story-card-link:hover::before,
.about-story-card-link:focus-visible::before {
  opacity: 1;
}

.about-story-card-link:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,248,244,.88),
    0 28px 90px rgba(2, 8, 18, .28);
}


/* v56 – Roadmap-Format und sichtbarer Buch-Button */
.roadmap-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.roadmap-card p:not(.roadmap-phase) {
  max-width: 100%;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

@media (min-width: 901px) {
  .roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roadmap-card {
    min-height: 214px;
    padding: clamp(26px, 2.4vw, 32px);
  }
}

.about-book-chip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 244, .90);
  border: 1px solid rgba(181, 132, 58, .28);
  color: #102033;
  box-shadow: 0 18px 40px rgba(2, 8, 18, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.about-book-chip span {
  color: #7A5420;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-book-chip strong {
  color: #102033;
  font-size: .9rem;
  font-weight: 900;
}

.about-story-card-link:hover .about-book-chip,
.about-story-card-link:focus-visible .about-book-chip {
  transform: translateY(-2px);
  background: rgba(255, 248, 244, .96);
  border-color: rgba(181, 132, 58, .46);
}

@media (max-width: 680px) {
  .roadmap-card p:not(.roadmap-phase) {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    overflow-wrap: normal;
  }

  .about-book-chip {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}


/* v57 – Über-uns Bilder größer und lesbarer im Browser */
.about-story-section .container {
  max-width: 1120px;
}

.about-story-grid-balanced {
  grid-template-columns: repeat(2, minmax(300px, 430px));
  max-width: 940px;
  justify-content: center;
  align-items: start;
  gap: clamp(26px, 3.8vw, 46px);
  padding-top: clamp(10px, 2vw, 22px);
}

.about-story-grid-balanced .about-story-card {
  width: 100%;
  max-width: 430px;
  margin-top: 0 !important;
}

.about-story-card-family,
.about-story-card-franziska,
.about-story-card-arthur,
.about-story-card-noah {
  transform: none;
}

@media (min-width: 1181px) {
  .about-story-card-family,
  .about-story-card-franziska,
  .about-story-card-arthur,
  .about-story-card-noah {
    max-width: 430px;
  }

  .about-story-card-franziska,
  .about-story-card-noah {
    transform: translateY(38px);
  }

  .about-story-card-arthur {
    transform: translateY(-4px);
  }
}

@media (max-width: 920px) {
  .about-story-grid-balanced {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
    gap: 28px;
  }

  .about-story-grid-balanced .about-story-card {
    max-width: 520px;
  }

  .about-story-card-franziska,
  .about-story-card-noah,
  .about-story-card-arthur {
    transform: none;
  }
}

@media (max-width: 560px) {
  .about-story-grid-balanced {
    max-width: 100%;
  }

  .about-story-grid-balanced .about-story-card {
    max-width: 100%;
    border-radius: 26px;
  }

  .about-book-chip {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}


/* v58 – Social Media: nur Instagram sichtbar */
.social-follow-links {
  justify-content: flex-start;
}

.social-follow-link[hidden],
.social-follow-link[data-social-placeholder] {
  display: none !important;
}


/* v59 – Noah Website-Integration: subtiler iFrame-Kontaktpunkt */
.noah-live-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 211, 179, .22), transparent 24rem),
    linear-gradient(180deg, #FFF8F4 0%, #F8F6F2 100%);
  color: var(--text-dark);
}

.noah-live-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  border-radius: 38px;
  padding: clamp(30px, 5vw, 68px);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(181,132,58,.18);
  box-shadow: 0 32px 90px rgba(34,50,71,.10);
}

.noah-live-copy h2 {
  margin: 12px 0 18px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .96;
}

.noah-live-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted-dark);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.noah-live-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
  max-width: 340px;
}

.noah-live-actions p {
  margin: 0;
  color: rgba(34, 50, 71, .64);
  font-size: .92rem;
  line-height: 1.55;
}

.noah-live-open {
  min-width: 190px;
}

.noah-chat-modal[hidden] { display: none !important; }

.noah-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.noah-chat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 33, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.noah-chat-shell {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, 92vh);
  border-radius: 34px;
  overflow: hidden;
  background: #FFF8F4;
  border: 1px solid rgba(230, 211, 179, .42);
  box-shadow: 0 40px 120px rgba(2, 8, 18, .42);
  display: grid;
  grid-template-rows: auto minmax(420px, 70vh);
}

.noah-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 20px;
  background: #0D1B2A;
  color: #FFF8F4;
}

.noah-chat-header h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.noah-chat-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(230,211,179,.34);
  background: rgba(255,255,255,.06);
  color: #FFF8F4;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.noah-chat-frame-wrap {
  position: relative;
  min-height: 420px;
  background: #FFF8F4;
}

.noah-chat-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #FFF8F4;
}

.noah-chat-fallback {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 0;
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(13,27,42,.06);
  color: #102033;
  pointer-events: none;
}

.noah-chat-fallback p {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.noah-chat-fallback span {
  color: rgba(34,50,71,.68);
}

body.noah-chat-is-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .noah-live-card {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding: 28px 22px;
  }

  .noah-chat-shell {
    border-radius: 26px;
    grid-template-rows: auto minmax(420px, 82vh);
  }
}

/* v60 – Noah Code-Review-Fixes: Frontend cache-bust only */

/* v61 – Noah provider-ready safe frontend. */

/* v62 – Noah provider logging guide release. */

/* v63 – Noah PHP provider bridge. */


/* v64 – Journal preview modal */
.journal-preview-modal[hidden] { display: none; }

.journal-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.journal-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, .54);
  backdrop-filter: blur(10px);
}

.journal-preview-shell {
  position: relative;
  width: min(940px, 100%);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(230, 211, 179, .34), transparent 42%),
    linear-gradient(180deg, #FFF8F4, #F8F6F2);
  color: #102033;
  border: 1px solid rgba(181, 132, 58, .2);
  box-shadow: 0 34px 110px rgba(13, 27, 42, .28);
}

.journal-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px) clamp(24px, 5vw, 54px) 18px;
  border-bottom: 1px solid rgba(181, 132, 58, .16);
}

.journal-preview-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 32, 51, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: #102033;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(16, 32, 51, .08);
}

.journal-preview-body {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 4vw, 44px) clamp(24px, 5vw, 54px) clamp(28px, 5vw, 54px);
  overflow-y: auto;
  max-height: calc(min(86vh, 820px) - 112px);
}

.journal-preview-lead {
  max-width: 720px;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.42;
  color: rgba(16, 32, 51, .84);
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journal-preview-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(181, 132, 58, .16);
  box-shadow: 0 16px 40px rgba(16, 32, 51, .06);
}

.journal-preview-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #B5843A;
}

.journal-preview-card span {
  display: block;
  color: rgba(16, 32, 51, .74);
  line-height: 1.52;
}

.journal-preview-note {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 28px;
  background: #0D1B2A;
  color: #FFF8F4;
}

.journal-preview-note p {
  margin: 0;
  color: rgba(255, 248, 244, .82);
  line-height: 1.62;
}

.journal-preview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.journal-preview-soft {
  border: 0;
  background: transparent;
  color: rgba(16, 32, 51, .64);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 10px 4px;
}

body.journal-preview-is-open { overflow: hidden; }

@media (max-width: 760px) {
  .journal-preview-modal { padding: 10px; }
  .journal-preview-shell { border-radius: 26px; max-height: 92vh; }
  .journal-preview-header { padding: 24px 22px 14px; }
  .journal-preview-body { padding: 22px; max-height: calc(92vh - 104px); }
  .journal-preview-grid { grid-template-columns: 1fr; }
  .journal-preview-close { width: 42px; height: 42px; }
}


/* v65 – Noah modal single header fix
   The iframe /noah-embed.html already contains the Noah greeting.
   The parent modal now keeps only the close control to avoid duplicate headings. */
.noah-chat-header.noah-chat-header-minimal {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.noah-chat-header.noah-chat-header-minimal .noah-chat-close {
  pointer-events: auto;
  background: rgba(13, 27, 42, .68);
  color: #FFF8F4;
  border-color: rgba(255, 248, 244, .36);
  backdrop-filter: blur(10px);
}

.noah-chat-shell.noah-chat-shell-single-header {
  overflow: hidden;
}

.noah-chat-shell.noah-chat-shell-single-header .noah-chat-frame-wrap {
  border-top: 0;
}

.noah-chat-shell.noah-chat-shell-single-header .noah-chat-frame {
  display: block;
  width: 100%;
}

@media (max-width: 620px) {
  .noah-chat-header.noah-chat-header-minimal {
    top: 12px;
    right: 12px;
  }
}


/* v67 – iOS Noah reel fix */
.noah-media video.noah-reel {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1080 / 1348;
  object-fit: cover;
  background: #f4eee6;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.noah-media .noah-reel::-webkit-media-controls {
  display: none !important;
}



/* v68 – ALNOA Journal SEO Foundation */
.journal-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(230, 211, 179, .16), transparent 32%),
    linear-gradient(180deg, #0D1B2A 0%, #102033 44%, #F8F6F2 44%, #FFF8F4 100%);
  color: #102033;
}

.journal-page .site-header {
  background: rgba(13, 27, 42, .86);
  backdrop-filter: blur(18px);
}

.journal-hero {
  padding: clamp(92px, 14vw, 156px) 0 clamp(52px, 8vw, 88px);
  color: #FFF8F4;
}

.journal-hero-inner {
  max-width: 980px;
}

.journal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #E6D3B3;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.journal-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  line-height: .82;
  font-weight: 500;
  letter-spacing: -.06em;
}

.journal-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 248, 244, .78);
  font-size: clamp(1.16rem, 2vw, 1.54rem);
  line-height: 1.55;
}

.journal-main {
  padding: clamp(42px, 7vw, 82px) 0 clamp(70px, 9vw, 116px);
}

.journal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.journal-article {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(181,132,58,.18);
  box-shadow: 0 28px 90px rgba(16,32,51,.1);
}

.journal-article h2 {
  margin: 46px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: .96;
  letter-spacing: -.035em;
  color: #0D1B2A;
}

.journal-article h2:first-child {
  margin-top: 0;
}

.journal-article h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  color: #0D1B2A;
}

.journal-article p,
.journal-article li {
  color: rgba(16,32,51,.76);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.journal-article ul,
.journal-article ol {
  padding-left: 1.2em;
}

.journal-article blockquote {
  margin: 34px 0;
  padding: clamp(20px, 3vw, 32px);
  border-left: 3px solid #B5843A;
  border-radius: 24px;
  background: rgba(230, 211, 179, .22);
  color: #0D1B2A;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.journal-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.journal-card-link {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  background: #FFF8F4;
  border: 1px solid rgba(181,132,58,.18);
  text-decoration: none;
  color: #102033;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.journal-card-link:hover,
.journal-card-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(16,32,51,.12);
  border-color: rgba(181,132,58,.44);
  outline: none;
}

.journal-card-link strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: .92;
  letter-spacing: -.04em;
}

.journal-card-link span {
  color: rgba(16,32,51,.68);
  line-height: 1.55;
}

.journal-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.journal-side-card {
  padding: 22px;
  border-radius: 28px;
  background: #0D1B2A;
  color: #FFF8F4;
  box-shadow: 0 24px 70px rgba(13,27,42,.16);
}

.journal-side-card.light {
  background: rgba(255,255,255,.84);
  color: #102033;
  border: 1px solid rgba(181,132,58,.16);
}

.journal-side-card p {
  margin: 10px 0 0;
  color: inherit;
  opacity: .78;
  line-height: 1.58;
}

.journal-link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.journal-link-list a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  opacity: .82;
}

.journal-link-list a:hover,
.journal-link-list a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  outline: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 248, 244, .64);
  font-size: .9rem;
}

.breadcrumbs a {
  color: rgba(255, 248, 244, .78);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #FFF8F4;
  text-decoration: underline;
}

.journal-faq {
  margin-top: 42px;
  display: grid;
  gap: 14px;
}

.journal-faq details {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(248,246,242,.74);
  border: 1px solid rgba(181,132,58,.14);
}

.journal-faq summary {
  cursor: pointer;
  color: #0D1B2A;
  font-weight: 900;
}

.journal-author-box {
  margin-top: 44px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(13,27,42,.06);
  border: 1px solid rgba(13,27,42,.08);
}

.journal-cta {
  margin-top: 42px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 30px;
  background: #0D1B2A;
  color: #FFF8F4;
}

.journal-cta h2,
.journal-cta p {
  color: inherit;
}

.journal-cta h2 {
  margin-top: 0;
}

.journal-cta p {
  opacity: .78;
}

.journal-footer-link {
  font-weight: 800;
}

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

  .journal-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 680px) {
  .journal-hub-grid,
  .journal-sidebar {
    grid-template-columns: 1fr;
  }

  .journal-article {
    padding: 24px;
    border-radius: 26px;
  }

  .journal-card-link {
    min-height: auto;
  }
}


/* v71 – Subtle footer credit */
.footer-credit {
  max-width: 46ch;
  margin: 12px 0 0;
  color: rgba(255, 248, 244, 0.46);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.035em;
}

.footer-credit strong {
  font-weight: 300;
  color: rgba(230, 211, 179, 0.72);
}

@media (max-width: 767px) {
  .footer-credit {
    max-width: 100%;
    margin-top: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.025em;
  }
}


/* v72 – Keep footer credit name together */
.footer-credit-name {
  white-space: nowrap;
  font-weight: 300;
  color: rgba(230, 211, 179, 0.72);
}

.footer-credit strong.footer-credit-name {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .footer-credit {
    max-width: 72ch;
  }
}


/* v76 – freiwillige technische Rollenangabe klar vom Anbieterblock getrennt */
.legal-optional-credit {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 211, 179, 0.22);
  color: rgba(248, 246, 242, 0.82);
}
