/* ===== DESIGN TOKENS ===== */
:root {
  --bordeaux: #A61C4D;
  --bordeaux-dark: #7C1239;
  --bordeaux-soft: #E8B6C5;
  --gold: #B8956A;
  --gold-soft: #D4B889;
  --ink: #1A1A1A;
  --ink-soft: #2C2C2C;
  --text: #3A3532;
  --text-soft: #635C57;
  --text-muted: #7B736C;
  --cream: #FAF6F0;
  --cream-warm: #F4EDE3;
  --cream-cool: #FDFBF9;
  --hairline: #E8DFD3;
  --hairline-soft: #F0E9DD;
  --deep: linear-gradient(165deg, #140608 0%, #2a0e1c 35%, #1a1225 65%, #0b0b14 100%);
  --shadow-sm: 0 2px 8px rgba(26, 10, 16, 0.04);
  --shadow-md: 0 10px 30px rgba(26, 10, 16, 0.06);
  --shadow-lg: 0 24px 60px rgba(26, 10, 16, 0.09);
  --shadow-gold: 0 16px 48px rgba(184, 149, 106, 0.15);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --section-py: 84px;        /* vertical section rhythm (was 120px) */
  --header-h: 72px;          /* sticky header height for scroll offset */
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream-cool);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
}

/* Text selection */
::selection {
  background: var(--bordeaux);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-weight: 400;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: var(--ink-soft);
}

em {
  font-style: italic;
}

/* ===== SECTION DEFAULTS ===== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--bordeaux);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--bordeaux);
  opacity: 0.6;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.section-closing {
  font-size: 1.1rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 3rem;
  text-align: center;
}

/* ===== ORNAMENT DIVIDER ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 240px;
  opacity: 0.55;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section-transition: centered ornament at top */
.section-ornament-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 1px;
}

.section-ornament-top::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px #fff;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 18px 44px;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--bordeaux);
  color: #fff;
  box-shadow: 0 10px 30px rgba(166, 28, 77, 0.22);
}

.btn-primary:hover {
  background: var(--bordeaux-dark);
  box-shadow: 0 16px 44px rgba(166, 28, 77, 0.32);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}

.btn-secondary:hover {
  background: var(--bordeaux);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 52px;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  overflow: hidden;
  /* reserve space for the fixed header so hero content never sits under it */
  padding: calc(var(--header-h) + 24px) 0 48px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/couple-sunset.jpg') center top / cover no-repeat;
  opacity: 0.42;
  z-index: 0;
  filter: saturate(0.85) contrast(1.05);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(166, 28, 77, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 149, 106, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,5,8,0.4) 0%, transparent 30%, transparent 70%, rgba(10,5,8,0.55) 100%);
  animation: heroGlow 14s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="0.4" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
  opacity: 0.6;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 32px;
  z-index: 2;
  max-width: 860px;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(212, 184, 137, 0.85);
  margin-bottom: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(212, 184, 137, 0.4);
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 300;
  letter-spacing: 18px;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 182, 197, 0.85);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.hero-hook {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 780px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  position: relative;
  padding-top: 2rem;
}

.hero-hook::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
}

.hero-hook span {
  color: var(--bordeaux-soft);
  font-style: italic;
  font-weight: 400;
}

.hero-verse {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.9;
  margin-bottom: 3.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 2rem;
}

.hero-verse span {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: 0.75rem;
  color: rgba(212, 184, 137, 0.55);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

/* The hero copy is tall; only show the scroll cue when the viewport is tall
   enough that it won't collide with the CTA button. */
@media (max-height: 1010px) {
  .hero-scroll { display: none; }
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== MANIFESTO ===== */
.section-manifesto {
  background: #fff;
  padding: 140px 0 130px;
  text-align: center;
  position: relative;
}

.section-manifesto::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.5;
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}

.manifesto-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.manifesto-sub {
  font-size: 1.25rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
}

.manifesto-bridge {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: left;
}

.manifesto-list li {
  font-size: 1.05rem;
  color: var(--text);
  padding: 22px 28px 22px 64px;
  background: var(--cream);
  border-radius: 2px;
  border-left: 2px solid var(--bordeaux);
  position: relative;
  line-height: 1.65;
  transition: all 0.4s var(--ease);
}

.manifesto-list li:hover {
  transform: translateX(4px);
  background: var(--cream-warm);
  border-left-color: var(--gold);
}

.manifesto-list li::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 24px;
  width: 18px;
  height: 18px;
  background-color: var(--bordeaux);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 21s-7-4.35-9.5-8.5C.76 9.31 2.49 5 6.5 5c2 0 3.5 1 5.5 3 2-2 3.5-3 5.5-3 4.01 0 5.74 4.31 3.99 7.5C19 16.65 12 21 12 21z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 21s-7-4.35-9.5-8.5C.76 9.31 2.49 5 6.5 5c2 0 3.5 1 5.5 3 2-2 3.5-3 5.5-3 4.01 0 5.74 4.31 3.99 7.5C19 16.65 12 21 12 21z'/></svg>") center / contain no-repeat;
  transition: all 0.4s var(--ease);
}

