/* =====================================================================
   NATURFREUDE fit&food — Design System
   Editorial-organic. Forest greens, warm parchment, apple accent.
   ===================================================================== */

:root {
  /* — Color */
  --forest-deep: #14291e;
  --forest:      #1f3a2a;
  --forest-mid:  #2f5039;
  --moss:        #4f7058;
  --sage:        #a8b89a;
  --sage-soft:   #d8dcc8;

  --paper:       #f6efe1;
  --paper-warm:  #f8f1e3;
  --paper-deep:  #ece4d2;
  --cream:       #fbf7ed;

  --apple:       #c8553d;
  --apple-dark:  #a3402c;
  --apple-soft:  #e8a292;

  --earth:       #6b5544;
  --ink:         #14140f;
  --ink-soft:    #2c2c24;

  /* — Type */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body:    "Manrope", -apple-system, system-ui, sans-serif;
  --f-hand:    "Caveat", cursive;

  /* — Layout */
  --max:    1440px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  /* — Motion */
  --ease:      cubic-bezier(.2, .7, .2, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* =================== BASE =================== */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--paper);
  color: var(--forest);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
html { overflow-x: hidden; }

@media (max-width: 900px) {
  body { cursor: auto; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

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

/* =================== PAPER GRAIN =================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =================== CURSOR =================== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--forest);
  border-radius: 50%;
}

.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--forest);
  border-radius: 50%;
  opacity: .4;
}

body.cursor-hover .cursor-dot { background: var(--apple); width: 4px; height: 4px; }
body.cursor-hover .cursor-ring { width: 50px; height: 50px; border-color: var(--apple); opacity: .7; }
body.cursor-dark .cursor-dot { background: var(--paper); }
body.cursor-dark .cursor-ring { border-color: var(--paper); }

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =================== LOADER =================== */
.loader {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 10001;
  display: grid;
  place-items: center;
  transition: opacity .5s var(--ease);
}
.loader.is-hidden { opacity: 0; pointer-events: none; }
.loader.is-removed { display: none; }
.loader__inner { text-align: center; }
.loader__leaf {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  animation: leaf-spin 2.4s var(--ease-out) infinite;
}
.loader__text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  letter-spacing: .25em;
  font-size: 14px;
  color: var(--forest);
  animation: pulse 1.6s var(--ease-out) infinite;
}
@keyframes leaf-spin {
  0%   { transform: rotate(0) scale(.9); }
  50%  { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(.9); }
}
@keyframes pulse {
  0%,100% { opacity: .55; }
  50%     { opacity: 1; }
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: .85rem var(--gutter);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
              padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__logo { justify-self: start; grid-column: 1; }
.nav__links { justify-self: center; grid-column: 2; }
.nav__cta { justify-self: end; grid-column: 3; }
.nav__menu { justify-self: end; grid-column: 3; }

.nav.is-scrolled {
  background: rgba(246, 239, 225, 0.88);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: rgba(31, 58, 42, 0.08);
  padding-top: .55rem;
  padding-bottom: .55rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

.nav__mark {
  width: 76px; height: 76px;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.nav__mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: breathe 5s var(--ease-out) infinite;
}
@keyframes breathe {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__wordmark em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  font-variation-settings: "SOFT" 80;
}
.nav__wordmark span {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--forest);
  position: relative;
  padding: .25rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--apple);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.nav__links a:hover { color: var(--apple); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.25rem;
  background: var(--forest);
  color: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover { background: var(--apple); }

.nav__menu { display: none; width: 32px; height: 32px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav__menu span { display: block; width: 22px; height: 1.5px; background: var(--forest); transition: transform .3s var(--ease); }
.nav__menu.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__menu.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__links { display: none; }
}
@media (max-width: 720px) {
  .nav__cta { display: none; }
  .nav__menu { display: flex; }
}

/* =================== MOBILE MENU =================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .5s var(--ease), visibility .5s, transform .5s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.mobile-menu nav a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  font-variation-settings: "SOFT" 100;
}
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  font-size: 14px;
  color: var(--moss);
}

/* =================== SECTION HEADS (editorial labels) =================== */
.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  font-variation-settings: "SOFT" 100;
  color: var(--apple);
}
.section-kicker {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--moss);
  position: relative;
  padding-left: 2rem;
}
.section-kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.5rem; height: 1px;
  background: var(--moss);
  opacity: .5;
}
.section-head--light .section-num { color: var(--apple-soft); }
.section-head--light .section-kicker { color: var(--sage-soft); }
.section-head--light .section-kicker::before { background: var(--sage-soft); }

/* =================== TYPOGRAPHY HELPERS =================== */
em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
}
.hand {
  font-family: var(--f-hand);
  font-style: normal;
  font-weight: 500;
  color: var(--apple);
  font-size: 1.3em;
  line-height: 1;
}
.nowrap { white-space: nowrap; }

