/* ==========================================================================
   Heiko Salzmann Coaching · Seinscoaching · Design-System „Stille Tiefe"
   ========================================================================== */

/* -- Self-hosted Fonts (DSGVO-konform) ------------------------------------ */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Light.woff2') format('woff2'),
       url('../fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-LightItalic.woff2') format('woff2'),
       url('../fonts/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2'),
       url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic.woff2') format('woff2'),
       url('../fonts/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Light.woff2') format('woff2'),
       url('../fonts/DMSans-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
       url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
       url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.woff2') format('woff2'),
       url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/DMMono-Regular.woff2') format('woff2'),
       url('../fonts/DMMono-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/DMMono-Medium.woff2') format('woff2'),
       url('../fonts/DMMono-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* -- Tokens „Stille Tiefe" ------------------------------------------------ */
:root {
  --night:        #1B1F2A;
  --night-soft:   #262B38;
  --slate:        #2A2A2D;
  --text:         #2A2A2D;
  --text-secondary: #595A5E;
  --text-muted:   #8E8F92;
  --cream:        #F7F4ED;
  --sand:         #ECE6D6;
  --border:       #DCD3BF;
  --copper:       #B4763C;
  --copper-light: #D29560;
  --copper-dark:  #8A5A2C;
  --moss:         #4A5D52;
  --rose-dust:    #C99A8A;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;

  --container: 1280px;
  --container-narrow: 960px;
  --section-py: 140px;
  --section-py-mobile: 80px;
}

/* -- Reset ---------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
a { color: inherit; }
ul { list-style: none; }

/* -- Typografie ----------------------------------------------------------- */
.display, h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--night);
  letter-spacing: -0.5px;
  line-height: 1.06;
}
h1 {
  font-size: clamp(46px, 6.0vw, 88px);
  letter-spacing: -1.4px;
  line-height: 1.04;
}
h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.9px;
}
h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.2;
}
em, .italic { font-style: italic; }
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--copper);
  font-weight: 300;
}
.section-num, .label, .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper-dark);
  font-weight: 400;
}

p { line-height: 1.78; color: var(--text-secondary); }
.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
}

/* -- Layout --------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 40px; }

.section { padding-top: var(--section-py); padding-bottom: var(--section-py); position: relative; }
.section--sand { background: var(--sand); }
.section--night {
  background: var(--night);
  color: var(--cream);
}
.section--night h1,
.section--night h2,
.section--night h3 { color: var(--cream); }
.section--night p { color: rgba(247, 244, 237, 0.74); }
.section--night .section-num,
.section--night .label,
.section--night .eyebrow { color: var(--copper-light); }
.section--night em { color: var(--copper-light); }

.section-header { max-width: 720px; margin-bottom: 80px; }
.section-header .eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
}
.section-header .eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--copper);
}
.section--night .section-header .eyebrow::before { background: var(--copper-light); }
.section-header h2 { margin-bottom: 28px; }
.section-header .lede { max-width: 620px; }

.hairline {
  width: 60px; height: 1px;
  background: var(--copper);
  opacity: 0.6; border: 0; margin: 40px 0;
}

/* -- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 40px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--night); color: var(--cream); }
.btn-primary:hover { background: var(--copper-dark); }
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-copper { background: var(--copper); color: var(--night); }
.btn-copper:hover { background: var(--copper-light); }

.btn-outline {
  background: transparent;
  color: var(--night);
  border: 1px solid var(--night);
  padding: 19px 39px;
}
.btn-outline:hover { background: var(--night); color: var(--cream); }
.section--night .btn-outline {
  color: var(--cream);
  border-color: rgba(247, 244, 237, 0.4);
}
.section--night .btn-outline:hover {
  background: var(--copper);
  color: var(--night);
  border-color: var(--copper);
}

.phone-link {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: all 0.2s;
}
.phone-link:hover { color: var(--copper-dark); border-color: var(--copper); }

/* -- Topbar --------------------------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247, 244, 237, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--night);
}
.logo em { font-style: italic; color: var(--copper-dark); }

.topbar-nav {
  display: flex; gap: 36px; font-size: 13px; color: var(--text-secondary);
}
.topbar-nav a { text-decoration: none; transition: color 0.2s; }
.topbar-nav a:hover { color: var(--copper-dark); }

.topbar-cta { display: flex; align-items: center; gap: 16px; position: relative; }
.icon-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--slate);
  background: transparent;
  transition: all 0.2s;
}
.icon-btn:hover { border-color: var(--copper); color: var(--copper-dark); }

.topbar-cta-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 26px;
  color: var(--night);
  background: transparent;
  border: 1px solid var(--night);
  text-decoration: none;
  transition: all 0.2s;
}
.topbar-cta-btn:hover { background: var(--night); color: var(--cream); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  align-items: center; justify-content: center;
  color: var(--night);
}

/* Hot-Contact Dropdown */
.hot-contact {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 24px;
  min-width: 300px;
  box-shadow: 0 20px 50px -20px rgba(27, 31, 42, 0.28);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.hot-contact[aria-hidden="false"] {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.hot-contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hot-contact ul { display: flex; flex-direction: column; gap: 4px; }
.hot-contact li a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 12px;
  text-decoration: none;
  color: var(--night);
  transition: background 0.2s;
}
.hot-contact li a:hover { background: var(--sand); }
.hot-contact li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--copper-dark);
  margin-top: 2px;
}
.hot-contact .hc-title { font-size: 14px; font-weight: 500; display: block; margin-bottom: 2px; }
.hot-contact .hc-sub { font-size: 12px; color: var(--text-muted); }

