
/* === Styles aus adhs.html === */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #F2EDE6;
  --bg-2:     #EBE5DC;
  --card:     #F8F5F0;
  --warm:     #EAE5DD;
  --white:    #FDFCFA;
  --ink:      #141410;
  --mid:      #6B665E;
  --rule:     #D8D3CB;
  --rule-soft:#E4DFD7;
  --red:      #CC2828;
  --red-lt:   #FDF2F0;
  --pink:     #E8889C;
  --yellow:   #E8D040;
  --orange:   #E8A030;
  --lilac:    #B094D0;
}

html { scroll-behavior: smooth; }

/* ══════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════ */

/* Dark section block */
.dark-section {
  background: var(--ink);
  color: var(--bg);
  padding: 56px 56px;
  margin: 0 -56px;
}
.section.dark-section .section-label { color: var(--red); }

/* Dark section text opacity variants */
.dark-text        { color: rgba(242,237,230, 0.8); }
.dark-text-muted  { color: rgba(242,237,230, 0.6); }
.dark-text-fine   { color: rgba(242,237,230, 0.72); font-size: 0.88rem; }

/* Dark badges */
.dark-section .badge,
.badge.badge-dark,
.badge.badge-dark:nth-child(3n+2),
.badge.badge-dark:nth-child(3n) {
  background: rgba(242,237,230, 0.08);
  color: rgba(242,237,230, 0.85);
  border-color: rgba(242,237,230, 0.25);
}

/* Dark price rows */
.section.dark-section .price-row { border-color: rgba(242,237,230, 0.15); }
.section.dark-section .price-row span { color: var(--bg); }

/* Dark list items */
.section.dark-section .adhs-list { border-top-color: rgba(242,237,230, 0.15); }
.section.dark-section .adhs-list li { color: rgba(242,237,230, 0.8); border-bottom-color: rgba(242,237,230, 0.15); }
.section.dark-section strong { color: var(--bg); }

/* Italic muted aside text */
.text-aside {
  font-style: italic;
  color: #3A3830;
  margin-top: 12px;
}

/* Fine print */
.text-fine {
  font-size: 0.85rem;
  color: rgba(242,237,230, 0.72);
  margin-top: 10px;
}
.text-fine-sm {
  font-size: 0.8rem;
  color: rgba(242,237,230, 0.72);
  margin-top: 12px;
}

/* Spacing helpers */
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 18px; }
.mt-lg { margin-top: 28px; }

/* Section without top border */
.section--borderless { border-top: none; }
.section--flush { padding-bottom: 0; }

/* Prices label in dark sections */
.prices-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,230, 0.5);
  margin-top: 28px;
  margin-bottom: 8px;
}

/* CTA subtitle */
.cta-sub {
  font-size: 0.875rem;
  color: #3A3830;
  margin-top: 10px;
}
.section.dark-section .cta-sub {
  color: rgba(242,237,230, 0.5);
}

/* Hero CTA button */
.btn--hero {
  display: inline-block;
  margin-top: 32px;
  background: var(--red);
}

/* Photo credit */
.photo-credit {
  font-size: 0.65rem;
  color: #aaa;
  margin-top: auto;
}