/* Reveal helper: sets the initial state, JS adds .is-in to animate */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem var(--gutter) 4rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
@media (max-width: 720px) {
  .hero {
    padding: 5.5rem var(--gutter) 3rem;
    min-height: 0;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__mood {
  position: absolute;
  inset: -5%;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(168, 184, 154, 0.4), transparent 70%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(200, 85, 61, 0.08), transparent 70%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(47, 80, 57, 0.18), transparent 70%);
  filter: blur(2px);
  animation: heroDrift 28s var(--ease-out) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.05) translate(-2%, -1%); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(246,239,225,0) 0%, rgba(246,239,225,0.4) 60%, var(--paper) 100%);
}
.hero__rays {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 80px,
      rgba(255, 245, 215, 0.08) 81px,
      rgba(255, 245, 215, 0.08) 82px,
      transparent 83px,
      transparent 200px
    );
  mix-blend-mode: screen;
  opacity: .5;
}

/* Editorial side image — full-bleed right edge */
.hero__sideimg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: clamp(480px, calc(100vh - 8rem), 800px);
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(20, 41, 30, .45),
    0 0 0 1px rgba(31, 58, 42, .08);
  animation: heroImgIn 1.6s var(--ease-out) .4s both;
  z-index: 2;
  align-self: center;
}
@media (max-width: 900px) {
  .hero__sideimg {
    height: 320px;
    grid-row: 2;
    margin: 1rem 0 0;
    border-radius: 6px;
  }
}
.hero__sideimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 41, 30, .35) 100%);
  pointer-events: none;
}
@keyframes heroImgIn {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(40px); }
  100% { opacity: 1; clip-path: inset(0 0 0 0);    transform: translateY(0); }
}
.hero__sideimg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.hero__sideimg:hover img { transform: scale(1.04); }

.hero__sideimg-cap {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  display: flex;
  flex-direction: column;
  background: rgba(20, 41, 30, .65);
  backdrop-filter: blur(8px);
  padding: .8rem 1rem;
  border-radius: 4px;
  color: var(--paper);
  line-height: 1;
}
.hero__sideimg-cap em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  font-variation-settings: "SOFT" 100;
}
.hero__sideimg-cap span {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--apple-soft);
  margin-top: 4px;
}


/* — Falling leaves */
.leaves { position: absolute; inset: 0; pointer-events: none; z-index: 1; color: var(--moss); }
.leaf {
  position: absolute;
  width: 22px; height: 22px;
  opacity: .55;
  filter: drop-shadow(0 4px 6px rgba(20,41,30,0.15));
  animation: leafFall linear infinite;
}
.leaf--1 { left: 8%;  width: 18px; animation-duration: 14s; animation-delay: 0s;  color: var(--apple); }
.leaf--2 { left: 24%; width: 26px; animation-duration: 19s; animation-delay: -3s; }
.leaf--3 { left: 41%; width: 16px; animation-duration: 16s; animation-delay: -8s; color: var(--apple); opacity: .4; }
.leaf--4 { left: 58%; width: 28px; animation-duration: 22s; animation-delay: -2s; }
.leaf--5 { left: 70%; width: 14px; animation-duration: 13s; animation-delay: -10s; }
.leaf--6 { left: 84%; width: 24px; animation-duration: 17s; animation-delay: -6s; color: var(--apple); opacity: .5; }
.leaf--7 { left: 92%; width: 18px; animation-duration: 20s; animation-delay: -4s; }

@keyframes leafFall {
  0%   { transform: translate3d(0, -12vh, 0) rotate(0deg);   opacity: 0; }
  10%  { opacity: .55; }
  100% { transform: translate3d(-80px, 110vh, 0) rotate(540deg); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.25rem;
  padding: .4rem .85rem;
  border: 1px solid rgba(31, 58, 42, 0.25);
  border-radius: 999px;
  background: rgba(246, 239, 225, 0.5);
  backdrop-filter: blur(6px);
  animation: fadeUp 1s var(--ease-out) .2s both;
  max-width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: .2em;
    padding: .35rem .8rem;
  }
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--apple);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: .96;
  letter-spacing: -0.025em;
  color: var(--forest-deep);
  font-variation-settings: "SOFT" 60;
  margin-bottom: 1.75rem;
}
.hero__headline .line {
  display: block;
  overflow: hidden;
}
.hero__headline .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 1.1s var(--ease-out) forwards;
}
.hero__headline .line:nth-child(1) .word { animation-delay: .35s; }
.hero__headline .line:nth-child(2) .word { animation-delay: .55s; }
.hero__headline .line:nth-child(3) .word { animation-delay: .75s; }
.hero__headline .word.handwrite {
  font-family: var(--f-hand);
  font-weight: 500;
  color: var(--apple);
  font-style: normal;
  font-size: 1.1em;
  margin-left: .15em;
}
@keyframes wordRise {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: none; }
}

.hero__sub {
  max-width: 580px;
  width: 100%;
  font-size: clamp(.95rem, 1.05vw, 1.12rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
  overflow-wrap: break-word;
  hyphens: auto;
  text-align: center;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.15s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 14px 32px -14px rgba(20, 41, 30, .6);
}
.btn--primary:hover {
  background: var(--apple);
  box-shadow: 0 18px 36px -14px rgba(200, 85, 61, .55);
}

.btn--ghost {
  border: 1px solid rgba(31, 58, 42, 0.3);
  color: var(--forest);
  background: rgba(246, 239, 225, 0.5);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.btn--light {
  background: var(--paper);
  color: var(--forest);
}
.btn--light:hover { background: var(--apple); color: var(--paper); }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 58, 42, 0.18);
  max-width: 640px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.3s forwards;
}
.hero__meta div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .25rem;
}
.hero__meta .num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--apple);
  line-height: 1;
  font-variation-settings: "SOFT" 100;
}
.hero__meta .lbl {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss);
}

