/* ════════════════════════════════════════════════════════════
   LANGOLF MEDIA — Editorial Atelier
   Erdtöne · Serif-Headlines · handgeschriebene Akzente
   ════════════════════════════════════════════════════════════ */

:root {
  /* — Farbpalette ———————————————————————————— */
  --paper:        #F5EFE6;
  --paper-warm:   #FAF6EF;
  --cream:        #EFE6D6;
  --cream-deep:   #E5D7BF;

  --terracotta:       #C66B3D;
  --terracotta-deep:  #8B3A1F;
  --terracotta-soft:  #E1A586;

  --sage:        #8B9D7E;
  --sage-deep:   #5E7155;
  --sage-soft:   #BCC8AC;

  --ink:         #2A2420;
  --ink-soft:    #4A3F35;
  --mute:        #6B5D52;
  --mute-light:  #A89788;
  --hairline:    #D9CDB9;

  /* — Typografie ——————————————————————————————— */
  --f-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --f-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-hand:    'Caveat', 'Brush Script MT', cursive;

  /* — Spacing & Radii ——————————————————————————— */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-soft:   0 2px 6px rgba(60, 40, 25, .06), 0 18px 40px -20px rgba(60, 40, 25, .18);
  --shadow-tile:   0 1px 2px rgba(60, 40, 25, .05), 0 24px 48px -28px rgba(60, 40, 25, .25);
  --shadow-float:  0 30px 60px -30px rgba(60, 40, 25, .35);

  --maxw: 1240px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse at 20% 0%, #FAF2E4 0%, transparent 55%),
    radial-gradient(ellipse at 100% 30%, #F3E5D2 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, #EFE3CD 0%, transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--terracotta); color: var(--paper); }

/* ── Globales Papier-Grain ─────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  z-index: 1000;
}

/* ── Typografie-Klassen ────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--terracotta-deep);
}

.handwritten {
  font-family: var(--f-hand);
  font-weight: 600;
  color: var(--terracotta-deep);
  font-size: 1.5em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(245, 239, 230, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(217, 205, 185, 0.6);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav__mark { color: var(--terracotta-deep); }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__tagline {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--terracotta-deep); }

.nav__cta {
  background: var(--ink);
  color: var(--paper-warm) !important;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover {
  background: var(--terracotta-deep);
  color: var(--paper-warm) !important;
  transform: translateY(-1px);
}

@media (min-width: 820px) {
  .nav__links { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper-warm);
  box-shadow: 0 4px 0 var(--terracotta-deep);
}
.btn--primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--ink);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper-warm);
}

.btn--large {
  padding: 18px 32px;
  font-size: 17px;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(60px, 10vw, 120px);
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero__index {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--ink-soft);
}
.hero__line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  max-width: 240px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 72px);
  align-items: center;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
  margin: 0 0 24px;
}

.hero__title {
  font-size: clamp(44px, 8.5vw, 92px);
  line-height: 0.96;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0 0 28px;
  letter-spacing: -0.025em;
}
.hero__accent {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero__underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 16px;
  color: var(--terracotta);
}

.hero__sub {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__note {
  font-size: 15px;
  color: var(--mute);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Hero Visual: schwebende Beispiel-Kacheln ───────────────── */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  z-index: 0;
}
.blob--terracotta {
  width: 60%;
  aspect-ratio: 1;
  background: var(--terracotta-soft);
  top: 8%; right: -8%;
}
.blob--sage {
  width: 50%;
  aspect-ratio: 1;
  background: var(--sage-soft);
  bottom: 0; left: -6%;
}

.ptile {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  display: flex;
  padding: 22px;
  z-index: 2;
  transition: transform .6s var(--ease);
}
.ptile__bg { position: absolute; inset: 0; z-index: -1; }
.ptile__bg--cream { background: linear-gradient(160deg, #FAF2E0 0%, #EFD9BC 100%); }
.ptile__bg--sage  { background: linear-gradient(160deg, #ADBA9B 0%, #7C8E70 100%); }
.ptile__bg--dark  { background: linear-gradient(160deg, #2A2420 0%, #4A3F35 100%); }

.ptile__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.ptile__kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.ptile__kicker--light { color: var(--paper); }
.ptile__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1;
  color: var(--ink);
  margin: 14px 0 0;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.ptile__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2.8vw, 26px);
  line-height: 1.15;
  color: var(--paper);
  margin: 0;
}
.ptile__brand {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mute);
  font-weight: 500;
}
.ptile__brand--light { color: rgba(245, 239, 230, .8); }
.ptile__deco {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 65%;
  z-index: 0;
  opacity: .9;
}
.ptile__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--f-display);
  color: var(--paper);
  line-height: 0.85;
  margin-top: 12px;
}
.ptile__date span:first-child {
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.ptile__date span:last-child {
  font-size: 13px;
  letter-spacing: 0.4em;
  margin-top: 8px;
}
.ptile__stamp {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--terracotta-soft);
  border: 1px solid var(--terracotta-soft);
  padding: 5px 9px;
  border-radius: var(--r-pill);
}

.ptile--a {
  top: 4%;
  left: 4%;
  transform: rotate(-4deg);
}
.ptile--b {
  top: 18%;
  right: 0;
  transform: rotate(3deg);
  width: 50%;
}
.ptile--c {
  bottom: 0;
  left: 22%;
  transform: rotate(-2deg);
}

@media (hover: hover) {
  .hero__visual:hover .ptile--a { transform: rotate(-6deg) translate(-4px, -6px); }
  .hero__visual:hover .ptile--b { transform: rotate(5deg) translate(6px, -8px); }
  .hero__visual:hover .ptile--c { transform: rotate(-3deg) translate(-2px, 4px); }
}

/* ── Marquee ───────────────────────────────────────────────── */
.hero__marquee {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}
.marquee__track span { padding-right: 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   Section Rule (kleines Index-Element)
   ════════════════════════════════════════════════════════════ */
.section__rule {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section__rule::before,
.section__rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.section__rule::before { max-width: 80px; }
.section__rule span {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   ÜBER MICH
   ════════════════════════════════════════════════════════════ */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 4vw, 56px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 880px) {
  .about__grid {
    grid-template-columns: 0.42fr 0.58fr;
    gap: clamp(48px, 6vw, 80px);
  }
}

.about__portrait { position: relative; }
.portrait__frame {
  position: relative;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
  margin: 0 auto;
  transform: rotate(-1.5deg);
}
.portrait__frame::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--hairline);
  border-radius: calc(var(--r-xl) + 10px);
  pointer-events: none;
}
.portrait__svg {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
}
.portrait__tag {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
}

.about__hi { margin: 0 0 12px; }
.about__hi .handwritten {
  font-size: 38px;
  transform: rotate(-3deg);
}

.about__title {
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  margin: 0 0 24px;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.about__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.about__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mute);
  margin: 0 0 24px;
  max-width: 540px;
}
.about__sign { margin: 0 0 28px; }
.about__sign .handwritten { font-size: 32px; }

.about__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__chips li {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  background: var(--paper-warm);
}

/* ════════════════════════════════════════════════════════════
   LEISTUNGEN
   ════════════════════════════════════════════════════════════ */
.services {
  background: var(--paper-warm);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}

.services__head {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .services__head { grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; }
}
.services__head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 350;
}
.services__head p {
  color: var(--mute);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.service {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(198, 107, 61, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--terracotta-soft);
}
.service:hover::before { opacity: 1; }

.service__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta-deep);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.service__icon {
  color: var(--terracotta-deep);
  margin-bottom: 18px;
}
.service h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 400;
}
.service > p {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--hairline);
  padding-top: 14px;
}
.service ul li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 5px 0 5px 18px;
  position: relative;
}
.service ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  position: absolute;
  left: 2px;
  top: 12px;
}