.manifesto-list li:hover::before {
  background-color: var(--gold);
  transform: scale(1.12);
}

.manifesto-tags {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.manifesto-tags .tag-dot {
  color: var(--gold);
  letter-spacing: 0;
  opacity: 0.5;
}

/* ===== PAIN / DYNAMIK ===== */
.section-pain {
  background: var(--cream);
  border-top: 1px solid var(--hairline);
  position: relative;
}

.section-pain h2 {
  max-width: 820px;
}

.section-pain h2 em {
  color: var(--bordeaux);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, transparent 70%, rgba(166,28,77,0.08) 70%);
  padding: 0 4px;
}

.pain-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3.5rem;
}

.pain-col {
  padding: 44px 40px;
  background: #fff;
  border-radius: 2px;
  border: 1px solid var(--hairline);
  transition: all 0.5s var(--ease);
  position: relative;
}

.pain-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--bordeaux), transparent);
  opacity: 0.8;
}

.pain-col:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bordeaux-soft);
}

.pain-col-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: var(--bordeaux);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline-soft);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-list li {
  font-size: 1rem;
  color: #5A5A5A;
  padding-left: 28px;
  position: relative;
  line-height: 1.65;
}

.pain-list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  top: 0;
  color: #A61C4D;
  font-weight: 500;
  opacity: 0.6;
}

.pain-verdict {
  text-align: center;
  margin: 5rem auto 3.5rem;
  max-width: 720px;
  padding: 3rem 2rem;
  position: relative;
}

.pain-verdict::before,
.pain-verdict::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.pain-verdict::before { top: 0; }
.pain-verdict::after { bottom: 0; }

.verdict-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.verdict-accent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--bordeaux);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pain-thoughts {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.pain-thoughts p {
  color: #6F6F6F;
  margin-top: 1.5rem;
}

.pain-thoughts blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #3A3A3A;
  padding: 1.25rem 2rem;
  border-left: 3px solid #A61C4D;
  background: #fff;
  border-radius: 0 10px 10px 0;
  margin: 1rem auto;
  text-align: left;
  max-width: 560px;
}