@media (max-width: 720px) {
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    max-width: 100%;
  }
  .hero__meta div:last-child { grid-column: 1 / -1; }
  .hero__meta .lbl { font-size: 9px; letter-spacing: .15em; }
  .hero__meta .num { font-size: 18px; }
}

/* Scroll cue removed — it visually competed with the side image */
.scroll-cue { display: none; }
@keyframes scrollLine {
  0%   { top: -30%; }
  100% { top: 100%; }
}
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* =================== MARQUEE STRIP =================== */
.marquee {
  background: var(--forest);
  color: var(--paper);
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--forest-mid);
  border-bottom: 1px solid var(--forest-mid);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-variation-settings: "SOFT" 100;
}
.marquee__track i {
  color: var(--apple);
  font-style: normal;
  font-size: .8em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================== ABOUT =================== */
.about {
  padding: 1.8rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.section-head--center {
  justify-content: center;
}

.about__intro {
  max-width: 720px;
  margin: 0 auto 4rem;
}
.about__head {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  font-variation-settings: "SOFT" 50;
  margin-bottom: 1.5rem;
}
.about__lead {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}
.about__lead strong {
  font-weight: 600;
  color: var(--forest);
}

/* The marketing graphic as centerpiece */
.about__hero {
  position: relative;
  max-width: 880px;
  margin: 0 auto 3rem;
  isolation: isolate;
}
.about__hero-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 90px -30px rgba(20, 41, 30, .45),
    0 0 0 1px rgba(31, 58, 42, .08),
    0 0 0 10px var(--cream),
    0 0 0 11px rgba(31, 58, 42, .15);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
  background: var(--cream);
}
.about__hero-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 60px 110px -30px rgba(20, 41, 30, .55),
    0 0 0 1px rgba(31, 58, 42, .1),
    0 0 0 10px var(--cream),
    0 0 0 11px rgba(31, 58, 42, .2);
}
.about__hero-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.4s var(--ease);
}
.about__hero-frame:hover img { transform: scale(1.02); }

/* Floating decorations */
.about__decor {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.about__decor--leaf {
  top: -3rem;
  left: -3.5rem;
  width: clamp(80px, 9vw, 130px);
  animation: aboutLeafSway 6s ease-in-out infinite;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 8px 14px rgba(20, 41, 30, 0.18));
}
.about__decor--leaf svg { width: 100%; height: auto; display: block; }

@keyframes aboutLeafSway {
  0%   { transform: rotate(-6deg)  translateY(0); }
  25%  { transform: rotate(2deg)   translateY(-2px); }
  50%  { transform: rotate(6deg)   translateY(0); }
  75%  { transform: rotate(-1deg)  translateY(2px); }
  100% { transform: rotate(-6deg)  translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .about__decor--leaf { animation: none; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(5deg); }
}

@media (max-width: 720px) {
  .about__decor--leaf { top: -2rem; left: -1rem; }
  .about__hero-frame {
    box-shadow:
      0 30px 50px -20px rgba(20, 41, 30, .35),
      0 0 0 1px rgba(31, 58, 42, .08),
      0 0 0 6px var(--cream),
      0 0 0 7px rgba(31, 58, 42, .15);
  }
}

/* Below the image */
.about__below {
  max-width: 720px;
  margin: 0 auto;
}
.about__signature {
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--forest);
  font-variation-settings: "SOFT" 100;
  margin-bottom: 1.75rem;
}
.about__signature .hand {
  font-size: 2.4rem;
  display: inline-block;
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem .85rem;
  list-style: none;
  padding: 0;
}
.about__chips li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.05rem;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(31, 58, 42, 0.2);
  border-radius: 999px;
  background: rgba(246, 239, 225, 0.5);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.about__chips li:hover {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
  transform: translateY(-1px);
}
.about__chips li span {
  color: var(--apple);
  font-size: 8px;
  line-height: 1;
}
.about__chips li:hover span { color: var(--apple-soft); }

/* =================== SERVICES — Editorial spread =================== */
.services {
  padding: 1.8rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services__intro {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin: 0 auto 5rem;
  max-width: 20ch;
  font-variation-settings: "SOFT" 60;
}

/* Ambient drifting leaves */
.services__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: var(--moss);
}
.amb-leaf {
  position: absolute;
  opacity: .12;
  width: 28px; height: 28px;
  animation: ambDrift 18s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(20,41,30,.1));
}
.amb-leaf--1 { left: 4%;  top: 12%; color: var(--apple); animation-delay: -1s;  animation-duration: 22s; }
.amb-leaf--2 { right: 5%; top: 28%; animation-delay: -8s;  animation-duration: 19s; }
.amb-leaf--3 { left: 8%;  bottom: 18%; animation-delay: -4s; animation-duration: 24s; }
.amb-leaf--4 { right: 6%; bottom: 12%; color: var(--apple); animation-delay: -12s; animation-duration: 20s; }
@keyframes ambDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(20px, -15px) rotate(80deg); }
  66%      { transform: translate(-12px, 10px) rotate(160deg); }
}

