/* ============================================================
   ALEXA K. · FEMALE LIFE ARCHITECTURE™ — WEBSITE 1.0
   Zentrale Konfiguration: Farben & Typografie als CSS-Variablen.
   Bilder: siehe /assets — hier als Data-URI eingebettet (Launch-Build).
   ============================================================ */

/* ============================================================
   LOKALE FONTS — Cormorant Garamond (Variable) + Lato
   Quelle: offizielle Google-Fonts-Distribution (SIL Open Font
   License 1.1), lokal eingebunden. Keine externe Font-Verbindung
   mehr vorhanden.
   Lizenztexte liegen bei unter assets/fonts/OFL-*.txt
   ============================================================ */
@font-face{
  font-family:'Cormorant Garamond';
  font-style:normal;
  font-display:swap;
  font-weight:300 700;
  src:url('assets/fonts/cormorant-garamond-variable.ttf') format('truetype-variations');
}
@font-face{
  font-family:'Cormorant Garamond';
  font-style:italic;
  font-display:swap;
  font-weight:300 700;
  src:url('assets/fonts/cormorant-garamond-italic-variable.ttf') format('truetype-variations');
}
@font-face{
  font-family:'Lato';
  font-style:normal;
  font-display:swap;
  font-weight:300;
  src:url('assets/fonts/lato-light-300.ttf') format('truetype');
}
@font-face{
  font-family:'Lato';
  font-style:normal;
  font-display:swap;
  font-weight:400;
  src:url('assets/fonts/lato-regular-400.ttf') format('truetype');
}
@font-face{
  font-family:'Lato';
  font-style:normal;
  font-display:swap;
  font-weight:700;
  src:url('assets/fonts/lato-bold-700.ttf') format('truetype');
}

