/* ============================================================
   FELICIA SUTTERLÜTY — Personal Brand
   Clean, modern, warm, gut lesbar. Orientiert an Laura Seiler /
   Ali Abdaal: Sans-Serif durchgehend, viel Whitespace, ruhige
   Hierarchie, freundlich + premium.
   ============================================================ */

:root {
  --accent: #C5917B;
  --accent-deep: #5C3410;
  --rose-light: #E8C9AE;
  --plum: #23160A;
  --ink: #2B1703;
  --text: #5D4630;
  --muted: #A88B7B;
  --bg: #FAF1EA;
  --bg-soft: #F4E2D8;
  --paper: #FFFCF7;
  --frame: #EFDCCD;
  --line: rgba(43, 23, 3, 0.12);
  --line-soft: rgba(43, 23, 3, 0.07);

  --maxw: 1180px;
  --maxw-text: 720px;
  --gut: clamp(20px, 5vw, 80px);
  --radius: 22px;
  --radius-pill: 100px;

  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px -28px rgba(90, 52, 16, 0.30);
  --shadow-soft: 0 12px 38px -24px rgba(90, 52, 16, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Headings ---------- */
h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); font-weight: 600; letter-spacing: -0.018em; line-height: 1.16; }
.h-display { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.14; }
.em { color: var(--accent-deep); font-style: italic; }

/* ---------- Eyebrow / kicker ---------- */
.kicker, .eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent-deep);
  background: rgba(197, 145, 123, 0.14);
  padding: 7px 15px; border-radius: var(--radius-pill);
  margin-bottom: clamp(16px, 2.4vh, 24px);
}
.kicker--light { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--accent { background: var(--accent-deep); color: #fff; }
.btn--accent:hover { transform: translateY(-2px); background: #472400; box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 9995; background: transparent; }
.progress span { display: block; height: 100%; width: 0%; background: var(--accent); transform-origin: left; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: clamp(16px, 2vw, 24px) var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 9000;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled { background: rgba(250, 241, 234, 0.88); backdrop-filter: blur(12px); padding-top: 13px; padding-bottom: 13px; box-shadow: 0 1px 0 var(--line-soft); }
.nav__mark { font-weight: 600; font-size: 1.04rem; letter-spacing: -0.01em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }
.nav__links a { position: relative; color: var(--text); font-size: 0.96rem; font-weight: 500; }
.nav__links a:not(.nav__cta)::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; border-radius: 2px; background: var(--accent); transition: width .35s var(--ease); }
.nav__links a:not(.nav__cta):hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--ink); }
.nav__cta { padding: 9px 20px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease); }
.nav__cta:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
@media (max-width: 820px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ---------- Sections ---------- */
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vh, 116px) var(--gut); }

/* ---------- Image frames ---------- */
.art-plate { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--frame); }
.art-plate::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(197, 145, 123,0.18); pointer-events: none; z-index: 2; }
.art-plate__mark { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; padding: 24px; text-align: center; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(43, 23, 3,0.22); }
.art-plate--light .art-plate__mark, .art-plate__mark--light { color: rgba(43, 23, 3,0.22); }
.art-plate.has-img { background: none; }
.art-plate.has-img .art-plate__mark { display: none; }
.art-plate.has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============ HERO (soft framed — Konzept 3) ============ */
.hero { position: relative; max-width: none; margin: 0; padding: clamp(74px, 10vh, 104px) clamp(14px, 2vw, 22px) clamp(16px, 2vw, 24px); min-height: 100svh; min-height: 100vh; display: flex; }
.hero__frame { position: relative; flex: 1; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% 22%; z-index: 0; animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__card { position: absolute; left: clamp(16px, 3vw, 40px); bottom: clamp(16px, 3vw, 40px); z-index: 2; max-width: min(500px, 84%); background: rgba(250, 241, 234,0.92); backdrop-filter: blur(10px); border-radius: 24px; padding: clamp(26px, 2.6vw, 40px); box-shadow: 0 26px 54px -32px rgba(90, 52, 16,0.5); }
.hero__script { display: block; font-family: 'Caveat', cursive; font-weight: 700; color: var(--accent-deep); font-size: clamp(1.7rem, 2.4vw, 2.1rem); line-height: 1; margin-bottom: 8px; }
.hero__title { color: var(--ink); font-size: clamp(1.9rem, 2.9vw, 2.85rem); font-weight: 700; line-height: 1.07; letter-spacing: -0.03em; max-width: 16ch; }
.hero__intro { margin: 14px 0 22px; max-width: 42ch; font-size: clamp(1rem, 1.1vw, 1.1rem); color: var(--text); font-weight: 400; line-height: 1.55; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .hero { display: block; min-height: 0; height: auto; padding: 60px 10px 10px; }
  .hero__frame { height: min(88vh, 680px); border-radius: 26px; }
  .hero__bg { object-position: 80% 20%; animation: none; transform: none; }
  .hero__card { left: 10px; right: 10px; bottom: 10px; max-width: none; padding: 22px 20px 24px; border-radius: 22px; background: rgba(250, 241, 234,0.94); }
  .hero__script { font-size: 1.5rem; margin-bottom: 4px; }
  .hero__title { font-size: clamp(1.6rem, 6.2vw, 2.15rem); }
  .hero__intro { max-width: none; margin: 10px 0 16px; font-size: 1rem; line-height: 1.5; }
  .hero__actions { gap: 9px; }
  .hero__actions .btn { width: 100%; }
}


/* ============ LEAD MAGNET ============ */
.lead { max-width: var(--maxw); margin: 0 auto; padding: clamp(20px, 4vh, 40px) var(--gut) clamp(40px, 6vh, 70px); }
.lead__card { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 60px); align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 56px); box-shadow: var(--shadow-soft); }
.lead__copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.lead__copy > p { color: var(--text); margin-bottom: 22px; max-width: 42ch; }
.lead__points { list-style: none; display: grid; gap: 11px; }
.lead__points li { position: relative; padding-left: 28px; font-size: 0.98rem; color: var(--text); }
.lead__points li::before { content: '✓'; position: absolute; left: 0; top: -1px; font-weight: 700; color: var(--accent); }
.lead__form { display: grid; gap: 12px; }
.lead__form label { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.lead__form input { width: 100%; padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); font-family: var(--sans); font-size: 1rem; color: var(--ink); transition: border-color .3s var(--ease); }
.lead__form input:focus { outline: none; border-color: var(--accent); }
.lead__form .btn { width: 100%; }
.lead__note { font-size: 0.82rem; color: var(--muted); text-align: center; }
.lead__done { display: none; padding: 20px 0; text-align: center; }
.lead__done h3 { font-size: 1.2rem; margin-bottom: 6px; }
.lead__done p { color: var(--text); font-size: 0.96rem; }
.lead.is-done .lead__form { display: none; }
.lead.is-done .lead__done { display: block; }
@media (max-width: 760px) { .lead__card { grid-template-columns: 1fr; gap: 26px; } }