/* -- Hero ----------------------------------------------------------------- */
.hero {
  padding-top: 100px;
  padding-bottom: 140px;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  background: var(--night);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* sanfter Kupfer-Schimmer von oben rechts */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 600px at 85% 10%, rgba(180, 118, 60, 0.12), transparent 60%),
    radial-gradient(700px 500px at 5% 100%, rgba(74, 93, 82, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 680px; }
.hero h1 { color: var(--cream); margin-bottom: 44px; }
.hero h1 em { color: var(--copper-light); font-style: italic; font-weight: 300; }
.hero-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 48px;
}
.hero-label::before {
  content: ''; width: 36px; height: 1px; background: var(--copper-light);
}
.hero-subline {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(247, 244, 237, 0.78);
  max-width: 560px;
  margin-bottom: 52px;
  font-weight: 300;
}
.hero-cta {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.hero-cta .btn-primary { background: var(--copper); color: var(--night); }
.hero-cta .btn-primary:hover { background: var(--copper-light); }
.hero-cta .phone-link {
  color: rgba(247, 244, 237, 0.7);
  border-color: rgba(247, 244, 237, 0.25);
}
.hero-cta .phone-link:hover { color: var(--copper-light); border-color: var(--copper-light); }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.5);
}
.hero-trust span { display: flex; align-items: center; gap: 10px; }
.hero-trust span::before {
  content: ''; width: 5px; height: 5px;
  background: var(--copper-light);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 720px;
}
.photo-frame {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #3A3F4D 0%, #2A2E38 50%, #1B1F2A 100%);
}
.photo-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  z-index: 0;
}
.photo-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(27, 31, 42, 0.10) 0%,
      transparent 35%,
      rgba(27, 31, 42, 0.34) 100%),
    linear-gradient(to right,
      rgba(180, 118, 60, 0.06) 0%,
      transparent 60%);
  pointer-events: none;
}
.photo-frame::after { content: none; }

.photo-caption {
  position: absolute; top: -24px; right: -24px;
  background: var(--cream);
  padding: 18px 22px;
  max-width: 240px;
  border-left: 2px solid var(--copper);
  z-index: 3;
}
.photo-caption p {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
  color: var(--slate);
}