:root{
  /* Brand Colors */
  --ivory:#F7F4EE;
  --sand:#D8C7B2;
  --gold:#D4AF37;
  --burgundy:#641F32;
  --burgundy-deep:#3B0F19;
  --espresso:#2A1E18;
  --black:#111111;

  /* Typography */
  --font-display:'Cormorant Garamond', serif;
  --font-script:'Carolina','Cormorant Garamond', serif;
  --font-body:'Lato', sans-serif;

  --container:1180px;
  --gutter:clamp(24px, 5vw, 64px);
  --section-pad:clamp(72px, 12vw, 160px);

  --ease:cubic-bezier(.22,.61,.36,1);

  /* Kalibrierte Hintergrund-Varianten derselben Markenfarben — heller/
     lebendiger auf dunklen Flächen, wie in Korrekturrunde 01 gefordert.
     Die benannten Kernfarben oben bleiben für Text/Akzente unverändert. */
  --burgundy-deep-bg:#4A1522;
  --espresso-bg:#3A281F;
  --stage-bg:#1C1917;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}
body{
  margin:0;
  background:var(--ivory);
  color:var(--black);
  font-family:var(--font-body);
  font-weight:300;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:500;margin:0;letter-spacing:.01em;}
p{margin:0;}
.container{max-width:var(--container);margin:0 auto;padding:0 var(--gutter);}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* Focus visibility */
a:focus-visible,button:focus-visible{outline:2px solid var(--gold);outline-offset:3px;}

/* ---------- Eyebrow / small caps label ----------
   Global: alle Uppercase-Sectionlabels einheitlich 18px Desktop,
   Farblogik helle Flächen: Burgundy Deep. */
.eyebrow{
  font-family:var(--font-body);
  font-size:clamp(.8125rem,1.4vw,1.125rem);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:400;
  color:var(--burgundy-deep);
}
.eyebrow--light{color:var(--sand);}
.eyebrow--gold{color:var(--gold);}

/* ---------- Script accent — Carolina-Signatures ----------
   Carolina nur wenn eingebunden; sauberer, ehrlicher Fallback auf
   Cormorant Garamond Italic (niemals Allura o.ä. als "Carolina" ausgeben). */
.script{
  font-family:var(--font-script);
  font-style:italic;
  font-weight:400;
  font-size:clamp(1.6rem,3.4vw,2.625rem);
  color:var(--burgundy);
  line-height:1.3;
}
.script--gold{color:var(--gold);}
.script--sand{color:var(--sand);}
.script--burgundy-deep{color:var(--burgundy-deep);}

/* ---------- BÄM statements ----------
   Text erklärt, BÄM-Sätze führen: klare typografische Hierarchie für die
   wichtigsten Signature-Sätze. Drei Stufen statt einer einzigen Größe,
   damit eine bewusste visuelle Dramaturgie entsteht. */
.statement{
  font-family:var(--font-display);
  font-weight:500;
  line-height:1.15;
  font-size:clamp(1.5rem,3.4vw,2.3rem);
  margin:0.9em 0;
}
.statement--lg{
  font-size:clamp(1.9rem,4.6vw,3.1rem);
  margin:1em 0;
}
.statement--xl{
  font-size:clamp(2.3rem,6vw,4rem);
  line-height:1.08;
  margin:1.1em 0;
}
.statement--signature{
  font-size:clamp(1.15rem,2vw,1.4rem);
  letter-spacing:.02em;
  font-style:italic;
}

/* ---------- Elegante Marker-Listen (statt langer horizontaler Linien) --- */
.marker-list{margin:1.2em 0;padding:0;list-style:none;}
.marker-list li{
  position:relative;
  padding:.42em 0 .42em 1.7em;
  font-family:var(--font-display);
  font-size:1.15rem;
}
.marker-list li::before{
  content:'';
  position:absolute;left:0;top:.85em;
  width:7px;height:7px;border-radius:50%;
  background:currentColor;
  opacity:.55;
}
.marker-list--gold li::before{background:var(--gold);opacity:1;}

/* ---------- Brand watermark: großes, sehr dezentes AK-Monogramm ----------
   Nur an ausgewählten Sections, architektonisch, nie überladen. */
.watermark{
  position:absolute;
  pointer-events:none;
  z-index:0;
  opacity:.05;
  user-select:none;
}
[data-watermark]{position:relative;overflow:hidden;}
[data-watermark] > .container{position:relative;z-index:1;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--font-body);
  font-size:.82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  padding:1.05em 1.9em;
  border:1px solid currentColor;
  border-radius:2px;
  transition:background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  max-width:100%;
}
.btn .arrow{transition:transform .35s var(--ease);}
.btn:hover .arrow{transform:translateX(4px);}
.btn--dark{color:var(--black);}
.btn--dark:hover{background:var(--black);color:var(--ivory);}
.btn--burgundy{color:var(--burgundy);}
.btn--burgundy:hover{background:var(--burgundy);color:var(--ivory);}
.btn--light{color:var(--ivory);}
.btn--light:hover{background:var(--ivory);color:var(--black);}
.btn--gold{color:var(--gold);border-color:var(--gold);}
.btn--gold:hover{background:var(--gold);color:var(--black);}
.btn--solid{background:var(--burgundy);color:var(--ivory);border-color:var(--burgundy);}
.btn--solid:hover{background:var(--burgundy-deep);border-color:var(--burgundy-deep);}

