/* =================================================================
   Anastasiia Mamlina — Yoga & Sadhu Board
   nasti-yoga.de · Design system
   "Erde trifft Wasser" — earth gives ground, water brings movement
   ================================================================= */

@import url("../fonts/fonts.css");

/* ---------- Tokens ---------- */
:root {
  --creme:    #F7F4EE;
  --logo-bg:  #F4F1E8;   /* exact logo background → navbar */
  --sand:     #E5DDD1;
  --choc:     #4B352A;
  --kupfer:   #B5664A;
  --kupfer-d: #9D5139;
  --petrol:   #4E6B66;
  --moos:     #6F7761;
  --salbei:   #A8B09C;
  --mid:      #7A6355;

  /* duality gradients */
  --water:  linear-gradient(135deg, #253d3a, #1e3330, #2d4a46);
  --earth:  linear-gradient(135deg, #3a2a1f, #4b352a);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lato", -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --pad-x: clamp(20px, 5vw, 60px);
  --section-y: clamp(64px, 9vw, 96px);

  --radius: 2px;
  --shadow: 0 4px 18px rgba(75, 53, 42, 0.09);
  --shadow-lg: 0 18px 50px -18px rgba(75, 53, 42, 0.28);
  --ease: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --focus: 0 0 0 2px rgba(181, 102, 74, 0.30);

  --nav-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(181, 102, 74, 0.22); color: var(--choc); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--radius);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }
/* offset anchor targets so the fixed nav doesn't cover them */
[id] { scroll-margin-top: calc(var(--nav-h) + 14px); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--choc);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.005em;
}
.h-hero { font-size: clamp(44px, 6.2vw, 76px); line-height: 1.05; font-weight: 700; }
.h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.14; }
.h3 { font-size: clamp(22px, 2.4vw, 26px); line-height: 1.2; font-weight: 600; }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kupfer);
  display: inline-block;
}

/* copper rule — recurring "brushstroke" divider */
.rule {
  width: 40px;
  height: 1.5px;
  background: var(--kupfer);
  border: none;
  margin: 22px 0;
}
.rule--center { margin-inline: auto; }

p + p { margin-top: 1.05em; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--kupfer);
  --fg: var(--creme);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--fg);
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--kupfer-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1em; height: 1em; transition: transform var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn--secondary {
  background: transparent;
  color: var(--choc);
  box-shadow: inset 0 0 0 1.5px var(--choc);
}
.btn--secondary:hover {
  background: var(--choc);
  color: var(--creme);
  box-shadow: inset 0 0 0 1.5px var(--choc);
}
.btn--light {
  background: var(--creme);
  color: var(--choc);
}
.btn--light:hover { background: #F7F4EE; color: var(--choc); }
.btn--ghost-light {
  background: transparent;
  color: var(--creme);
  box-shadow: inset 0 0 0 1.5px rgba(247,244,238,0.55);
}
.btn--ghost-light:hover { background: rgba(247,244,238,0.10); box-shadow: inset 0 0 0 1.5px var(--creme); }
.btn--block { width: 100%; justify-content: center; }

.btn--whatsapp { background: var(--salbei); color: #fff; }
.btn--whatsapp:hover { background: #8E9782; color: #fff; }
.btn--whatsapp .ico { width: 1.15em; height: 1.15em; }
.wa-note {
  font-size: 11.5px; line-height: 1.5; color: var(--mid);
  margin-top: 8px; max-width: 44ch;
  flex-basis: 100%;
}
.wa-note a { color: inherit; text-decoration: underline; }
.wa-note--light { color: rgba(247,244,238,0.75); }

/* ghost text link */
.ghost {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kupfer);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: color var(--ease), gap var(--ease);
}
.ghost:hover { color: var(--kupfer-d); gap: 0.8em; }

/* =================================================================
   Navigation
   ================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--logo-bg);                 /* matches the logo badge */
  border-bottom: 1px solid rgba(75, 53, 42, 0.08);
  transition: box-shadow var(--ease), background var(--ease);
}
.nav.is-scrolled { box-shadow: 0 6px 24px -16px rgba(75, 53, 42, 0.45); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 48px; height: 48px;
  object-fit: contain;       /* transparent monogram — blends on the cream navbar */
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--choc);
}
.brand__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--kupfer);
  margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--choc);
  opacity: 0.82;
  position: relative;
  padding: 6px 0;
  transition: opacity var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--kupfer);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { opacity: 1; }