/* -- Pain-Spiegel --------------------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.pain-card {
  background: var(--cream);
  border-left: 3px solid var(--copper);
  padding: 36px 36px;
}
.pain-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 18px;
}
.pain-card p { font-size: 14px; line-height: 1.75; }
.pain-footer {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
  color: var(--night);
}

/* -- Outcome / Versprechen ------------------------------------------------ */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  margin-top: 60px; margin-bottom: 60px;
  max-width: 860px;
}
.outcome-item {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item svg { flex-shrink: 0; color: var(--moss); margin-top: 4px; }
.outcome-closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--night);
  text-align: center;
  margin-top: 40px;
}

/* -- Methode (Night) ------------------------------------------------------ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.method-card {
  background: var(--night-soft);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.method-card:hover { background: #2D3240; }
.method-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 28px;
}
.method-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.15;
}
.method-card p {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(247, 244, 237, 0.72);
}
.method-foot {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.method-foot-text {
  color: rgba(247, 244, 237, 0.7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  max-width: 520px;
  line-height: 1.55;
}

/* -- Werkzeuge (6 Karten) ------------------------------------------------ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--border);
  border: 1px solid var(--border);
}
.tool-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.tool-card .icon {
  width: 32px; height: 32px;
  color: var(--copper-dark);
  margin-bottom: 4px;
}
.tool-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--night);
  line-height: 1.2;
}
.tool-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* -- About ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
}
.about-photo .photo-frame {
  background: linear-gradient(155deg, #C4A777 0%, #8C6D45 50%, #4A3520 100%);
}
.about-photo .photo-frame img { object-position: center top; }

.about-copy h2 { margin-bottom: 40px; }
.about-copy p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 620px;
}
.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--copper-dark);
  margin-top: 32px;
  margin-bottom: 48px;
}
.about-bio {
  display: flex; gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-dark);
}
.about-bio span { display: flex; align-items: center; gap: 10px; }
.about-bio span::before {
  content: ''; width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
}

/* -- Lead-Magnet --------------------------------------------------------- */
.leadmagnet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.leadmagnet-cover {
  aspect-ratio: 5/7;
  background: linear-gradient(170deg, var(--cream) 0%, var(--sand) 55%, #DDD2B8 100%);
  position: relative;
  padding: 56px 44px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -40px rgba(27, 31, 42, 0.3);
}
.leadmagnet-cover .cover-top { display: flex; flex-direction: column; gap: 14px; }
.leadmagnet-cover .cover-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-dark);
}
.leadmagnet-cover .cover-num {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--copper);
  line-height: 1;
  font-weight: 300;
}
.leadmagnet-cover h3 {
  font-size: 28px; line-height: 1.1;
  color: var(--night);
}
.leadmagnet-cover .cover-foot {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.leadmagnet-copy h2 { margin-bottom: 28px; }
.leadmagnet-copy .lede { margin-bottom: 28px; }
.leadmagnet-copy p {
  font-size: 16px; line-height: 1.78;
  margin-bottom: 16px;
  max-width: 560px;
}
.leadmagnet-form {
  display: grid; gap: 14px;
  max-width: 460px;
  margin-top: 32px;
}
.leadmagnet-form input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--night);
  transition: border-color 0.2s;
}
.leadmagnet-form input:focus {
  outline: none; border-color: var(--copper);
}
.leadmagnet-form button { padding: 19px 28px; margin-top: 4px; }
.leadmagnet-trust {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.leadmagnet-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--slate);
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--copper);
  max-width: 440px;
}
.leadmagnet-quote small {
  display: block; margin-top: 6px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* -- Programme (Night) ---------------------------------------------------- */
.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.programme-card {
  background: var(--night-soft);
  padding: 52px 44px;
  border-left: 3px solid var(--copper);
  display: flex; flex-direction: column;
  gap: 20px;
}
.programme-card.featured { border-left-color: var(--copper-light); }
.programme-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  display: flex; align-items: center; gap: 16px;
}
.programme-card.featured .featured-tag {
  background: var(--copper);
  color: var(--night);
  padding: 3px 10px;
  font-size: 9px; letter-spacing: 2px;
}
.programme-card h3 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
}
.programme-card .programme-short {
  font-size: 15px; line-height: 1.7;
  color: rgba(247, 244, 237, 0.82);
}
.programme-card ul {
  display: flex; flex-direction: column;
  gap: 10px; margin: 8px 0;
}
.programme-card li {
  font-size: 14px;
  color: rgba(247, 244, 237, 0.85);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.programme-card li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--copper);
  font-size: 9px; top: 5px;
}
.programme-card .programme-fit {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 118, 60, 0.22);
}
.programme-card .btn { margin-top: auto; align-self: flex-start; }
.programme-foot {
  max-width: 780px; margin: 0 auto;
  padding: 32px 40px;
  background: rgba(247, 244, 237, 0.06);
  border-left: 2px solid var(--copper);
  font-size: 15px; line-height: 1.78;
  color: rgba(247, 244, 237, 0.82);
}
.programme-foot strong { color: var(--cream); font-weight: 500; }