/* ════════════════════════════════════════════════════════════
   PORTFOLIO / ARBEITEN
   ════════════════════════════════════════════════════════════ */
.work {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 4vw, 56px);
}
.work__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.work__head h2 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  font-weight: 350;
  margin: 0 0 16px;
}
.work__sub {
  font-size: 17px;
  color: var(--mute);
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .work__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .work__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* ── Tile Basis ─────────────────────────────────────────────── */
.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-tile);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tile:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 30px 60px -30px rgba(60, 40, 25, .45);
}

.tile__kicker {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
  z-index: 2;
}
.tile__kicker--light { color: rgba(245, 239, 230, .85); }
.tile__brand {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--mute);
  font-weight: 500;
  z-index: 2;
}
.tile__brand--light { color: rgba(245, 239, 230, .7); }

.tile__title,
.tile__h,
.tile__menu-title,
.tile__concert-title {
  font-family: var(--f-display);
  font-style: italic;
  line-height: 0.98;
  color: var(--ink);
  margin: 0;
  z-index: 2;
  position: relative;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
}

.tile__pill {
  align-self: flex-start;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  z-index: 2;
}
.tile__pill--dark {
  background: var(--ink);
  color: var(--paper-warm);
}
.tile__pill--light {
  background: var(--paper);
  color: var(--ink);
  align-self: flex-start;
}