/* ============ WAS ICH MACHE (Profil-Block) ============ */
.doing { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 74px) var(--gut); }
.doing__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.doing__text h2 { margin-top: 6px; max-width: 18ch; }
.doing__lead { color: var(--text); font-size: clamp(1.02rem, 1.2vw, 1.14rem); line-height: 1.62; margin-top: 16px; max-width: 50ch; }
.doing__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.6vw, 34px); box-shadow: var(--shadow-soft); }
.doing__pic { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; position: relative; margin-bottom: 16px; box-shadow: var(--shadow-soft); }
.doing__pic img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.doing__name { font-weight: 700; color: var(--ink); font-size: 1.16rem; letter-spacing: -0.015em; }
.doing__role { color: var(--accent-deep); font-weight: 600; font-size: 0.9rem; margin-top: 3px; }
.doing__facts { list-style: none; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.doing__facts li { color: var(--ink); font-weight: 500; font-size: 0.98rem; line-height: 1.4; }
.doing__facts span { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
@media (max-width: 820px) { .doing__grid { grid-template-columns: 1fr; gap: 26px; } }

/* Spiegel als farbiges Band, damit es sich vom Fließtext absetzt */
.note { background: var(--bg-soft); }

/* Karten reagieren beim Drüberfahren */
.give, .post { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.give:hover, .post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Dezenter Gratis-Guide ganz unten */
.lead--soft .lead__card { background: var(--bg-soft); border-color: transparent; box-shadow: none; }
.lead--soft .lead__copy h2 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); }

/* ============ NOTE / MAL EHRLICH ============ */
.note__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 70px) var(--gut); }
.note .kicker { margin-bottom: clamp(20px, 2.6vh, 28px); }
.note__text { font-size: clamp(1.3rem, 2.05vw, 1.85rem); line-height: 1.5; letter-spacing: -0.013em; color: var(--ink); font-weight: 500; max-width: 70ch; }
.note__text mark {
  background-color: transparent;
  background-image: linear-gradient(104deg, rgba(197, 145, 123,0.0) 0.5%, rgba(197, 145, 123,0.34) 2%, rgba(197, 145, 123,0.34) 98%, rgba(197, 145, 123,0.0) 99.5%);
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 78%;
  color: inherit; padding: 0 0.05em; border-radius: 1px;
}
.note__sig { margin-top: clamp(30px, 4.5vh, 50px); max-width: 48ch; color: var(--text); font-size: clamp(1.05rem, 1.25vw, 1.2rem); line-height: 1.62; }
.note__name { display: block; margin-top: 8px; font-family: 'Caveat', cursive; font-weight: 700; font-size: clamp(2.1rem, 3.4vw, 2.9rem); line-height: 1; color: var(--accent-deep); }
@media (max-width: 600px) {
  .note__inner { padding: clamp(28px, 5vh, 40px) var(--gut); }
  .note .kicker { margin-bottom: 14px; }
  .note__text { font-size: 1.12rem; line-height: 1.5; }
  .note__sig { margin-top: 22px; font-size: 1rem; line-height: 1.55; }
}

/* ============ STATEMENT (light pull-quote) ============ */
.statement { background: var(--bg-soft); padding: clamp(38px, 6vh, 74px) var(--gut); }
.statement__text { max-width: 840px; margin: 0 auto; text-align: center; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.26; letter-spacing: -0.02em; color: var(--ink); }
.statement__text .em { font-weight: 600; }

/* ---------- generic content sections ---------- */
.story, .freiheit, .videos, .versus, .forwen, .journal, .faq { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 74px) var(--gut); }

/* ---------- STORY (arch-framed editorial) ---------- */
.story__grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.story__media .art-plate { width: 100%; aspect-ratio: 4/5; min-height: 0; border-radius: clamp(100px, 18vw, 200px) clamp(100px, 18vw, 200px) 30px 30px; box-shadow: var(--shadow); }
.story__text h2 { margin-bottom: clamp(18px, 2.6vh, 28px); max-width: 18ch; }
.story__text p { color: var(--text); margin-bottom: 1.2em; max-width: 46ch; }
@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; gap: 26px; }
  .story__media .art-plate { max-width: 380px; margin: 0 auto; }
}

/* ---------- FREIHEIT (arch-framed editorial) ---------- */
.freiheit__grid { display: grid; grid-template-columns: 1.14fr 0.86fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.freiheit__text h2 { margin-bottom: clamp(18px, 2.6vh, 28px); max-width: 15ch; }
.freiheit__text p { color: var(--text); margin-bottom: 1.2em; max-width: 46ch; }
.freiheit__media .art-plate { width: 100%; aspect-ratio: 4/5; min-height: 0; border-radius: clamp(100px, 18vw, 200px) clamp(100px, 18vw, 200px) 30px 30px; box-shadow: var(--shadow); }
@media (max-width: 820px) {
  .freiheit__grid { grid-template-columns: 1fr; gap: 26px; }
  .freiheit__media { order: -1; }
  .freiheit__media .art-plate { max-width: 380px; margin: 0 auto; }
}

/* ---------- PLACES / REISEN (horizontale Foto-Slide) ---------- */
.places { max-width: none; margin: 0; padding: clamp(40px, 6vh, 80px) 0; }
.places__head { max-width: var(--maxw); margin: 0 auto clamp(24px, 4vh, 40px); padding: 0 var(--gut); }
.places__head h2 { margin-top: 6px; max-width: 24ch; }
.places__lead { color: var(--text); max-width: 52ch; margin-top: 14px; }
.places__row { display: flex; gap: clamp(14px, 1.6vw, 22px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gut) 18px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.places__row::-webkit-scrollbar { display: none; }
.place { flex: 0 0 clamp(232px, 28vw, 320px); scroll-snap-align: start; margin: 0; }
.place .art-plate { aspect-ratio: 4 / 5; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.place .art-plate img { transition: transform 1s var(--ease); }
.place:hover .art-plate img { transform: scale(1.04); }
.place__loc { position: absolute; left: 14px; bottom: 14px; z-index: 3; color: #fff; font-size: 0.86rem; font-weight: 600; letter-spacing: -0.01em; background: rgba(43, 23, 3,0.5); backdrop-filter: blur(6px); padding: 7px 14px; border-radius: var(--radius-pill); }

/* ---------- REISE-COVERFLOW ---------- */
.cf { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 6px var(--gut) 6px; overflow: hidden; }
.cf__stage { position: relative; height: clamp(360px, 56vh, 540px); perspective: 1500px; }
.cf__slide { position: absolute; top: 0; left: 50%; width: clamp(210px, 22vw, 312px); height: 100%; margin-left: calc(clamp(210px, 22vw, 312px) / -2); transition: none; cursor: pointer; }
.cf--ready .cf__slide { transition: transform .6s var(--ease), opacity .6s var(--ease), filter .6s var(--ease); will-change: transform, opacity, filter; }
.cf__slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; border-radius: 26px; box-shadow: 0 30px 60px -28px rgba(90, 52, 16,0.5); }
.cf__slide::after { content: ''; position: absolute; inset: 0; border-radius: 26px; box-shadow: inset 0 0 0 1px rgba(197, 145, 123,0.22); pointer-events: none; }
.cf__cap { position: absolute; left: 16px; bottom: 16px; z-index: 2; color: #fff; font-size: 0.9rem; font-weight: 600; background: rgba(43, 23, 3,0.5); backdrop-filter: blur(6px); padding: 8px 15px; border-radius: var(--radius-pill); opacity: 0; transition: opacity .4s var(--ease); }
.cf__slide.is-center .cf__cap { opacity: 1; }
.cf__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 40; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(250, 241, 234,0.82); backdrop-filter: blur(8px); display: grid; place-items: center; color: var(--ink); cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.cf__nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cf__nav svg { width: 22px; height: 22px; }
.cf__nav--prev { left: clamp(0px, 1vw, 16px); }
.cf__nav--next { right: clamp(0px, 1vw, 16px); }
.cf__dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.cf__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: 0; padding: 0; cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease); }
.cf__dot.is-on { background: var(--accent); transform: scale(1.35); }
@media (max-width: 600px) {
  .cf__nav { width: 40px; height: 40px; }
  .cf__slide { width: clamp(180px, 62vw, 240px); margin-left: calc(clamp(180px, 62vw, 240px) / -2); }
}

/* ---------- GIVES (Was es mir ermöglicht hat) ---------- */
.gives { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 74px) var(--gut); }
.gives__head { margin-bottom: clamp(26px, 4vh, 42px); }
.gives__head h2 { margin-top: 6px; }
.gives__grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 22px); }
.give { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2vw, 30px); box-shadow: var(--shadow-soft); }
.give__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--accent-deep); margin-bottom: 16px; }
.give__icon svg { width: 22px; height: 22px; }
.give__t { display: block; font-weight: 600; font-size: 1.08rem; color: var(--ink); margin-bottom: 6px; }
.give p { color: var(--text); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 760px) { .gives__grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 440px) { .gives__grid { grid-template-columns: 1fr; } }

/* ---------- FACTS (Lerne mich kennen) ---------- */
.facts { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 74px) var(--gut); }
.facts__card { background: var(--bg-soft); border-radius: var(--radius); padding: clamp(30px, 4vw, 58px); }
.facts__head { margin-bottom: clamp(24px, 3.5vh, 40px); }
.facts__head h2 { margin-top: 6px; }
.facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 38px); }
.fact { padding-top: 18px; border-top: 1px solid var(--line); }
.fact__label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 8px; }
.fact__val { font-size: 1.08rem; color: var(--ink); font-weight: 500; line-height: 1.4; }
@media (max-width: 760px) { .facts__grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 440px) { .facts__grid { grid-template-columns: 1fr; } }