/* -- Abgrenzung ---------------------------------------------------------- */
.not-list {
  border-left: 2px solid var(--rose-dust);
  padding: 32px 36px;
  background: rgba(201, 154, 138, 0.10);
  max-width: 720px;
}
.not-list strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-dust);
  margin-bottom: 16px;
  font-weight: 500;
}
.not-list ul { display: flex; flex-direction: column; gap: 10px; }
.not-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.not-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--rose-dust);
}

/* -- Testimonials (Sand) -------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--cream);
  color: var(--night);
  padding: 44px 36px;
  position: relative;
  border-top: 2px solid var(--copper);
}
.testimonial::before {
  content: '"';
  position: absolute; top: 4px; left: 28px;
  font-family: var(--font-serif);
  font-size: 100px;
  color: var(--copper);
  opacity: 0.18;
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--slate);
  margin: 28px 0 24px;
  position: relative;
}
.testimonial .author {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-dark);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testimonials-foot {
  text-align: center;
  margin-top: 52px;
}
.testimonials-foot a {
  font-size: 13px;
  color: var(--copper-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 3px;
}

/* -- Werte ---------------------------------------------------------------- */
.werte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px;
}
.wert {
  padding-left: 20px;
  border-left: 2px solid var(--copper);
}
.wert h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--night);
}
.wert p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* -- FAQ ------------------------------------------------------------------ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 32px 24px 32px 0;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--night);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--copper-dark); }
.faq-toggle {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--copper-dark);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-item.is-open {
  border-left: 2px solid var(--copper);
  margin-left: -2px;
}
.faq-item.is-open .faq-question { padding-left: 24px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 36px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 720px;
}

/* -- Final CTA (Night) --------------------------------------------------- */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 28px; }
.final-cta .lede {
  margin: 0 auto 80px;
  color: rgba(247, 244, 237, 0.74);
}
.final-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto 80px;
}
.final-option {
  background: var(--cream);
  color: var(--night);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-top: 3px solid var(--copper);
  text-align: left;
}
.final-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.5);
}
.final-option .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--copper-dark);
  margin-bottom: 8px;
}
.final-option h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--night);
}
.final-option .lead-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 42px;
}
.final-option .big {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--night);
  margin-top: 6px;
}
.final-option .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.final-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--copper-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* -- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--night);
  color: rgba(247, 244, 237, 0.62);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-brand h4 em { font-style: italic; color: var(--copper-light); }
.footer-brand .tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  text-decoration: none;
  color: rgba(247, 244, 237, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--copper-light); }

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 237, 0.1);
  padding-top: 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.38);
  text-align: center;
}

