/* ═══════════════════════════════════════════════════════
   HÖCHSTLEISTER:INNEN, "the circle" Details Page
   Adaptiert aus Design-Vorschlag; nutzt magic places Design-Tokens.
   ═══════════════════════════════════════════════════════ */

/* Phone-Scroll übernimmt volle Höhe (Hero blutet hinter Status-Bar) */
.phone-scroll {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* Bleed-Hero: kein Top-Padding hier, Clearance lebt auf .hc-hero__inner */
  padding: 0 0 var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: rgba(184,148,79,0.4) transparent;
}

/* Footer-Hintergrund durchgängig (Sub-Nav + Legal-Trigger auf derselben Fläche) */
.hc-page + footer,
.phone-scroll > footer {
  background: var(--hc-ink-deep);
}
.phone-scroll::-webkit-scrollbar { width: 4px; }
.phone-scroll::-webkit-scrollbar-track { background: transparent; }
.phone-scroll::-webkit-scrollbar-thumb { background: rgba(184,148,79,0.4); border-radius: 2px; }

/* ─── Page Wrapper mit lokalen Tokens ─── */
.hc-page {
  --hc-paper: #FAF7F0;
  --hc-ink-paper: #17191A;
  --hc-ink-60: rgba(23, 25, 26, 0.62);
  --hc-ink-deep: #0E1011;
  --hc-ink-warm: #1F2422;
  --hc-cream: var(--c-white);
  --hc-cream-60: rgba(255, 255, 255, 0.62);
  --hc-line: rgba(184, 148, 79, 0.28);
  --hc-line-soft: rgba(184, 148, 79, 0.14);
  --hc-gold-deep: #7A6341; /* 5.2:1 contrast on paper bg (WCAG AA) */

  font-family: var(--font-body);
  color: var(--hc-cream);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hc-page h1, .hc-page h2, .hc-page h3, .hc-page h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.005em;
}
.hc-page em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}

.hc-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-block;
}
.hc-label--light { color: var(--hc-gold-deep); }

.hc-section-lead {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1.18;
  margin: 16px 0 40px;
  font-weight: 300;
}
.hc-section-lead em { color: var(--c-gold); font-style: italic; font-weight: 400; }

/* ─── HERO ─── */
.hc-hero {
  position: relative;
  min-height: 660px;
  padding: 0 24px 44px;
  overflow: hidden;
  background: var(--hc-ink-deep);
}
.hc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/mp-lounge-and-work.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.9);
  z-index: 0;
}
.hc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,16,17,0.35) 0%, rgba(14,16,17,0.05) 30%, rgba(14,16,17,0.55) 70%, rgba(14,16,17,0.95) 100%),
    radial-gradient(circle at 70% 20%, rgba(184,148,79,0.12), transparent 50%);
}
.hc-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-clearance);
}
.hc-hero__brand {
  text-align: center;
  padding: 0 0 60px;
}
.hc-hero__logo {
  width: clamp(95px, 28vw, 140px);
  height: auto;
  display: inline-block;
}
.hc-hero__title {
  color: var(--c-white);
  font-size: 2.6rem;
  line-height: 1.0;
  margin: 0 0 16px;
  font-weight: 300;
  text-align: center;
}
.hc-hero__title em {
  display: block;
  font-size: 2.2rem;
  color: var(--c-gold);
  margin-top: 4px;
  letter-spacing: -0.015em;
  font-style: italic;
  font-weight: 400;
}
.hc-hero__badge {
  margin-top: 52px;
  padding: 20px 0 16px;
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
  text-align: center;
}
.hc-hero__mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold);
  letter-spacing: 0.02em;
}
.hc-hero__meta {
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--hc-cream-60);
  text-transform: uppercase;
}
.hc-hero__founder {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.93rem;
  color: var(--hc-cream-60);
  text-align: center;
  line-height: 1.4;
}

.hc-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  background: var(--c-gold);
  color: var(--c-dark);
  border: none;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  min-height: 52px;
}
.hc-btn-primary:hover { background: var(--c-gold-light); }
.hc-btn-primary svg {
  width: 16px; height: 16px;
  stroke: var(--c-dark);
  stroke-width: 1.8;
  fill: none;
}