/* ---------- Motion ----------
   Bewusste Entscheidung gegen Scroll-getriggerte Opacity-Reveals:
   Inhalte müssen ohne JavaScript, für Suchmaschinen-Crawler und in jedem
   Rendering-Kontext zuverlässig sichtbar sein. Bewegung entsteht stattdessen
   ausschließlich über Hover-States (Buttons, Links) und einen einzigen,
   zeitbasierten Hero-Einstieg beim Laden (siehe .hero__content). */

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,244,238,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(17,17,17,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px var(--gutter);
  max-width:var(--container);
  margin:0 auto;
}
.nav__logo{display:flex;align-items:center;flex-shrink:0;}
.nav__logo img{height:42px;width:auto;}
.nav__links{
  display:none;
  align-items:center;
  gap:clamp(20px,2.6vw,40px);
  list-style:none;
  margin:0;padding:0;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.nav__links a{
  position:relative;
  padding:.3em 0;
  white-space:nowrap;
}
.nav__links a::after{
  content:'';
  position:absolute;left:0;right:0;bottom:-2px;
  height:1px;background:var(--gold);
  transform:scaleX(0);transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav__links a:hover::after{transform:scaleX(1);}
.nav__cta{display:none;}
.nav__cta.btn{padding:.85em 1.4em;font-size:.74rem;}
.nav__burger{
  display:flex;
  align-items:center;justify-content:center;
  width:40px;height:40px;
  background:none;border:none;cursor:pointer;
  padding:0;
}
.nav__burger span{
  position:relative;width:22px;height:1px;background:var(--black);
  display:block;
}
.nav__burger span::before,.nav__burger span::after{
  content:'';position:absolute;left:0;width:22px;height:1px;background:var(--black);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger span::before{top:-7px;}
.nav__burger span::after{top:7px;}
.nav__burger[aria-expanded="true"] span{background:transparent;}
.nav__burger[aria-expanded="true"] span::before{transform:translateY(7px) rotate(45deg);}
.nav__burger[aria-expanded="true"] span::after{transform:translateY(-7px) rotate(-45deg);}

.mobile-menu{
  position:fixed;inset:0;
  background:var(--ivory);
  z-index:99;
  display:flex;flex-direction:column;
  padding:100px var(--gutter) 40px;
  transform:translateY(-100%);
  transition:transform .45s var(--ease);
}
.mobile-menu.is-open{transform:translateY(0);}
.mobile-menu__links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:26px;}
.mobile-menu__links a{
  font-family:var(--font-display);
  font-size:1.7rem;
  color:var(--black);
}
.mobile-menu__cta{margin-top:auto;}

@media (min-width:1000px){
  .nav__links{display:flex;}
  .nav__cta{display:inline-flex;}
  .nav__burger{display:none;}
  .nav__logo img{height:48px;}
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  display:grid;
  grid-template-columns:1fr;
  background:var(--ivory);
}
.hero__media{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
}
.hero__media img{
  width:100%;height:100%;object-fit:cover;object-position:70% 30%;
}
.hero__content{
  padding:clamp(40px,7vw,72px) var(--gutter) clamp(56px,7vw,80px);
  display:flex;flex-direction:column;
  gap:clamp(20px,3vw,30px);
  min-width:0;
}
/* Einziger, zeitbasierter Einstiegsmoment beim Laden (nicht scroll-abhängig,
   daher unabhängig von JS/Crawlern immer zuverlässig sichtbar). */
@keyframes heroRise{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}
.hero__content > *{animation:heroRise .9s var(--ease) both;}
.hero__content > *:nth-child(1){animation-delay:.05s;}
.hero__content > *:nth-child(2){animation-delay:.15s;}
.hero__content > *:nth-child(3){animation-delay:.26s;}
.hero__content > *:nth-child(4){animation-delay:.37s;}
.hero__content > *:nth-child(5){animation-delay:.48s;}
.hero__content > *:nth-child(6){animation-delay:.59s;}
@media (prefers-reduced-motion:reduce){
  .hero__content > *{animation:none;}
}
.hero__eyebrow{}
.hero__headline{
  font-size:clamp(2.6rem,7.4vw,4.6rem);
  color:var(--burgundy);
  line-height:1.04;
  letter-spacing:.005em;
}
.hero__question{
  font-family:var(--font-display);
  font-weight:500;
  color:var(--burgundy-deep);
  font-size:clamp(1.9rem,4.8vw,3.2rem);
  line-height:1.15;
  margin-top:.25em;
}
.hero__whisper{
  font-family:var(--font-display);
  font-weight:400;
  color:var(--espresso);
  font-size:clamp(1rem,1.7vw,1.3rem);
  line-height:1.5;
  margin:0;
}
.hero__copy{
  max-width:46ch;
  font-size:clamp(.92rem,1.4vw,1rem);
  color:rgba(42,30,24,.75);
  font-weight:300;
}
.hero__cta{align-self:flex-start;}

@media (min-width:900px){
  .hero{grid-template-columns:1fr 1fr;min-height:92vh;align-items:stretch;}
  .hero__media{aspect-ratio:auto;order:2;}
  .hero__content{order:1;justify-content:center;padding:0 clamp(48px,6vw,96px);}
}

/* ============================================================
   CONNECTION SECTION — "Alles ist verbunden"
   ============================================================ */
.connection{
  background:var(--ivory);
  padding:var(--section-pad) 0;
}
.connection__text{max-width:68ch;margin:0 auto;}
.connection__eyebrow{margin-bottom:22px;}
.connection__lead{
  font-family:var(--font-display);
  font-size:clamp(1.5rem,2.8vw,2.1rem);
  color:var(--espresso);
  font-weight:500;
  margin-bottom:28px;
  line-height:1.35;
}
.connection__body p{margin-bottom:1.3em;color:var(--espresso);}
.connection__signature{margin-top:1.6em;margin-bottom:0;}
.connection__bam{
  color:var(--espresso);
  text-align:center;
  max-width:20ch;
  margin-left:auto;margin-right:auto;
  padding:clamp(16px,3vw,28px) 0 clamp(16px,3vw,28px);
}

/* ============================================================
   ARCHITECTURE SECTION
   ============================================================ */
.architecture{
  background:var(--sand);
  padding:var(--section-pad) 0;
}
.architecture__intro{text-align:center;max-width:780px;margin:0 auto clamp(48px,7vw,80px);position:relative;}
.architecture__eyebrow{margin-bottom:18px;}
.architecture__title{
  font-size:clamp(2.6rem,6.2vw,4.2rem);
  color:var(--espresso);
  margin-bottom:28px;
  letter-spacing:.005em;
}
.architecture__desc{color:var(--espresso);font-size:1.08rem;max-width:50ch;margin:0 auto;}

.rooms{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-auto-rows:1fr;
  gap:2px;
  background:rgba(59,15,25,.22);
  margin:0 auto clamp(64px,9vw,100px);
  padding:0;
  list-style:none;
  max-width:1000px;
  border:2px solid var(--burgundy-deep);
}
.rooms__item{
  background:var(--sand);
  padding:2.4em 1.4em;
  min-height:172px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:background-color .3s var(--ease);
}
.rooms__item span{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(1.3rem,2.4vw,1.6rem);
  font-weight:500;
  color:var(--burgundy-deep);
  letter-spacing:.02em;
}
@media (min-width:700px){
  .rooms{grid-template-columns:repeat(3,minmax(0,1fr));}
}
.rooms__item:hover{background:var(--ivory);}

.arch-visual{max-width:820px;margin:0 auto;}
.arch-visual img{width:100%;height:auto;display:block;}

.foundation-note{
  max-width:820px;margin:clamp(64px,9vw,100px) auto 0;
  text-align:center;
  position:relative;
}
.foundation-note h3{
  font-family:var(--font-display);
  font-size:clamp(2.4rem,7vw,5.5rem);
  color:var(--burgundy-deep);
  margin-bottom:30px;
  line-height:1.02;
}
.foundation-note p{color:var(--espresso);margin-bottom:1.2em;}
.foundation-note .bam{
  font-family:var(--font-display);
  color:var(--burgundy-deep);
  font-size:clamp(1.9rem,4.8vw,3.5rem);
  line-height:1.1;
  margin:.9em auto 1.1em;
  max-width:18ch;
}
.foundation-note .stack-list{
  margin:1.6em auto;
  padding:0;
  list-style:none;
  display:inline-block;
  text-align:left;
}
.foundation-note .stack-list li{
  position:relative;
  padding:.4em 0 .4em 1.7em;
  font-family:var(--font-display);
  font-size:1.2rem;
  color:var(--burgundy-deep);
  line-height:1.5;
}
.foundation-note .stack-list li::before{
  content:'';position:absolute;left:0;top:1.05em;
  width:7px;height:7px;border-radius:50%;
  background:var(--burgundy-deep);opacity:.6;
}
.foundation-note .closer{
  font-family:var(--font-display);
  margin-top:2em;
  font-size:clamp(1.9rem,4.8vw,3.5rem);
  line-height:1.1;
  color:var(--espresso);
}

/* ============================================================
   FOUNDATION SECTION (deep essay) — dark, dramatic
   ============================================================ */
.foundation{
  background:var(--burgundy);
  color:var(--ivory);
  padding:var(--section-pad) 0;
}
.foundation .container{
  display:grid;
  gap:clamp(40px,6vw,80px);
}
.foundation__media{
  max-width:420px;
  margin:0 auto;
}
.foundation__media img{display:block;width:100%;height:auto;}
.foundation__text{max-width:64ch;margin:0 auto;font-size:clamp(1.05rem,1.6vw,1.375rem);}
.foundation__question{
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(1.6rem,3.2vw,2.3rem);
  color:var(--sand);
  margin-bottom:1em;
  line-height:1.3;
}
.foundation__text p{color:rgba(247,244,238,.9);margin-bottom:1.25em;}
.foundation__text p.foundation__gold{color:var(--gold);}
.foundation__text p.foundation__bam{color:var(--ivory);}
.foundation__text .tight p{margin-bottom:.35em;}
.foundation__text .marker-list li{color:rgba(247,244,238,.92);font-size:1em;}
.foundation__bam{color:var(--ivory);font-family:var(--font-display);}
.foundation__bam--56{font-size:clamp(1.9rem,4.8vw,3.5rem);line-height:1.15;}
.foundation__gold{color:var(--gold);margin:1em 0 1.3em;font-family:var(--font-display);}
.foundation__final{
  margin-top:1.8em;
  color:var(--ivory);
}
.foundation__final .cap{
  letter-spacing:.1em;text-transform:uppercase;font-family:var(--font-display);
  font-style:normal;
  font-size:clamp(1.2rem,2.2vw,1.5rem);color:var(--gold);display:block;margin-top:.5em;
}

@media (min-width:900px){
  .foundation .container{grid-template-columns:.75fr 1.25fr;align-items:start;}
  .foundation__media{position:sticky;top:120px;}
}

/* ============================================================
   PROCESS SECTION — SEE / RELEASE / BE / CREATE / EMBODY
   ============================================================ */
.process{
  background:var(--ivory);
  padding:var(--section-pad) 0;
}
.process__intro{text-align:center;max-width:680px;margin:0 auto clamp(56px,8vw,96px);}
.process__eyebrow{margin-bottom:20px;}
.process__title{font-size:clamp(2rem,4vw,2.8rem);color:var(--burgundy-deep);margin-bottom:22px;}
.process__lead{font-size:1.1rem;color:var(--espresso);}

.flow{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:900px;
  margin:0 auto;
}
.flow__step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:22px;
  align-items:start;
  padding:22px 0;
  border-bottom:1px solid rgba(59,15,25,.14);
  min-width:0;
}
.flow__step:last-child{border-bottom:none;}
.flow__dot{
  width:74px;height:74px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);
  font-size:.82rem;
  letter-spacing:.08em;
  color:var(--ivory);
  flex-shrink:0;
}
.flow__step--see .flow__dot{background:var(--burgundy-deep);}
.flow__step--release .flow__dot{background:var(--burgundy);}
.flow__step--be .flow__dot{background:var(--gold);color:var(--black);}
.flow__step--create .flow__dot{background:var(--sand);color:var(--espresso);}
.flow__step--embody .flow__dot{background:var(--espresso);}
.flow__num{font-family:var(--font-body);font-size:.68rem;letter-spacing:.1em;color:var(--burgundy);display:block;margin-bottom:.4em;}
.flow__title{font-family:var(--font-display);font-size:1.5rem;color:var(--black);margin-bottom:.3em;}
.flow__desc{color:var(--espresso);font-size:1rem;max-width:56ch;}
.flow__signature{
  display:block;margin-top:.6em;
  font-family:var(--font-body);
  font-weight:400;
  font-size:clamp(1.05rem,1.6vw,1.375rem);
  color:var(--espresso);
  line-height:1.5;
}