.pain-insight {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pain-insight > p:first-child {
  color: #6F6F6F;
  margin-bottom: 1.25rem;
}

.insight-highlight {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  color: #2C2C2C;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.insight-highlight strong {
  color: #A61C4D;
  font-weight: 600;
}

.insight-sub {
  font-size: 1.05rem;
  color: #6F6F6F;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.pain-why {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0ece8;
  text-align: center;
}

.pain-why-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.pain-why p {
  color: #5A5A5A;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.why-lead {
  margin-top: 1.5rem !important;
  font-weight: 500;
  color: #4A4A4A !important;
}

.why-list {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-list li {
  font-size: 1rem;
  color: #5A5A5A;
  padding-left: 24px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A61C4D;
}

.why-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #3A3A3A !important;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0ece8;
}

.why-closing em {
  color: #A61C4D;
  font-weight: 500;
}

/* ===== SHIFT ===== */
.section-shift {
  background: var(--deep);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-shift::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(166, 28, 77, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 149, 106, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-shift::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.section-shift .container {
  position: relative;
  z-index: 1;
}

.shift-inner {
  max-width: 780px;
  margin: 0 auto;
}

.section-shift .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.section-shift h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.shift-lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.shift-lead strong {
  color: #E8B6C5;
  font-weight: 500;
}

.shift-bridge {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.shift-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 3.5rem;
}

.shift-step {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 184, 137, 0.12);
  border-radius: 2px;
  transition: all 0.5s var(--ease);
  position: relative;
}

.shift-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.shift-step:hover {
  background: rgba(184, 149, 106, 0.06);
  border-color: rgba(212, 184, 137, 0.3);
  transform: translateY(-4px);
}

.shift-step:hover::before {
  width: 100%;
}

.shift-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.shift-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.shift-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.shift-closing em {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.shift-closing strong {
  color: #E8B6C5;
  font-weight: 500;
}

/* ===== VISION ===== */
.section-vision {
  background: #FDFBF9;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.vision-content {
  max-width: 750px;
}

.vision-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.vision-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-list li {
  font-size: 1.1rem;
  color: #5A5A5A;
  padding-left: 28px;
  position: relative;
  line-height: 1.75;
}

.vision-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A61C4D;
  opacity: 0.6;
}

.vision-list-alt {
  margin-top: 1.5rem;
}

.vision-list-alt li::before {
  background: #A61C4D;
  opacity: 1;
  width: 6px;
  height: 6px;
  top: 12px;
}

.vision-mid {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #3A3A3A;
  line-height: 1.55;
}

.vision-mid strong {
  color: #A61C4D;
  font-style: normal;
  font-weight: 600;
}

.vision-bridge {
  margin-top: 2.5rem;
  font-weight: 500;
  color: #4A4A4A;
}

.section-vision h2 em {
  color: #A61C4D;
  font-style: italic;
  font-weight: 500;
}

.vision-closing {
  margin-top: 2.5rem;
  font-size: 1.15rem;
  color: #4A4A4A;
  line-height: 1.7;
}

.vision-closing strong {
  color: #A61C4D;
}

.vision-cta {
  margin-top: 2rem;
}

/* ===== TRANSFORMATION ===== */
.section-transformation {
  background: #fff;
  text-align: center;
}

.transformation-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-transformation h2 {
  margin-bottom: 1rem;
}

.section-transformation h2 em {
  color: #A61C4D;
  font-style: italic;
  font-weight: 500;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 3rem 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: #FDFBF9;
  border: 1px solid #f0ece8;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.05);
}

.transformation-icon {
  color: #A61C4D;
  flex-shrink: 0;
  margin-top: 2px;
}

.transformation-item p {
  color: #4A4A4A;
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
}

.transformation-item strong {
  color: #2C2C2C;
  font-weight: 600;
}

.transformation-bridge {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  line-height: 1.6;
  color: #3A3A3A;
  max-width: 680px;
  margin: 2.5rem auto 1.5rem;
}

.transformation-bridge em {
  color: #999;
  font-style: italic;
}

.transformation-bridge strong {
  color: #A61C4D;
  font-weight: 600;
}

.transformation-final {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #A61C4D;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f0ece8;
}

/* ===== PROGRAMM / 4 WOCHEN ===== */
.section-program {
  background: #fff;
}

.section-program h2 {
  max-width: 780px;
}

.program-lead {
  font-size: 1.1rem;
  color: #4A4A4A;
  max-width: 720px;
  margin: -1.5rem 0 3rem;
  line-height: 1.75;
}

.program-lead em {
  color: #A61C4D;
  font-style: italic;
  font-weight: 500;
}

.week-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.week-card {
  padding: 52px 56px 44px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid var(--hairline);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.week-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--bordeaux), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}

.week-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.week-card:hover::before {
  transform: scaleY(1);
}

.week-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.week-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.week-num::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.week-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.week-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.week-list li {
  font-size: 1.02rem;
  color: #4A4A4A;
  padding-left: 32px;
  position: relative;
  line-height: 1.65;
}

.week-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  top: 2px;
  color: #A61C4D;
  font-size: 1rem;
}

.week-verse {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  padding: 1.25rem 1.75rem;
  border-left: 2px solid var(--gold);
  background: var(--cream);
  margin-bottom: 1.75rem;
}

.week-verse span {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  font-weight: 500;
}

.week-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--ink-soft);
  font-style: italic;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  position: relative;
}

.week-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.week-closing strong {
  color: var(--bordeaux);
  font-style: normal;
  font-weight: 600;
}

.week-list li::before {
  color: var(--gold);
}

/* ===== OUTCOME / DAS ERGEBNIS ===== */
.section-outcome {
  background: var(--cream);
  text-align: center;
  position: relative;
}

.outcome-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 3.5rem 0 3rem;
  width: 100%;
}