.tile__corner {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--terracotta-soft);
  border: 1px solid var(--terracotta-soft);
  padding: 5px 9px;
  border-radius: var(--r-pill);
  z-index: 3;
}

/* ── 1. Bäckerei ───────────────────────────────────────────── */
.tile--bakery .tile__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(225, 165, 134, .65) 0%, transparent 50%),
    linear-gradient(160deg, #FAF2E0 0%, #E5D7BF 100%);
  z-index: 0;
}
.tile--bakery .tile__title { font-size: clamp(28px, 4vw, 40px); }
.tile__sun {
  position: absolute;
  width: 90px;
  top: 16px;
  right: 16px;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(139, 58, 31, 0.2));
}

/* ── 2. Coaching Quote ─────────────────────────────────────── */
.tile--quote {
  background: linear-gradient(155deg, #9BAA8C 0%, #6F8166 100%);
  color: var(--paper);
}
.tile--quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(245, 239, 230, 0.15) 0%, transparent 50%);
}
.tile__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 3.3vw, 30px);
  line-height: 1.18;
  color: var(--paper);
  margin: auto 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.tile__qmark {
  display: block;
  font-size: 60px;
  line-height: 0.5;
  color: rgba(245, 239, 230, 0.4);
  margin-bottom: 8px;
}

/* ── 3. Handwerk Save the Date ─────────────────────────────── */
.tile--event {
  background:
    linear-gradient(160deg, #3A2A20 0%, #2A1F18 100%);
}
.tile--event::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 80%;
  aspect-ratio: 1;
  background: var(--terracotta);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
}
.tile--event .tile__date {
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
  color: var(--paper);
  line-height: 0.85;
  margin-top: 10px;
  z-index: 2;
}
.tile--event .tile__date span:first-child {
  font-size: clamp(64px, 9vw, 90px);
  font-weight: 300;
}
.tile--event .tile__date span:last-child {
  font-size: 14px;
  letter-spacing: 0.4em;
  margin-top: 8px;
  color: var(--terracotta-soft);
}

/* ── 4. Yoga Carousel ──────────────────────────────────────── */
.tile--yoga {
  background: linear-gradient(155deg, #F1E8D5 0%, #DCC9A8 100%);
}
.tile__mandala {
  position: absolute;
  width: 70%;
  bottom: -15%;
  right: -10%;
  opacity: 0.5;
}
.tile--yoga .tile__h {
  font-size: clamp(20px, 2.8vw, 26px);
  margin-top: 12px;
  max-width: 75%;
}

/* ── 5. Heilpraxis Testimonial ─────────────────────────────── */
.tile--testimonial {
  background: linear-gradient(165deg, #E8EDDE 0%, #C9D5B6 100%);
}
.tile__leaf {
  position: absolute;
  width: 36%;
  right: 8%;
  top: 25%;
  opacity: 0.6;
}
.tile__testimony {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.12;
  color: var(--sage-deep);
  margin: auto 0 0;
  position: relative;
  z-index: 2;
  max-width: 75%;
}
.tile__avatar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.tile__avatar .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--paper);
}
.tile__avatar span {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ── 6. Restaurant Menü ────────────────────────────────────── */
.tile--menu {
  background:
    linear-gradient(160deg, #4A3F35 0%, #2A2420 100%);
  color: var(--paper);
}
.tile--menu::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(225, 165, 134, .4);
  border-radius: var(--r-md);
  pointer-events: none;
}
.tile__menu-title {
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--paper);
  margin: 8px 0 0;
}
.tile__menu-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  z-index: 2;
  position: relative;
}
.tile__menu-list li {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--terracotta-soft);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(225, 165, 134, .3);
}
.tile__menu-list li:last-child { border-bottom: none; }

/* ── 7. How-To Steuer ──────────────────────────────────────── */
.tile--howto {
  background:
    radial-gradient(circle at 15% 15%, rgba(198, 107, 61, .14) 0%, transparent 40%),
    linear-gradient(160deg, #FAF6EF 0%, #E5D7BF 100%);
  border: 1px solid var(--hairline);
}
.tile--howto .tile__h {
  font-size: clamp(20px, 2.8vw, 26px);
  margin-top: 14px;
  font-style: italic;
  max-width: 90%;
}
.tile__numbers {
  display: flex;
  gap: 8px;
  margin-top: auto;
  z-index: 2;
  position: relative;
}
.tile__numbers span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  color: var(--terracotta-deep);
  background: var(--paper);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(60, 40, 25, .08);
}