/* Profiles wrapper */
.profiles {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

/* Individual profile — flex row, photo + body side by side */
.profile {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 3rem 5rem;
  isolation: isolate;
}
.profile--reverse {
  flex-direction: row-reverse;
}

.profile__photo {
  flex: 0 0 320px;
  max-width: 320px;
}
.profile__body {
  flex: 1 1 0;
  min-width: 0;
}
.profile--reverse .profile__body { text-align: right; }

/* Ghost background word */
.profile__ghost {
  position: absolute;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  color: var(--forest);
  opacity: 0.04;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  font-variation-settings: "SOFT" 50;
}
.profile:not(.profile--reverse) .profile__ghost {
  top: 12%;
  right: 0;
  text-align: right;
}
.profile--reverse .profile__ghost {
  bottom: 12%;
  left: 0;
}
.profile__ghost--apple { color: var(--apple); opacity: 0.05; }

/* Photo card — figure allows mark to spill out */
.profile__photo {
  position: relative;
  padding-bottom: 2.5rem;
  z-index: 2;
}
.profile__photo-clip {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -22px rgba(20, 41, 30, .42),
    0 0 0 1px rgba(31, 58, 42, .08);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
  clip-path: inset(0 0 100% 0);
  animation: photoReveal 1.2s var(--ease-out) .2s forwards;
}
.profile.reveal.is-in .profile__photo-clip {
  animation: photoReveal 1.2s var(--ease-out) .2s forwards;
}
@keyframes photoReveal {
  0%   { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0 0); }
}
.profile__photo:hover .profile__photo-clip {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow:
    0 40px 80px -22px rgba(20, 41, 30, .5),
    0 0 0 1px rgba(31, 58, 42, .1);
}
.profile__photo-clip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.profile__photo:hover .profile__photo-clip img { transform: scale(1.06); }

/* Photo tag — diagonal corner label */
.profile__photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  background: rgba(20, 41, 30, 0.85);
  backdrop-filter: blur(10px);
  padding: .55rem .85rem;
  border-radius: 4px;
  color: var(--paper);
  line-height: 1;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.profile__photo:hover .profile__photo-tag {
  transform: translateY(0);
  opacity: 1;
}
.profile__photo-tag em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  font-variation-settings: "SOFT" 100;
}
.profile__photo-tag span {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--apple-soft);
  margin-top: 4px;
}
.profile__photo-tag--apple em { color: var(--apple-soft); }

/* Round badge — kettlebell / apple */
.profile__mark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px -8px rgba(20, 41, 30, .35);
  color: var(--forest);
  border: 1px solid rgba(31, 58, 42, .12);
  z-index: 3;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.profile__mark:hover {
  transform: translateX(-50%) scale(1.15) rotate(-8deg);
  box-shadow: 0 16px 30px -8px rgba(20, 41, 30, .45);
}
.profile__mark--apple { color: var(--apple); }
.profile__mark svg { width: 60%; height: 60%; overflow: visible; }

/* SVG stroke draw-in */
.profile__mark .draw {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: drawIn 2s var(--ease-out) .8s forwards;
}
@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}

/* Profile body */
.profile__body { min-width: 0; position: relative; z-index: 2; }

.profile__name {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: .95;
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin-bottom: .55rem;
  font-variation-settings: "SOFT" 30;
  display: flex;
  flex-direction: column;
}
.profile__name span:nth-child(2) {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--apple);
}

.profile__role {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.profile--reverse .profile__role { justify-content: flex-end; }
.profile__role-line {
  width: 36px;
  height: 1px;
  background: var(--apple);
  flex-shrink: 0;
}

.profile__angebot {
  margin-bottom: .4rem;
  margin-top: .5rem;
}
.profile__angebot span {
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--apple);
  font-weight: 700;
  position: relative;
  padding-bottom: 2px;
}
.profile__angebot span::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--apple);
  transform-origin: left;
  transform: scaleX(0);
  animation: lineDraw 1s var(--ease-out) 1s forwards;
}
.profile--reverse .profile__angebot span::after { transform-origin: right; }
@keyframes lineDraw {
  to { transform: scaleX(1); }
}

.profile__qual {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-variation-settings: "SOFT" 100;
  max-width: 38ch;
}
.profile--reverse .profile__qual { margin-left: auto; }

/* Bullet list — dot markers with editorial hover */
.profile__list {
  display: flex;
  flex-direction: column;
}
.profile__list li {
  position: relative;
  padding: .85rem 0 .85rem 1.75rem;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--ink-soft);
  border-top: 1px solid rgba(31, 58, 42, .08);
  transition: padding-left .4s var(--ease);
}
.profile__list li:last-child { border-bottom: 1px solid rgba(31, 58, 42, .08); }
.profile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25em;
  width: 7px;
  height: 7px;
  background: var(--forest);
  border-radius: 50%;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.profile__list li::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 58, 42, 0.06), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
  border-radius: 4px;
}
.profile__list li:hover::after { opacity: 1; }
.profile__list li:hover { padding-left: 2.25rem; }
.profile__list li:hover::before {
  transform: scale(1.5);
  background: var(--apple);
}