.nav__cta { margin-left: 6px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--choc);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    z-index: 120;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--logo-bg);
    padding: 18px var(--pad-x) 30px;
    border-bottom: 1px solid rgba(75, 53, 42, 0.10);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }
  .nav.is-open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 0.82rem; padding: 12px 0; width: 100%; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 10px 0 0; }
  .nav__burger { display: flex; }
}

/* =================================================================
   Hero — full-bleed video, darkened, text set right of centre
   ================================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 84vh, 800px);
  background: var(--choc);   /* dark fallback so there's no cream flash while the poster loads */
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 56%;   /* wide hero: full width is preserved by cover, this tunes the vertical crop so her head+feet stay in frame */
}
/* darkens the footage a touch and keeps the text panel legible over bright sky/water */
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(12, 10, 8, 0.6) 0%, rgba(12, 10, 8, 0.4) 40%, rgba(12, 10, 8, 0.18) 68%, rgba(12, 10, 8, 0.28) 100%),
    linear-gradient(to top, rgba(12, 10, 8, 0.22) 0%, rgba(12, 10, 8, 0) 32%);
}
.hero__text {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: calc(var(--nav-h) + 24px) 40px;
  padding-left: clamp(28px, 12vw, 200px);
  padding-right: clamp(24px, 4vw, 64px);
}
.hero__text-inner { max-width: 560px; }
.hero .eyebrow { color: var(--kupfer); }
.hero__title {
  color: var(--creme);
  margin: 14px 0 4px;
  font-weight: 500;
  font-size: clamp(33px, 3.6vw, 52px);
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero__lead { color: rgba(247, 244, 238, 0.88); max-width: 40ch; margin: 20px 0 30px; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__actions .btn { box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5); }

@media (max-width: 860px) {
  .hero { min-height: clamp(520px, 92svh, 720px); }
  .hero__text { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .hero__media video { object-position: 60% 50%; }   /* narrow/tall: height is preserved, this centres on her horizontally */
  .hero__scrim {
    background:
      linear-gradient(to top, rgba(12, 10, 8, 0.62) 0%, rgba(12, 10, 8, 0.32) 40%, rgba(12, 10, 8, 0.22) 100%),
      linear-gradient(100deg, rgba(12, 10, 8, 0.3) 0%, rgba(12, 10, 8, 0.05) 60%);
  }
}

/* =================================================================
   Section title block
   ================================================================= */
.sectiontitle { max-width: 620px; }
.sectiontitle--center { margin-inline: auto; text-align: center; }
.sectiontitle--center .rule { margin-inline: auto; }
.sectiontitle p { margin-top: 14px; }

/* =================================================================
   About
   ================================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.05fr 0.62fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about__figure { position: relative; }
.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 68%;   /* crop a little off the top, show more of the bottom */
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about__body p { color: var(--mid); }

/* Bio section (ueber-mich.html): image spans two rows of text on desktop,
   drops in full-width between the text blocks on mobile. */
.bio__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas: "fig a" "fig b";
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.bio__figure { grid-area: fig; position: relative; }
.bio__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 68%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.bio__body--a { grid-area: a; }
.bio__body--b { grid-area: b; }
.bio__body p { color: var(--mid); }
/* values now live in their own right-hand column with a hairline divider */
.values {
  display: grid;
  gap: 20px;
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(75, 53, 42, 0.16);
}
.value { display: flex; align-items: center; gap: 12px; }
.value svg { width: 19px; height: 19px; color: var(--kupfer); flex: none; }
.value span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--choc);
}

/* =================================================================
   Tagline — water section
   ================================================================= */