.hc-hero__quickrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.hc-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-white);
  padding: 13px 10px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
}
.hc-btn-ghost svg {
  width: 14px; height: 14px;
  stroke: var(--c-gold);
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

/* ─── INTRO (hell) ─── */
.hc-intro {
  background: var(--hc-paper);
  color: var(--hc-ink-paper);
  padding: 64px 24px 56px;
}
.hc-intro__body {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.32;
  color: var(--hc-ink-paper);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hc-intro__body em {
  font-style: italic;
  color: var(--hc-gold-deep);
  font-weight: 400;
}
.hc-intro__sig {
  margin-top: 26px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hc-gold-deep);
}
.hc-intro__sig::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--hc-gold-deep);
  vertical-align: middle;
  margin-right: 10px;
}

/* ─── PILLARS (3 Säulen) ─── */
.hc-pillars {
  background: var(--hc-ink-deep);
  color: var(--c-white);
  padding: 64px 24px 48px;
}
.hc-pillar {
  padding: 26px 0;
  border-top: 1px solid var(--hc-line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}
.hc-pillar:last-child { border-bottom: 1px solid var(--hc-line); }
.hc-pillar__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--c-gold);
  line-height: 1;
  font-weight: 300;
}
.hc-pillar__title {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}
.hc-pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--c-white);
  margin: 0 0 10px;
  font-weight: 400;
}
.hc-pillar h3 em { color: var(--c-gold); font-style: italic; }
.hc-pillar p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--hc-cream-60);
  margin: 0;
  font-weight: 300;
}

/* ─── PROTOKOLL (Vier Werkzeuge, horizontal scroll) ─── */
.hc-protocol {
  background: var(--hc-ink-warm);
  color: var(--c-white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hc-protocol__header { padding: 0 24px; }
.hc-protocol__intro {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--hc-cream-60);
  margin: 16px 0 8px;
  padding: 0 24px;
  font-weight: 400;
}
.hc-protocol__intro em { color: var(--c-gold); font-style: italic; }
.hc-protocol__note {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  padding: 0 24px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hc-scroll-hint {
  padding: 0 24px;
  margin-bottom: 14px;
  font-size: 0.62rem;
  color: var(--hc-cream-60);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
}
.hc-protocol__cards {
  display: flex;
  gap: 12px;
  padding: 0 24px 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hc-protocol__cards::-webkit-scrollbar { display: none; }
.hc-protocol-card {
  flex: 0 0 230px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hc-protocol-card__img {
  height: 140px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hc-protocol-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,36,34,0.9) 100%);
}
.hc-protocol-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.hc-protocol-card__cat {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}
.hc-protocol-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.15;
  margin: 0;
}
.hc-protocol-card h3 em { color: var(--c-gold); font-style: italic; }
.hc-protocol-card p {
  font-size: var(--text-sm);
  color: var(--hc-cream-60);
  line-height: 1.5;
  flex: 1;
  margin: 0;
  font-weight: 300;
}
.hc-protocol__foot {
  padding: 22px 24px 0;
  font-size: var(--text-sm);
  color: var(--hc-cream-60);
  line-height: 1.5;
}
.hc-protocol__foot a {
  color: var(--c-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--hc-line);
  padding-bottom: 1px;
}

/* ─── MEMBERSHIP BENEFITS (hell, i-viii) ─── */
.hc-member {
  background: var(--hc-paper);
  color: var(--hc-ink-paper);
  padding: 64px 24px 48px;
}
.hc-member .hc-section-lead { color: var(--hc-ink-paper); }
.hc-member .hc-section-lead em { color: var(--hc-gold-deep); }
.hc-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 16px;
}
.hc-benefit {
  padding: 22px 0;
  border-top: 1px solid var(--hc-line-soft);
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
}
.hc-benefit:last-child { border-bottom: 1px solid var(--hc-line-soft); }
.hc-benefit__idx {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--hc-gold-deep);
  padding-top: 2px;
}
.hc-benefit h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--hc-ink-paper);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.hc-benefit p {
  font-size: var(--text-sm);
  color: var(--hc-ink-60);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* ─── DONNERSTAGE ─── */
.hc-thursdays {
  background: var(--hc-ink-warm);
  color: var(--c-white);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.hc-thursdays::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,148,79,0.12), transparent 70%);
  pointer-events: none;
}
.hc-thursdays__hero {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 16px 0 8px;
  font-weight: 300;
  position: relative;
}
.hc-thursdays__hero em { color: var(--c-gold); font-style: italic; font-weight: 400; }
.hc-thursdays__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-gold);
  margin: 0 0 36px;
  font-weight: 400;
}
.hc-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hc-line);
  border: 1px solid var(--hc-line);
  border-radius: 2px;
  position: relative;
}
.hc-topic {
  background: var(--hc-ink-warm);
  padding: var(--space-md) var(--space-sm);
  font-size: var(--text-xs);
  line-height: 1.4;
  color: var(--c-white);
  min-height: 70px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-weight: 300;
}
.hc-topic__num {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--c-gold);
  font-size: var(--text-sm);
  font-weight: 400;
}
.hc-thursdays__foot {
  margin-top: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--hc-cream-60);
  line-height: 1.6;
}