.outcome-item {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  text-align: left;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.outcome-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--bordeaux));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.outcome-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.outcome-item:hover::before {
  transform: scaleX(1);
}

.outcome-swap {
  display: block;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
}

.swap-new {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--bordeaux);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}

.swap-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  font-weight: 300;
}

.outcome-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink-soft);
  margin-top: 1rem;
  line-height: 1.4;
  max-width: 640px;
  padding: 2rem 0;
  position: relative;
  font-weight: 400;
}

.outcome-closing::before,
.outcome-closing::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.outcome-closing::before { top: 0; }
.outcome-closing::after { bottom: 0; }

.outcome-closing em {
  color: var(--bordeaux);
  font-style: italic;
  font-weight: 500;
}

/* ===== FORMAT ===== */
.section-format {
  background: var(--cream);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 3.5rem;
}

.format-item {
  text-align: center;
  padding: 52px 32px 44px;
  background: #fff;
  border: 1px solid var(--hairline);
  transition: all 0.5s var(--ease);
  position: relative;
}

.format-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.format-icon {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.format-icon::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.format-item p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ===== MENTOREN ===== */
.section-mentors {
  background: #fff;
}

.mentors-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
}

.mentors-image {
  position: relative;
}

.mentors-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.mentors-photo-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}

.mentors-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #3A3A3A;
  margin-bottom: 1.5rem;
}

.mentors-text p {
  margin-bottom: 1.25rem;
  color: #6F6F6F;
}

.mentors-verse {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #A61C4D !important;
  opacity: 0.7;
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid #f0ece8;
}

.mentors-verse span {
  font-style: normal;
  font-size: 0.85rem;
  color: #999;
  display: block;
  margin-top: 0.5rem;
}

/* ===== AUDIENCE ===== */
.section-audience {
  background: var(--deep);
  color: #fff;
  position: relative;
}

.section-audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(166,28,77,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.section-audience .container {
  position: relative;
  z-index: 1;
}

.section-audience .section-label {
  color: var(--gold-soft);
}

.section-audience .section-label::before {
  background: var(--gold);
}

.section-audience h2 {
  color: #fff;
}

.audience-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 3rem;
}

.audience-col {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.audience-col:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(166, 28, 77, 0.4);
}

.audience-col-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: #E8B6C5;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 28px;
  position: relative;
  line-height: 1.65;
}

.audience-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  top: 0;
  color: #A61C4D;
}

.audience-list strong {
  color: #fff;
  font-weight: 600;
}

.audience-closing {
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-style: italic;
}

.audience-closing em {
  color: #E8B6C5;
  font-style: italic;
}

.audience-closing strong {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}

.audience-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== FAIL / RAUM ===== */
.section-fail {
  background: #fff;
  text-align: center;
}

.fail-inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-fail h2 {
  margin-bottom: 1.5rem;
}

.section-fail h2 em {
  color: #A61C4D;
  font-style: italic;
  font-weight: 500;
}

.fail-lead {
  font-size: 1.15rem;
  color: #6F6F6F;
  margin-bottom: 3rem;
  font-style: italic;
}

.fail-quote {
  max-width: 680px;
  margin: 0 auto 3rem;
  padding: 40px 36px;
  background: #FDFBF9;
  border-radius: 14px;
  border: 1px solid #f0ece8;
}

.fail-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: #4A4A4A;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.fail-quote em {
  color: #bbb;
  font-style: italic;
}

.fail-quote-accent {
  color: #2C2C2C !important;
  font-size: 1.55rem !important;
}

.fail-quote-accent strong {
  color: #A61C4D;
  font-weight: 600;
}

.fail-divider {
  width: 60px;
  height: 1px;
  background: #d4c9c0;
  margin: 3rem auto;
}

.room-block {
  max-width: 720px;
  margin: 0 auto;
}

.room-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: #2C2C2C;
  margin: 1rem 0 2.5rem;
  font-weight: 500;
}