/* MIRIAM REVERSE — flip list alignment, dot on right */
.profile--reverse .profile__list { text-align: right; }
.profile--reverse .profile__list li {
  padding: .85rem 1.75rem .85rem 0;
}
.profile--reverse .profile__list li::before {
  left: auto;
  right: 0;
  background: var(--apple);
}
.profile--reverse .profile__list li::after {
  background: linear-gradient(270deg, rgba(200, 85, 61, 0.06), transparent);
}
.profile--reverse .profile__list li:hover {
  padding-left: 0;
  padding-right: 2.25rem;
}
.profile--reverse .profile__list li:hover::before {
  transform: scale(1.5);
  background: var(--forest);
}

/* Connector between Benjamin and Miriam */
.profiles__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: 0;
  z-index: 2;
  margin: -.5rem 0;
}
.profiles__line {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--moss) 50%, transparent);
  height: 16px;
  opacity: .5;
}
.profiles__amp {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--apple);
  font-variation-settings: "SOFT" 100;
  animation: ampBreathe 4s ease-in-out infinite;
  display: inline-block;
  padding: .35em .5em;
  transform-origin: center center;
}
@keyframes ampBreathe {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50%      { transform: scale(1.08) rotate(2deg); }
}

/* Closing tagline */
.services__closing {
  text-align: center;
  margin-top: 5rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--forest);
  font-variation-settings: "SOFT" 100;
  position: relative;
  z-index: 1;
}
.services__closing .hand {
  font-family: var(--f-hand);
  font-style: normal;
  font-weight: 500;
  color: var(--apple);
  font-size: 1.6em;
  line-height: 1;
  display: inline-block;
  margin-right: .25rem;
}

/* RESPONSIVE — collapse to single column on tablet/mobile */
@media (max-width: 900px) {
  .profile,
  .profile--reverse {
    flex-direction: column;
    gap: 1.75rem;
    padding: 2rem 0;
  }
  .profile__photo { flex: 0 0 auto; max-width: 100%; width: 100%; max-width: 360px; }
  .profile--reverse .profile__body { text-align: left; }
  .profile--reverse .profile__role { justify-content: flex-start; }
  .profile--reverse .profile__qual { margin-left: 0; }
  .profile--reverse .profile__list { text-align: left; }
  .profile--reverse .profile__list li {
    padding: .85rem 0 .85rem 1.75rem;
  }
  .profile--reverse .profile__list li::before {
    left: 0;
    right: auto;
    background: var(--forest);
  }
  .profile--reverse .profile__list li:hover {
    padding-left: 2.25rem;
    padding-right: 0;
  }
  .profile--reverse .profile__list li:hover::before {
    background: var(--apple);
  }
  .profile__ghost { display: none; }
  .profiles__connector { padding: .5rem 0; margin: 0; }
  .profiles__line { height: 14px; }
}

/* =================== KONZEPT =================== */
.concept {
  position: relative;
  padding: 1.8rem var(--gutter);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.concept__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.concept__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.7) brightness(.5);
}
.concept__bg-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--forest-deep) 0%, rgba(20, 41, 30, .85) 50%, var(--forest-deep) 100%);
}

.concept__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.concept__head {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: .95;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 4rem;
  font-variation-settings: "SOFT" 60;
}

.concept__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: start;
}
@media (max-width: 900px) {
  .concept__cols { grid-template-columns: 1fr; gap: 2rem; }
}
.concept__lead {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  font-variation-settings: "SOFT" 80;
}
.concept__body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--sage-soft);
  max-width: 50ch;
}

/* Principles 2-column layout (replaces 4-pillar grid) */
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(168, 184, 154, .25);
}
@media (max-width: 900px) {
  .principles { grid-template-columns: 1fr; gap: 2.5rem; }
}

.principles__col { min-width: 0; }
.principles__head {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--apple-soft);
  margin-bottom: 2rem;
  font-weight: 600;
}

.principles__col ul {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.principles__col li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.principles__col li p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sage-soft);
}
.principles__col li p em {
  color: var(--paper);
  font-variation-settings: "SOFT" 80;
}

.principles__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(168, 184, 154, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sage);
  transition: border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
  flex-shrink: 0;
}
.principles__icon svg { width: 60%; height: 60%; }
.principles__col li:hover .principles__icon {
  border-color: var(--apple);
  color: var(--apple);
  background: rgba(200, 85, 61, 0.06);
}

.principles__icon--arrow {
  border-color: rgba(200, 85, 61, .4);
  color: var(--apple);
}
.principles__icon--arrow svg { width: 40%; height: 40%; }

.principles .hand {
  font-family: var(--f-hand);
  font-style: normal;
  font-weight: 500;
  color: var(--apple-soft);
  font-size: 1.4em;
  line-height: 1;
  display: inline-block;
  margin-bottom: .2rem;
}