.process__closer{
  text-align:center;max-width:680px;margin:clamp(72px,10vw,120px) auto 0;
}
.process__closer .statement{color:var(--burgundy-deep);margin-bottom:.6em;}
.process__closer p.signature{font-family:var(--font-script);font-style:italic;font-size:clamp(1.6rem,3.4vw,2.625rem);color:var(--burgundy);}

@media (min-width:900px){
  .flow{
    flex-direction:row;
    align-items:flex-start;
    gap:0;
  }
  .flow__step{
    flex-direction:column;
    text-align:center;
    border-bottom:none;
    border-right:1px solid rgba(59,15,25,.14);
    padding:0 20px;
    grid-template-columns:none;
  }
  .flow__step:last-child{border-right:none;}
  .flow__dot{margin:0 auto 18px;}
  .flow__desc{margin:0 auto;}
}

/* ============================================================
   WORK WITH ME
   ============================================================ */
.work{
  background:var(--sand);
  padding:var(--section-pad) 0;
}
.work__intro{text-align:center;max-width:760px;margin:0 auto clamp(48px,7vw,80px);position:relative;}
.work__eyebrow{margin-bottom:18px;}
.work__title{
  font-family:var(--font-display);
  font-size:clamp(2.4rem,6vw,4.25rem);
  line-height:1.12;
  color:var(--burgundy-deep);
  margin-bottom:0;
}

