/* ==========================================================================
   AJ POWER COACHING: Stylesheet
   Farben & Schriften zentral in :root anpassbar.
   ========================================================================== */

/* ---------- Schriften (lokal gehostet, DSGVO-konform, keine Google-Server) */
@font-face {
  font-family: "AJ Display";
  src: url("../fonts/roboto-serif-display.woff2") format("woff2-variations"),
       url("../fonts/roboto-serif-display.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 100% 150%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AJ Text";
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AJ Label";
  src: url("../fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens */
:root {
  --night:      #141c18;
  --forest:     #1c2621;
  --forest-2:   #25322b;
  --forest-3:   #33443a;
  --moss:       #56655a;
  --sage:       #c7ccbc;
  --stone:      #b8c2bd;
  --sand:       #dcd5c6;
  --sand-2:     #e5dfd2;
  --paper:      #efebe2;
  --cream:      #f5f2eb;
  --ink:        #1c2621;
  --ink-soft:   #46524b;
  --gold:       #c08a4e;
  --gold-soft:  #d7ab78;
  --gold-text:  #8a5d2c;
  --line-dark:  rgba(245, 242, 235, .12);
  --line-light: rgba(28, 38, 33, .12);

  --f-display: "AJ Display", "Georgia", serif;
  --f-text:    "AJ Text", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-label:   "AJ Label", "Arial Narrow", system-ui, sans-serif;

  --radius:    22px;
  --radius-sm: 14px;
  --gutter:    clamp(20px, 5vw, 64px);
  --max:       1240px;
  --header-h:  76px;
  --ease:      cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Basis */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: clamp(1.02rem, .98rem + .2vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--night); padding: 10px 16px; border-radius: 8px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.section { padding-block: clamp(80px, 11vw, 150px); }

/* ---------- Typografie */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-stretch: 150%;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.012em;
  margin: 0;
  hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 1.2rem + 5.6vw, 6.4rem); }
h2 { font-size: clamp(2rem, 1.2rem + 3.6vw, 4.4rem); }
h3 { font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2rem); line-height: 1.08; }
.statement {
  font-family: var(--f-display);
  font-stretch: 150%;
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: pretty;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 1.4rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.lead { font-size: clamp(1.1rem, 1rem + .45vw, 1.35rem); line-height: 1.6; color: var(--ink-soft); max-width: 60ch; }
.accent { color: var(--gold-text); }

/* ---------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: 0 1.6em;
  border-radius: 999px; border: 1px solid transparent;
  font: 600 1rem/1 var(--f-text);
  text-decoration: none; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--gold { background: var(--gold); color: var(--night); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { border-color: rgba(245, 242, 235, .45); color: var(--cream); }
.btn--ghost:hover { background: rgba(245, 242, 235, .1); border-color: var(--cream); }
.btn--dark { background: var(--forest); color: var(--cream); }
.btn--dark:hover { background: var(--forest-3); }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  color: var(--cream);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(20, 28, 24, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream); position: relative; z-index: 2; }
.brand__mark { width: 42px; height: auto; color: var(--cream); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-label); font-weight: 600; font-size: 1.28rem; letter-spacing: .14em; }
.brand__claim { font-size: .72rem; letter-spacing: .04em; opacity: .7; margin-top: 5px; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__list { display: flex; gap: clamp(16px, 2vw, 30px); }
.nav__list a {
  position: relative; text-decoration: none; font-size: .95rem; font-weight: 500; opacity: .85;
  padding-block: 6px; transition: opacity .2s;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__list a:hover, .nav__list a[aria-current="true"] { opacity: 1; }
.nav__list a:hover::after, .nav__list a[aria-current="true"]::after { transform: scaleX(1); }
.nav .btn { min-height: 44px; padding: 0 1.2em; font-size: .92rem; }

.nav-toggle {
  display: none; position: relative; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(245, 242, 235, .1); border: 1px solid var(--line-dark); color: var(--cream); cursor: pointer;
}
.nav-toggle span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 40px;
    padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
    background: var(--night);
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 6px; }
  .nav__list a {
    font-family: var(--f-display); font-stretch: 150%; font-weight: 500;
    font-size: clamp(1.8rem, 7vw, 2.6rem); opacity: 1;
  }
  .nav__list a::after { display: none; }
  .nav .btn { min-height: 54px; font-size: 1rem; }
  .nav-open { overflow: hidden; }
  .brand__claim { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 0 clamp(40px, 7vw, 90px);
  color: var(--cream);
  background: var(--night);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,28,24,.75) 0%, rgba(20,28,24,.15) 30%, rgba(20,28,24,.35) 60%, rgba(20,28,24,.92) 100%),
    linear-gradient(90deg, rgba(20,28,24,.7) 0%, rgba(20,28,24,0) 70%);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { max-width: 13ch; }
.hero__sub { margin-top: clamp(22px, 3vw, 34px); max-width: 44ch; font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: rgba(245,242,235,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4vw, 44px); }
.hero__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(50px, 8vw, 100px); padding-top: 22px; border-top: 1px solid var(--line-dark);
  font-family: var(--f-label); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .9rem;
  color: rgba(245,242,235,.7);
}
.hero__scroll { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.hero__scroll i { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); display: block; animation: drip 2.4s ease-in-out infinite; }
@keyframes drip { 0%,100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ==========================================================================
   Intro-Statement
   ========================================================================== */
.intro { background: var(--cream); }
.intro__grid { display: grid; gap: clamp(26px, 4vw, 40px); }
.intro .statement { max-width: 1040px; }
.intro .statement + .statement { color: var(--moss); }

/* ==========================================================================
   Methode: Vier Zonen
   ========================================================================== */
.method { background: var(--cream); padding-top: 0; }
.section-head { display: grid; gap: 20px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head--split { grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.1fr .9fr; gap: 60px; } }

.zones { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.zone {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  min-height: 330px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease);
}
.zone:hover { transform: translateY(-6px); }
.zone:nth-child(1) { background: var(--sand-2); }
.zone:nth-child(2) { background: var(--sand); }
.zone:nth-child(3) { background: var(--sage); }
.zone:nth-child(4) { background: var(--stone); }
.zone__num { font-family: var(--f-label); font-weight: 600; letter-spacing: .15em; color: var(--moss); font-size: 1rem; }
.zone__icon { width: 46px; height: 46px; margin: 26px 0 auto; color: var(--forest); opacity: .85; }
.zone h3 { margin: 40px 0 14px; }
.zone p { color: var(--ink-soft); font-size: 1rem; }

/* ==========================================================================
   Ablauf: Was dich erwartet
   ========================================================================== */
.journey { background: var(--sand); }
.steps { display: grid; gap: 0; counter-reset: step; border-top: 1px solid var(--line-light); }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 8px 24px; align-items: baseline;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line-light);
}
.step__num { font-family: var(--f-label); font-weight: 600; font-size: 1.1rem; letter-spacing: .12em; color: var(--gold-text); }
.step h3 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem); }
.step p { grid-column: 2; color: var(--ink-soft); max-width: 52ch; margin-top: 6px; }
@media (min-width: 900px) {
  .step { grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
  .step p { grid-column: 3; margin: 0; }
}

/* ==========================================================================
   Für wen
   ========================================================================== */
.audience { background: var(--paper); }
.audience__grid { display: grid; gap: clamp(40px, 6vw, 90px); }
@media (min-width: 900px) { .audience__grid { grid-template-columns: .9fr 1.1fr; } }
.checklist { display: grid; gap: 14px; margin: 28px 0 32px; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; }
.checklist svg { width: 22px; height: 22px; color: var(--gold-text); margin-top: 3px; }
.not-for {
  font-family: var(--f-display); font-stretch: 150%; font-weight: 600; font-size: clamp(1.25rem, 1rem + .8vw, 1.6rem);
  color: var(--gold-text); margin: 0 0 22px;
}
.note {
  font-size: .9rem; color: var(--ink-soft);
  border-left: 2px solid var(--gold); padding: 4px 0 4px 16px;
}

/* ==========================================================================
   Natur als Gegenüber (Bild + Zitat)
   ========================================================================== */
.nature { background: var(--cream); }
.nature__grid { display: grid; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (min-width: 900px) { .nature__grid { grid-template-columns: 1fr 1fr; } }
.pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pillars li {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-light);
  font-size: .92rem; color: var(--ink-soft); background: var(--paper);
}
.quote-card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius); min-height: clamp(380px, 48vw, 560px);
  display: flex; align-items: flex-end; padding: clamp(26px, 4vw, 48px);
  color: var(--cream);
}
.quote-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.quote-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,28,24,.1), rgba(20,28,24,.85)); }
.quote-card blockquote { margin: 0; }
.quote-card blockquote p { font-family: var(--f-display); font-stretch: 150%; font-weight: 600; font-size: clamp(1.7rem, 1.1rem + 2.2vw, 2.9rem); line-height: 1.05; }