.tagline {
  position: relative;
  background-color: #E6D5B8;   /* sandy fallback */
  background-image: url("../img/tagline-bg.jpg");
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  color: var(--choc);
  text-align: center;
  overflow: hidden;
  /* reduced padding so the min-height (which tracks the mandala) governs the band
     height — keeps the section ~20% shorter than the default section padding would give */
  padding-block: clamp(40px, 5vw, 64px);
  /* snug fit: tracks the mandala's own size (width clamp(192px,20.8vw,304px) × 1.047 aspect)
     plus ~14px margin top/bottom, so it's just barely fully visible, not floating in space */
  min-height: clamp(230px, calc(21.8vw + 28px), 347px);
}
.tagline__inner {
  max-width: 640px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.tagline h2 { color: #000; font-size: clamp(28px, 4vw, 46px); text-shadow: 0 1px 2px rgba(255, 255, 255, 0.55), 0 0 24px rgba(255, 255, 255, 0.5); }
.tagline p { color: #000; max-width: 50ch; margin: 22px auto 0; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6), 0 0 18px rgba(255, 255, 255, 0.55); }
.tagline__rings {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(192px, 20.8vw, 304px);
  height: auto;
  object-fit: contain;
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}
/* mobile: the horizontal water→sand doesn't fit a narrow column — use clean sand
   with the centred mandala behind the text */
@media (max-width: 760px) {
  .tagline { background-image: none; background-color: #E6D5B8; min-height: 0; }
  .tagline__inner { max-width: 100%; margin-left: auto; margin-right: auto; }
  .tagline__rings {
    right: 50%;
    transform: translate(50%, -50%);
    width: clamp(240px, 64vw, 330px);
    opacity: 0.22;
  }
}

/* =================================================================
   Cards (offers / journal)
   ================================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.card {
  background: var(--creme);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(75,53,42,0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { overflow: hidden; }
.card__media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4,0,0.2,1);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__cat {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kupfer);
}
.card__body h3 { color: var(--choc); }
.card__body p { color: var(--mid); font-size: 15px; line-height: 1.7; }
.card__body .ghost { margin-top: auto; }
.card--journal .card__media img { aspect-ratio: 4 / 3; }
.card--style .card__media img { aspect-ratio: 5 / 4; }

/* =================================================================
   Testimonials — sand section
   ================================================================= */
.testimonials { background: var(--sand); }

/* ---- Google reviews (echte Rezensionen) ---- */
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--creme);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.gbadge:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.gbadge__logo { width: 20px; height: 20px; flex: none; }
.gbadge__score { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--choc); }
.gbadge__stars { display: inline-flex; gap: 2px; }
.gbadge__stars svg { width: 15px; height: 15px; fill: #F5B301; }
.gbadge__label {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid);
}
.gbadge__stand {
  margin: 10px 0 0;
  font-family: var(--font-body); font-size: 11.5px;
  color: var(--mid); opacity: 0.65;
}
.greviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(28px, 3.4vw, 48px);
  max-width: 1240px;
  margin: 48px auto 0;
}
.grev {
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.grev__top { display: flex; align-items: flex-start; justify-content: space-between; }
.grev__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--kupfer);
  height: 30px;
}
.grev__g { width: 20px; height: 20px; flex: none; margin-top: 6px; }
.grev__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--choc);
  margin: 14px 0 22px;
}
.grev__foot { margin-top: auto; }
.grev__stars { display: flex; gap: 3px; margin-bottom: 10px; }
.grev__stars svg { width: 14px; height: 14px; fill: #F5B301; }
.grev__author {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid);
  display: block;
}
.grev__sub {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.03em;
  color: var(--mid); opacity: 0.7;
}
.grev__more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--kupfer);
  text-decoration: none;
}
.grev__more:hover { color: var(--kupfer-d); text-decoration: underline; }
@media (max-width: 980px) {
  .greviews { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; }
}
@media (max-width: 640px) {
  .greviews { grid-template-columns: 1fr; max-width: 460px; gap: 44px; }
}
.testimonials .tcard { background: var(--sand); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 24px); }
.tcard {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  position: relative;
  display: flex; flex-direction: column;
}
.t-carousel { margin-top: 44px; --t-gap: clamp(18px, 2vw, 24px); }
.t-carousel__viewport { overflow: hidden; }
.t-carousel__track {
  display: flex;
  gap: var(--t-gap);
  transition: transform var(--ease);
  will-change: transform;
}
.t-carousel__slide {
  flex: 0 0 calc((100% - 2 * var(--t-gap)) / 3);
  min-width: 0;
  display: flex;
}
.t-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  margin-top: 36px;
}
.t-carousel__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--choc);
  box-shadow: inset 0 0 0 1px rgba(75, 53, 42, 0.22);
  background: rgba(247, 244, 238, 0.45);
  transition: color var(--ease), box-shadow var(--ease), background var(--ease), transform var(--ease);
}
.t-carousel__arrow svg { width: 18px; height: 18px; }
.t-carousel__arrow:hover:not(:disabled) {
  color: var(--kupfer);
  box-shadow: inset 0 0 0 1px rgba(181, 102, 74, 0.55);
  background: var(--creme);
  transform: translateY(-1px);
}
.t-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.t-carousel__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(75, 53, 42, 0.22);
  transition: background var(--ease), transform var(--ease);
}
.t-carousel__dot.is-active {
  background: var(--kupfer);
  transform: scale(1.15);
}
.t-carousel__dot:hover:not(.is-active) { background: rgba(181, 102, 74, 0.45); }
.tcard__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--kupfer);
  height: 30px;
}
.tcard__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--choc);
  margin: 14px 0 18px;
}
.tcard__author {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: auto;
}