.room-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.room-step {
  padding: 28px 20px;
  background: linear-gradient(135deg, #FDFBF9 0%, #f8f4f0 100%);
  border: 1px solid #eee8e2;
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.room-step:hover {
  transform: translateY(-3px);
  border-color: #A61C4D;
}

.room-step-icon {
  color: #A61C4D;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.room-step p {
  color: #4A4A4A;
  font-size: 1rem;
  margin: 0;
}

.room-step strong {
  color: #A61C4D;
  font-weight: 600;
}

.room-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: #3A3A3A;
  font-style: italic;
  line-height: 1.55;
  padding-top: 1.5rem;
  border-top: 1px dashed #d4c9c0;
}

.room-closing strong {
  color: #A61C4D;
  font-style: normal;
  font-weight: 600;
}

/* ===== TESTIMONIAL / BIBLE QUOTE ===== */
.section-testimonial {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.section-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 149, 106, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 40px;
  position: relative;
  z-index: 1;
}

.testimonial-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 7rem;
  line-height: 0.3;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.testimonial-source {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.testimonial-source::before,
.testimonial-source::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ===== VALUES ===== */
.section-values {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.value-item {
  padding: 44px 36px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: all 0.5s var(--ease);
  position: relative;
  background: #fff;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.value-item:hover {
  background: var(--cream);
}

.value-item:hover::before {
  width: 100%;
}

.value-item h3 {
  font-size: 1.3rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.section-pricing {
  background: var(--cream);
  text-align: center;
  position: relative;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 940px;
  margin: 2.75rem auto 0;
}

.pricing-card {
  background: #fff;
  border-radius: 2px;
  padding: 56px 44px 48px;
  border: 1px solid var(--hairline);
  position: relative;
  transition: all 0.5s var(--ease);
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border: 1px solid var(--bordeaux);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff 0%, #fff 92%, rgba(166,28,77,0.02) 100%);
}

.pricing-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--bordeaux), var(--gold), var(--bordeaux));
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  white-space: nowrap;
  border: 1px solid var(--gold);
}

.pricing-badge-alt {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}

.pricing-amount {
  margin: 1.75rem 0 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-old {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.price-current {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-save {
  font-size: 0.72rem;
  color: var(--bordeaux);
  font-weight: 500;
  margin-bottom: 2.25rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2.75rem;
}

.pricing-features li {
  padding: 14px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--hairline-soft);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.pricing-card .btn {
  display: flex;
  width: 100%;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  letter-spacing: 1px;
  text-align: center;
}

.pricing-workshop-hint {
  max-width: 640px;
  margin: 3.5rem auto 0;
  padding: 28px 36px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--gold);
}

.pricing-workshop-hint p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.pricing-workshop-hint strong {
  color: var(--bordeaux);
  font-weight: 600;
}

/* ===== FAQ ===== */
.section-faq {
  background: #fff;
}

.faq-list {
  max-width: 820px;
  margin: 3.5rem auto 0;
  border-top: 1px solid var(--hairline);
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  transition: background 0.3s ease;
}

.faq-item[open] {
  background: var(--cream);
}

.faq-item summary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  padding: 28px 32px;
  cursor: pointer;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-item summary:hover {
  color: var(--bordeaux);
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  background:
    linear-gradient(var(--bordeaux), var(--bordeaux)) center/10px 1px no-repeat,
    linear-gradient(var(--bordeaux), var(--bordeaux)) center/1px 10px no-repeat;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(var(--bordeaux), var(--bordeaux)) center/10px 1px no-repeat;
  border-color: var(--bordeaux);
}

.faq-item p {
  padding: 0 32px 28px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 680px;
}

/* ===== CTA ===== */
.section-cta {
  background: var(--deep);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/couple-beach.jpg') center 30% / cover no-repeat;
  opacity: 0.12;
  filter: blur(2px) saturate(0.9);
  z-index: 0;
}

.section-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(166, 28, 77, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(184, 149, 106, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

.section-cta h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-cta .btn-large {
  background: var(--bordeaux);
  border: none;
}

.section-cta .btn-large:hover {
  box-shadow: 0 20px 50px rgba(166, 28, 77, 0.45);
}

.cta-verse {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 1.05rem !important;
  max-width: 560px;
  margin: 3.5rem auto 0 !important;
  line-height: 1.9;
  position: relative;
  padding-top: 2.5rem;
}

.cta-verse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
}

.cta-verse span {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: 0.75rem;
  color: rgba(212, 184, 137, 0.55) !important;
}

/* ===== FOOTER ===== */
.footer {
  background: #070608;
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #A61C4D;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 1.25rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 1.5rem;
}

/* ===== LEGAL PAGES ===== */
.legal-nav {
  background: #FDFBF9;
  padding: 20px 0;
  border-bottom: 1px solid #f0ece8;
}

.legal-back {
  font-size: 0.9rem;
  color: #A61C4D;
  transition: opacity 0.3s ease;
}

.legal-back:hover {
  opacity: 0.7;
}

.legal-page {
  background: #FDFBF9;
  padding-top: 60px;
}

.legal-page h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2C2C2C;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  color: #6F6F6F;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 750px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

.legal-page ul li {
  color: #6F6F6F;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.legal-page a {
  color: #A61C4D;
}

/* ===== VIDEO TESTIMONIALS ===== */
.section-video-testimonials {
  background: #fff;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

.video-testimonial {
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4a9e6a;
  font-weight: 500;
}

.video-badge::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #4a9e6a;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
}

@media (max-width: 900px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== PODCAST ===== */
.podcast-section {
  max-width: 600px;
  margin: 2.75rem auto 0;
  text-align: center;
}

.podcast-title {
  font-size: 1.3rem;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.section-cta .podcast-section .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.section-cta .podcast-title {
  color: rgba(255, 255, 255, 0.8);
}

.podcast-embed {
  border-radius: 12px;
  overflow: hidden;
}

.legal-source {
  margin-top: 3rem;
  font-size: 0.8rem !important;
  color: #bbb !important;
}

/* ===== ANIMATIONS (fade-in on scroll) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pain-columns,
  .about-grid,
  .audience-split,
  .pricing-cards,
  .transformation-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .shift-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .room-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pain-why {
    padding: 36px 24px;
  }

  .section-manifesto {
    padding: 56px 0;
  }

  .week-card {
    padding: 32px 24px 28px;
  }

  .week-head {
    gap: 12px;
  }

  .fail-quote {
    padding: 32px 24px;
  }

  .format-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-content {
    order: 1;
  }

  .vision-image {
    order: 2;
    max-width: 350px;
  }

  .mentors-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentors-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-title {
    letter-spacing: 8px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 600px) {
  /* tighter side gutters → more readable line length on phones */
  .container {
    padding: 0 20px;
  }

  .hero-title {
    letter-spacing: 4px;
    font-size: clamp(3.2rem, 17vw, 4rem);
  }

  /* calmer heading + intro scale on small screens */
  h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .section-intro {
    font-size: 1.08rem;
    margin-bottom: 2rem;
  }

  /* labels: less letter-spacing so they don't wrap awkwardly */
  .section-label,
  .hero-label {
    letter-spacing: 2.5px;
    gap: 10px;
  }

  .section-label::before { width: 18px; }

  /* tighten the (tall) hero stack on mobile */
  .hero-label { margin-bottom: 1.75rem; }
  .hero-hook { padding-top: 1.5rem; margin-bottom: 1.75rem; }
  .hero-hook-soft { margin-bottom: 1.75rem; }
  .hero-verse { margin-bottom: 2.25rem; }

  .btn-large {
    padding: 16px 32px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 16px 32px;
  }

  .testimonial-card {
    padding: 40px 20px;
  }

  .pricing-card {
    padding: 40px 24px;
  }

  .about-card {
    padding: 32px 24px;
  }
}

/* ===== AG&Aacute;P&#274; ADDITIONS ===== */

/* Secondary hero hook (softer, smaller subline) */
.hero-hook-soft {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 680px;
  padding-top: 1.5rem;
  margin-bottom: 2.75rem;
}

.hero-hook-soft::before {
  width: 36px;
  opacity: 0.6;
}

/* Centered short keyword list (pain section) */
.why-list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  max-width: 720px;
  margin: 1.5rem auto 3.5rem;
}

.why-list-center li {
  padding: 8px 20px 8px 34px;
  margin: 0;
  background: rgba(166, 28, 77, 0.04);
  border: 1px solid var(--hairline);
  border-radius: 2px;
}

/* Price unit suffix (e.g. "/ Monat netto") — no strike-through */
.price-unit {
  text-decoration: none;
}

/* Problem section image */
.pain-figure {
  margin: 0 auto 3.75rem;
  max-width: 880px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  position: relative;
}

.pain-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.9) contrast(1.02);
}

.pain-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 20, 28, 0) 55%, rgba(38, 20, 28, 0.22) 100%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .pain-image { aspect-ratio: 4 / 3; }
  .pain-figure { border-radius: 12px; margin-bottom: 2.5rem; }
}