/* ==========================================================================
   Angebote
   ========================================================================== */
.offers { background: var(--forest); color: var(--cream); }
.offers .eyebrow { color: var(--gold-soft); }
.offers .lead { color: rgba(245,242,235,.72); }

.offer-hero {
  display: grid; gap: clamp(30px, 5vw, 60px); align-items: center;
  border-radius: var(--radius); overflow: hidden;
  background: var(--forest-2); border: 1px solid var(--line-dark);
  margin-bottom: 18px;
}
@media (min-width: 900px) { .offer-hero { grid-template-columns: 1.05fr .95fr; } }
.offer-hero__img { height: 100%; min-height: 260px; }
.offer-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.offer-hero__body { padding: clamp(28px, 4vw, 56px); padding-top: 0; }
@media (min-width: 900px) { .offer-hero__body { padding-top: clamp(28px, 4vw, 56px); padding-left: 0; } }
.offer-hero h3 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.4rem); margin-bottom: 18px; }
.offer-hero p { color: rgba(245,242,235,.75); }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin: 26px 0 28px; }
.price strong { font-family: var(--f-display); font-stretch: 150%; font-weight: 600; font-size: clamp(2.6rem, 2rem + 2.5vw, 4rem); color: var(--gold); line-height: 1; }
.price span { color: rgba(245,242,235,.7); font-size: .95rem; }