/* ---------- INSTAGRAM ---------- */
.ig { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 74px) var(--gut); }
.ig__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px 30px; margin-bottom: clamp(22px, 3vh, 34px); flex-wrap: wrap; }
.ig__head h2 { margin-top: 6px; }
.ig__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1vw, 14px); }
.ig__tile { position: relative; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; display: block; box-shadow: var(--shadow-soft); }
.ig__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig__tile:hover img { transform: scale(1.06); }
.ig__tile::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(197, 145, 123,0.18); }
@media (max-width: 680px) { .ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- VIDEOS ---------- */
.videos__head { margin-bottom: clamp(30px, 4.5vh, 50px); max-width: 760px; }
.videos__head h2 { margin-top: 6px; }
.videos__lead { color: var(--text); max-width: 52ch; margin-top: clamp(16px, 2.4vh, 24px); }
.vcard { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: radial-gradient(120% 90% at 50% 32%, #3A2A18 0%, #23160A 70%); }
.vcard--feat { aspect-ratio: 16 / 9; margin-bottom: clamp(14px, 1.8vw, 22px); }
.vcard--reel { aspect-ratio: 9 / 16; }
.vcard__media { position: absolute; inset: 0; border-radius: 0; background: #23160A; }
.vcard__media::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(18, 10, 3,0.92) 0%, rgba(18, 10, 3,0.32) 38%, rgba(18, 10, 3,0) 66%); }
.play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.55); display: grid; place-items: center; transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease); }
.play__tri { width: 0; height: 0; border-left: 14px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; transition: border-color .45s var(--ease); }
.play--sm { width: 50px; height: 50px; }
.play--sm .play__tri { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; }
.vcard:hover .play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent); border-color: var(--accent); }
.vcard:hover .play .play__tri { border-left-color: #fff; }
.vcard__media.has-img img { transition: transform 1s var(--ease); }
.vcard:hover .vcard__media.has-img img { transform: scale(1.05); }
.vcard__cap { position: absolute; z-index: 3; left: clamp(18px, 2.4vw, 34px); right: clamp(18px, 2.4vw, 34px); bottom: clamp(18px, 2.4vw, 30px); color: #fff; }
.vcard__label { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 10px; }
.vcard--feat h3 { font-size: clamp(1.3rem, 2.1vw, 1.9rem); line-height: 1.18; color: #fff; max-width: 22ch; margin-bottom: 12px; }
.vcard__cta { font-size: 0.9rem; font-weight: 600; color: #fff; }
.vcard--reel h4 { font-size: clamp(0.98rem, 1.2vw, 1.12rem); line-height: 1.3; color: #fff; max-width: 22ch; }
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.videos__links { display: flex; gap: 26px; margin-top: clamp(28px, 4vh, 46px); }
.videos__links a { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.videos__links a:hover { color: var(--accent-deep); }
@media (max-width: 820px) {
  .videos__head { grid-template-columns: 1fr; gap: 16px; }
  .vcard--feat { aspect-ratio: 4 / 5; }
  .reels { display: flex; gap: 12px; max-width: none; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
  .reels::-webkit-scrollbar { display: none; }
  .vcard--reel { flex: 0 0 46%; aspect-ratio: 9 / 16; scroll-snap-align: start; }
}

/* ---------- VERSUS ---------- */
.versus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }
.versus__col { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); min-height: clamp(190px, 24vh, 250px); display: flex; flex-direction: column; justify-content: space-between; background: var(--bg-soft); }
.versus__col--accent { background: var(--ink); color: var(--bg); }
.versus__tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); }
.versus__col--accent .versus__tag { color: var(--rose-light); }
.versus__col p { font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.32; margin-top: 26px; font-weight: 500; color: var(--ink); }
.versus__col--accent p { color: var(--bg); }
.versus__note { font-size: clamp(1.1rem, 1.7vw, 1.4rem); margin-top: clamp(30px, 4vh, 50px); color: var(--text); max-width: 40ch; line-height: 1.42; }
@media (max-width: 640px) {
  .versus__grid { grid-template-columns: 1fr; }
  .versus__col { min-height: 0; justify-content: flex-start; padding: 26px 24px; }
  .versus__col p { margin-top: 12px; }
}

/* ---------- PROOF ---------- */
.proof { background: var(--bg-soft); }
.proof__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(38px, 6vh, 74px) var(--gut); }

.proof__title { margin: 0; max-width: 22ch; }
/* money infographic */
.money { margin: clamp(28px, 4vh, 48px) 0 clamp(34px, 5vh, 58px); }
.money__flow { display: flex; align-items: flex-start; justify-content: center; gap: clamp(6px, 1.4vw, 22px); margin-bottom: clamp(28px, 4vh, 46px); }
.money__node { flex: 1 1 0; max-width: 250px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.money__icon { width: clamp(74px, 7vw, 94px); height: clamp(74px, 7vw, 94px); border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-soft); color: var(--ink); }
.money__icon svg { width: 44%; height: 44%; }
.money__label { font-size: clamp(0.95rem, 1.05vw, 1.06rem); color: var(--ink); font-weight: 500; line-height: 1.4; max-width: 19ch; }
.money__label strong { color: var(--accent-deep); font-weight: 700; }
.money__arrow { flex: 0 0 auto; color: var(--accent); margin-top: clamp(30px, 3.4vw, 40px); }
.money__arrow svg { width: clamp(22px, 2.2vw, 30px); height: auto; }
.money__node--pay .money__icon { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 12px 30px -14px rgba(197, 145, 123,0.6); }
.money__result { max-width: 54ch; margin: 0 auto; text-align: center; font-size: clamp(1.08rem, 1.4vw, 1.3rem); color: var(--ink); line-height: 1.5; font-weight: 500; }
@media (max-width: 760px) {
  .money__flow { flex-direction: column; align-items: center; gap: 4px; }
  .money__node { max-width: 320px; }
  .money__arrow { margin: 4px 0; transform: rotate(90deg); }
}
.feats { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.6vw, 40px); padding-top: clamp(32px, 4.5vh, 50px); border-top: 1px solid var(--line); }
.feat { display: flex; flex-direction: column; gap: 14px; }
.feat__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-deep); box-shadow: var(--shadow-soft); }
.feat__icon svg { width: 22px; height: 22px; }
.feat__t { display: block; font-weight: 600; font-size: 1.06rem; color: var(--ink); margin-bottom: 3px; }
.feat em { font-style: normal; font-size: 0.92rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 760px) { .feats { grid-template-columns: 1fr 1fr; gap: 26px; } }

.proof__ref { max-width: 58ch; margin: clamp(40px, 6vh, 64px) auto 0; text-align: center; }
.proof__ref-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.proof__ref p { color: var(--text); line-height: 1.6; }

/* ---------- FÜR WEN ---------- */
.forwen__head { text-align: center; max-width: 30ch; margin: 0 auto clamp(34px, 5vh, 52px); }
.forwen__head .kicker { margin-bottom: 16px; }
.forwen__grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 1.8vw, 22px); }
.fwitem { display: flex; align-items: flex-start; gap: clamp(14px, 1.4vw, 20px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.4vw, 32px); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.fwitem:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.fwitem__check { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-soft); color: var(--accent-deep); display: grid; place-items: center; margin-top: 2px; }
.fwitem__check svg { width: 19px; height: 19px; }
.fwitem p { font-size: clamp(1.05rem, 1.3vw, 1.22rem); color: var(--ink); font-weight: 500; line-height: 1.4; }
@media (max-width: 720px) { .forwen__grid { grid-template-columns: 1fr; } }