/* =================================================================
   FAQ — accordion
   ================================================================= */
.faq__wrap { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(75, 53, 42, 0.14); }
.faq__item:first-child { border-top: 1px solid rgba(75, 53, 42, 0.14); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--choc);
  transition: color var(--ease);
}
.faq__q:hover { color: var(--kupfer); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 50% 0 auto 0;
  height: 1.5px; background: var(--kupfer); transition: transform var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: rotate(0); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--mid); padding: 0 4px 26px; max-width: 70ch; }

/* =================================================================
   Lead magnet — the free first class offer
   ================================================================= */
.lead-magnet {
  background: var(--earth);
  color: var(--creme);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.lead-magnet h2 { color: var(--creme); }
.lead-magnet .eyebrow { color: #EBC9A8; }
.lead-magnet p { color: rgba(247,244,238,0.80); }
.lm-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.lm-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(247,244,238,0.90); font-size: 15px; }
.lm-list svg { width: 20px; height: 20px; color: #EBC9A8; flex: none; margin-top: 2px; }
.lm-card {
  background: rgba(247,244,238,0.06);
  border: 1px solid rgba(247,244,238,0.18);
  border-radius: var(--radius);
  padding: 28px;
}
.lm-card .price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--creme);
  line-height: 1;
}
.lm-card .price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EBC9A8;
  margin-bottom: 10px;
}

/* =================================================================
   Newsletter — earth section
   ================================================================= */
.newsletter { background: var(--earth); color: var(--creme); }
.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.newsletter h2 { color: var(--creme); }
.newsletter p { color: rgba(247, 244, 238, 0.62); }
.field { display: flex; flex-direction: column; gap: 16px; }
.input, .textarea {
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: rgba(247, 244, 238, 0.10);
  border: 1px solid rgba(247, 244, 238, 0.35);
  color: var(--creme);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.input::placeholder, .textarea::placeholder { color: rgba(247, 244, 238, 0.45); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--kupfer);
  box-shadow: var(--focus);
}
.form-note { font-size: 12px; color: rgba(247,244,238,0.5); line-height: 1.6; }
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.6; color: rgba(247,244,238,0.75);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  flex: none; width: 16px; height: 16px; margin-top: 3px;
  accent-color: var(--kupfer); cursor: pointer;
}
.form-consent a { color: inherit; text-decoration: underline; }
.form-msg {
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  color: #EBC9A8; min-height: 1.2em;
}
.form-msg.is-error { color: #F0B4A0; }
.form--light .form-msg.is-error { color: #B23B22; }
.form-msg a { color: inherit; text-decoration: underline; }
/* Honeypot: für Menschen unsichtbar, nur Bots füllen es aus */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* light form (on cream) */
.form--light .input, .form--light .textarea {
  background: #F7F4EE;
  border: 1px solid rgba(75,53,42,0.18);
  color: var(--choc);
}
.form--light .input::placeholder, .form--light .textarea::placeholder { color: rgba(122,99,85,0.6); }
.form--light .form-msg { color: var(--kupfer); }

/* =================================================================
   Brand moment — the animated logo (signature)
   ================================================================= */
.brandmoment {
  position: relative;
  background: var(--creme);     /* transparent PNG logo → no box, no flash, on the page cream */
  color: var(--choc);
  text-align: center;
  overflow: hidden;
}
/* Transparent logo with a calm, on-brand motion: a gentle "breath" (slow scale).
   The reveal wrapper handles the one-time fade-in-rise on scroll. */
.brandmoment__logo-wrap { width: clamp(280px, 42vw, 480px); margin: 0 auto 22px; }
.brandmoment__logo {
  width: 100%; height: auto; display: block;
  transform-origin: center 60%;
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
  .brandmoment__logo { animation: none; }
}
.brandmoment blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.3;
  color: var(--choc);
  margin: 0 auto;
}
.brandmoment blockquote .accent { color: var(--kupfer); font-style: italic; }

/* =================================================================
   Page hero (interior split: text left, image right)
   ================================================================= */
.pagehero {
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(75,53,42,0.08);
  overflow: hidden;
}
.pagehero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
}
.pagehero__text {
  padding-block: calc(var(--nav-h) + clamp(40px, 6vw, 76px)) clamp(40px, 6vw, 76px);
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: 660px;
  margin-left: auto;
}
.pagehero__text h1 { font-size: clamp(36px, 5vw, 58px); margin: 14px 0 0; }
.pagehero__text .lede {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; color: var(--kupfer);
  margin-top: 22px; max-width: 40ch;
}
.pagehero__media { position: relative; min-height: 320px; }
.pagehero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =================================================================
   Icon grids (Über mich: "Was mich prägt" / "Was meine Begleitung ausmacht")
   ================================================================= */