/* =================== FAMILIE =================== */
.family {
  padding: 1.8rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.family__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
@media (max-width: 900px) { .family__grid { grid-template-columns: 1fr; } }

.family__copy h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 2rem;
  font-variation-settings: "SOFT" 60;
}
.family__copy > p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 540px;
}
.family__highlight {
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--cream);
  border-left: 3px solid var(--apple);
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.family__highlight .hand { font-size: 1.6em; display: inline-block; margin-bottom: .25rem; }

/* Family visual — Black Forest scene */
.family__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(180deg,
      #f0e8d3 0%,
      #ebe2cb 35%,
      #d8d8c0 70%,
      #c8d0b6 100%);
  box-shadow:
    inset 0 -40px 60px -30px rgba(20, 41, 30, .15),
    0 24px 50px -24px rgba(20, 41, 30, .25);
}

.family__scene {
  width: 100%;
  height: 100%;
  display: block;
}

/* Distant trees — slow gentle sway */
.fam-back use {
  transform-origin: 50% 100%;
  transform-box: fill-box;
  animation: famSwayBack 14s ease-in-out infinite;
}
.fam-back use:nth-child(odd)  { animation-delay: -3s; animation-duration: 16s; }
.fam-back use:nth-child(even) { animation-delay: -7s; animation-duration: 13s; }

/* Mid trees — slightly more sway */
.fam-mid use {
  transform-origin: 50% 100%;
  transform-box: fill-box;
  animation: famSwayMid 9s ease-in-out infinite;
}
.fam-mid use:nth-child(1) { animation-delay: -1.5s; }
.fam-mid use:nth-child(2) { animation-delay: -4s; animation-duration: 11s; }
.fam-mid use:nth-child(3) { animation-delay: -2s; }
.fam-mid use:nth-child(4) { animation-delay: -6s; animation-duration: 10s; }

/* Hero front trees — most prominent sway */
.fam-hero use {
  transform-origin: 50% 100%;
  transform-box: fill-box;
  animation: famSwayHero 7s ease-in-out infinite;
}
.fam-hero use:nth-child(2) { animation-delay: -3.5s; animation-duration: 8s; }

@keyframes famSwayBack {
  0%, 100% { transform: rotate(-.4deg); }
  50%      { transform: rotate(.4deg); }
}
@keyframes famSwayMid {
  0%, 100% { transform: rotate(-.9deg); }
  50%      { transform: rotate(.9deg); }
}
@keyframes famSwayHero {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.4deg); }
}

/* Drifting mist */
.fam-mist {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: famMist 18s ease-in-out infinite alternate;
}
.fam-mist--2 { animation-duration: 26s; animation-delay: -8s; }
@keyframes famMist {
  from { transform: translateX(-12px); opacity: .45; }
  to   { transform: translateX(14px);  opacity: .65; }
}

/* Dust particles drifting */
.fam-dust {
  animation: famDust 10s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}
.fam-dust--1 { animation-duration: 12s; animation-delay: -1s; }
.fam-dust--2 { animation-duration: 14s; animation-delay: -4s; }
.fam-dust--3 { animation-duration: 11s; animation-delay: -7s; }
.fam-dust--4 { animation-duration: 16s; animation-delay: -2s; }
@keyframes famDust {
  0%   { transform: translate(0, 0)    scale(1);   opacity: .8; }
  50%  { transform: translate(8px, -18px) scale(1.2); opacity: .35; }
  100% { transform: translate(-6px, -36px) scale(.9); opacity: 0; }
}

/* Hero leaf — float + rotate gently */
.fam-leaf {
  transform-origin: 50% 95%;
  transform-box: fill-box;
  animation: famLeafFloat 6s ease-in-out infinite;
}
.fam-leaf__body {
  transform-origin: 50% 90%;
  transform-box: fill-box;
  animation: famLeafSway 5s ease-in-out infinite;
}

@keyframes famLeafFloat {
  0%, 100% { transform: translate(200px, 360px) translateY(0); }
  50%      { transform: translate(200px, 360px) translateY(-8px); }
}
@keyframes famLeafSway {
  0%, 100% { transform: rotate(-4deg); }
  25%      { transform: rotate(2deg); }
  50%      { transform: rotate(4deg); }
  75%      { transform: rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .fam-back use, .fam-mid use, .fam-hero use,
  .fam-mist, .fam-dust, .fam-leaf, .fam-leaf__body {
    animation: none !important;
  }
}

/* =================== PHILOSOPHIE =================== */
.philosophy {
  padding: 1.8rem var(--gutter);
  background: var(--forest-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: "✦";
  position: absolute;
  top: 10%; right: 5%;
  font-size: 80px;
  color: var(--apple);
  opacity: .15;
  animation: spin 30s linear infinite;
}
.philosophy::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--forest-mid) 0%, transparent 70%);
  opacity: .5;
}

.philosophy__head {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 16ch;
  font-variation-settings: "SOFT" 60;
  position: relative;
  z-index: 2;
}