/* =====================================================================
   OPTIMIZATION PASS — header nav, sticky CTA, focus a11y, pricing trust
   ===================================================================== */

/* ---- Sticky site header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header.scrolled {
  background: rgba(253, 251, 249, 0.92);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom-color: var(--hairline);
  box-shadow: var(--shadow-sm);
}

.header-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 500;
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .header-brand { color: var(--ink); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-nav a:not(.btn) {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s var(--ease);
  position: relative;
}

.header-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--bordeaux);
  transition: width 0.3s var(--ease);
}

.header-nav a:not(.btn):hover::after { width: 100%; }
.site-header.scrolled .header-nav a:not(.btn) { color: var(--text-soft); }
.site-header.scrolled .header-nav a:not(.btn):hover { color: var(--bordeaux); }

.header-cta {
  padding: 12px 28px;
  font-size: 0.75rem;
}

/* compact header on scroll over light bg: keep primary button readable */
.site-header.scrolled .header-cta { box-shadow: 0 6px 18px rgba(166, 28, 77, 0.2); }

/* ---- Mobile hamburger + drawer ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.4s var(--ease);
}

.site-header.scrolled .nav-toggle span { background: var(--ink); }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open .nav-toggle span { background: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-md);
    padding: 8px 0 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  body.nav-open .header-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav a:not(.btn) {
    color: var(--text) !important;
    padding: 15px 32px;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--hairline-soft);
  }
  .header-nav a:not(.btn)::after { display: none; }

  .header-cta {
    margin: 16px 32px 0;
    padding: 16px 28px;
    font-size: 0.82rem;
  }
}

/* ---- Sticky mobile CTA bar ---- */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 990;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  box-shadow: 0 -6px 24px rgba(26, 10, 16, 0.08);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  display: none;
}

