:root {
  --primary: #53B0AE;
  --accent:  #003B46;
  --bg:      #ffffff;
  --bg-soft: #f2f7f7;
  --text:    #003B46;
  --muted:   rgba(0,59,70,.62);
  --line:    rgba(0,59,70,.10);
  --shadow:  0 8px 32px rgba(0,59,70,.10);
  --r:       16px;
  --max:     1120px;
}

*, *::before, *::after { box-sizing: border-box }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none }
img { display: block; max-width: 100% }

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

/* ─── Header ──────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand img {
  height: 36px;
  width: auto;
  transition: opacity .2s;
}
.brand img:hover { opacity: .82 }

nav.desktop { display: none }
nav.desktop a {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--text);
  transition: background .15s;
}
nav.desktop a:hover { background: var(--bg-soft) }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  -webkit-tap-highlight-color: transparent;
  border: none;
}
.btn:active { transform: scale(.98) }
.btn.primary {
  background: var(--primary);
  color: #fff;
}
.btn.primary:hover { background: var(--accent) }
.btn.secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn.secondary:hover { background: var(--bg-soft) }
.btn.ghost {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn.ghost:hover { background: rgba(255,255,255,.25) }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:active { transform: scale(.97) }
.hamburger-lines {
  width: 18px; height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-lines span {
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  display: block;
}

/* Mobile drawer */
.drawer {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
}
.drawer a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text);
  transition: background .15s;
}
.drawer a:hover { background: var(--bg-soft) }
.drawer .cta {
  margin: 10px 14px 0;
  display: flex;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: background .15s;
}
.drawer .cta:hover { background: var(--accent) }

/* ─── Hero Banner ─────────────────────────────────────────── */
.hero-banner {
  position: relative;
  height: 82vh;
  min-height: 540px;
  overflow: hidden;
  background: var(--accent);
  margin: 12px 12px 0;
  border-radius: 24px;
}
.hero-banner--page {
  height: 44vh;
  min-height: 320px;
}
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,59,70,.70) 0%,
    rgba(0,59,70,.45) 50%,
    rgba(0,40,50,.68) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 780px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-label {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(83,176,174,.18);
  border: 1px solid rgba(83,176,174,.32);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.hero-logo {
  height: 22px;
  width: auto;
  display: block;
  margin: 0 0 22px;
}
.hero-inner h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
}
@media (min-width: 480px) {
  .hero-inner h1 { letter-spacing: -1.5px }
}
.hero-lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.84);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Section Labels & Titles ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}
.section-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.section-sub {
  margin: 0 0 48px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

/* ─── Intro Section ───────────────────────────────────────── */
.intro-section {
  padding: 80px 0;
  background: var(--bg);
}
.intro-inner {
  max-width: 720px;
}
.intro-inner h2 {
  margin: 0 0 24px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--accent);
}
.intro-text {
  margin-bottom: 32px;
}
.intro-text p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.intro-text p:last-child { margin-bottom: 0 }

/* ─── Schwerpunkte ────────────────────────────────────────── */
.sp-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.sp-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.sp-card {
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,59,70,.14);
}
.sp-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(83,176,174,.12);
  border: 1.5px solid rgba(83,176,174,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
}
.sp-icon-wrap svg {
  width: 30px;
  height: 30px;
}
.sp-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
}
.sp-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Contact Section ─────────────────────────────────────── */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
}
.contact-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.contact-info {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
}
.contact-info h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.contact-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin: 16px 0 6px;
  color: var(--accent);
}
label:first-child { margin-top: 0 }
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(83,176,174,.14);
}
textarea { min-height: 130px; resize: vertical }
.row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  margin-top: 16px;
}
.consent-label input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
}
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.small {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.success, .error {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
}
.success {
  background: rgba(83,176,174,.14);
  border: 1px solid rgba(83,176,174,.28);
  color: var(--accent);
}
.error {
  background: rgba(200,0,0,.07);
  border: 1px solid rgba(200,0,0,.18);
  color: #7a1010;
}

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.foot-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .15s;
}
.foot-links a:hover {
  background: var(--bg-soft);
  color: var(--text);
}
.foot-copy {
  font-size: 12px;
  color: var(--muted);
}
.foot-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