.philosophy__list {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.ph-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(168, 184, 154, .2);
  align-items: baseline;
  transition: padding-left .4s var(--ease), background .4s var(--ease);
  position: relative;
}
.ph-item:last-child { border-bottom: 1px solid rgba(168, 184, 154, .2); }
.ph-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--apple), transparent);
  opacity: 0;
  transition: width .6s var(--ease), opacity .4s var(--ease);
  z-index: -1;
}
.ph-item:hover { padding-left: 2rem; }
.ph-item:hover::before { width: 100%; opacity: .12; }

.ph-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--apple);
  font-variation-settings: "SOFT" 100;
}
.ph-item p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.3;
  font-variation-settings: "SOFT" 50;
}

@media (max-width: 600px) {
  .ph-item { grid-template-columns: 60px 1fr; gap: 1rem; }
}

/* =================== PREISE =================== */
.pricing {
  padding: 1.8rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; } }

.pricing__copy h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest-deep);
  margin-bottom: 2rem;
  font-variation-settings: "SOFT" 60;
}
.pricing__copy p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.pricing__card {
  background: var(--forest);
  color: var(--paper);
  padding: 3.5rem 2.75rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.pricing__card:hover { transform: translateY(-4px) rotate(.5deg); }

.pricing__sparkle {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: 24px;
  color: var(--apple);
  animation: spin 14s linear infinite;
}

.pricing__price {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  font-variation-settings: "SOFT" 60;
  margin-bottom: .5rem;
}
.pricing__price em { font-style: italic; color: var(--paper); }
.pricing__price span {
  font-size: 0.4em;
  font-style: italic;
  color: var(--apple-soft);
  margin-top: .35em;
}
.pricing__lbl {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168,184,154,.25);
}

.pricing__card ul {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.pricing__card ul li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.pricing__card ul li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--apple);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing__foot {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--sage-soft);
  font-variation-settings: "SOFT" 100;
}

/* =================== KONTAKT =================== */
.contact {
  position: relative;
  padding: 1.8rem var(--gutter);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.contact__bg {
  position: absolute; inset: 0; z-index: -1;
}
.contact__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.6) brightness(.45);
}
.contact__bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 85, 61, .15) 0%, transparent 60%),
    linear-gradient(180deg, var(--forest-deep) 0%, rgba(20,41,30,.92) 100%);
}

.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.contact__head {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 60;
}
.contact__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--sage-soft);
  margin-bottom: 5rem;
  max-width: 50ch;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full, .field--check { grid-column: 1 / -1; }

.field label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.field label em { color: var(--sage); font-size: 11px; }

.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 16px;
  background: transparent;
  color: var(--paper);
  border: 0;
  border-bottom: 1px solid rgba(168, 184, 154, .35);
  padding: .75rem 0;
  outline: none;
  transition: border-color .3s var(--ease);
  resize: none;
  border-radius: 0;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--apple);
}
.field--select select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8b89a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  background-size: 12px;
  cursor: pointer;
}
.field--select select option { background: var(--forest-deep); color: var(--paper); }

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
}
.field--check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--apple); }
.field--check label {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sage-soft);
  line-height: 1.5;
}
.field--check label a { color: var(--apple-soft); text-decoration: underline; }

.contact__form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 1rem;
}
.contact__success {
  grid-column: 1 / -1;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--apple-soft);
  font-variation-settings: "SOFT" 100;
}

@media (max-width: 600px) { .contact__form { grid-template-columns: 1fr; } }

.contact__side {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(168, 184, 154, .2);
}
@media (max-width: 900px) { .contact__side { padding-left: 0; border-left: 0; padding-top: 2rem; border-top: 1px solid rgba(168, 184, 154, .2); } }

.contact__line { display: flex; flex-direction: column; gap: .5rem; }
.contact__lbl {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact__big {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--paper);
  font-variation-settings: "SOFT" 100;
  transition: color .3s var(--ease);
}
.contact__big:hover { color: var(--apple-soft); }
.contact__line a { color: var(--sage-soft); }
.contact__line a:not(.contact__big):hover { color: var(--paper); }

.contact__signature {
  margin-top: 1rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--sage-soft);
  font-variation-settings: "SOFT" 100;
  line-height: 1.5;
}
.contact__signature .hand {
  font-size: 2rem;
  display: block;
  color: var(--apple-soft);
  margin-bottom: .25rem;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--forest-deep);
  color: var(--sage-soft);
  padding: 5rem var(--gutter) 2rem;
  border-top: 1px solid var(--forest-mid);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(168, 184, 154, .15);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; gap: 3rem; } }

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__mark {
  width: 80px; height: 80px;
  flex-shrink: 0;
}
.footer__mark img { width: 100%; height: 100%; object-fit: contain; }
.footer__wordmark {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--paper);
  font-weight: 300;
  font-variation-settings: "SOFT" 50;
}
.footer__wordmark em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.footer__tagline {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: .25rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.footer__cols h5 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--apple-soft);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--sage-soft);
  padding: .35rem 0;
  transition: color .3s var(--ease);
}
.footer__cols a:hover { color: var(--paper); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--sage);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom .heart { color: var(--apple); }