/* Hero photo (full width with red accent) */
.hero-photo {
  overflow: hidden;
  border-left: 10px solid var(--red);
  height: 60vh;
  max-height: 550px;
  min-height: 300px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Bio text: paragraph spacing */
.bio-text p + p {
  margin-top: 16px;
}

/* Inline link in red */
a.link-red {
  color: var(--red);
  text-decoration: none;
}

/* ADHS link in dark sections */
.link-red {
  color: var(--red);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .dark-section {
    padding: 40px 24px !important;
    margin: 0 -24px !important;
  }
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 17px;
}

/* ══ NAV ══ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 60px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.08em;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--red); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.75rem; color: #3A3830;
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.15s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--red); border-bottom-color: var(--red); }

/* ══ PAGES ══ */
.page { display: block; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══ HOME – MASTHEAD ══ */
.masthead {
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: calc(100vh - 60px);
  background: var(--bg);
}
.masthead-left {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px 72px 56px;
}
.mast-tag {
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s both;
}
.mast-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 11vw, 11rem);
  line-height: 0.87; letter-spacing: 0.02em;
  color: var(--ink);
  animation: fadeUp 0.7s 0.2s both;
}
.mast-interrupt {
  font-family: 'Lora', serif; font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--ink); line-height: 1.3; font-weight: 700;
  padding: 24px 0 20px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  margin: 20px 0 16px; max-width: 520px;
  animation: fadeUp 0.7s 0.35s both;
}
.mast-interrupt strong { font-style: normal; color: var(--red); font-weight: 700; }
.mast-bottom {
  display: flex; align-items: center; gap: 40px; margin-top: 10px;
  animation: fadeUp 0.7s 0.5s both;
}
.btn-book {
  padding: 15px 38px; background: var(--ink); color: var(--white);
  font-family: 'Lato', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.btn-book:hover { background: var(--red); }
.mast-meta {
  font-size: 0.8rem; color: #3A3830; line-height: 1.6; font-weight: 300;
}
.mast-description {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.75;
  font-weight: 400;
  max-width: 460px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  opacity: 0.75;
}

/* Instagram follow link */
.follow-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Newsletter heading */
.nl-heading {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.375rem;
  color: var(--bg);
  margin-bottom: 8px;
}

/* MailerLite embed: left-align and constrain width */
.ml-embedded {
  max-width: 480px;
}

/* Photo */
.masthead-photo {
  position: relative; overflow: hidden;
}
.masthead-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  display: block;
}
.masthead-photo::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 10px; background: var(--red); z-index: 2;
}

/* ══ STATS BAR ══ */
.statsbar {
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 0; gap: 0;
}
.statsbar-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 48px; gap: 2px;
}
.statsbar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--white); line-height: 1;
}
.statsbar-label {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(253,252,250,0.5);
}
.statsbar-div {
  width: 1px; height: 36px;
  background: rgba(253,252,250,0.15); flex-shrink: 0;
}

/* ══ HOME PRODUCTS ══ */
.products {
  border-top: 2px solid var(--ink);
}
.product {
  display: flex;
  border-bottom: 2px solid var(--ink);
  background: var(--bg);
  transition: background 0.18s;
  overflow: hidden;
}
.product:last-child { border-bottom: none; }
.product:hover { background: var(--white); }

.product-bar {
  flex-shrink: 0;
  width: 80px;
}
.product-1 .product-bar { background: var(--red); }
.product-2 .product-bar { background: var(--pink); }
.product-3 .product-bar { background: var(--orange); }
.product-4 .product-bar { background: var(--lilac); }

.product-num { display: none; }

.product-body {
  padding: 40px 48px 40px 48px;
  flex: 1;
}
.product-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.product:nth-child(2) .product-tag { color: var(--pink); }
.product:nth-child(3) .product-tag { color: var(--orange); }
.product:nth-child(4) .product-tag { color: var(--lilac); }

.product-body h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.1; margin-bottom: 12px;
}
.product-body p {
  font-size: 1.05rem; color: #3A3830;
  font-weight: 400; line-height: 1.75;
  max-width: 520px;
}

.product-action {
  display: flex; align-items: center;
  gap: 16px; margin-top: 20px;
}
.prod-btn-book {
  padding: 14px 28px; background: var(--red); color: var(--white);
  font-family: 'Lato', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s; display: block; text-align: center;
}
.prod-btn-book:hover { background: var(--ink); }
.prod-btn-more {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #3A3830; text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.prod-btn-more:hover { color: var(--ink); border-color: var(--ink); }

/* ══ PODCAST ══ */
.podcast-section {
  border-top: 2px solid var(--ink);
  display: grid; grid-template-columns: 3fr 2fr;
}
.podcast-left {
  padding: 72px 56px;
  border-right: 1px solid var(--rule);
}
.pod-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.podcast-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.9; letter-spacing: 0.03em;
  color: var(--ink); margin-bottom: 22px;
}
.podcast-left p {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.0625rem; color: #3A3830;
  line-height: 1.78; max-width: 440px; margin-bottom: 32px; font-weight: 400;
}
.pod-btns { display: flex; gap: 12px; }
.pod-btn {
  padding: 13px 26px; background: var(--ink); color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; transition: background 0.2s;
}
.pod-btn:hover { background: var(--red); }
.pod-btn.ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.pod-btn.ghost:hover { background: var(--ink); color: var(--white); }