/* ─── Feedback Section ────────────────────────────────────── */
.feedback-section {
  position: relative;
  isolation: isolate;
  padding: 56px 0;
  background: var(--accent);
}
.feedback-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 0;
  background: url('img/trueessence_logo_clean_transparent.webp') center / cover no-repeat;
  opacity: .20;
  pointer-events: none;
}
.feedback-section .container {
  position: relative;
  z-index: 1;
}
.feedback-section .section-label { color: rgba(255,255,255,.50) }
.feedback-section .section-title { color: #fff; font-size: clamp(20px,3vw,28px) }

/* Carousel wrapper */
.fb-carousel {
  overflow: hidden;
  position: relative;
}
.fb-track {
  display: flex;
  gap: 14px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Individual card – 1/3 width (desktop), full width (mobile) */
.fb-item {
  flex: 0 0 calc((100% - 28px) / 3);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 599px) {
  .fb-item { flex: 0 0 100%; }
}

.fb-item-stars {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  letter-spacing: 1px;
}
.fb-item-bereich {
  font-size: 11px;
  color: rgba(255,255,255,.42);
}
.fb-item-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
}
.fb-item-text {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fb-more {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}

/* Controls */
.fb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.fb-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.fb-arrow:hover { background: rgba(255,255,255,.18) }
.fb-dots {
  display: flex;
  gap: 6px;
}
.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.fb-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ─── Statement Section ──────────────────────────────────── */
.statement-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.statement-img {
  position: absolute;
  inset: 0;
}
.statement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,40,50,.82) 0%,
    rgba(0,59,70,.60) 55%,
    rgba(0,30,40,.72) 100%
  );
}
.statement-content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 780px;
}
.statement-eyebrow {
  display: block;
  margin: 0 0 20px;
}
.statement-eyebrow img {
  height: 22px;
  width: auto;
  display: block;
  opacity: .85;
}
.statement-headline {
  margin: 0 0 20px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}
.statement-text {
  margin: 0 0 32px;
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 52ch;
}

@media (min-width: 940px) {
  .statement-section { min-height: 480px }
}

/* ─── Feedback Modal ─────────────────────────────────────── */
.fb-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fb-modal[hidden] { display: none }
.fb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,30,40,.70);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fb-modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 22px;
  padding: 36px 32px 30px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,30,40,.30);
}
.fb-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.fb-modal-close:hover { background: var(--line) }
.fb-modal-stars {
  font-size: 22px;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.fb-modal-area {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.fb-modal-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.fb-modal-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  height: 44vh;
  min-height: 320px;
  overflow: hidden;
  background: var(--accent);
  margin: 12px 12px 0;
  border-radius: 24px;
  background-image: url("img/banner1.jpg");
  background-size: cover;
  background-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,59,70,.72) 0%, rgba(0,59,70,.50) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.page-hero-content h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}

/* ─── About Split ────────────────────────────────────────── */
.about-split-section {
  padding: 64px 0;
  background: var(--bg);
}
.about-split {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-split-text p.section-label { margin-bottom: 10px }
.about-split-text h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--accent);
}
.about-split-text p:not(.section-label) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.about-split-img { width: 100% }

@media (min-width: 760px) {
  .about-split { grid-template-columns: 1fr 1fr }
}

/* ─── Team Photo ──────────────────────────────────────────── */
.team-photo-section {
  padding: 0 0 64px;
  background: var(--bg);
}
.team-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.team-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.team-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(to top, rgba(0,59,70,.65), transparent);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
}

/* ─── Qualification Cards ────────────────────────────────── */
.qual-name {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.2px;
}
.qual-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qual-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid var(--line);
}
.qual-list li:last-child { border-bottom: none; }
.qual-list li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.qual-list li strong {
  font-weight: 600;
  color: var(--accent);
}
.qual-list li span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.qual-sub {
  margin: 20px 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Bio Grid ────────────────────────────────────────────── */
.bio-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

/* ─── Haltung ─────────────────────────────────────────────── */
.haltung-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
.haltung-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
}
.haltung-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}
.haltung-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.haltung-note {
  background: rgba(83,176,174,.10);
  border: 1px solid rgba(83,176,174,.22);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.haltung-note strong { color: var(--accent) }

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  isolation: isolate;
  padding: 64px 0;
  background: var(--accent);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 0;
  background: url('img/trueessence_logo_clean_transparent.webp') center / cover no-repeat;
  opacity: .20;
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}
.cta-inner p {
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

/* ─── Desktop ─────────────────────────────────────────────── */
@media (min-width: 768px) {
  .row { grid-template-columns: 1fr 1fr }
}

@media (min-width: 940px) {
  .container { padding: 0 32px }
  .hero-banner { margin: 16px 16px 0; border-radius: 28px }

  nav.desktop {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .hamburger { display: none }
  .drawer { display: none !important }

  .sp-grid { grid-template-columns: repeat(3, 1fr) }
  .bio-grid { grid-template-columns: repeat(2, 1fr) }
  .haltung-grid { grid-template-columns: repeat(3, 1fr) }
  .fb-grid { grid-template-columns: repeat(3, 1fr) }
  .page-hero { margin: 16px 16px 0; border-radius: 28px }

  .contact-wrap { grid-template-columns: 1fr 1.6fr }

  .foot-links { justify-content: flex-end }
}

/* ─── Podcast ─────────────────────────────────────────────── */

/* ─── Podcast ─────────────────────────────────────────────── */

/* Platform badges in hero */
.pod-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pod-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  border: none;
  background: none;
  color: rgba(255,255,255,.80);
  font-weight: 600;
  font-size: 14px;
  transition: color .15s;
  text-decoration: none;
}
.pod-platform-btn:hover { color: #fff; }
.pod-platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85 }
.pod-platform-btn:hover svg { opacity: 1 }

/* Featured episode */
.pod-featured-section {
  padding: 64px 0;
  background: var(--bg-soft);
}
.pod-featured-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-top: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.pod-featured-cover {
  flex-shrink: 0;
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  box-shadow: 0 4px 20px rgba(0,59,70,.12);
}
.pod-featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pod-featured-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Episode meta line */
.pod-ep-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}