/* =================== LEGAL PAGES =================== */
.legal {
  padding: 10rem var(--gutter) 6rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink-soft);
}
.legal h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--forest-deep);
  margin-bottom: 3rem;
  font-variation-settings: "SOFT" 60;
}
.legal h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--forest);
  margin: 2.5rem 0 .75rem;
  font-variation-settings: "SOFT" 50;
}
.legal h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin: 1.5rem 0 .5rem;
}
.legal p, .legal ul {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal ul { padding-left: 1.25rem; list-style: disc; }
.legal a { color: var(--apple); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--apple-dark); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 2rem;
  text-decoration: none;
}
.legal__back:hover { color: var(--apple); }

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .leaves, .scroll-cue { display: none; }
}

/* =================== THEMENABEND OVERLAY =================== */
.thabd {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.thabd.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.thabd__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(20, 41, 30, 0.6), rgba(20, 41, 30, 0.85));
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
}

.thabd__card {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: var(--cream);
  border-radius: 14px;
  padding: 2.5rem 2.25rem 2rem;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(31, 58, 42, 0.1);
  transform: translateY(40px) scale(.94);
  opacity: 0;
  transition:
    transform .8s cubic-bezier(.2, 1.1, .4, 1),
    opacity .6s var(--ease);
  isolation: isolate;
}
.thabd.is-open .thabd__card {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: .15s;
}

/* Decorative grain overlay inside card */
.thabd__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(168, 184, 154, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(200, 85, 61, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Close button */
.thabd__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(31, 58, 42, 0.15);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  z-index: 4;
}
.thabd__close:hover {
  background: var(--forest);
  color: var(--paper);
  transform: rotate(90deg);
}

/* Floating leaves around modal */
.thabd__leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s var(--ease);
  color: var(--moss);
}
.thabd.is-open .thabd__leaf { opacity: .45; }
.thabd__leaf--1 {
  top: -1.8rem; left: 2rem;
  width: 36px; height: 36px;
  color: var(--apple);
  transition-delay: .6s;
  animation: thabdLeafA 9s ease-in-out infinite;
}
.thabd__leaf--2 {
  top: 3rem; right: -1.5rem;
  width: 28px; height: 28px;
  transition-delay: .8s;
  animation: thabdLeafB 11s ease-in-out infinite;
}
.thabd__leaf--3 {
  bottom: 1.5rem; left: -1.2rem;
  width: 32px; height: 32px;
  color: var(--apple);
  transition-delay: 1s;
  animation: thabdLeafA 10s ease-in-out infinite reverse;
}
@keyframes thabdLeafA {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-8px); }
}
@keyframes thabdLeafB {
  0%, 100% { transform: rotate(15deg) translateX(0); }
  50%      { transform: rotate(-10deg) translateX(8px); }
}

/* Content */
.thabd__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.25rem;
  padding: .4rem .85rem;
  border: 1px solid rgba(31, 58, 42, 0.2);
  border-radius: 999px;
}
.thabd__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--apple);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.thabd__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  font-variation-settings: "SOFT" 60;
  margin-bottom: .9rem;
}
.thabd__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--apple);
}

.thabd__desc {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

/* Meta block — date card + details */
.thabd__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(31, 58, 42, 0.04);
  border: 1px solid rgba(31, 58, 42, 0.1);
  border-radius: 10px;
  margin-bottom: 1.75rem;
  align-items: center;
}

.thabd__date {
  display: grid;
  grid-template-rows: auto auto auto;
  text-align: center;
  background: var(--forest);
  color: var(--paper);
  border-radius: 8px;
  padding: .6rem .85rem .75rem;
  min-width: 86px;
  box-shadow: 0 8px 20px -6px rgba(20, 41, 30, .35);
  position: relative;
}
.thabd__date::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--apple);
  border-radius: 8px 8px 0 0;
}
.thabd__date-month {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--apple-soft);
  margin-top: .25rem;
}
.thabd__date-day {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--paper);
  font-variation-settings: "SOFT" 100;
  margin: .15rem 0;
}
.thabd__date-weekday {
  font-size: 9.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage-soft);
}

.thabd__details {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  list-style: none;
  padding: 0;
}
.thabd__details li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.thabd__lbl {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss);
}
.thabd__val {
  font-size: .95rem;
  color: var(--forest-deep);
  line-height: 1.4;
}

/* Actions */
.thabd__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1rem;
}
.thabd__actions .btn { flex: 1 1 auto; justify-content: center; padding: .8rem 1.1rem; font-size: 13px; }

/* Signature */
.thabd__sig {
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: .95rem;
  color: var(--moss);
  font-variation-settings: "SOFT" 100;
  margin-top: .5rem;
}
.thabd__sig .hand {
  font-family: var(--f-hand);
  font-style: normal;
  font-weight: 500;
  color: var(--apple);
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 520px) {
  .thabd__card { padding: 2rem 1.5rem 1.5rem; }
  .thabd__meta { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .thabd__date { justify-self: center; }
  .thabd__details li { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .thabd, .thabd__card, .thabd__leaf {
    transition: opacity .3s !important;
    animation: none !important;
  }
}