/* ─── CIRCLE (Kreis der 20) ─── */
.hc-circle {
  background: var(--hc-paper);
  color: var(--hc-ink-paper);
  padding: 64px 24px 56px;
  text-align: center;
}
.hc-circle .hc-section-lead {
  text-align: center;
  font-size: 1.75rem;
  color: var(--hc-ink-paper);
}
.hc-circle .hc-section-lead em { color: var(--hc-gold-deep); }
.hc-dot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 220px;
  margin: 32px auto 28px;
}
.hc-dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0.9;
}
.hc-dot--empty {
  background: transparent;
  border: 1px solid var(--c-gold);
  opacity: 0.5;
}
.hc-circle__meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hc-gold-deep);
  margin-top: 6px;
}
.hc-circle__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--hc-ink-paper);
  max-width: 300px;
  margin: 24px auto;
  font-weight: 400;
}
.hc-circle__quote em {
  color: var(--hc-gold-deep);
  font-style: normal;
  font-weight: 500;
}
.hc-circle__pillars {
  margin-top: 40px;
  text-align: left;
  border-top: 1px solid var(--hc-line);
  padding-top: 24px;
}
.hc-circle__pillar {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}
.hc-circle__pillar .mark {
  color: var(--hc-gold-deep);
  font-family: var(--font-heading);
  font-size: 1rem;
}
.hc-circle__pillar p {
  font-size: var(--text-sm);
  color: var(--hc-ink-paper);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.hc-circle__pillar strong { font-weight: 500; }

/* ─── AUFNAHME (5 Schritte) ─── */
.hc-entry {
  background: var(--hc-ink-deep);
  color: var(--c-white);
  padding: 64px 24px 56px;
}
.hc-entry .hc-section-lead em { color: var(--c-gold); }
.hc-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--hc-line);
  align-items: center;
}
.hc-step:last-child { border-bottom: 1px solid var(--hc-line); }
.hc-step__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold);
  font-weight: 400;
}
.hc-step__text {
  font-size: var(--text-sm);
  color: var(--c-white);
  font-weight: 300;
}
.hc-step__text strong { font-weight: 500; }
.hc-step__hint {
  display: block;
  color: var(--hc-cream-60);
  font-size: var(--text-sm);
  margin-top: 2px;
  font-weight: 300;
}

/* ─── FINAL CTA ─── */
.hc-final {
  position: relative;
  padding: 72px 24px 56px;
  background: linear-gradient(180deg, #1A1D1E 0%, #0E1011 100%);
  text-align: center;
  overflow: hidden;
}
.hc-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/uploads/mp-Italian-cofee-bar.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.7);
}
.hc-final__inner {
  position: relative;
  z-index: 1;
}
.hc-final h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.06;
  color: var(--c-white);
  margin: 0 0 12px;
  font-weight: 300;
}
.hc-final h2 em { color: var(--c-gold); font-style: italic; font-weight: 400; }
.hc-final__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-gold);
  margin: 0 0 32px;
  font-weight: 400;
}
.hc-final .hc-btn-primary {
  max-width: 280px;
  margin: 0 auto;
}
.hc-final__contacts {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--hc-cream-60);
  line-height: 2.1;
  letter-spacing: 0.02em;
}
.hc-final__contacts a {
  color: var(--c-gold);
  text-decoration: none;
}
.hc-final__contacts .addr {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-cream-60);
  margin-top: 16px;
}

/* ─── Tagline + Sub-Nav (auf dunklem Fond) ─── */
.hc-footer {
  background: var(--hc-ink-deep);
  padding: 32px 24px 0;
  text-align: center;
}
.hc-footer__tag {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--hc-cream-60);
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}

/* ─── Reduced-Motion respektieren (WCAG 2.3.3) ─── */
@media (prefers-reduced-motion: reduce) {
  .hc-btn-primary,
  .hc-btn-ghost,
  .footer-nav a,
  .sm-accordion__chevron,
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