.podcast-right {
  background: var(--warm);
  display: flex; align-items: center; justify-content: center;
  padding: 0; overflow: hidden;
  border-left: 1px solid var(--rule);
}
.pod-cover {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.pod-cover img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}





/* ══ LIVE SHOWS ══ */
.show-list {
  display: flex; flex-direction: column; gap: 0;
}
.show-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242,237,230,0.12);
}
.show-row:last-child { border-bottom: none; }
.show-soldout { opacity: 0.45; }
.show-date {
  display: flex; flex-direction: column;
  align-items: center; line-height: 1.1;
}
.show-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--bg);
}
.show-month {
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: #888; font-family: 'Lato', sans-serif;
}
.show-info {
  display: flex; flex-direction: column; gap: 2px;
}
.show-info strong {
  font-family: 'Lato', sans-serif;
  font-size: 1rem; color: var(--bg); font-weight: 700;
}
.show-info span {
  font-size: 0.8rem; color: #888;
  font-family: 'Lato', sans-serif;
}
.show-tag-soldout {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #555;
  font-family: 'Lato', sans-serif;
}
.btn-small {
  padding: 8px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--bg);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
}
.btn-small:hover { background: #9A1E1E; }

/* ══ KOOP MASONRY ══ */
.koop-masonry {
  columns: 3;
  column-gap: 8px;
  margin-top: 0;
}
.koop-masonry-img {
  width: 100%;
  display: block;
  margin-bottom: 8px;
  break-inside: avoid;
  object-fit: cover;
}
@media (max-width: 600px) {
  .koop-masonry { columns: 2; }
}

/* ══ KOOP 4-BILD GALLERY ══ */
.koop-gallery-4 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.koop-gallery-3 {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
}
.koop-fig-hero .koop-img {
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 600px) {
  .koop-gallery-4 { grid-template-columns: 1fr; }
  .koop-gallery-3 { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
}

/* ══ KOOP GALLERY ══ */
.koop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.koop-gallery-right {
  display: flex; flex-direction: column; gap: 12px;
}
.koop-fig { margin: 0; }
.koop-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  max-height: 320px;
}
.koop-fig-large .koop-img { max-height: 100%; }
figcaption {
  font-size: 0.75rem; color: #3A3830;
  font-family: 'Lato', sans-serif;
  margin-top: 6px; font-style: italic;
}
@media (max-width: 600px) {
  .koop-gallery { grid-template-columns: 1fr; }
}

/* ══ KOOP ACCORDION ══ */
.koop-details {
  margin-top: 8px;
}
.koop-details summary {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); cursor: pointer;
  padding: 10px 0; list-style: none;
  font-family: 'Lato', sans-serif;
}
.koop-details summary::-webkit-details-marker { display: none; }
.koop-details summary::after { content: ' +'; }
.koop-details[open] summary::after { content: ' −'; }
.koop-details .adhs-list { margin-top: 0; }

/* ══ BTN OUTLINE ══ */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ══ KOOP FORM ══ */
.koop-form {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.koop-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--ink);
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; color: var(--ink);
  box-sizing: border-box;
}
.koop-input::placeholder { color: #888; }
.koop-textarea { resize: vertical; min-height: 100px; }

/* ══ ADHS LIST ══ */
.adhs-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  border-top: 1px solid var(--rule);
}
.adhs-list li {
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-size: 1rem; color: var(--ink); line-height: 1.65;
}
.dark-block .adhs-list { border-top-color: rgba(242,237,230,0.15); }
.dark-block .adhs-list li { color: rgba(242,237,230,0.8); border-bottom-color: rgba(242,237,230,0.15); }
.adhs-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}