.work__grid{
  display:grid;
  gap:32px;
  max-width:1080px;
  margin:0 auto;
}
.work__card{
  background:var(--ivory);
  border:1px solid rgba(59,15,25,.14);
  padding:clamp(40px,5vw,64px);
  display:flex;flex-direction:column;
  gap:20px;
  min-width:0;
  position:relative;
}
.work__card::before{
  content:'';
  position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--gold);
}
.work__card .tag{
  font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--burgundy);
  font-weight:700;
}
.work__card h3{font-size:clamp(1.9rem,3.2vw,2.4rem);color:var(--burgundy-deep);}
.work__card p{color:var(--espresso);font-size:1.03rem;}
.work__card .btn{align-self:flex-start;margin-top:auto;}

@media (min-width:820px){
  .work__grid{grid-template-columns:1fr 1fr;}
}

.ethical{
  max-width:760px;margin:clamp(64px,9vw,100px) auto 0;
  text-align:center;
  padding-top:clamp(48px,7vw,72px);
  border-top:1px solid rgba(59,15,25,.2);
}
.ethical .statement{color:var(--burgundy-deep);}
.ethical p.explain{color:var(--espresso);margin-bottom:1em;font-size:1.02rem;}
.ethical p.signature{
  font-family:var(--font-script);font-style:italic;color:var(--burgundy-deep);
  font-size:clamp(1.6rem,3.4vw,2.625rem);margin-top:.5em;
}