/* Episode title */
.pod-ep-title {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -.3px;
}

/* Description */
.pod-ep-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pod-featured-body .pod-ep-desc { -webkit-line-clamp: 4 }

/* Episode list */
.pod-list-section {
  padding: 64px 0;
  background: var(--bg);
}
.pod-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.pod-ep-card {
  display: flex;
  gap: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.pod-ep-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pod-ep-thumb {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: 0 4px 20px rgba(0,59,70,.12);
}
.pod-ep-body {
  flex: 1;
  min-width: 0;
}
.pod-ep-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 6px;
  line-height: 1.3;
}
.pod-ep-body .pod-ep-desc {
  -webkit-line-clamp: 2;
  font-size: 14px;
  margin-bottom: 0;
}

/* Audio player */
.ep-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(83,176,174,.09);
  border: 1px solid rgba(83,176,174,.18);
  border-radius: 12px;
}
.ep-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.ep-play-btn:hover { background: var(--accent) }
.ep-play-btn:active { transform: scale(.95) }
.ep-play-btn svg { width: 16px; height: 16px }
.ep-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ep-progress {
  flex: 1;
  height: 4px;
  background: rgba(83,176,174,.22);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.ep-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}
.ep-time, .ep-duration {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  min-width: 32px;
}

/* Responsive */
@media (max-width: 640px) {
  .pod-featured-card { flex-direction: column; padding: 20px; gap: 20px }
  .pod-featured-cover { width: 100%; max-width: 240px }
  .pod-ep-card { flex-direction: column; gap: 14px }
  .pod-ep-thumb { width: 100%; height: auto; aspect-ratio: 1/1 }
}

/* ─── Podcast on Index ───────────────────────────────────── */
.pod-index-section {
  padding: 64px 0;
  background: var(--bg-soft);
}
.pod-index-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pod-index-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.pod-index-cover {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
}
.pod-index-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pod-index-body { flex: 1; min-width: 0 }
.pod-index-title {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--accent);
  margin: 4px 0 10px;
  line-height: 1.25;
}
@media (max-width: 599px) {
  .pod-index-card { flex-direction: column; gap: 16px; padding: 20px }
  .pod-index-cover { width: 100%; max-width: 180px }
}

/* ─── Logos Section ──────────────────────────────────────── */
.logos-section {
  position: relative;
  isolation: isolate;
  padding: 56px 0;
  background: var(--accent);
}
.logos-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 0;
  background: url('img/trueessence_logo_clean_transparent.webp') center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.logos-section .container { position: relative; z-index: 1 }
.logos-section-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -.3px;
  color: #fff;
  margin: 0 0 32px;
}
.logos-carousel { overflow: hidden; position: relative }
.logos-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  align-items: center;
}
.logos-item {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}
.logos-item img {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.logos-item:hover img { transform: scale(1.12) }
.logos-item a { display: flex; align-items: center; justify-content: center }
.logos-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 599px) {
  .logos-item { flex: 0 0 100% }
}

/* ─── Blog ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 48px 0;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.blog-card-cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-card-cover img { transform: scale(1.04) }
.blog-card-cover-ph { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) }
.blog-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column }
.blog-card-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}
.blog-card-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -.2px;
}
.blog-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.blog-card-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

/* Article detail */
.blog-article-body { max-width: 760px; margin: 0 auto; padding: 8px 0 40px }
.blog-back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity .15s;
}
.blog-back-link:hover { opacity: .7 }
.blog-article-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.blog-article-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--accent);
  margin: 36px 0 14px;
  letter-spacing: -.2px;
}
.blog-article-content h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--accent);
  margin: 28px 0 12px;
}
.blog-article-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 18px;
}
.blog-article-content ul, .blog-article-content li {
  padding-left: 0;
  list-style: none;
}
.blog-article-content li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  padding: 6px 0 6px 22px;
  position: relative;
}
.blog-article-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.blog-article-content a { color: var(--primary); }
.blog-article-content strong { color: var(--accent) }