.offer-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.offer {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  background: var(--forest-2); border: 1px solid var(--line-dark);
  transition: transform .5s var(--ease), border-color .4s;
}
.offer:hover { transform: translateY(-6px); border-color: rgba(192,138,78,.45); }
.offer__img { aspect-ratio: 16 / 10; overflow: hidden; }
.offer__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.offer:hover .offer__img img { transform: scale(1.05); }
.offer__body { padding: clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column; flex: 1; }
.offer__tag { font-family: var(--f-label); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .85rem; color: var(--gold-soft); margin-bottom: 10px; }
.offer h3 { margin-bottom: 14px; }
.offer p { color: rgba(245,242,235,.72); font-size: 1rem; }
.offer__meta { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid var(--line-dark); font-size: .92rem; color: rgba(245,242,235,.7); }
.offer__meta a { color: var(--gold-soft); font-weight: 600; text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.offer__meta a:hover { color: var(--cream); }
.offer__meta svg { width: 16px; height: 16px; }
.offer + .offer, .offer-grid + .offer-feature { }

.offer-feature {
  margin-top: 18px;
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius);
  display: grid; align-items: end;
  min-height: clamp(460px, 52vw, 620px);
  border: 1px solid rgba(192,138,78,.35);
}
.offer-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.offer-feature::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,28,24,.05) 20%, rgba(20,28,24,.95) 78%); }
@media (min-width: 900px) {
  .offer-feature { background: var(--night); }
  .offer-feature > img { left: auto; width: 64%; object-position: 50% 62%; }
  .offer-feature::before { background: linear-gradient(90deg, rgba(20,28,24,1) 0%, rgba(20,28,24,.97) 36%, rgba(20,28,24,.35) 52%, rgba(20,28,24,0) 70%); }
  .offer-feature { align-items: center; }
}
.offer-feature__body { padding: clamp(28px, 5vw, 64px); max-width: 620px; }
.offer-feature h3 { font-size: clamp(2.1rem, 1.3rem + 3vw, 3.8rem); margin-bottom: 18px; }
.offer-feature p { color: rgba(245,242,235,.8); }
.offer-feature ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 30px; }
.offer-feature li { padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(215,171,120,.4); color: var(--gold-soft); font-size: .88rem; }