/* ============================================================
   MEET ALEXA
   ============================================================ */
.about{
  background:var(--ivory);
  padding:var(--section-pad) 0;
}
.about .container{
  display:grid;
  gap:clamp(40px,6vw,72px);
}
.about__media img{display:block;width:100%;height:auto;}
.about__eyebrow{margin-bottom:18px;}
.about__title{
  font-size:clamp(2.1rem,4.4vw,3rem);
  color:var(--burgundy-deep);
  margin-bottom:32px;
  line-height:1.06;
  max-width:16ch;
}
.about__text p{color:var(--espresso);margin-bottom:1.15em;}
.about__text .tight p{margin-bottom:.3em;}
.about__question{
  font-family:var(--font-script);font-style:italic;font-size:clamp(1.6rem,3.4vw,2.625rem);color:var(--burgundy);margin:1.4em 0;line-height:1.3;
}
.about__bam{
  font-family:var(--font-display);
  font-weight:500;
  font-style:normal;
  font-size:clamp(1.4rem,2.6vw,1.8rem);
  color:var(--burgundy-deep);
  margin:1.2em 0;
  line-height:1.3;
}

@media (min-width:960px){
  .about .container{grid-template-columns:.78fr 1.22fr;align-items:start;}
  .about__media{position:sticky;top:120px;}
}

/* ============================================================
   ALEXA K. TV
   ============================================================ */
.tv{
  background:var(--espresso);
  color:var(--ivory);
  padding:var(--section-pad) 0;
}
.tv .container{
  display:grid;
  gap:clamp(36px,6vw,64px);
  align-items:start;
}
.tv__eyebrow{margin-bottom:20px;}
.tv__title{
  font-size:clamp(2.4rem,5vw,3.6rem);
  color:var(--gold);
  margin-bottom:24px;
  line-height:1.1;
  max-width:none;
}
.tv__lead{font-family:var(--font-body);font-weight:300;font-size:clamp(1.05rem,1.6vw,1.375rem);color:var(--sand);margin-bottom:1.2em;line-height:1.6;}
.tv__text p{color:rgba(247,244,238,.85);margin-bottom:1.1em;font-size:clamp(1.05rem,1.6vw,1.375rem);}
.tv__topics{
  display:flex;flex-wrap:wrap;gap:12px 20px;
  margin:1.4em 0 1.8em;
  padding:0;list-style:none;
}
.tv__topics li{
  font-size:.95rem;letter-spacing:.04em;
  color:var(--sand);
  padding-bottom:2px;border-bottom:1px solid rgba(212,175,55,.4);
}
.tv__question{font-family:var(--font-display);font-style:italic;font-size:clamp(1.3rem,2.4vw,1.6rem);color:var(--ivory);margin-bottom:1.6em;}
.tv__signoff{font-family:var(--font-display);font-size:1.6rem;color:var(--gold);margin-bottom:1.8em;}
.tv__media{justify-self:center;max-width:380px;width:100%;}
.tv__media img{display:block;width:100%;height:auto;}