/* -- Legal Pages (Impressum/Datenschutz/AGB) ----------------------------- */
.legal-page { padding: 80px 0 100px; }
.legal-page h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 60px;
}
.legal-page h2 {
  font-size: 24px;
  margin: 48px 0 20px;
  color: var(--night);
}
.legal-page h3 {
  font-size: 18px;
  margin: 32px 0 12px;
  color: var(--night);
}
.legal-page p { margin-bottom: 18px; max-width: 720px; }
.legal-page ul { padding-left: 22px; margin-bottom: 22px; max-width: 720px; }
.legal-page li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.legal-page a { color: var(--copper-dark); }
.legal-page a:hover { color: var(--copper); }

/* -- Responsive ----------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 100px; }
  .hero-grid { gap: 60px; }
  .hero { padding-top: 70px; padding-bottom: 100px; }
  .container, .container-narrow { padding: 0 28px; }
  .topbar-inner { padding: 20px 28px; }
  .pain-grid, .testimonials-grid, .method-grid, .tools-grid, .final-options, .werte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid, .leadmagnet-grid, .programme-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .photo-caption { top: auto; bottom: 20px; right: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --section-py: 72px; }
  body { font-size: 15px; }
  .topbar-inner { padding: 16px 22px; gap: 12px; }
  .topbar-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .topbar-cta-btn { display: none; }
  .icon-btn { width: 38px; height: 38px; }
  .container, .container-narrow { padding: 0 22px; }
  .hero { padding: 48px 0 80px; min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0 22px;
  }
  .hero-visual { order: -1; max-height: 480px; }
  .photo-caption { display: none; }
  .hero h1 { font-size: clamp(36px, 10vw, 54px); }
  .hero-label { margin-bottom: 32px; }
  .hero-subline { font-size: 16px; margin-bottom: 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-cta .btn { justify-content: center; }
  .hero-trust { gap: 14px 20px; }
  .section-header { margin-bottom: 56px; }
  .section-header h2 { font-size: 36px; }
  .pain-grid, .testimonials-grid, .method-grid, .tools-grid, .final-options, .werte-grid {
    grid-template-columns: 1fr; gap: 16px;
  }
  .outcome-grid { grid-template-columns: 1fr; gap: 4px 0; margin: 40px 0; }
  .method-card { padding: 36px 28px; }
  .pain-card { padding: 28px 28px; }
  .programme-card { padding: 40px 28px; }
  .leadmagnet-cover { padding: 40px 30px; aspect-ratio: auto; min-height: 460px; }
  .leadmagnet-cover .cover-num { font-size: 56px; }
  .final-option { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-question { font-size: 18px; padding: 24px 20px 24px 0; }
  .faq-item.is-open .faq-question { padding-left: 18px; }
  .faq-answer-inner { padding: 0 20px 28px; font-size: 15px; }
  .hot-contact { min-width: 260px; right: -20px; }
}

/* ==========================================================================
   COOKIE CONSENT BANNER · DSGVO-konform
   ========================================================================== */
.cc-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--cream);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(27, 31, 42, 0.14);
}
.cc-banner[hidden] { display: none; }
.cc-banner-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cc-banner-text { flex: 1; min-width: 240px; }
.cc-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--night);
  margin-bottom: 8px;
}
.cc-intro {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 680px;
}
.cc-link { color: var(--copper-dark); text-decoration: underline; }
.cc-link:hover { color: var(--copper); }
.cc-banner-btns {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; flex-shrink: 0;
}
.cc-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.cc-btn--primary { background: var(--night); color: var(--cream); }
.cc-btn--primary:hover { background: var(--copper-dark); }
.cc-btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.cc-btn--ghost:hover { border-color: var(--copper); color: var(--copper-dark); }

@media (max-width: 720px) {
  .cc-banner-inner {
    padding: 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .cc-banner-btns { flex-direction: column; gap: 10px; }
  .cc-btn { width: 100%; text-align: center; }
}