/* ==========================================================================
   Über mich
   ========================================================================== */
.about { background: var(--cream); }
.about__grid { display: grid; gap: clamp(40px, 6vw, 90px); align-items: center; }
@media (min-width: 900px) { .about__grid { grid-template-columns: .85fr 1.15fr; } }
.portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(120% 90% at 30% 20%, var(--forest-3), var(--forest) 70%);
  display: grid; place-items: center; color: var(--sand);
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait__mark { width: 42%; opacity: .9; }
.portrait__badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(245,242,235,.1); border: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--f-label); letter-spacing: .16em; text-transform: uppercase; font-size: .88rem; color: var(--cream);
}
.certs { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); margin-top: 34px; }
.cert { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line-light); }
.cert svg { width: 30px; height: 30px; color: var(--gold-text); flex: none; }
.cert strong { display: block; font-size: .98rem; line-height: 1.3; }
.cert span { font-size: .84rem; color: var(--ink-soft); }
.signature { font-family: var(--f-display); font-stretch: 150%; font-weight: 500; font-size: 1.4rem; margin-top: 28px; }

/* ==========================================================================
   Orte
   ========================================================================== */
.places { background: var(--night); color: var(--cream); }
.places .eyebrow { color: var(--gold-soft); }
.places .lead { color: rgba(245,242,235,.72); }
.place-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.place { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius); min-height: 400px; display: flex; align-items: flex-end; padding: 28px; }
.place img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.place:hover img { transform: scale(1.05); }
.place::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,28,24,0) 35%, rgba(20,28,24,.9)); }
.place h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-bottom: 8px; }
.place p { color: rgba(245,242,235,.78); font-size: .98rem; }
.place-info { display: grid; gap: 18px; margin-top: 40px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.place-info div { padding-top: 18px; border-top: 1px solid var(--line-dark); }
.place-info strong { display: block; font-family: var(--f-label); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; margin-bottom: 6px; }
.place-info p { color: rgba(245,242,235,.75); font-size: .98rem; }

/* ==========================================================================
   Journal
   ========================================================================== */
.journal { background: var(--cream); }
.lead-magnet {
  display: grid; gap: clamp(28px, 4vw, 60px); align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius);
  background: var(--sand-2);
  margin-bottom: clamp(50px, 7vw, 90px);
}
@media (min-width: 900px) { .lead-magnet { grid-template-columns: 1.2fr .8fr; } }
.lead-magnet h3 { font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); margin-bottom: 16px; }
.lead-magnet p { color: var(--ink-soft); }
.journal-book {
  aspect-ratio: 3 / 4; max-width: min(300px, 70%); width: 100%; justify-self: center;
  border-radius: 6px 18px 18px 6px;
  background: linear-gradient(90deg, rgba(0,0,0,.25) 0 6px, transparent 6px), var(--forest);
  color: var(--cream); padding: 30px 26px 26px 34px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 60px -20px rgba(20,28,24,.55), 0 2px 0 rgba(255,255,255,.05) inset;
  transform: rotate(-3deg);
  transition: transform .6s var(--ease);
}
.lead-magnet:hover .journal-book { transform: rotate(0deg) translateY(-6px); }
.journal-book svg { width: 44px; color: var(--gold-soft); }
.journal-book b { font-family: var(--f-display); font-stretch: 150%; font-weight: 600; font-size: 1.8rem; line-height: 1.02; display: block; }
.journal-book small { font-family: var(--f-label); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-size: .8rem; }