@media (min-width:900px){
  .tv .container{grid-template-columns:1.35fr .65fr;}
  .tv__media{order:2;justify-self:end;position:sticky;top:110px;}
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final{
  background:var(--sand);
  color:var(--espresso);
  padding:var(--section-pad) 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final__eyebrow{margin-bottom:26px;justify-content:center;display:flex;color:var(--burgundy-deep);}
.final__title{
  font-family:var(--font-display);
  font-size:clamp(2.8rem,7.4vw,4.8rem);
  color:var(--espresso);
  margin-bottom:clamp(32px,5vw,52px);
  line-height:1.06;
}
.final__media{max-width:320px;margin:0 auto clamp(36px,5vw,56px);}
.final__media img{display:block;width:100%;height:auto;}
.final__lines{
  max-width:520px;margin:0 auto clamp(40px,5vw,56px);
  font-family:var(--font-body);
  font-weight:300;
  font-size:clamp(1.05rem,1.6vw,1.25rem);
  color:var(--espresso);
  line-height:1.75;
}
.final__lines .group{margin-bottom:1em;}
.final__signature-line{
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(1.2rem,2vw,1.4rem);
  color:var(--burgundy);
  margin-bottom:clamp(28px,4vw,40px);
}
.final__bam{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(2.4rem,6vw,3.6rem);
  line-height:1.15;
  color:var(--burgundy-deep);
  margin-bottom:clamp(48px,6vw,72px);
}
.final__ctas{
  display:flex;flex-wrap:wrap;gap:18px;justify-content:center;
  margin-bottom:clamp(48px,6vw,72px);
}
.final__brand{
  font-family:var(--font-display);
  font-size:1.05rem;letter-spacing:.02em;color:var(--burgundy-deep);
}
.final__brand small{
  display:block;font-family:var(--font-body);font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;margin-top:.5em;color:rgba(59,15,25,.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--black);
  color:rgba(247,244,238,.75);
  padding:clamp(56px,7vw,80px) 0 28px;
}
.footer__grid{
  display:grid;
  gap:40px;
  margin-bottom:48px;
}
.footer__brand .logo-lockup{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:18px;
  padding-left:clamp(8px,2vw,22px);
}
.footer__brand .logo-lockup img{height:56px;width:auto;display:block;}
.footer__tagline{font-family:var(--font-display);font-weight:500;font-style:normal;color:var(--sand);font-size:clamp(1.6rem,3.4vw,2.625rem);}
.footer__heading{
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:18px;
}
.footer__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;font-size:.92rem;}
.footer__list a:hover{color:var(--ivory);}
.footer__bottom{
  border-top:1px solid rgba(247,244,238,.12);
  padding-top:24px;
  display:flex;flex-wrap:wrap;gap:16px;
  justify-content:space-between;
  font-size:.78rem;
  color:rgba(247,244,238,.5);
}
.footer__legal{display:flex;gap:20px;list-style:none;margin:0;padding:0;}

@media (min-width:760px){
  .footer__grid{grid-template-columns:1.4fr 1fr 1fr 1fr;}
}


/* ============================================================
   UNTERSEITEN-BAUSTEINE (Daylight / Private Mentoring)
   Ausschließlich bestehende Tokens (Farben, Fonts, Spacing) neu
   kombiniert — keine neuen Farben, Schriften oder Effekte.
   ============================================================ */
.page-hero{
  background:var(--ivory);
  padding:clamp(64px,10vw,120px) 0 var(--section-pad);
  text-align:center;
}
.page-hero__eyebrow{justify-content:center;display:flex;margin-bottom:24px;}
.page-hero__title{
  font-family:var(--font-display);
  font-size:clamp(3rem,8vw,5.5rem);
  color:var(--burgundy-deep);
  margin:0 0 20px;
  line-height:1;
}
.page-hero__sub{
  font-family:var(--font-body);
  font-size:.95rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--burgundy);
  font-weight:700;
  margin-bottom:0;
}