.iconrow {
  display: grid;
  grid-template-columns: repeat(var(--cols, 6), 1fr);
  gap: 0;
  margin-top: 44px;
}
.iconrow__item {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 0 clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(181,102,74,0.22);
}
.iconrow__item:last-child { border-right: none; }
.iconrow--fullwidth {
  width: 100%;
  padding: 0 clamp(16px, 3vw, 40px);
  box-sizing: border-box;
  margin-top: 40px;
}
.iconrow__ico {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  color: var(--kupfer);
}
.iconrow__ico svg { width: 44px; height: 44px; }
.iconrow__ico img { display: block; max-width: 44px; max-height: 44px; width: auto; height: auto; }
.iconrow__item span {
  font-family: var(--font-body); font-weight: 400; font-size: 0.78rem;
  letter-spacing: 0.01em; color: var(--choc); line-height: 1.45;
}

/* Style cards (Hatha/Vinyasa/Yin) — subtitle line */
.card__sub {
  font-family: var(--font-display); font-style: italic; font-size: 1.02rem;
  color: var(--kupfer);
}

/* CTA band (text left, rings right) */
.ctaband { position: relative; background: var(--sand); overflow: hidden; }
.ctaband__grid { display: grid; grid-template-columns: 150px 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.ctaband__water { position: relative; align-self: stretch; min-height: 200px; border-radius: var(--radius); overflow: hidden; }
.ctaband__water img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.ctaband__water::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(37,61,58,0.55), rgba(46,74,70,0.30)); }
.ctaband__body { max-width: 560px; position: relative; }
.ctaband__rings {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px; opacity: 0.25; color: var(--kupfer);
}

/* =================================================================
   Page header (interior pages)
   ================================================================= */
.pagehead {
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 88px));
  padding-bottom: clamp(40px, 6vw, 64px);
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(75,53,42,0.08);
}
.pagehead__inner { max-width: 760px; }
.pagehead h1 { font-size: clamp(38px, 5.4vw, 64px); margin: 16px 0 0; }
.pagehead p { margin-top: 18px; max-width: 56ch; }
/* split page head: text left, image right */
.pagehead--split {
  overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(28px, 4vw, 52px));
  padding-bottom: clamp(28px, 4vw, 52px);
}
.pagehead__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.pagehead--split .pagehead__inner { padding-bottom: 0; }
.pagehead__media {
  margin: 0;
  align-self: center;
  aspect-ratio: 1100 / 1466;
  max-height: clamp(240px, 32vw, 380px);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.pagehead__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.crumbs { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--salbei); }
.crumbs a:hover { color: var(--kupfer); }

/* =================================================================
   Article (journal detail blocks on journal.html)
   ================================================================= */
.article { max-width: 720px; margin-inline: auto; }
.article h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 1.4em; }
.article h3 { margin-top: 1.2em; }
.article p { color: var(--mid); margin-top: 1em; }
.article .lede { font-size: 1.18rem; font-style: italic; color: var(--choc); font-family: var(--font-display); line-height: 1.5; }
.article figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.article__meta { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--kupfer); }