.posts { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.post { border-radius: var(--radius); background: var(--paper); padding: 14px 14px 26px; display: flex; flex-direction: column; }
.post__img { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 22px; }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: 0 12px; display: flex; flex-direction: column; flex: 1; }
.post__tag { font-family: var(--f-label); letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; color: var(--moss); margin-bottom: 10px; font-weight: 600; }
.post h3 { font-size: clamp(1.3rem, 1.1rem + .7vw, 1.65rem); margin-bottom: 12px; }
.post p { color: var(--ink-soft); font-size: .98rem; }
.post__soon { margin-top: auto; padding-top: 18px; font-size: .85rem; color: var(--gold-text); font-weight: 600; }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact { background: var(--forest); color: var(--cream); position: relative; overflow: hidden; }
.contact .eyebrow { color: var(--gold-soft); }
.contact__grid { display: grid; gap: clamp(40px, 6vw, 90px); }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; } }
.contact .lead { color: rgba(245,242,235,.75); }
.contact-list { display: grid; gap: 14px; margin-top: 34px; }
.contact-list a, .contact-list div { display: flex; gap: 14px; align-items: center; text-decoration: none; color: var(--cream); }
.contact-list svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; }
.contact-list a:hover { color: var(--gold-soft); }

.form { display: grid; gap: 16px; padding: clamp(24px, 3.5vw, 44px); border-radius: var(--radius); background: var(--forest-2); border: 1px solid var(--line-dark); }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 500; color: rgba(245,242,235,.8); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--cream);
  background: rgba(245,242,235,.05); border: 1px solid rgba(245,242,235,.18); border-radius: 12px;
  padding: 14px 16px; transition: border-color .2s, background .2s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7ab78' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field select option { color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(245,242,235,.08); }
.field-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: .86rem; color: rgba(245,242,235,.72); align-items: start; }
.consent input { width: 20px; height: 20px; accent-color: var(--gold); margin-top: 2px; }
.form .btn { justify-self: start; margin-top: 6px; }
.form__hint { font-size: .82rem; color: rgba(245,242,235,.55); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--night); color: rgba(245,242,235,.7); padding: clamp(60px, 8vw, 100px) 0 30px; font-size: .95rem; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer__claim { font-family: var(--f-display); font-stretch: 150%; font-weight: 500; font-size: 1.35rem; color: var(--cream); line-height: 1.15; margin-top: 22px; max-width: 18ch; }
.site-footer h4 { font-family: var(--f-label); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); font-size: .88rem; margin: 0 0 16px; }
.site-footer li + li { margin-top: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--cream); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: .85rem; }

/* ==========================================================================
   Unterseiten (Impressum / Datenschutz)
   ========================================================================== */
.legal { padding: calc(var(--header-h) + clamp(50px, 8vw, 100px)) 0 clamp(70px, 9vw, 120px); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4rem); margin-bottom: 40px; }
.legal h2 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); margin: 44px 0 14px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.legal a { color: var(--gold-text); }
.todo { background: #fff3cd; color: #6b4e00; padding: 1px 6px; border-radius: 4px; font-weight: 600; }

/* ==========================================================================
   Reveal-Animationen
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Schmale Bildschirme: lange deutsche Wörter sauber trennen */
@media (max-width: 560px) {
  h1, h2, h3, .statement { hyphens: auto; -webkit-hyphens: auto; }
}