/* ══ BADGES ══ */
.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 20px 0 28px;
}
.badge {
  padding: 10px 20px;
  border: 2px solid var(--ink);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
}
.badge:nth-child(3n+2) { border-color: var(--pink); color: var(--pink); }
.badge:nth-child(3n) { border-color: var(--orange); color: var(--orange); }

/* ══ PRICE LIST ══ */
.price-list {
  margin: 20px 0 0; border-top: 1px solid var(--rule);
}
.price-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--rule);
  font-size: 0.95rem; color: var(--ink);
}
.price-row span:last-child { font-weight: 700; }
.price-note {
  margin-top: 16px; font-size: 0.82rem;
  color: #3A3830; font-style: italic;
}

/* ══ EXAMPLE CARDS ══ */
.examples {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); margin-top: 24px;
}
.example {
  background: var(--white); padding: 28px 32px;
}
.example-role {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.example:nth-child(2) .example-role { color: var(--pink); }
.example:nth-child(3) .example-role { color: var(--orange); }
.example:nth-child(4) .example-role { color: var(--lilac); }
.example p {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1rem; color: var(--ink);
  line-height: 1.7; font-weight: 400;
}

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

/* ══ NEWSLETTER ══ */
.newsletter {
  border-top: 1px solid var(--rule);
  padding: 52px 56px;
  display: flex; align-items: center; gap: 56px;
  background: #F2D4DA;
}
.newsletter h3 {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.375rem; color: var(--ink); white-space: nowrap;
}
.newsletter p {
  font-size: 0.9rem; color: #3A3830;
  font-weight: 300; flex: 1; max-width: 320px;
}
.nl-form { display: flex; }
.nl-form input {
  padding: 13px 18px; width: 260px;
  border: 1.5px solid var(--rule); border-right: none;
  background: var(--white); font-family: 'Lato', sans-serif;
  font-size: 0.9rem; color: var(--ink); outline: none;
}
.nl-form input:focus { border-color: var(--ink); }
.nl-form button {
  padding: 13px 24px; background: var(--ink); color: var(--white);
  border: none; font-family: 'Lato', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.nl-form button:hover { background: var(--red); }

/* ══ INNER PAGE HERO ══ */
.page-hero {
  padding: 80px 56px 72px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.page-hero-tag {
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ink); max-width: 800px; margin-bottom: 24px;
}
.page-hero-sub {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.0625rem; color: #3A3830;
  line-height: 1.82; max-width: 580px; font-weight: 400;
}
.page-hero-sub strong { font-style: normal; font-weight: 600; color: var(--ink); }

/* ══ CONTENT ══ */
.content { max-width: 860px; padding: 0 56px 100px; }

.section { padding: 56px 0 0; border-top: 1px solid var(--rule); }
.section:first-child { border-top: none; }

/* Dark sections: consistent breathing room */
.dark-section,
.section[style*="--ink"] {
  margin-top: 64px !important;
  margin-bottom: 0;
  padding: 56px 56px !important;
}

/* ADHS chips label */
.adhs-chips-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* Alternating section backgrounds */
.section-alt {
  background: var(--bg-2);
  padding: 56px 40px 48px;
  margin: 0 -56px;
  border-top: none;
}
@media (max-width: 600px) {
  .section-alt { padding: 40px 20px 36px; margin: 0 -20px; }
}

.section-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.section h2 {
  font-family: 'Lora', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; color: var(--ink);
  margin-bottom: 18px; line-height: 1.2;
}
.section h2 em { font-style: italic; font-weight: 400; color: #3A3830; }
.section p {
  font-size: 1.0625rem; color: #3A3830;
  line-height: 1.85; font-weight: 300; margin-bottom: 14px;
}
.section p:last-child { margin-bottom: 0; }

/* Dark section overrides (must come after .section h2 / .section p) */
.section.dark-section h2 { color: var(--bg); }
.section.dark-section p { color: rgba(242,237,230, 0.8); }
.section.dark-section .section-label { color: var(--red); }
.section.dark-section a:not(.btn):not(.link-red) { color: var(--bg); }
.section.dark-section .link-red { color: var(--red); }
.section.dark-section strong { color: var(--bg); }
.section.dark-section .price-row { border-color: rgba(242,237,230, 0.15); }
.section.dark-section .price-row span { color: var(--bg); }
.section.dark-section .adhs-list { border-top-color: rgba(242,237,230, 0.15); }
.section.dark-section .adhs-list li { color: rgba(242,237,230, 0.8); border-bottom-color: rgba(242,237,230, 0.15); }
.section.dark-section .cta-sub { color: rgba(242,237,230, 0.5); }

/* Box */
.box {
  background: var(--card); border: 1px solid var(--rule-soft);
  border-left: 4px solid var(--ink);
  padding: 28px 36px; margin-top: 18px;
}
.box p {
  font-size: 1.05rem; color: #3A3830;
  line-height: 1.85; font-weight: 300; margin-bottom: 16px;
}
.box p:last-child { margin-bottom: 0; }
.box p + p { padding-top: 16px; border-top: 1px solid var(--rule); }

/* Quote */
.quote-block {
  margin-top: 20px; padding: 32px 40px;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--rule);
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: 'Lora', serif;
  font-size: 6rem; color: rgba(204,40,40,0.12);
  position: absolute; top: 8px; left: 24px; line-height: 1;
}
.quote-block blockquote {
  font-family: 'Lora', serif; font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink); line-height: 1.45;
  position: relative; z-index: 1;
}
.quote-block cite {
  display: block; margin-top: 14px;
  font-size: 0.72rem; font-style: normal;
  letter-spacing: 0.12em; text-transform: uppercase; color: #3A3830;
}

/* Bullet list */
.bullet-list { list-style: none; margin-top: 20px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 18px;
  font-size: 1.05rem; color: #3A3830;
  font-weight: 300; line-height: 1.7;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.bullet-list li:first-child { border-top: 1px solid var(--rule); }
.bullet-list li::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  margin-top: 9px; flex-shrink: 0;
}

/* Facts */
.facts {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); margin-top: 20px;
}
.fact { background: var(--white); padding: 28px 32px; }
.fact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: var(--ink); line-height: 1; margin-bottom: 6px;
}
.fact-label { font-size: 0.875rem; color: #3A3830; font-weight: 300; }

/* Services */
.services {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule); margin-top: 20px;
}
.service { background: var(--white); padding: 32px 32px; }
.service h4 {
  font-family: 'Lora', serif; font-size: 1.125rem; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
}
.service p { font-size: 0.9rem; color: #3A3830; font-weight: 400; line-height: 1.75; }

/* Hint */
.hint {
  margin-top: 52px; padding: 28px 36px;
  background: var(--warm); border: 1px solid var(--rule);
  border-left: 4px solid var(--orange);
}
.hint-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #3A3830; margin-bottom: 10px;
}
.hint p { font-size: 0.9125rem; color: #3A3830; line-height: 1.8; font-weight: 300; }

/* Hint line (inline reassurance) */
.hint-line {
  margin-top: 12px; padding: 10px 16px;
  background: var(--red-lt);
  border-left: 3px solid var(--pink);
  font-size: 0.82rem; font-style: italic;
  color: #3A3830; line-height: 1.6;
}

/* Info bar */
.info-bar {
  margin-top: 20px; padding: 16px 22px;
  background: var(--card); border: 1px solid var(--rule-soft);
  font-size: 0.875rem; color: #3A3830; font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 38px; background: var(--red); color: var(--white);
  font-family: 'Lato', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.btn:hover { background: #9A1E1E; }
.btn-outline {
  display: inline-block;
  padding: 13px 32px; background: transparent;
  border: 2px solid var(--ink); color: var(--ink);
  font-family: 'Lato', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* Bio */
.bio-layout {
  display: grid; grid-template-columns: 1fr 240px;
  gap: 52px; align-items: start;
}
.bio-img { overflow: hidden; }
.bio-img img { width:100%; height:auto; display:block; }

/* Praxis image */
.praxis-img {
  width: 100%; max-height: 380px;
  object-fit: cover; object-position: center 35%;
  display: block; margin-bottom: 20px;
}

/* Podcast platforms */
.platforms { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.plat-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; background: var(--ink); color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-decoration: none; transition: background 0.2s;
}
.plat-btn:hover { background: var(--red); }
.plat-btn.outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.plat-btn.outline:hover { background: var(--ink); color: var(--white); }

/* ══ HAMBURGER (hidden on desktop) ══ */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); transition: all 0.2s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 190;
  flex-direction: column; padding: 40px 32px; gap: 0;
  border-top: 1px solid var(--rule);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 0.06em;
  color: var(--ink); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--red); }
.nav-drawer-book {
  margin-top: 32px;
  padding: 16px 32px; background: var(--ink); color: var(--white) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.8rem !important; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; border-bottom: none !important;
}
.nav-drawer-book:hover { background: var(--red) !important; color: var(--white) !important; }

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {

  /* Nav */
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Masthead: photo first, then text */
  .masthead {
    display: flex; flex-direction: column-reverse;
    min-height: auto;
  }
  .masthead-photo {
    height: 95vw; min-height: 340px; max-height: 520px;
    width: 100%;
  }
  .masthead-photo img { object-position: center 22%; }
  .masthead-photo::before { width: 10px; }
  .masthead-left {
    padding: 36px 20px 40px;
    justify-content: flex-start;
  }
  .mast-name {
    font-size: clamp(4.5rem, 22vw, 7rem);
    line-height: 0.87;
  }
  .mast-interrupt {
    font-size: 1rem; margin: 12px 0;
    padding: 16px 0;
  }
  .mast-bottom {
    flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .btn-book { width: 100%; text-align: center; padding: 16px; }

  /* Stats bar */
  .statsbar { flex-wrap: wrap; justify-content: center; }
  .statsbar-item { padding: 16px 24px; }
  .statsbar-div { display: none; }

  /* Products */
  .product-bar {
    width: 56px;
  }
  .product-body { padding: 28px 20px 28px 24px; }
  .product-body h2 { font-size: 1.5rem; }
  .product-body p { font-size: 1rem; }
  .product-action {
    margin-top: 16px; gap: 10px;
    flex-wrap: wrap;
  }
  .prod-btn-book { padding: 13px 20px; font-size: 0.75rem; }
  .prod-btn-more { font-size: 0.75rem; }
  .prod-btn-book { padding: 13px 20px; font-size: 0.75rem; }
  .prod-btn-more { font-size: 0.75rem; }

  /* Podcast */
  .podcast-section { grid-template-columns: 1fr; }
  .podcast-left { padding: 48px 20px; border-right: none; border-bottom: 1px solid var(--rule); }
  .podcast-left h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .pod-btns { flex-direction: column; gap: 10px; }
  .pod-btn { text-align: center; }
  .podcast-right { min-height: 80vw; border-left: none; border-top: 1px solid var(--rule); }

  /* Newsletter */
  .newsletter {
    flex-direction: column; gap: 20px;
    padding: 36px 20px; align-items: flex-start;
  }
  .nl-form { width: 100%; flex-direction: column; gap: 0; }
  .nl-form input {
    width: 100%; border-right: 1.5px solid var(--rule);
    border-bottom: none;
  }
  .nl-form input:focus { border-color: var(--ink); }
  .nl-form button { padding: 14px; }

  /* Inner page hero */
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: clamp(2.5rem, 12vw, 5rem); }
  .page-hero-sub { font-size: 1rem; }

  /* Content */
  .content { padding-left: 20px; padding-right: 20px; }

  /* Bio */
  .bio-layout { grid-template-columns: 1fr; gap: 28px; }
  .bio-img { max-height: none; }

  /* Facts */
  .facts { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services { grid-template-columns: 1fr; }

  /* Praxis image */
  .praxis-img { max-height: 260px; }

  /* Buttons full width on mobile */
  .btn, .btn-outline { width: 100%; text-align: center; }

  /* Platforms */
  .platforms { flex-direction: column; }
  .plat-btn { justify-content: center; }

  /* Quote blocks */
  .quote-block { padding: 24px 20px; }
  .box { padding: 22px 20px; }
  .hint { padding: 22px 20px; }
  .section { padding: 40px 0 0; }
}

/* Mobile menu CSS only */
#menu-toggle:checked ~ .nav-drawer,
#menu-toggle:checked + nav + .nav-drawer { display: flex; }


/* ══ ADHS UX UPGRADES ══ */
.adhs-roadmap {
  font-size: 0.82rem; font-family: 'Lato', sans-serif;
  font-weight: 700; letter-spacing: 0.06em;
  color: var(--red); margin-top: 20px;
}
.adhs-jumpto {
  margin-top: 20px; font-size: 0.8rem;
  color: #3A3830; font-family: 'Lato', sans-serif;
}
.adhs-jumpto a {
  color: var(--ink); text-decoration: underline;
  text-underline-offset: 3px;
}
.adhs-jumpto a:hover { color: var(--red); }
.adhs-chips { margin-top: 24px; }
.chips-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #3A3830; display: block; margin-bottom: 10px;
}
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px;
  border: 1.5px solid var(--rule);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  background: transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.chip:hover,
.chip:focus,
.chip.active {
  background: var(--red-lt);
  border-color: var(--red);
  border-bottom: 2.5px solid var(--red);
  color: var(--ink);
}
.outcome-first {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1rem; color: var(--ink);
  margin-bottom: 16px; line-height: 1.55;
}

/* ══ STICKY CTA ══ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: var(--bg);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 200; transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta a {
  color: var(--bg); text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.sticky-cta-sub {
  font-size: 0.75rem; color: rgba(242,237,230,0.7);
  font-family: 'Lato', sans-serif;
}
.sticky-cta-close {
  background: none; border: none;
  color: var(--bg); font-size: 1.2rem;
  cursor: pointer; padding: 0 0 0 16px;
  opacity: 0.6;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }



/* ══ LOGO WALL ══ */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 24px;
}
.logo-tile {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: background 0.15s;
  position: relative;
}
.logo-tile:hover {
  background: #FDF2F4;
}
.logo-tile img {
  max-width: 120px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}