/* TL;DR summary box at the top of each blog post */
.tldr {
  background: var(--sand);
  border-left: 3px solid var(--kupfer);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 28px 0 36px;
}
.tldr__label {
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--kupfer);
  display: flex; align-items: center; gap: 8px;
}
.tldr__label svg { width: 15px; height: 15px; flex: none; }
.tldr h2 { font-size: clamp(20px, 2.2vw, 24px); margin: 10px 0 0; }
.tldr ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 11px; }
.tldr li { display: flex; gap: 11px; align-items: flex-start; color: var(--choc); font-size: 15px; line-height: 1.55; }
.tldr li svg { width: 18px; height: 18px; color: var(--kupfer); flex: none; margin-top: 3px; }

/* =================================================================
   Split (alternating image/text — offer details)
   ================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split + .split { margin-top: clamp(48px, 7vw, 88px); }
.split__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.split--reverse .split__media { order: 2; }
.split__num {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--kupfer); letter-spacing: 0.1em;
}
.offer-bullets { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.offer-bullets li { display: flex; gap: 12px; align-items: flex-start; color: var(--mid); font-size: 15px; }
.offer-bullets svg { width: 19px; height: 19px; color: var(--kupfer); flex: none; margin-top: 3px; }

/* =================================================================
   Contact split
   ================================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact__info { position: sticky; top: calc(var(--nav-h) + 30px); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; }
.contact-line svg { width: 22px; height: 22px; color: var(--kupfer); flex: none; margin-top: 3px; }
.contact-line .label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--salbei); }
.contact-line .value { color: var(--choc); font-weight: 700; }
.contact-line a.value:hover { color: var(--kupfer); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =================================================================
   Footer
   ================================================================= */
.footer { background: var(--choc); color: rgba(247, 244, 238, 0.62); }
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-block: clamp(48px, 6vw, 72px);
}
.footer .brand__name { color: var(--creme); }
/* dark footer → give the (dark) monogram a cream coin so it stays visible */
.footer .brand__mark {
  width: 54px; height: 54px;
  background: var(--creme);
  border-radius: 50%;
  padding: 7px;
}
.footer__about { margin-top: 18px; max-width: 34ch; font-size: 14px; line-height: 1.7; color: rgba(247,244,238,0.55); }
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(247,244,238,0.85); margin-bottom: 16px;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer__col a {
  font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(247,244,238,0.55);
  transition: color var(--ease);
}
.footer__col a:hover { color: var(--creme); }
.footer__bottom {
  border-top: 1px solid rgba(247,244,238,0.12);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.72rem; letter-spacing: 0.06em; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(247,244,238,0.25);
  color: rgba(247,244,238,0.62);
  transition: color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.footer__social a:hover { color: var(--creme); box-shadow: inset 0 0 0 1px var(--creme); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.copyright { font-size: 0.72rem; color: rgba(247,244,238,0.4); }

/* =================================================================
   Scroll reveal
   ================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1000px) {
  .iconrow { --cols: 4 !important; }
  .pagehero__grid { grid-template-columns: 1fr; }
  .pagehero__media { min-height: 300px; order: -1; }
  .pagehero__text { padding-block: calc(var(--nav-h) + 36px) 40px; }
  .ctaband__split { grid-template-columns: 1fr !important; }
}
@media (max-width: 920px) {
  .pagehead__grid { grid-template-columns: 1fr; }
  .pagehead--split .pagehead__inner { padding-bottom: 0; }
  .pagehead__media { margin-top: clamp(28px, 5vw, 40px); }
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 440px; }
  .bio__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "fig" "b";
    row-gap: 28px;
  }
  .values {
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(75,53,42,0.16); padding-top: 26px;
    grid-template-columns: 1fr 1fr;
  }
  .lead-magnet { grid-template-columns: 1fr; }
  .ctaband__grid { grid-template-columns: 1fr; }
  .ctaband__water { min-height: 160px; }
  .newsletter__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { position: static; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 520px; }
  .t-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .t-carousel__slide { flex-basis: calc((100% - var(--t-gap)) / 2); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brandcol { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .pagehead--split .pagehead__media { display: none; }
  .grid-3 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .grid-4 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .t-carousel__slide { flex-basis: 100%; }
  .iconrow { --cols: 2 !important; row-gap: 32px; }
  .iconrow__item { border-right: none; padding-bottom: 4px; }
  .iconrow--7 .iconrow__item:nth-child(7) { grid-column: 1 / -1; }
  .values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
  .hero__cue { display: none; }
}