/* Blog index section */
.blog-index-section { padding: 64px 0; background: var(--bg-soft); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr) } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; gap:18px } }

/* ── News ──────────────────────────────────────────────────── */
.news-article {
  padding: 48px 0;
}
.news-article-sep {
  border-top: 1px solid var(--line);
}
.news-article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 420px;
}
.news-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-article-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}
.news-article-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 20px;
  letter-spacing: -.3px;
  line-height: 1.25;
}
.news-article-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 16px;
}
.news-article-content a { color: var(--primary); text-decoration: underline; }
.news-article-content strong { color: var(--accent); font-weight: 700; }
.news-article-content em { font-style: italic; }

/* News index section on home — carousel */
.news-index-section { padding: 64px 0; background: var(--bg-soft); }
.news-carousel { overflow: hidden; position: relative; }
.news-track {
  display: flex;
  gap: 14px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.news-card {
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: 0 8px 32px rgba(0,59,70,.10); transform: translateY(-3px); }
.news-card-cover {
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  overflow: hidden;
}
.news-card-cover-ph { background: linear-gradient(135deg, rgba(83,176,174,.12), rgba(0,59,70,.06)); }
.news-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
}
.news-card-title {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -.1px;
}
.news-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}
.news-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .news-card { flex: 0 0 calc((100% - 14px) / 2); }
}
@media (max-width: 600px) {
  .news-card { flex: 0 0 100%; }
}

/* ─── Freebies Section ───────────────────────────────────── */
.freebies-section {
  background: linear-gradient(135deg, #002835 0%, #003B46 50%, #004d5e 100%);
  padding: 80px 0;
}
.freebies-section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}
.freebies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.freebies-grid .freebie-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 240px;
  max-width: 360px;
}
@media (max-width: 768px) {
  .freebies-grid .freebie-card { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 769px) and (max-width: 939px) {
  .freebies-grid .freebie-card { flex: 0 0 calc(50% - 10px); }
}
.freebie-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s, transform .2s;
}
.freebie-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-3px);
}
.freebie-icon {
  font-size: 36px;
  line-height: 1;
}
.freebie-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}
.freebie-text {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  flex: 1;
}
.freebie-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  background: #53B0AE;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background .2s;
}
.freebie-btn:hover { background: #fff; color: #003B46; }

/* ─── Funnel Page ─────────────────────────────────────────── */
.hero-banner--page { min-height: 220px; }
.hero-banner--page img { height: 220px; object-fit: cover; }
.funnel-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,59,70,.10);
  padding: 36px 32px 32px;
}
.funnel-icon { font-size: 48px; text-align: center; margin-bottom: 8px; }
.funnel-title { font-size: 22px; font-weight: 800; color: var(--accent); text-align: center; margin: 0 0 8px; }
.funnel-text { font-size: 14px; color: var(--muted); text-align: center; margin: 0 0 24px; line-height: 1.65; }
.funnel-form { display: flex; flex-direction: column; gap: 12px; }
.funnel-form input[type=text],
.funnel-form input[type=email] {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.funnel-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(83,176,174,.14); }
.funnel-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.funnel-check input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.funnel-check a { color: var(--primary); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-check a { color: var(--primary); }
.funnel-btn {
  padding: 14px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .15s;
  margin-top: 4px;
}
.funnel-btn:hover { background: var(--accent); }
.funnel-error { background: #fde8e8; color: #b80000; padding: 12px 16px; border-radius: 10px; font-size: 13px; text-align: center; }
.funnel-section { background: var(--bg-soft); padding: 64px 0; }
.funnel-success-section { padding: 64px 0; }
.funnel-success-card { max-width: 600px; margin: 0 auto; text-align: center; }
.funnel-success-name { font-size: clamp(22px, 4vw, 32px); font-weight: 800; color: var(--accent); margin: 0 0 12px; }
.funnel-success-sub { font-size: 16px; color: var(--muted); margin: 0 0 32px; }
.funnel-cover { width: 100%; max-width: 380px; border-radius: 16px; margin: 0 auto 24px; display: block; object-fit: cover; }
.funnel-audio-wrap { background: var(--bg-soft); border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.funnel-audio-wrap audio { width: 100%; }
.funnel-video-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 20px; background: #000; }
.funnel-download-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: background .15s; margin-bottom: 32px;
}
.funnel-download-btn:hover { background: var(--primary); color: #fff; }
.funnel-back-link { font-size: 14px; color: var(--muted); text-decoration: none; }
.funnel-back-link:hover { color: var(--accent); }