.logo-tile:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
/* Fallback: show name if image fails to load */
.logo-tile span {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  position: absolute;
  padding: 8px;
}
.logo-tile img[src] ~ span {
  display: none;
}
.logo-tile img:not([src]), 
.logo-tile img[src=""] {
  display: none;
}
.logo-tile img:not([src]) ~ span,
.logo-tile img[src=""] ~ span {
  display: block;
}
@media (max-width: 768px) {
  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══ DARK FORM INPUTS (for dark backgrounds) ══ */
.koop-input-dark {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: var(--bg) !important;
}
.koop-input-dark::placeholder {
  color: rgba(242,237,230,0.4) !important;
}
.koop-input-dark:focus {
  border-color: var(--red) !important;
  background: rgba(255,255,255,0.12) !important;
}

/* ══ REEL GRID ══ */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.reel-tile {
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .reel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ══ PODCAST HERO – Full-width split ══ */
.pod-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.pod-hero-img {
  overflow: hidden;
  border-left: 10px solid var(--red);
}
.pod-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pod-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--bg);
}
.pod-hero-cover {
  width: 100px;
  height: 100px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  margin-bottom: 24px;
}
.pod-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 16px;
}
.pod-hero-sub {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #3A3830;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pod-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pod-hero-img {
    max-height: 50vh;
  }
  .pod-hero-content {
    padding: 32px 20px;
  }
  .pod-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .pod-hero-cover {
    width: 80px; height: 80px;
  }
}