.page-section{padding:var(--section-pad) 0;}
.page-section--ivory{background:var(--ivory);}
.page-section--sand{background:var(--sand);}
.page-section--burgundy{background:var(--burgundy);color:var(--ivory);}
.page-section--espresso{background:var(--espresso);color:var(--ivory);}

.page-lead{
  font-family:var(--font-body);
  font-weight:300;
  font-size:clamp(1.05rem,1.6vw,1.375rem);
  line-height:1.7;
  color:var(--espresso);
  max-width:700px;
  margin:0 auto 1.4em;
}
.page-section--burgundy .page-lead,
.page-section--espresso .page-lead{color:rgba(247,244,238,.9);}

.page-intro{max-width:760px;margin:0 auto;text-align:center;}
.page-intro .tight{margin:1.4em 0;}
.page-intro .tight p{margin-bottom:.3em;color:var(--espresso);font-family:var(--font-body);font-size:1.1rem;}

.page-title{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,3.4rem);
  color:var(--burgundy-deep);
  text-align:center;
  max-width:20ch;
  margin:0 auto 32px;
  line-height:1.1;
}
.page-section--burgundy .page-title,
.page-section--espresso .page-title{color:var(--ivory);}

.step-grid{
  display:grid;
  gap:2px;
  max-width:1000px;
  margin:48px auto 0;
  background:rgba(59,15,25,.18);
  border:1px solid rgba(59,15,25,.18);
}
@media (min-width:700px){
  .step-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
.step-grid__item{
  background:var(--ivory);
  padding:clamp(32px,4vw,48px);
}
.step-grid__item h3{
  font-family:var(--font-display);
  font-size:1.6rem;
  color:var(--burgundy-deep);
  margin:0 0 .5em;
}
.step-grid__item p{
  font-family:var(--font-body);
  font-size:1.02rem;
  color:var(--espresso);
  margin:0;
  line-height:1.65;
}

.cta-band{
  text-align:center;
  padding:var(--section-pad) 0;
  background:var(--sand);
}
.cta-band__title{
  font-family:var(--font-display);
  font-size:clamp(2.4rem,5.6vw,3.6rem);
  color:var(--burgundy-deep);
  margin:0 0 .4em;
}
.cta-band__sub{
  font-family:var(--font-body);
  font-size:1.05rem;
  color:var(--espresso);
  margin-bottom:1.6em;
}
.cta-band__tag{
  font-size:.85rem;letter-spacing:.14em;text-transform:uppercase;color:var(--burgundy);
  font-weight:700;margin-bottom:1.6em;display:block;
}
.cta-band__question{
  font-family:var(--font-display);font-style:italic;font-size:1.3rem;color:var(--burgundy-deep);
  margin-bottom:1.8em;
}
.cta-band__note{
  max-width:520px;margin:24px auto 0;
  font-size:.92rem;color:var(--espresso);opacity:.8;line-height:1.6;
}

/* ---------- Legal-Seiten (Impressum / Datenschutz) ---------- */
.legal{
  background:var(--ivory);
  padding:clamp(64px,9vw,110px) 0 var(--section-pad);
}
.legal__container{max-width:760px;margin:0 auto;padding:0 var(--gutter);}
.legal h1{
  font-family:var(--font-display);
  font-size:clamp(1.9rem,8vw,3.4rem);
  color:var(--burgundy-deep);
  margin:0 0 .3em;
  overflow-wrap:break-word;
}
.legal__meta{
  font-family:var(--font-body);
  font-size:.85rem;
  color:var(--espresso);
  opacity:.7;
  margin-bottom:2.5em;
}
.legal h2{
  font-family:var(--font-display);
  font-size:clamp(1.25rem,4.5vw,1.6rem);
  color:var(--burgundy-deep);
  margin:2em 0 .6em;
  overflow-wrap:break-word;
}
.legal p{
  font-family:var(--font-body);
  font-weight:300;
  font-size:1.05rem;
  line-height:1.75;
  color:var(--espresso);
  margin:0 0 1.1em;
}
.legal address{font-style:normal;}
.legal a{color:var(--burgundy);text-decoration:underline;text-underline-offset:2px;}