.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar .btn { width: 100%; padding: 15px; }

@media (max-width: 860px) {
  .mobile-cta-bar { display: block; }
  /* clear space so the fixed CTA bar never covers footer content */
  body { padding-bottom: 80px; }
}

/* ---- Focus-visible accessibility ---- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
details:focus-visible {
  outline: 3px solid var(--bordeaux);
  outline-offset: 3px;
  border-radius: 2px;
}

.hero a:focus-visible,
.section-cta a:focus-visible,
.site-header a:focus-visible,
.nav-toggle:focus-visible {
  outline-color: var(--gold-soft);
}

/* keyboard-only: don't show ring on mouse click */
.btn:focus:not(:focus-visible) { outline: none; }

/* active state */
.btn:active { transform: translateY(1px) scale(0.995); }

/* ---- Pricing: recommended badge + savings + trust block ---- */
.pricing-card.pricing-featured .pricing-badge {
  background: var(--bordeaux);
  color: #fff;
  border-color: var(--bordeaux);
}

.price-save-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  background: rgba(184, 149, 106, 0.14);
  border: 1px solid var(--gold);
  color: #8a6b42;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-total-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.commitment-note {
  max-width: 640px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 26px;
  background: var(--cream-cool);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-align: left;
}

.commitment-note svg { flex-shrink: 0; color: var(--bordeaux); margin-top: 2px; }
.commitment-note p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; margin: 0; }
.commitment-note strong { color: var(--ink-soft); }

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin: 2.25rem auto 0;
  max-width: 760px;
}

.pricing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.3px;
}

.pricing-trust-item svg { color: var(--bordeaux); flex-shrink: 0; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .hero::after, .hero::before { animation: none !important; }
  .btn::after { display: none !important; }
}

/* ---- Cohort banner (start date + limited spots) ---- */
/* center the intro paragraph inside the centered pricing section */
.section-pricing .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.pricing-cohort {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 18px 32px;
  background: linear-gradient(180deg, #fff 0%, rgba(166, 28, 77, 0.03) 100%);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--bordeaux);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.cohort-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text-soft);
  letter-spacing: 0.2px;
}

.cohort-item svg { color: var(--bordeaux); flex-shrink: 0; }

.cohort-item strong {
  color: var(--bordeaux);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cohort-divider {
  width: 1px;
  height: 24px;
  background: var(--hairline);
}

@media (max-width: 560px) {
  .pricing-cohort {
    flex-direction: column;
    gap: 12px;
    padding: 18px 24px;
  }
  .cohort-divider {
    width: 60px;
    height: 1px;
  }
}