/* ══ PULL QUOTE ══ */
.pull-quote {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  padding: 56px 24px;
  line-height: 1.35;
  position: relative;
}
.pull-quote-mark {
  color: var(--red);
  font-style: normal;
}

@media (max-width: 768px) {
  .pull-quote {
    padding: 40px 16px;
  }
}

/* ══ HOST CARDS (matching example-cards grid) ══ */
.host-card {
  background: var(--white);
  padding: 28px 32px;
  margin: 0;
  border: none;
}
.host-card + .host-card {
  margin-top: 0;
}
.host-quote {
  display: none;
}
.host-meta h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.host-meta p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
}

/* Color cycle for h4 labels */
.host-card:nth-child(1) .host-meta h4 { color: var(--red); }
.host-card:nth-child(2) .host-meta h4 { color: var(--pink); }
.host-card:nth-child(3) .host-meta h4 { color: var(--orange); }
.host-card:nth-child(4) .host-meta h4 { color: var(--lilac); }

/* ══ FOOTER ══ */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 48px 56px 32px;
}
.footer-inner {
  max-width: 860px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.footer-links, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-links a, .footer-social a {
  color: rgba(242,237,230,0.6);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-social a:hover {
  color: var(--yellow);
}
.footer-social {
  padding-top: 8px;
  border-top: 1px solid rgba(242,237,230,0.15);
}
.footer-copy {
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(242,237,230,0.35);
  font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 20px 24px;
  }
  .footer-links, .footer-social {
    gap: 12px;
  }
}

/* ══ NAV BOOK BUTTON ══ */
.nav-book {
  background: var(--red);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  margin-left: 16px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--ink); }