/* ── 8. Hofladen ───────────────────────────────────────────── */
.tile--shop {
  background:
    linear-gradient(165deg, #E8DDC4 0%, #C9B591 100%);
}
.tile__jar {
  position: absolute;
  width: 38%;
  right: 12%;
  top: 18%;
  filter: drop-shadow(0 6px 12px rgba(60, 40, 25, 0.18));
}
.tile__h--small { font-size: clamp(20px, 2.6vw, 24px); margin-top: 14px; max-width: 60%; }
.tile__h--small span {
  display: block;
  font-style: normal;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
  font-weight: 600;
}

/* ── 9. Konzert ────────────────────────────────────────────── */
.tile--concert {
  background: linear-gradient(160deg, #8B3A1F 0%, #5A2410 100%);
  color: var(--paper);
}
.tile__concert-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile__concert-bg .ring {
  position: absolute;
  border: 1.5px solid rgba(245, 239, 230, .25);
  border-radius: 50%;
}
.tile__concert-bg .ring:nth-child(1) { width: 50%; aspect-ratio: 1; }
.tile__concert-bg .ring:nth-child(2) { width: 75%; aspect-ratio: 1; }
.tile__concert-bg .ring:nth-child(3) { width: 100%; aspect-ratio: 1; }
.tile__concert-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--paper);
  margin-top: 10px;
}
.tile--concert .tile__kicker--light { color: var(--terracotta-soft); }

/* ── Footer der Arbeiten ───────────────────────────────────── */
.work__foot {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  color: var(--mute);
}
.work__foot .handwritten {
  font-size: 28px;
  margin-right: 6px;
}

/* ════════════════════════════════════════════════════════════
   ABLAUF
   ════════════════════════════════════════════════════════════ */
.flow {
  background: var(--paper-warm);
  border-top: 1px solid var(--hairline);
  padding: clamp(60px, 9vw, 110px) 0;
}
.flow__head {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  padding: 0 clamp(20px, 4vw, 56px);
}
.flow__head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 350;
  margin: 0;
}

.flow__steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
  position: relative;
}
@media (min-width: 700px)  { .flow__steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) {
  .flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.step {
  position: relative;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-warm);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: 400;
}
.step p {
  font-size: 14.5px;
  color: var(--mute);
  margin: 0;
  line-height: 1.6;
}

/* gestrichelte Verbindung zwischen Steps (nur Desktop) */
@media (min-width: 1040px) {
  .step + .step::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -32px;
    width: 32px;
    height: 1px;
    background-image: linear-gradient(to right, var(--mute-light) 50%, transparent 50%);
    background-size: 8px 1px;
  }
}

/* ════════════════════════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 56px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact__inner {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(198, 107, 61, .12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 90%, rgba(139, 157, 126, .12) 0%, transparent 60%),
    var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact__inner::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--terracotta);
}

.contact__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.contact__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  margin: 0 0 24px;
  font-weight: 350;
}
.contact__handwritten {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 12px;
  transform: rotate(-3deg);
}
.contact__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--mute);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.contact__sub strong { color: var(--ink); font-weight: 600; }

.contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  border-top: 1px dashed var(--hairline);
  padding-top: 32px;
}
.contact__details li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__details span {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact__details strong {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(245, 239, 230, .7);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 56px) 32px;
  position: relative;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 239, 230, .1);
}
@media (min-width: 760px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}
.footer__brand { display: flex; flex-direction: column; }
.footer__name {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--paper);
  font-weight: 500;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(245, 239, 230, .6);
  margin-top: 6px;
}
.footer__nav, .footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a, .footer__legal a {
  font-size: 14px;
  color: rgba(245, 239, 230, .7);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.footer__nav a:hover, .footer__legal a:hover { color: var(--terracotta-soft); }

.footer__bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245, 239, 230, .5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__love .heart { color: var(--terracotta); font-size: 9px; vertical-align: middle; }

/* ════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Hero direkt sichtbar (staggered) */
.hero {
  opacity: 1 !important;
  transform: none !important;
}
.hero__copy > * {
  animation: heroFade .9s var(--ease) both;
}
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .15s; }
.hero__copy > *:nth-child(3) { animation-delay: .25s; }
.hero__copy > *:nth-child(4) { animation-delay: .35s; }
.hero__copy > *:nth-child(5) { animation-delay: .45s; }

.ptile--a { animation: tileIn 1s var(--ease) .3s both; }
.ptile--b { animation: tileIn 1s var(--ease) .45s both; }
.ptile--c { animation: tileIn 1s var(--ease) .6s both; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes tileIn {
  from { opacity: 0; transform: translateY(40px) rotate(var(--init-rot, 0deg)); }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