/* ---------- JOURNAL ---------- */
.journal { max-width: var(--maxw); margin: 0 auto; }
.journal__head { margin-bottom: clamp(30px, 4.5vh, 50px); }
.journal__head h2 { margin-top: 6px; }
.journal__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.post { display: flex; flex-direction: column; padding: clamp(24px, 2.6vw, 36px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); min-height: 240px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.post__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 16px; }
.post h3 { font-size: clamp(1.18rem, 1.6vw, 1.4rem); line-height: 1.24; margin-bottom: 12px; }
.post p { font-size: 0.97rem; color: var(--text); line-height: 1.58; margin-bottom: 20px; }
.post__more { margin-top: auto; font-size: 0.92rem; font-weight: 600; color: var(--accent-deep); }
@media (max-width: 820px) { .journal__list { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq__lead { position: sticky; top: 13vh; }
.faq__lead h2 { margin-top: 6px; max-width: 13ch; }
.faq__items { display: grid; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(20px, 2.6vh, 26px) 0; font-size: clamp(1.08rem, 1.5vw, 1.3rem); font-weight: 600; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after { content: ''; position: absolute; background: var(--accent-deep); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq__plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq__item[open] .faq__plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq__a { padding: 0 0 clamp(22px, 3vh, 28px); max-width: 60ch; color: var(--text); line-height: 1.66; }
@media (max-width: 820px) { .faq__grid { grid-template-columns: 1fr; gap: 20px; } .faq__lead { position: relative; top: 0; } }

/* ---------- SOCIETY ---------- */
.society { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; background: var(--bg-soft); overflow: hidden; }
.society__inner { padding: clamp(38px, 6vh, 74px) var(--gut); display: flex; flex-direction: column; align-items: flex-start; gap: clamp(14px, 2.2vh, 22px); }
.society__title { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.025em; }
.society__body { max-width: 46ch; color: var(--text); }
.society__points { list-style: none; display: grid; gap: 12px; margin: 4px 0 8px; }
.society__points li { position: relative; padding-left: 28px; color: var(--ink); }
.society__points li::before { content: '✓'; position: absolute; left: 0; top: -1px; font-weight: 700; color: var(--accent); }
.society__media { min-height: 320px; padding: clamp(18px, 2.4vw, 40px) 0; }
.society__media .art-plate { width: 100%; height: 100%; border-radius: clamp(60px, 8vw, 110px) 0 0 clamp(60px, 8vw, 110px); }
@media (max-width: 860px) {
  .society { grid-template-columns: 1fr; }
  .society__media { min-height: 230px; order: -1; padding: 0 var(--gut); }
  .society__media .art-plate { border-radius: clamp(36px, 9vw, 56px); }
}

/* ---------- KONTAKT ---------- */
.kontakt { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 6vh, 78px) var(--gut) clamp(36px, 5vh, 54px); text-align: center; }
.kontakt__cta { font-size: clamp(1.9rem, 3.8vw, 3rem); letter-spacing: -0.025em; max-width: 18ch; margin: 0 auto; }
.kontakt__sub { max-width: 46ch; margin: clamp(20px, 3vh, 30px) auto clamp(34px, 5vh, 48px); color: var(--text); font-size: 1.08rem; }
.kontakt__signoff { color: var(--text); font-size: 1.08rem; margin: 0 auto clamp(30px, 4vh, 44px); }
.kontakt__signoff .note__name { margin-top: 4px; }
.kontakt__follow { color: var(--muted); font-size: 1.02rem; margin-bottom: 20px; }
.kontakt__socials { display: flex; justify-content: center; gap: 14px; padding-bottom: clamp(40px, 6vh, 70px); border-bottom: 1px solid var(--line); }
.social { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.social:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; }
.kontakt__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.86rem; color: var(--muted); }
.kontakt__name { font-weight: 600; color: var(--ink); }

/* ---------- Reveal ---------- */
.js .reveal-lines, .js .reveal-words { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal-lines.is-in, .reveal-words.is-in { opacity: 1; transform: none; }
.js .hero__title .line > span { transform: translateY(100%); transition: transform .9s var(--ease); }
.hero__title.is-in .line > span { transform: translateY(0); }
.hero__title.is-in .line:nth-child(2) > span { transition-delay: .06s; }
.hero__title.is-in .line:nth-child(3) > span { transition-delay: .12s; }
.hero__title.is-in .line:nth-child(4) > span { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal-lines, .js .reveal-words, .js .hero__title .line > span { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SUBPAGES — Artikel / Lange Story (Journal + Meine Geschichte)
   ============================================================ */
.pnav { position: sticky; top: 0; z-index: 9000; background: rgba(250, 241, 234,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); }
.pnav__in { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pnav__mark { font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.pnav__back { color: var(--text); font-size: 0.94rem; font-weight: 500; }
.pnav__back:hover { color: var(--accent-deep); }
.pnav__cta { padding: 8px 18px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink); font-size: 0.9rem; font-weight: 600; }
.pnav__cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.article { max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vh, 88px) var(--gut) clamp(30px, 5vh, 60px); }
.article__head { margin-bottom: clamp(30px, 5vh, 52px); }
.article__cat { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 16px; }
.article__title { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); max-width: 18ch; }
.article__meta { margin-top: 20px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.92rem; }
.article__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.article__hero { margin: clamp(24px, 4vh, 40px) 0 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; position: relative; box-shadow: var(--shadow); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }

.prose { font-size: 1.1rem; line-height: 1.75; color: var(--text); }
.prose > p { margin-bottom: 1.3em; }
.prose > p:first-of-type { font-size: 1.22rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); color: var(--ink); margin: 1.9em 0 0.6em; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.2rem; color: var(--ink); margin: 1.5em 0 0.5em; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul { margin: 0 0 1.3em; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 28px; margin-bottom: 0.7em; }
.prose li::before { content: ''; position: absolute; left: 4px; top: 0.62em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.prose blockquote { margin: 1.6em 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--accent); font-size: 1.3rem; line-height: 1.45; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.prose .signed { margin-top: 2.4em; color: var(--text); }
.prose .signed .note__name { margin-top: 4px; }

.article__foot { max-width: 760px; margin: clamp(20px, 4vh, 40px) auto 0; padding: clamp(30px, 5vh, 50px) var(--gut) clamp(48px, 8vh, 90px); }
.article__cta-card { background: var(--bg-soft); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); text-align: center; }
.article__cta-card h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ink); margin-bottom: 10px; }
.article__cta-card p { color: var(--text); max-width: 44ch; margin: 0 auto 22px; }

/* ============================================================
   DUNKLE, CINEMATISCHE BÄNDER
   Rhythmus hell/dunkel wie auf recruitsociety.de (WHOOP/Apple-Richtung).
   ============================================================ */

/* Statement: der emotionale Kern, groß und dunkel */
.statement { background: #311E0D; padding: clamp(74px, 13vh, 150px) var(--gut); }
.statement__text { color: #FBF1E9; max-width: 940px; font-size: clamp(1.9rem, 4.2vw, 3.3rem); font-weight: 600; line-height: 1.16; letter-spacing: -0.025em; }
.statement__text .em { color: var(--accent); font-style: italic; }

/* Reisebilder auf Dunkel: die Fotos leuchten deutlich stärker */
.places { background: #2A1604; padding-top: clamp(56px, 9vh, 110px); padding-bottom: clamp(56px, 9vh, 110px); }
.places__head h2 { color: #FBF1E9; }
.places__lead { color: #C4AC97; }
.places .kicker { background: rgba(197, 145, 123, 0.18); color: #E8C9AE; }
.places .cf__dot { background: rgba(251, 241, 233, 0.22); }
.places .cf__dot.is-on { background: var(--accent); }

/* Dunkler Abschluss */
.kontakt { max-width: none; background: #311E0D; }
.kontakt__cta { color: #FBF1E9; }
.kontakt__sub, .kontakt__signoff { color: #C4AC97; }
.kontakt__follow { color: #9A836F; }
.kontakt .note__name { color: var(--accent); }
.kontakt__socials { border-bottom-color: rgba(251, 241, 233, 0.14); }
.kontakt .social { border-color: rgba(251, 241, 233, 0.25); color: #FBF1E9; }
.kontakt .social:hover { background: var(--accent); border-color: var(--accent); color: #311E0D; }
.kontakt__base { max-width: var(--maxw); margin: 0 auto; color: #9A836F; }
.kontakt__name { color: #FBF1E9; }

/* Kompetenzen: konkret, was sie fachlich kann */
.doing__skills { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.doing__skills li { position: relative; padding-left: 26px; color: var(--ink); font-size: 1rem; line-height: 1.5; font-weight: 500; }
.doing__skills li::before { content: ''; position: absolute; left: 2px; top: 0.62em; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }

/* ---------- JOURNEY / Mein Weg (Bild-Kapitel auf dunklem Band) ---------- */
.journey { background: #2A1604; max-width: none; margin: 0; padding: clamp(56px, 9vh, 110px) 0; }
.journey__head { max-width: var(--maxw); margin: 0 auto clamp(34px, 5vh, 58px); padding: 0 var(--gut); }
.journey__head h2 { color: #FBF1E9; margin-top: 6px; max-width: 22ch; }
.journey .kicker { background: rgba(197, 145, 123, 0.18); color: #E8C9AE; }
.journey__row { list-style: none; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 46px); }
.jstep__pic { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: clamp(70px, 10vw, 130px) clamp(70px, 10vw, 130px) 24px 24px; overflow: hidden; margin-bottom: 22px; box-shadow: 0 26px 54px -26px rgba(0, 0, 0, 0.6); }
.jstep__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.jstep:hover .jstep__pic img { transform: scale(1.05); }
.jstep__pic::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(197, 145, 123, 0.28); }
.jstep__no { display: block; font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.7rem; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.jstep__place { display: block; color: #FBF1E9; font-weight: 700; font-size: clamp(1.15rem, 1.5vw, 1.35rem); letter-spacing: -0.015em; margin-bottom: 9px; }
.jstep p { color: #C4AC97; font-size: 0.95rem; line-height: 1.55; }
@media (max-width: 820px) { .journey__row { grid-template-columns: 1fr; gap: 36px; max-width: 400px; } }

/* ============================================================
   SHELBY-STIL: Garamond-Versalien + Josefin Sans, harter
   Wechsel Creme/Dunkel, zentriert-editorial.
   Typografie und Aufbau nach shelbysapp.com, Farben bleiben
   in der Recruit-Society-Welt (Braun/Karamell statt Grün).
   ============================================================ */
:root {
  --serif: 'EB Garamond', Garamond, 'Times New Roman', serif;
  --sans: 'Josefin Sans', system-ui, -apple-system, sans-serif;
  --dark: #241407;
}

body { font-family: var(--sans); font-weight: 400; font-size: 1.06rem; line-height: 1.75; letter-spacing: 0.005em; }

/* Display: Garamond, Versalien, mit kursiven Akzenten */
h1, h2, h3, h4,
.h-display, .hero__title, .statement__text, .society__title,
.kontakt__cta, .article__title, .note__text {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.08;
}
.h-display { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.hero__title { font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 400; letter-spacing: 0.015em; }
.statement__text { font-size: clamp(2.1rem, 5.2vw, 4rem); font-weight: 400; }
.kontakt__cta { font-size: clamp(2.1rem, 5vw, 3.8rem); font-weight: 400; }
.society__title { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 400; }
.note__text { font-size: clamp(1.5rem, 3.4vw, 2.5rem); text-transform: none; line-height: 1.24; letter-spacing: 0.005em; }

/* Kursiv als Akzent, klein geschrieben */
.em, .hero__script, .note__name, .jstep__no, em, i {
  font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0.01em;
}
.hero__script { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 400; }
.note__name { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.jstep__no { font-size: 1.7rem; }

/* Labels: keine Chips mehr, sondern gesperrte Versalien */
.kicker, .eyebrow, .article__cat, .versus__tag, .post__cat, .vcard__label {
  font-family: var(--sans); background: none; padding: 0;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; font-weight: 600;
}

/* Buttons: gesperrte Versalien, ruhige Kanten */
.btn, .pnav__cta, .nav__cta {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; font-weight: 600; border-radius: 3px;
}
.btn { padding: 18px 34px; }

/* Harter Wechsel Creme / Dunkel */
.note { background: var(--dark); }
.note__text { color: #F7EFE7; }
.note__text mark { background-image: none; background-color: rgba(197,145,123,0.28); color: #FFF8F1; }
.note .kicker { color: var(--accent); }
.note__sig { color: #C4AC97; }
.statement, .kontakt { background: var(--dark); }
.journey, .places { background: #1B0F06; }

/* Zentriert-editorial wie bei Shelby */
.statement__text, .journey__head, .places__head, .gives__head, .journal__head { text-align: center; margin-left: auto; margin-right: auto; }
.journey__head h2, .places__head h2, .gives__head h2 { max-width: 24ch; margin-left: auto; margin-right: auto; }
.places__lead { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ HERO im Shelby-Muster: Wortmarke über Vollbild ============ */
.hero { position: relative; max-width: none; margin: 0; padding: 0; min-height: 100svh; min-height: 100vh; display: grid; place-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 64% 20%; z-index: 0; animation: heroZoom 16s var(--ease) forwards; }
.hero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(27,15,6,0.58) 0%, rgba(27,15,6,0.30) 45%, rgba(27,15,6,0.78) 100%); }
.hero__inner { position: relative; z-index: 2; text-align: center; padding: 0 var(--gut); max-width: 1040px; }
.hero__word { font-family: var(--serif); color: #FFF8F1; text-transform: none; font-weight: 400; line-height: 0.95; font-size: clamp(2.7rem, 8.6vw, 7.4rem); letter-spacing: 0.005em; }
.hero__word em { font-style: italic; }
.hero__sub { color: #E9D9C8; font-size: clamp(1rem, 1.35vw, 1.15rem); max-width: 46ch; margin: clamp(20px, 3vh, 32px) auto clamp(26px, 4vh, 38px); line-height: 1.75; }
.hero__actions { justify-content: center; }
.btn--light { background: #FBF3EA; color: var(--dark); border-color: #FBF3EA; }
.btn--light:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }

/* Fakten-Band an der Stelle, wo Shelby ihre Presse-Logos zeigt */
.band { background: var(--accent-deep); padding: 20px var(--gut); }
.band__row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(16px, 4vw, 64px); max-width: var(--maxw); margin: 0 auto; }
.band__row li { color: #F4E3D2; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 600; }

/* Große zentrierte Frage wie Shelbys "ARE YOU READY TO change your life" */
.note__inner { text-align: center; max-width: 900px; padding-top: clamp(56px, 9vh, 110px); padding-bottom: clamp(56px, 9vh, 110px); }
.note__q { font-family: var(--serif); font-weight: 400; text-transform: uppercase; color: #FFF8F1; font-size: clamp(2.1rem, 5.4vw, 4.2rem); line-height: 1.06; letter-spacing: 0.015em; }
.note__q em { font-style: italic; text-transform: none; color: var(--accent); }
.note__text { font-family: var(--sans); text-transform: none; font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.8; color: #E4D2C0; max-width: 56ch; margin: clamp(24px, 4vh, 38px) auto 0; }
.note__sig { color: #C4AC97; max-width: 52ch; margin: 20px auto 0; font-size: 1rem; }

/* Feste Creme-Navileiste wie bei Shelby (immer lesbar, Serifen-Wortmarke) */
.nav { background: var(--bg); border-bottom: 1px solid var(--line-soft); }
.nav.is-scrolled { background: var(--bg); box-shadow: 0 1px 0 var(--line-soft); }
.nav__mark { font-family: var(--serif); font-weight: 500; font-size: clamp(1.05rem, 1.5vw, 1.3rem); letter-spacing: 0.01em; }
.nav__links a { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; font-weight: 600; }
.hero { padding-top: 0; }

/* ============================================================
   SHELBY-TREUE v2: Hero zweispaltig-dunkel, Rechtecke, Pills,
   adaptive Nav. (überschreibt frühere Hero-/Nav-Regeln)
   ============================================================ */

/* --- Hero: Foto links, Headline rechts, dunkel --- */
.hero { display: block; min-height: 0; padding: clamp(104px, 15vh, 168px) 0 clamp(48px, 8vh, 92px); background: var(--dark); overflow: visible; place-items: initial; }
.hero__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(30px, 4.5vw, 72px); align-items: center; }
.hero__photo { position: relative; margin: 0; }
.hero__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 16%; display: block; }
.hero__strip { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; background: var(--accent-deep); padding: 13px 16px; }
.hero__strip span { color: #F4E3D2; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.17em; font-size: 0.62rem; font-weight: 600; }
.hero__ey { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 10px; }
.hero__h { font-family: var(--serif); color: #FFF8F1; text-transform: uppercase; font-weight: 400; line-height: 0.98; font-size: clamp(2.7rem, 6.4vw, 5.6rem); letter-spacing: 0.01em; }
.hero__h em { font-style: italic; text-transform: none; color: var(--accent); }
.hero__sub { color: #D9C4B0; font-family: var(--sans); font-size: clamp(1rem, 1.2vw, 1.14rem); line-height: 1.75; max-width: 46ch; margin: clamp(20px, 3vh, 30px) 0 clamp(26px, 4vh, 36px); }
@media (max-width: 820px) {
  .hero { padding-top: 92px; }
  .hero__grid { grid-template-columns: 1fr; gap: 26px; }
  .hero__photo { max-width: 430px; margin: 0 auto; }
  .hero__col { text-align: center; }
  .hero__h, .hero__sub { text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
}

/* --- Buttons wie Shelby: volle Pille --- */
.btn { border-radius: 100px; padding: 17px 36px; }

/* --- Bilder als klare Rechtecke statt Bögen, kein Ring --- */
.art-plate::after { display: none; }
.story__media .art-plate, .freiheit__media .art-plate,
.society__media .art-plate, .jstep__pic { border-radius: 2px; }
.jstep__pic::after { display: none; }

/* --- Adaptive Nav: transparent über dem dunklen Hero, Creme beim Scrollen --- */
.nav { background: transparent; border-bottom: 1px solid rgba(251,241,233,0.14); }
.nav__mark { color: #FFF8F1; }
.nav__links a { color: #E9D9C8; }
.nav__cta { color: #FFF8F1; border-color: rgba(251,241,233,0.4); }
.nav__cta:hover { background: #FFF8F1; border-color: #FFF8F1; color: var(--dark); }
.nav.is-scrolled { background: var(--bg); border-bottom: 1px solid var(--line-soft); }
.nav.is-scrolled .nav__mark { color: var(--ink); }
.nav.is-scrolled .nav__links a { color: var(--text); }
.nav.is-scrolled .nav__cta { color: var(--ink); border-color: var(--line); }
.nav.is-scrolled .nav__cta:hover { background: var(--ink); color: var(--bg); }

/* ============ KARTEN-GRID im Shelby-Muster: Foto + überlappende weiße Box ============ */
.cards { background: var(--bg); padding: clamp(64px, 11vh, 128px) 0; }
.cards__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); align-items: start; }
.cards__col--b { margin-top: clamp(28px, 5vw, 72px); }
.cards__col--c { margin-top: clamp(60px, 8vw, 108px); }
.cards__script { font-family: 'Pinyon Script', cursive; color: var(--accent-deep); font-size: clamp(2.6rem, 4.6vw, 4.2rem); line-height: 0.9; margin: 0 0 14px 6px; transform: rotate(-4deg); }

.cardx { position: relative; display: block; margin-bottom: 78px; }
.cardx img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.cardx__box { position: absolute; left: clamp(18px, 2vw, 30px); bottom: 0; transform: translateY(46%); z-index: 2; background: var(--paper); padding: clamp(18px, 1.8vw, 26px) clamp(20px, 2vw, 30px); max-width: 80%; box-shadow: 0 24px 50px -30px rgba(90,52,16,0.45); }
.cardx__ey { display: block; font-family: var(--sans); font-style: normal; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.64rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.cardx__t { display: block; font-family: var(--serif); text-transform: uppercase; font-weight: 400; font-size: clamp(1.5rem, 2.4vw, 2.3rem); color: var(--ink); line-height: 1; letter-spacing: 0.01em; }
.cardx img { transition: transform 1s var(--ease); }
.cardx:hover img { transform: scale(1.04); }
/* Karte mit Box oben */
.cardx--top { margin-bottom: 0; margin-top: 78px; }
.cardx__box--top { top: 0; bottom: auto; transform: translateY(-46%); }
.cards__note { margin-top: clamp(58px, 7vw, 88px); color: var(--text); font-family: var(--sans); font-size: 0.98rem; line-height: 1.7; }

@media (max-width: 820px) {
  .cards__grid { grid-template-columns: 1fr; gap: 0; max-width: 460px; }
  .cards__col { margin-top: 0 !important; }
  .cards__col + .cards__col { margin-top: 56px; }
  .cards__note { margin-top: 66px; }
}

/* ============ HERO/NAV exakt an Shelby: zentrierte Wortmarke, Bildebene, Follow-Tab ============ */
/* Nav: Links | Wortmarke zentriert | Links */
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav__side { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__side--l { justify-self: start; }
.nav__side--r { justify-self: end; }
.nav__mark { justify-self: center; text-align: center; }
.nav__mark em { font-style: italic; }
.nav__side a { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; font-weight: 600; color: #E9D9C8; }
.nav.is-scrolled .nav__side a { color: var(--text); }
.nav.is-scrolled .nav__side a.nav__cta { color: var(--ink); }
@media (max-width: 900px) {
  .nav { display: flex; justify-content: space-between; align-items: center; }
  .nav__side--l { display: none; }
  .nav__mark { justify-self: auto; text-align: left; }
  .nav__side--r { justify-self: auto; gap: 0; }
  .nav__side--r a:not(.nav__cta) { display: none; }
}

/* zweite, gedimmte Bildebene hinter dem Hero-Foto */
.hero { position: relative; }
.hero__back { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.4) saturate(0.95); opacity: 1; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(15,8,2,0.4) 0%, rgba(15,8,2,0.26) 34%, rgba(15,8,2,0.5) 72%, rgba(15,8,2,0.6) 100%); }
.hero__photo img { box-shadow: 0 34px 74px -34px rgba(0,0,0,0.62); }
.hero__grid { position: relative; z-index: 3; }
@media (max-width: 820px) { .hero__back { display: none; } }

/* vertikaler Follow-Tab am rechten Rand wie bei Shelby */
.follow { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 8500; background: var(--paper); border: 1px solid var(--line); border-right: 0; padding: 18px 9px; display: grid; place-items: center; }
.follow span { writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.62rem; font-weight: 600; color: var(--ink); font-family: var(--sans); }
.follow:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.follow:hover span { color: #FFF8F1; }
@media (max-width: 820px) { .follow { display: none; } }

/* ============ MARQUEE-BAND (Shelby: rotes Laufband) ============ */
.marquee { background: var(--accent-deep); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 22px; animation: marquee 32s linear infinite; }
.marquee__track span { color: #F4E3D2; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; font-weight: 600; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

/* ============ SHOWCASE (Shelby "She Sells": dunkel, Bilder verstreut, zentriert) ============ */
.showcase { position: relative; background: var(--dark); overflow: hidden; padding: clamp(80px, 15vh, 200px) var(--gut); display: grid; place-items: center; min-height: clamp(560px, 82vh, 820px); }
.showcase__center { position: relative; z-index: 3; text-align: center; max-width: 620px; }
.showcase__ey { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.72rem; font-weight: 600; color: var(--accent); margin-bottom: 18px; }
.showcase__h { font-family: var(--serif); text-transform: uppercase; font-weight: 400; color: #FFF8F1; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.0; letter-spacing: 0.01em; }
.showcase__h em { font-style: italic; text-transform: none; }
.showcase__sub { color: #D9C4B0; font-family: var(--sans); font-size: clamp(1rem, 1.2vw, 1.16rem); line-height: 1.8; margin: clamp(20px, 3vh, 30px) auto clamp(28px, 4vh, 40px); max-width: 52ch; }
/* verstreute Bilder in den Ecken, gedimmt, leicht gedreht */
.showcase__pic { position: absolute; z-index: 1; object-fit: cover; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); opacity: 0.62; }
.showcase__pic--tl { width: clamp(180px, 20vw, 300px); aspect-ratio: 4/3; top: -3%; left: -4%; transform: rotate(-6deg); }
.showcase__pic--bl { width: clamp(160px, 16vw, 240px); aspect-ratio: 3/4; bottom: -6%; left: 3%; transform: rotate(5deg); }
.showcase__pic--tr { width: clamp(190px, 20vw, 310px); aspect-ratio: 16/10; top: 4%; right: -5%; transform: rotate(5deg); }
.showcase__pic--br { width: clamp(160px, 16vw, 250px); aspect-ratio: 3/4; bottom: -5%; right: 2%; transform: rotate(-5deg); }
@media (max-width: 820px) {
  .showcase { min-height: 0; padding: clamp(60px, 10vh, 110px) var(--gut); }
  .showcase__pic--tl, .showcase__pic--tr { top: -2%; width: 40vw; }
  .showcase__pic--bl, .showcase__pic--br { bottom: -2%; width: 34vw; }
  .showcase__pic { opacity: 0.4; }
}

/* ============ Rechteck-Button (Shelby auf Creme, gefüllt) ============ */
.btn--rect { border-radius: 2px; background: var(--accent-deep); color: #FFF8F1; border-color: var(--accent-deep); padding: 19px 40px; }
.btn--rect:hover { background: #472400; border-color: #472400; transform: translateY(-2px); }

/* ============ ÜBER MICH (Shelby "It's your sales mom") ============ */
.about { background: var(--bg); max-width: none; margin: 0; padding: 0; display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: stretch; }
.about__media { position: relative; margin: 0; background: #EDE3DA; padding: clamp(30px, 4vw, 64px) clamp(24px, 3vw, 56px) clamp(70px, 7vw, 120px); display: flex; flex-direction: column; }
.about__media img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }
.about__cap { margin-top: 22px; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 600; color: var(--ink); max-width: 26ch; line-height: 1.7; }
.about__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vh, 100px) var(--gut); }
.about__hey { font-family: var(--serif); font-style: italic; color: var(--accent-deep); font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 8px; }
.about__h { font-family: var(--serif); text-transform: uppercase; font-weight: 400; color: var(--ink); font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 0.98; letter-spacing: 0.01em; margin-bottom: clamp(22px, 3vh, 34px); }
.about__body p { color: var(--text); font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 1.8; margin-bottom: 1.1em; max-width: 52ch; }
.about__text .btn { align-self: flex-start; margin-top: clamp(14px, 2vh, 24px); }
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__media { padding-bottom: clamp(40px, 6vw, 70px); }
  .about__text { padding: clamp(40px, 6vh, 60px) var(--gut); }
}

/* ============ ZITAT-BAND (Shelby Testimonial) ============ */
.quote { position: relative; overflow: hidden; padding: clamp(90px, 16vh, 200px) var(--gut); display: grid; place-items: center; text-align: center; }
.quote__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: grayscale(0.4); }
.quote__veil { position: absolute; inset: 0; z-index: 1; background: rgba(36, 20, 7, 0.62); }
.quote__inner { position: relative; z-index: 2; max-width: 940px; }
.quote__by { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: 16px; }
.quote__q { font-family: var(--serif); text-transform: uppercase; font-weight: 400; color: #FFF8F1; font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1.12; letter-spacing: 0.01em; }
.quote__q em { font-style: italic; text-transform: none; color: #F0DDCB; }

/* ============ SPLIT (Shelby "Student Success": Text | Foto) ============ */
.split { background: var(--bg); max-width: none; margin: 0; padding: clamp(64px, 10vh, 130px) 0; }
.split__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.split__h { font-family: var(--serif); text-transform: none; font-weight: 400; color: var(--ink); font-size: clamp(1.7rem, 2.6vw, 2.5rem); line-height: 1.2; letter-spacing: -0.005em; margin: 12px 0 clamp(26px, 4vh, 38px); max-width: 24ch; }
.split__media { margin: 0; }
.split__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 860px) { .split__grid { grid-template-columns: 1fr; gap: 30px; } .split__media { order: -1; } }

/* ============ INSTAGRAM-PITCH (Shelby "Recent Appearances") ============ */
.appear { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.appear__media { background: transparent; display: flex; align-items: center; justify-content: center; padding: clamp(50px, 8vh, 110px) clamp(20px, 4vw, 60px); }
.phone { position: relative; width: clamp(210px, 20vw, 290px); aspect-ratio: 9 / 19; background: #17100a; border-radius: 38px; padding: 9px; box-shadow: 0 50px 90px -35px rgba(0,0,0,0.75), inset 0 0 0 2px rgba(255,255,255,0.06); transform: rotate(-4deg); }
.phone__cam { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 58px; height: 8px; background: #0c0805; border-radius: 20px; z-index: 2; }
.phone__screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #000; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.appear__text { background: var(--bg); display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vh, 110px) clamp(26px, 5vw, 90px); }
.appear__ey { font-family: var(--serif); font-style: italic; text-transform: none; font-size: clamp(1.1rem, 1.7vw, 1.5rem); color: var(--accent-deep); margin: 0 0 6px; }
.appear__h { font-family: var(--serif); text-transform: uppercase; font-weight: 400; letter-spacing: 0.01em; color: var(--ink); font-size: clamp(2rem, 4.4vw, 3.7rem); line-height: 1.02; margin: 0 0 clamp(26px, 4vh, 40px); }
.appear__list { list-style: none; margin: 0 0 clamp(30px, 4.5vh, 46px); padding: 0; border-top: 1px solid var(--line, rgba(43,23,3,0.16)); }
.appear__list li { border-bottom: 1px solid var(--line, rgba(43,23,3,0.16)); }
.appear__list a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: clamp(15px, 2vh, 20px) 0; text-transform: uppercase; letter-spacing: 0.11em; font-size: clamp(0.72rem, 0.95vw, 0.82rem); font-weight: 600; color: var(--ink); transition: color .25s ease, padding-left .25s ease; }
.appear__list a span { color: var(--accent-deep); font-size: 1.05rem; transition: transform .25s ease; }
.appear__list a:hover { color: var(--accent-deep); padding-left: 6px; }
.appear__list a:hover span { transform: translateX(5px); }
.appear__text .btn--rect { align-self: flex-start; }
@media (max-width: 860px) { .appear { grid-template-columns: 1fr; } .appear__media { padding: 60px 24px 20px; } .phone { transform: rotate(-3deg); } .appear__text { padding: 44px 24px 60px; } }

/* ============ COLLAB (Shelby "Let's Collab", sektionsübergreifendes Bild) ============ */
.collab { background: var(--bg); position: relative; z-index: 1; }
.collab__grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 10vh, 130px) var(--gut); display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.collab__h { font-family: var(--serif); text-transform: uppercase; font-weight: 400; letter-spacing: 0.01em; color: var(--ink); font-size: clamp(2.4rem, 5.2vw, 4.3rem); line-height: 0.98; margin: 0 0 clamp(18px, 2.5vh, 26px); }
.collab__p { font-family: var(--body); color: var(--text); font-size: clamp(1rem, 1.25vw, 1.14rem); line-height: 1.7; max-width: 42ch; margin: 0 0 clamp(28px, 4vh, 42px); }
.collab__media { position: relative; margin: clamp(-90px, -9vh, -55px) 0; }
.collab__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 2px; display: block; box-shadow: 0 45px 90px -45px rgba(0,0,0,0.45); }
.collab__script { position: absolute; left: -6%; bottom: 9%; font-family: 'Pinyon Script', cursive; color: #5A1520; font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: 1; transform: rotate(-7deg); pointer-events: none; text-shadow: 0 2px 24px rgba(250,241,234,0.55); }
@media (max-width: 860px) {
  .collab__grid { grid-template-columns: 1fr; gap: 0; padding: 0 var(--gut) 70px; }
  .collab__media { order: -1; margin: 0 0 34px; }
  .collab__text { padding-top: 8px; }
  .collab__script { left: auto; right: 4%; bottom: 5%; }
}

/* ============ CTA RECRUIT SOCIETY (Shelby "Ready to level up") ============ */
.levelup { position: relative; min-height: clamp(560px, 88vh, 840px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.levelup__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.levelup::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,20,7,0.48) 0%, rgba(36,20,7,0.6) 55%, rgba(36,20,7,0.72) 100%); }
.levelup__in { position: relative; z-index: 2; max-width: 700px; padding: 0 var(--gut); color: #FFF8F1; }
.levelup__h { font-family: var(--serif); text-transform: uppercase; font-weight: 400; letter-spacing: 0.01em; font-size: clamp(2.3rem, 5.5vw, 4.4rem); line-height: 1.0; margin: 0 0 clamp(22px, 3.5vh, 34px); color: #FFF8F1; }
.levelup__sub { font-family: var(--body); font-weight: 300; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.7; color: rgba(255,248,241,0.9); max-width: 52ch; margin: 0 auto clamp(30px, 4.5vh, 44px); }
.btn--ghostlight { display: inline-block; border: 1px solid rgba(255,248,241,0.7); color: #FFF8F1; background: transparent; border-radius: 2px; padding: 18px 38px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 600; transition: background .3s ease, color .3s ease; }
.btn--ghostlight:hover { background: #FFF8F1; color: var(--ink); border-color: #FFF8F1; }

/* ============ FOTO-STRIP (Shelby clean image row) ============ */
.strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; line-height: 0; }
.strip img { width: 100%; height: clamp(280px, 40vh, 460px); object-fit: cover; display: block; }
@media (max-width: 900px) { .strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .strip { grid-template-columns: repeat(2, 1fr); } }

/* CTA Recruit Society: Eyebrow (verschmolzen mit "Mein zweites Standbein") */
.levelup__ey { font-family: var(--body); text-transform: uppercase; letter-spacing: 0.2em; font-size: clamp(0.72rem, 0.95vw, 0.82rem); font-weight: 600; color: #E8C6B2; margin: 0 0 clamp(14px, 2vh, 20px); }

/* ============ MEIN WEG (Fun Facts, Shelby "Fun facts about me") ============ */
.weg { background: var(--dark); position: relative; z-index: 2; overflow: visible; }
.weg__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
.weg__panel { padding: clamp(70px, 10vh, 130px) clamp(26px, 5vw, 82px) clamp(56px, 9vh, 118px); display: flex; flex-direction: column; justify-content: center; }
.weg__ey { font-family: var(--body); text-transform: uppercase; letter-spacing: 0.22em; font-size: clamp(0.72rem, 0.95vw, 0.82rem); font-weight: 600; color: var(--accent); margin: 0 0 clamp(20px, 3vh, 32px); }
.weg__facts { list-style: none; margin: 0; padding: 0; }
.weg__facts li { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 2vw, 30px); padding: clamp(20px, 3vh, 30px) 0; border-top: 1px solid rgba(255,248,241,0.13); }
.weg__facts li:first-child { border-top: none; padding-top: 0; }
.weg__num { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 2.4vw, 2.4rem); color: var(--accent); line-height: 1; }
.weg__st { font-family: var(--serif); text-transform: uppercase; font-weight: 400; color: #FFF8F1; font-size: clamp(1.15rem, 1.9vw, 1.7rem); line-height: 1.1; letter-spacing: 0.01em; margin: 0 0 8px; }
.weg__det { font-family: var(--serif); font-style: italic; color: #C9AE97; font-size: clamp(0.92rem, 1.1vw, 1.08rem); line-height: 1.45; margin: 0; max-width: 46ch; }
.weg__media { margin: clamp(-110px, -10vh, -70px) 0 clamp(46px, 7vh, 78px); position: relative; z-index: 3; box-shadow: 0 44px 90px -46px rgba(0,0,0,0.55); }
.weg__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
@media (max-width: 820px) {
  .weg { overflow: hidden; }
  .weg__grid { grid-template-columns: 1fr; }
  .weg__media { order: -1; aspect-ratio: 4 / 5; margin: 0; box-shadow: none; }
  .weg__panel { padding: clamp(40px, 6vh, 60px) var(--gut); }
}

/* Foto-Strecke innerhalb der Instagram-Sektion (volle Breite unter den Spalten) */
.appear__strip { grid-column: 1 / -1; }
/* Schlanker Footer ohne "Sag einfach Servus" */
.kontakt--slim { padding-top: clamp(36px, 5vh, 60px); }
.kontakt--slim .kontakt__socials { padding-top: 4px; }

/* Hero: dezenter Schatten + hellere Textfarben, damit alles voll rüberkommt */
.hero__h { text-shadow: 0 1px 16px rgba(12,6,2,0.3); }
.hero__ey { color: #EFDBC9; }
.hero__h em { color: #EDC4A3; }
.hero__sub { color: #EBDDCD; }

/* Instagram-Sektion: Lifestyle-Foto statt Phone-Mockup */
.appear__pic { margin: 0; }
.appear__pic img { width: 100%; max-width: 400px; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%; border-radius: 3px; display: block; box-shadow: 0 40px 80px -40px rgba(43,23,3,0.4); }

/* TEXT-MOMENT: elegante Atempause zwischen den Bild-Sektionen */
.saying { background: var(--bg); padding: clamp(80px, 15vh, 190px) var(--gut); text-align: center; }
.saying__t { font-family: var(--serif); text-transform: uppercase; font-weight: 400; color: var(--ink); font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08; letter-spacing: 0.01em; max-width: 22ch; margin: 0 auto; }
.saying__t em { font-style: italic; text-transform: none; color: var(--accent-deep); }

/* Instagram-Szene: breites Composite im Naturformat */
.appear__pic--wide img { max-width: 560px; aspect-ratio: auto; height: auto; }

/* Instagram: freigestelltes Phone-Mockup (transparent), Schatten folgt der Form */
.appear__pic--phone img { max-width: 380px; aspect-ratio: auto; height: auto; box-shadow: none; border-radius: 0; filter: drop-shadow(0 34px 55px rgba(43,23,3,0.3)); }

/* Instagram-Sektion: Leerraum reduzieren (Phone+Text zentriert schmaler, Strecke bleibt full-bleed) */
.appear { max-width: 1160px; margin-left: auto; margin-right: auto; }
.appear__media { padding: clamp(48px, 7vh, 84px) clamp(18px, 2.4vw, 40px); }
.appear__pic--phone img { max-width: 440px; }
.appear__strip { width: 100vw; margin-left: calc(50% - 50vw); }

/* ============ MOBILE-NAV: Hamburger + Vollbild-Menü ============ */
.nav__burger { display: none; }
.navmenu { display: none; }
@media (max-width: 820px) {
  .nav__side { display: none; }
  .nav__burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 6px; width: 42px; height: 42px; padding: 9px; background: none; border: 0; cursor: pointer; color: #FFF8F1; margin-left: auto; z-index: 2; }
  .nav.is-scrolled .nav__burger { color: var(--ink); }
  .nav__burger span { display: block; width: 26px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .32s var(--ease), opacity .25s var(--ease); }
  .nav.is-open { background: var(--bg); }
  .nav.is-open .nav__mark { color: var(--ink); }
  .nav.is-open .nav__burger { color: var(--ink); }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .navmenu { position: fixed; inset: 0; z-index: 8900; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s; }
  .navmenu.is-open { opacity: 1; visibility: visible; transform: none; }
  .navmenu__links { display: flex; flex-direction: column; align-items: center; gap: clamp(18px, 4vh, 34px); }
  .navmenu__links a { font-family: var(--serif); text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.9rem, 8vw, 2.7rem); font-weight: 400; color: var(--ink); line-height: 1; }
  .navmenu__links a:last-child { margin-top: clamp(10px, 2vh, 18px); font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem; font-weight: 600; color: #FFF8F1; background: var(--accent-deep); padding: 15px 34px; border-radius: 100px; }
}

/* Anker-Sprünge nicht unter der fixen Nav verstecken */
section[id], footer[id] { scroll-margin-top: 78px; }

/* ============ INSTAGRAM: Kopf / Bild / Body (mobil umsortierbar) ============ */
.appear { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "media head" "media body" "strip strip"; align-items: stretch; max-width: 1160px; margin: 0 auto; }
.appear__head { grid-area: head; align-self: end; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 clamp(24px, 4vw, 56px); }
.appear__body { grid-area: body; align-self: start; display: flex; flex-direction: column; padding: clamp(16px, 2.4vh, 26px) clamp(24px, 4vw, 56px) 0; }
.appear__media { grid-area: media; align-self: center; }
.appear__strip { grid-area: strip; }

/* ============ MOBILE-OPTIMIERUNGEN ============ */
@media (max-width: 820px) {
  /* Hero: Text auf dem Bild */
  .hero { padding: 0; min-height: 90vh; display: block; }
  .hero__grid { position: relative; display: block; padding: 0; min-height: 90vh; gap: 0; }
  .hero__photo { position: absolute; inset: 0; margin: 0; max-width: none; height: 100%; }
  .hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; aspect-ratio: auto; }
  .hero__grid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,10,3,0.92) 0%, rgba(18,10,3,0.55) 36%, rgba(18,10,3,0.12) 72%); z-index: 1; }
  .hero__col { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 26px clamp(46px, 7vh, 72px); text-align: center; }
  .hero__ey { margin-bottom: 8px; }

  /* Über mich: Bild weglassen */
  .about__media { display: none; }
  .about__text { padding: clamp(52px, 9vh, 96px) var(--gut); }

  /* Instagram: Kopf -> Bild -> Punkte */
  .appear { grid-template-columns: 1fr; grid-template-areas: "head" "media" "body" "strip"; max-width: none; }
  .appear__head { align-self: auto; padding: clamp(44px, 6vh, 66px) var(--gut) 0; }
  .appear__body { align-self: auto; padding: clamp(12px, 2.5vh, 22px) var(--gut) clamp(46px, 6vh, 66px); }
  .appear__media { padding: clamp(20px, 4vh, 36px) var(--gut) 0; }

  /* Foto-Reihe: eine Reihe, horizontal scrollbar */
  .appear__strip { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .appear__strip img { flex: 0 0 46%; height: clamp(210px, 54vw, 300px); scroll-snap-align: start; }
}