@media (max-width: 768px) {
  .nav-book {
    padding: 7px 14px;
    font-size: 0.65rem;
    margin-left: auto;
    margin-right: 12px;
  }
}

/* ══ AMBASSADOR CARDS ══ */
.ambassador-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  border-left: 4px solid var(--orange);
  overflow: hidden;
  background: var(--warm);
}
.ambassador-card + .ambassador-card {
  margin-top: 16px;
  border-left-color: var(--pink);
}
.ambassador-img {
  overflow: hidden;
  max-height: 220px;
}
.ambassador-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ambassador-text {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ambassador-text h4 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
}
.ambassador-text p {
  font-size: 0.9rem;
  color: #3A3830;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ambassador-card {
    grid-template-columns: 1fr;
  }
  .ambassador-img {
    max-height: 180px;
  }
  .ambassador-text {
    padding: 20px;
  }
}

/* ── Logo Grid ── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-top: 2rem;
}
.logo-grid-item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 100px;
}
.logo-grid-item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-grid-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-grid-item--text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
}
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-grid-item {
    padding: 1.5rem 1rem;
  }
  .logo-grid-item img {
    max-width: 100px;
    max-height: 44px;
  }
}

/* ══════════════════════════════════════════════
   FIX: Host-Cards 2-col grid (desktop)
   FIX: Dark-block fineprint legibility
   ══════════════════════════════════════════════ */

/* --- Host-Cards: 2x2 Grid (matching .examples) --- */
.host-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 24px;
}
.host-cards-grid .host-card {
  background: var(--white);
}

/* Color cycle for h4 labels */
.host-cards-grid .host-card:nth-child(1) .host-meta h4 { color: var(--red); }
.host-cards-grid .host-card:nth-child(2) .host-meta h4 { color: var(--pink); }
.host-cards-grid .host-card:nth-child(3) .host-meta h4 { color: var(--orange); }
.host-cards-grid .host-card:nth-child(4) .host-meta h4 { color: var(--lilac); }

@media (max-width: 768px) {
  .host-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Dunkle Blöcke: Fineprint min. 0.88rem / Opacity 0.7+ --- */
.section[style*="--ink"] p[style*="0.4)"],
.section[style*="--ink"] p[style*="0.5)"] {
  color: rgba(242,237,230, 0.72) !important;
  font-size: max(0.88rem, inherit) !important;
}
