/* ============================================================
   PHILIPPOS Ernährungscoaching
   Design System & Stylesheet
   ------------------------------------------------------------
   1.  Fonts
   2.  Tokens
   3.  Reset & Base
   4.  Typography
   5.  Layout primitives
   6.  Buttons & controls
   7.  Chrome (Tor, Cursor, Fortschritt, Grain, Header, Menue)
   8.  Sections
   9.  Components
   10. Footer
   11. Motion & reveals
   12. Responsive
   ============================================================ */

/* ---------- 1. Fonts ---------- */
@font-face{
  font-family:'Instrument Serif';font-style:normal;font-weight:400;font-display:swap;
  src:url('../fonts/instrument-serif.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+20AC,U+2122,U+2212,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Instrument Serif';font-style:italic;font-weight:400;font-display:swap;
  src:url('../fonts/instrument-serif-italic.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+20AC,U+2122,U+2212,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Inter';font-style:normal;font-weight:300 700;font-display:swap;
  src:url('../fonts/inter-var.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+20AC,U+2122,U+2212,U+FEFF,U+FFFD;
}

/* ---------- 2. Tokens ---------- */
:root{
  /* Palette */
  --ink:#0B0C0B;
  --ink-2:#121412;
  --ink-3:#1A1D1A;
  --ink-line:rgba(244,241,234,.10);
  --bone:#F4F1EA;
  --bone-2:#E9E4D8;
  --bone-line:rgba(11,12,11,.12);
  --sand:#C6A87D;
  --sand-2:#DCC4A0;
  --sand-deep:#8C7351;
  --moss:#5F7350;

  /* Semantic — dark surface (default) */
  --bg:var(--ink);
  --fg:var(--bone);
  --fg-soft:rgba(244,241,234,.62);
  --fg-faint:rgba(244,241,234,.38);
  --line:var(--ink-line);
  --surface:rgba(244,241,234,.035);
  --surface-2:rgba(244,241,234,.06);
  --accent:var(--sand);

  /* Typography */
  --f-display:'Instrument Serif',ui-serif,Georgia,'Times New Roman',serif;
  --f-ui:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;

  --t-display:clamp(2.9rem,8vw,7.5rem);
  --t-h1:clamp(2.6rem,7vw,6.5rem);
  --t-h2:clamp(2.1rem,5.2vw,4.4rem);
  --t-h3:clamp(1.45rem,2.6vw,2.2rem);
  --t-h4:clamp(1.1rem,1.5vw,1.35rem);
  --t-lead:clamp(1.02rem,1.32vw,1.28rem);
  --t-body:clamp(.95rem,1.05vw,1.05rem);
  --t-small:.875rem;
  --t-eyebrow:.6875rem;

  /* Space */
  --gutter:clamp(1.25rem,5vw,4.5rem);
  --max:82.5rem;          /* 1320px */
  --max-wide:96rem;
  --sec-y:clamp(5.5rem,12vw,11rem);
  --radius:2px;
  --radius-lg:4px;

  /* Motion */
  --ease:cubic-bezier(.22,1,.36,1);
  --ease-io:cubic-bezier(.65,.05,.36,1);
  --dur:.75s;

  --header-h:76px;
}

/* Light surface modifier */
.s-light{
  --bg:var(--bone);
  --fg:var(--ink);
  --fg-soft:rgba(11,12,11,.66);
  --fg-faint:rgba(11,12,11,.42);
  --line:var(--bone-line);
  --surface:rgba(11,12,11,.028);
  --surface-2:rgba(11,12,11,.05);
  --accent:var(--sand-deep);
}

/* ---------- 3. Reset & Base ---------- */
*,*::before,*::after{box-sizing:border-box}
*{margin:0;padding:0}
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:var(--header-h);
}
body{
  background:var(--ink);
  color:var(--bone);
  font-family:var(--f-ui);
  font-size:var(--t-body);
  font-weight:350;
  line-height:1.68;
  letter-spacing:-.006em;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
body.is-locked{overflow:hidden}
img,picture,video,svg{display:block;max-width:100%}
img,video{height:auto}
button,input,select,textarea{font:inherit;color:inherit;background:none;border:none}
button{cursor:pointer}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
::selection{background:var(--sand);color:var(--ink)}

:focus-visible{
  outline:2px solid var(--sand);
  outline-offset:3px;
  border-radius:2px;
}

.skip{
  position:absolute;left:1rem;top:-6rem;z-index:999;
  background:var(--sand);color:var(--ink);
  padding:.75rem 1.25rem;font-weight:600;font-size:.85rem;
  transition:top .25s var(--ease);
}
.skip:focus{top:1rem}

.sr{
  position:absolute!important;width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* ---------- 4. Typography ---------- */
.display,.h1,.h2,.h3{
  font-family:var(--f-display);
  font-weight:400;
  letter-spacing:-.022em;
  line-height:.94;
  text-wrap:balance;
}
.display{font-size:var(--t-display);line-height:.9;letter-spacing:-.03em}
.h1{font-size:var(--t-h1)}
.h2{font-size:var(--t-h2)}
.h3{font-size:var(--t-h3);line-height:1.06}
em,.it{font-style:italic}
.h2 em,.display em,.h1 em{color:var(--accent)}

.eyebrow{
  font-family:var(--f-ui);
  font-size:var(--t-eyebrow);
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--fg-faint);
  display:flex;align-items:center;gap:.7em;
}
.eyebrow::before{
  content:"";width:1.75rem;height:1px;background:var(--accent);
  flex:none;opacity:.8;
}
.eyebrow.is-center{justify-content:center}

.lead{
  font-size:var(--t-lead);
  line-height:1.6;
  color:var(--fg-soft);
  font-weight:350;
  max-width:40ch;
}
.muted{color:var(--fg-soft)}
.faint{color:var(--fg-faint)}
.mono{
  font-variant-numeric:tabular-nums;
  font-feature-settings:"tnum" 1;
}

/* ---------- 5. Layout ---------- */
.wrap{
  width:100%;max-width:var(--max);
  margin-inline:auto;
  padding-inline:var(--gutter);
}
.wrap-wide{max-width:var(--max-wide)}
.section{
  background:var(--bg);
  color:var(--fg);
  padding-block:var(--sec-y);
  position:relative;
}
.section--flush{padding-block:0}
.sec-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.85fr);
  gap:clamp(1.75rem,4vw,4.5rem);
  align-items:end;
  margin-bottom:clamp(2.75rem,6vw,5.5rem);
}
.sec-head__aside{padding-bottom:.4rem}
.rule{height:1px;background:var(--line);width:100%}

/* ---------- 6. Buttons ---------- */
.btn{
  --btn-bg:var(--sand);
  --btn-fg:var(--ink);
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;gap:.6em;
  padding:1.05em 1.9em;
  font-size:.875rem;font-weight:600;letter-spacing:.01em;
  border-radius:100px;
  background:var(--btn-bg);color:var(--btn-fg);
  overflow:hidden;
  isolation:isolate;
  transition:transform .5s var(--ease),box-shadow .5s var(--ease),color .35s var(--ease);
  will-change:transform;
  white-space:nowrap;
}
.btn::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:var(--bone);
  transform:translateY(101%);
  transition:transform .55s var(--ease);
}
.btn:hover::after,.btn:focus-visible::after{transform:translateY(0)}
.btn:hover{box-shadow:0 1.25rem 2.5rem -1rem rgba(198,168,125,.45)}
.btn:active{transform:scale(.975)}
.btn__ico{
  width:1.05em;height:1.05em;flex:none;
  transition:transform .45s var(--ease);
}
.btn:hover .btn__ico{transform:translateX(.25em)}

.btn--ghost{
  --btn-bg:transparent;--btn-fg:var(--fg);
  box-shadow:inset 0 0 0 1px var(--line);
}
.btn--ghost::after{background:var(--fg)}
.btn--ghost:hover{color:var(--bg);box-shadow:inset 0 0 0 1px transparent}
.s-light .btn--ghost:hover{color:var(--bone)}
.btn--ghost:hover{box-shadow:none}

.btn--lg{padding:1.2em 2.3em;font-size:.95rem}
.btn--block{display:flex;width:100%}

/* text link with underline sweep */
.link{
  position:relative;display:inline-flex;align-items:center;gap:.45em;
  font-size:.875rem;font-weight:500;
  padding-block:.15em;
}
.link::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:100%;
  background:currentColor;opacity:.35;
  transform-origin:right;transform:scaleX(1);
  transition:transform .45s var(--ease),opacity .45s var(--ease);
}
.link:hover::after{transform:scaleX(0);opacity:1}

/* ---------- 7. Chrome ---------- */
.grain{
  position:fixed;inset:-50%;z-index:9998;pointer-events:none;
  opacity:.05;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion:no-preference){
  .grain{animation:grain 6s steps(6) infinite}
}
@keyframes grain{
  0%,100%{transform:translate(0,0)}
  10%{transform:translate(-3%,-4%)}
  30%{transform:translate(2%,-3%)}
  50%{transform:translate(-2%,3%)}
  70%{transform:translate(3%,2%)}
  90%{transform:translate(-3%,1%)}
}

.progress{
  position:fixed;top:0;left:0;height:2px;width:100%;z-index:900;
  transform:scaleX(0);transform-origin:0 50%;
  background:linear-gradient(90deg,var(--sand-deep),var(--sand),var(--sand-2));
  pointer-events:none;
}

/* Tor (Ladeanimation) */
.gate{
  position:fixed;inset:0;z-index:10000;
  overflow:hidden;
  background-color:#080908;
  cursor:pointer;
  /* wird beim Oeffnen durchsichtig, damit der Hero dahinter sichtbar wird */
  transition:background-color .45s linear .2s;
}
.gate.is-open{background-color:transparent}
.gate__panel{
  position:absolute;top:0;bottom:0;
  width:50.4%;
  background:
    /* Kannelierung wie bei einer dorischen Saeule */
    repeating-linear-gradient(90deg,
      rgba(244,241,234,.045) 0 1px,
      rgba(0,0,0,.20) 1px 3px,
      transparent 3px 17px),
    linear-gradient(90deg,#100E0A 0%,#1C1810 38%,#272117 72%,#15120C 100%);
  transition:transform 1.15s cubic-bezier(.78,0,.18,1);
  will-change:transform;
}
.gate__panel::before,
.gate__panel::after{
  content:"";position:absolute;left:0;right:0;height:28px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M0 24H28M4 24V5H24V19H10V12H18' fill='none' stroke='%23C6A87D' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat:repeat-x;
  opacity:.34;
}
.gate__panel::before{top:clamp(1.5rem,4vw,3rem)}
.gate__panel::after{bottom:clamp(1.5rem,4vw,3rem);transform:scaleY(-1)}

.gate__panel--l{left:0;box-shadow:inset -22px 0 40px -22px rgba(0,0,0,.9)}
.gate__panel--r{right:0;box-shadow:inset 22px 0 40px -22px rgba(0,0,0,.9)}
.gate__panel--l::before,.gate__panel--l::after{right:2.5rem}
.gate__panel--r::before,.gate__panel--r::after{left:2.5rem}

/* Beschlagband an der Torkante */
.gate__panel--l{border-right:2px solid rgba(198,168,125,.28)}
.gate__panel--r{border-left:2px solid rgba(198,168,125,.28)}

.gate.is-open .gate__panel--l{transform:translateX(-100.8%)}
.gate.is-open .gate__panel--r{transform:translateX(100.8%)}

/* Lichtspalt, der beim Oeffnen aufflammt */
.gate__glow{
  position:absolute;left:50%;top:0;bottom:0;width:3px;
  transform:translateX(-50%) scaleY(.2);
  background:linear-gradient(180deg,transparent,var(--sand),transparent);
  opacity:0;
  transition:opacity .5s var(--ease),transform .8s var(--ease);
}
.gate.is-open .gate__glow{opacity:.9;transform:translateX(-50%) scaleY(1)}

.gate__emblem{
  position:absolute;inset:0;z-index:2;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:1.5rem;
  transition:opacity .45s var(--ease),transform .8s var(--ease);
}
.gate.is-open .gate__emblem{opacity:0;transform:scale(1.18)}

.gate__mark{
  position:relative;
  width:clamp(7.5rem,20vw,10.5rem);aspect-ratio:1;
  display:grid;place-items:center;
  opacity:0;transform:scale(.86);
  animation:gateIn .8s var(--ease) .1s forwards;
}
.gate__rays{
  position:absolute;inset:0;border-radius:50%;
  background:repeating-conic-gradient(from 0deg,
    rgba(198,168,125,.85) 0deg 1.8deg, transparent 1.8deg 12deg);
  -webkit-mask:radial-gradient(circle closest-side,transparent 72%,#000 76%,#000 96%,transparent 100%);
  mask:radial-gradient(circle closest-side,transparent 72%,#000 76%,#000 96%,transparent 100%);
  animation:gateSpin 26s linear infinite;
}
.gate__phi{
  position:relative;width:60%;height:60%;
  fill:none;stroke:var(--sand);stroke-width:2.6;
  stroke-linecap:round;
  filter:drop-shadow(0 0 14px rgba(198,168,125,.4));
}
.gate__word{
  font-family:var(--f-display);
  font-size:clamp(1.2rem,3.4vw,1.75rem);
  letter-spacing:.44em;text-indent:.44em;
  color:var(--bone);
  opacity:0;
  animation:gateIn .8s var(--ease) .3s forwards;
}
.gate__bar{
  width:min(42vw,180px);height:1px;
  background:rgba(244,241,234,.14);
  overflow:hidden;
  opacity:0;
  animation:gateIn .5s var(--ease) .45s forwards;
}
.gate__bar i{
  display:block;height:100%;background:var(--sand);
  transform:scaleX(0);transform-origin:0 50%;
  animation:load .9s var(--ease) .45s forwards;
}
.gate__skip{
  margin-top:.35rem;
  font-size:.5625rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:rgba(244,241,234,.3);
  opacity:0;animation:gateIn .6s var(--ease) 1.2s forwards;
}
@keyframes gateIn{to{opacity:1;transform:none}}
@keyframes gateSpin{to{transform:rotate(360deg)}}

/* Cursor */
.cursor{
  position:fixed;top:0;left:0;z-index:9997;pointer-events:none;
  width:34px;height:34px;margin:-17px 0 0 -17px;
  border:1px solid rgba(198,168,125,.7);border-radius:50%;
  transition:width .35s var(--ease),height .35s var(--ease),
             margin .35s var(--ease),background-color .35s var(--ease),
             opacity .3s linear,border-color .35s var(--ease);
  opacity:0;
  will-change:transform;
}
.cursor.is-on{opacity:1}
.cursor.is-hot{
  width:64px;height:64px;margin:-32px 0 0 -32px;
  background:rgba(198,168,125,.16);border-color:transparent;
}
@media (hover:none),(pointer:coarse){.cursor{display:none}}

/* Header */
.header{
  position:fixed;top:0;left:0;right:0;z-index:800;
  height:var(--header-h);
  display:flex;align-items:center;
  transition:background-color .4s var(--ease),
             border-color .4s var(--ease),backdrop-filter .4s var(--ease);
  border-bottom:1px solid transparent;
}
.header.is-stuck{
  background:rgba(11,12,11,.72);
  -webkit-backdrop-filter:blur(18px) saturate(1.4);
  backdrop-filter:blur(18px) saturate(1.4);
  border-bottom-color:var(--ink-line);
}
.header__in{
  width:100%;max-width:var(--max-wide);margin-inline:auto;
  padding-inline:var(--gutter);
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
}
.brand{
  display:flex;align-items:center;gap:.7rem;
  font-family:var(--f-display);font-size:1.24rem;letter-spacing:.05em;
  color:var(--bone);
}
.brand__mark{
  width:30px;height:30px;flex:none;
  border:1px solid rgba(198,168,125,.55);border-radius:50%;
  display:grid;place-items:center;
  font-family:var(--f-ui);font-size:.68rem;font-weight:700;letter-spacing:.02em;
  color:var(--sand);
  transition:background-color .4s var(--ease),color .4s var(--ease);
}
.brand:hover .brand__mark{background:var(--sand);color:var(--ink)}
.brand__sub{
  display:block;font-family:var(--f-ui);font-size:.5625rem;font-weight:600;
  letter-spacing:.24em;text-transform:uppercase;color:rgba(244,241,234,.45);
  margin-top:.1rem;
}
.nav{display:flex;align-items:center;gap:clamp(1.25rem,2.4vw,2.35rem)}
.nav a{
  font-size:.8125rem;font-weight:450;color:rgba(244,241,234,.72);
  position:relative;padding-block:.3rem;
  transition:color .3s var(--ease);
}
.nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:1px;
  background:var(--sand);transform:scaleX(0);transform-origin:right;
  transition:transform .45s var(--ease);
}
.nav a:hover{color:var(--bone)}
.nav a:hover::after{transform:scaleX(1);transform-origin:left}
.header__cta{display:flex;align-items:center;gap:.75rem}
.header .btn{padding:.8em 1.5em;font-size:.8125rem}

/* Burger */
.burger{
  display:none;width:44px;height:44px;margin-right:-10px;
  flex-direction:column;align-items:center;justify-content:center;
  position:relative;z-index:2;
}
.burger span{
  display:block;width:22px;height:1.5px;background:var(--bone);
  transition:transform .45s var(--ease),opacity .3s var(--ease);
}
.burger span+span{margin-top:6px}
.is-open .burger span:nth-child(1){transform:translateY(3.75px) rotate(45deg)}
.is-open .burger span:nth-child(2){opacity:0}
.is-open .burger span:nth-child(3){transform:translateY(-3.75px) rotate(-45deg)}

/* Mobile menu */
.menu{
  position:fixed;inset:0;z-index:790;
  background:var(--ink-2);
  display:flex;flex-direction:column;justify-content:center;
  padding:calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  clip-path:inset(0 0 100% 0);
  visibility:hidden;
  transition:clip-path .8s var(--ease),visibility .8s;
}
.menu.is-open{clip-path:inset(0 0 0 0);visibility:visible}
.menu__list li{overflow:hidden}
.menu__list a{
  display:block;
  font-family:var(--f-display);
  font-size:clamp(2.25rem,10vw,3.5rem);
  line-height:1.16;letter-spacing:-.02em;
  color:var(--bone);
  transform:translateY(110%);
  transition:transform .7s var(--ease),color .3s var(--ease);
}
.menu.is-open .menu__list a{transform:translateY(0)}
.menu__list li:nth-child(1) a{transition-delay:.1s}
.menu__list li:nth-child(2) a{transition-delay:.16s}
.menu__list li:nth-child(3) a{transition-delay:.22s}
.menu__list li:nth-child(4) a{transition-delay:.28s}
.menu__list li:nth-child(5) a{transition-delay:.34s}
.menu__list li:nth-child(6) a{transition-delay:.4s}
.menu__list a:hover{color:var(--sand)}
.menu__foot{
  margin-top:auto;padding-top:2.5rem;
  border-top:1px solid var(--ink-line);
  display:flex;flex-wrap:wrap;gap:1rem 1.75rem;align-items:center;
  font-size:.8125rem;color:rgba(244,241,234,.55);
}

/* Floating WhatsApp */
.fab{
  position:fixed;right:clamp(1rem,3vw,2rem);bottom:clamp(1rem,3vw,2rem);
  z-index:780;
  display:flex;align-items:center;gap:.65rem;
  padding:.85rem 1.15rem;border-radius:100px;
  background:#1FAF54;color:#fff;
  font-size:.8125rem;font-weight:600;
  box-shadow:0 1rem 2.25rem -.75rem rgba(31,175,84,.55);
  opacity:0;transform:translateY(1rem) scale(.94);pointer-events:none;
  transition:opacity .6s var(--ease),transform .6s var(--ease),box-shadow .4s var(--ease);
}
.fab.is-on{opacity:1;transform:none;pointer-events:auto}
.fab:hover{box-shadow:0 1.25rem 2.75rem -.75rem rgba(31,175,84,.7)}
.fab svg{width:20px;height:20px;flex:none;fill:currentColor}
@media (max-width:560px){.fab__label{display:none}.fab{padding:.95rem}}

/* ============================================================
   8. SECTIONS
   ============================================================ */

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;align-items:flex-end;
  padding-top:calc(var(--header-h) + 2rem);
  padding-bottom:clamp(2rem,5vw,4rem);
  overflow:hidden;
  background:var(--ink);
}
.hero__media{
  position:absolute;inset:0;z-index:0;
}
.hero__media img{
  width:100%;height:100%;object-fit:cover;
  object-position:70% 26%;
  transform:scale(1.15);
  transition:transform 1.8s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}
.is-ready .hero__media img{transform:scale(1.06)}
.hero__scrim{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(180deg,rgba(11,12,11,.82) 0%,rgba(11,12,11,.35) 26%,rgba(11,12,11,.55) 58%,rgba(11,12,11,.96) 96%),
    linear-gradient(95deg,rgba(11,12,11,.94) 0%,rgba(11,12,11,.72) 34%,rgba(11,12,11,.12) 68%);
}
.hero__in{position:relative;z-index:2;width:100%}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:clamp(1.75rem,4vw,3.5rem);
  align-items:end;
}
.hero__eyebrow{margin-bottom:clamp(1rem,2.4vw,1.6rem)}
.hero__title{
  font-family:var(--f-display);
  font-size:var(--t-display);
  line-height:.9;letter-spacing:-.032em;
  margin-bottom:clamp(1.1rem,2.2vw,1.6rem);
  max-width:15ch;
}
.hero__title .ln{display:block;overflow:hidden}
.hero__title .ln>span{
  display:block;
  transform:translateY(105%);
  transition:transform 1.05s var(--ease);
}
.hero__title em{color:var(--sand)}
.is-ready .hero__title .ln>span{transform:translateY(0)}
.hero__title .ln:nth-child(1)>span{transition-delay:.06s}
.hero__title .ln:nth-child(2)>span{transition-delay:.15s}
.hero__title .ln:nth-child(3)>span{transition-delay:.24s}

.hero__lead{max-width:44ch;margin-bottom:clamp(1.5rem,2.8vw,2.1rem)}
.hero__actions{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center}

.hero__fade{
  opacity:0;transform:translateY(1.4rem);
  transition:opacity .9s var(--ease),transform .9s var(--ease);
}
.is-ready .hero__fade{opacity:1;transform:none}
.is-ready .hero__lead{transition-delay:.42s}
.is-ready .hero__actions{transition-delay:.52s}
.is-ready .hero__proof{transition-delay:.62s}
.is-ready .hero__eyebrow{transition-delay:.3s}

.hero__proof{
  display:flex;align-items:center;gap:1rem;
  margin-top:clamp(1.4rem,2.8vw,2.1rem);
  padding-top:clamp(1.1rem,2.2vw,1.5rem);
  border-top:1px solid var(--ink-line);
  max-width:34rem;
}
.stack{display:flex}
.stack img{
  width:38px;height:38px;border-radius:50%;object-fit:cover;
  border:2px solid var(--ink);
  margin-left:-11px;
}
.stack img:first-child{margin-left:0}
.hero__proof p{font-size:.8125rem;line-height:1.45;color:rgba(244,241,234,.62)}
.hero__proof strong{color:var(--bone);font-weight:600;display:block}
.stars{display:flex;gap:2px;margin-bottom:.2rem}
.stars svg{width:12px;height:12px;fill:var(--sand)}

.hero__side{
  display:flex;flex-direction:column;align-items:flex-end;gap:1.5rem;
  padding-bottom:.35rem;
}
.hero__badge{
  writing-mode:vertical-rl;
  font-size:var(--t-eyebrow);font-weight:600;letter-spacing:.22em;
  text-transform:uppercase;color:rgba(244,241,234,.4);
  display:flex;align-items:center;gap:1rem;
}
.hero__badge::before{content:"";width:1px;height:3.5rem;background:var(--ink-line)}
.scrolly{
  display:flex;flex-direction:column;align-items:center;gap:.55rem;
  font-size:.625rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(244,241,234,.4);
}
.scrolly i{
  display:block;width:1px;height:3.25rem;background:var(--ink-line);position:relative;overflow:hidden;
}
.scrolly i::after{
  content:"";position:absolute;inset:0;background:var(--sand);
  animation:scrolly 2.1s var(--ease-io) infinite;
}
@keyframes scrolly{
  0%{transform:translateY(-100%)}
  55%,100%{transform:translateY(100%)}
}

/* ---------- Ticker ---------- */
.ticker{
  background:var(--sand);color:var(--ink);
  padding-block:1.1rem;
  overflow:hidden;
  border-block:1px solid rgba(11,12,11,.14);
}
.ticker__track{
  display:flex;width:max-content;
  animation:tick 42s linear infinite;
}
.ticker:hover .ticker__track{animation-play-state:paused}
.ticker__group{
  display:flex;align-items:center;flex:none;
  padding-right:0;
}
.ticker__group span{
  display:inline-flex;align-items:center;
  font-size:.8125rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  padding-inline:1.6rem;
  white-space:nowrap;
}
.ticker__group span::after{
  content:"";width:5px;height:5px;border-radius:50%;
  background:rgba(11,12,11,.42);margin-left:1.6rem;
}
@keyframes tick{to{transform:translateX(-50%)}}

/* ---------- Stats ---------- */
.stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid var(--line);
}
.stat{
  padding:clamp(2rem,4vw,3.25rem) clamp(1rem,2.2vw,2rem) clamp(1.75rem,3vw,2.5rem);
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  position:relative;
}
.stat:last-child{border-right:none}
.stat__num{
  font-family:var(--f-display);
  font-size:clamp(2.75rem,6vw,5rem);
  line-height:.9;letter-spacing:-.03em;
  display:flex;align-items:baseline;gap:.06em;
  margin-bottom:.6rem;
}
.stat__num sup{
  font-family:var(--f-ui);font-size:.26em;font-weight:600;
  letter-spacing:.02em;color:var(--accent);
  align-self:flex-start;margin-top:.55em;
}
.stat__label{
  font-size:.75rem;font-weight:500;letter-spacing:.04em;
  color:var(--fg-soft);line-height:1.4;
}
.stat__num--word{
  font-size:clamp(2rem,4.2vw,3.4rem);
  color:var(--accent);
}
.stat--mark{position:relative}
.stat--mark::before{
  content:"";position:absolute;left:0;top:0;width:100%;height:2px;
  background:linear-gradient(90deg,var(--sand),transparent 78%);
}

/* ---------- Manifest / Problem ---------- */
.manifest__grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;background:var(--line);
  border-block:1px solid var(--line);
}
.manifest__cell{
  background:var(--bg);
  padding:clamp(2rem,3.4vw,3rem) clamp(1.5rem,2.4vw,2.5rem) clamp(2.25rem,4vw,3.5rem);
  display:flex;flex-direction:column;gap:1rem;
  transition:background-color .5s var(--ease);
}
.manifest__cell:hover{background:var(--surface)}
.manifest__idx{
  font-size:.6875rem;font-weight:600;letter-spacing:.18em;
  color:var(--accent);margin-bottom:.75rem;
}
.manifest__cell h3{
  font-family:var(--f-display);font-size:var(--t-h3);
  line-height:1.06;letter-spacing:-.02em;
}
.manifest__cell p{color:var(--fg-soft);font-size:.9375rem;line-height:1.65}
.manifest__note{
  margin-top:clamp(2.5rem,5vw,4rem);
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);
  gap:clamp(1.5rem,4vw,4rem);align-items:start;
}
.manifest__note .h2{max-width:16ch}

/* ---------- Transformation / Diptychon ---------- */
.transform__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
}

.dip{
  position:relative;
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(.6rem,1.4vw,1.1rem);
  align-items:start;
}
.dip__fig{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:var(--ink-3);
  box-shadow:0 2rem 4rem -1.75rem rgba(0,0,0,.75);
}
.dip__fig--a{margin-top:clamp(1.75rem,5vw,4rem)}
.dip__fig img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(1.02);
  transition:transform 1.2s var(--ease),filter .8s var(--ease);
}
.dip__fig--a img{object-position:center 14%;filter:grayscale(.35) contrast(.96) brightness(.9)}
.dip__fig--b img{object-position:45% center}
.dip:hover .dip__fig--a img{filter:grayscale(.55) contrast(.94) brightness(.82)}
.dip__fig:hover img{transform:scale(1.06)}
.dip__fig::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(11,12,11,0) 46%,rgba(11,12,11,.8) 100%);
}
.dip__cap{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  padding:clamp(.85rem,1.6vw,1.15rem);
  display:flex;flex-direction:column;gap:.15rem;
}
.dip__fig--b .dip__cap{align-items:flex-end;text-align:right}
.dip__cap b{
  font-size:.625rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(244,241,234,.62);
}
.dip__fig--b .dip__cap b{color:var(--sand)}
.dip__cap span{
  font-family:var(--f-display);font-size:clamp(1.1rem,2vw,1.5rem);
  line-height:1;letter-spacing:-.02em;color:var(--bone);
}
.dip__badge{
  position:absolute;z-index:3;
  left:50%;top:clamp(6.5rem,19vw,10.5rem);
  transform:translate(-50%,-50%) rotate(-4deg);
  display:grid;place-items:center;
  width:clamp(5.25rem,10vw,6.75rem);aspect-ratio:1;
  border-radius:50%;
  background:var(--sand);color:var(--ink);
  box-shadow:0 1.25rem 2.5rem -.75rem rgba(0,0,0,.65);
  text-align:center;line-height:1;
  transition:transform .7s var(--ease);
}
.dip:hover .dip__badge{transform:translate(-50%,-50%) rotate(2deg) scale(1.05)}
.dip__badge b{
  display:block;font-family:var(--f-display);
  font-size:clamp(1.35rem,2.6vw,1.85rem);letter-spacing:-.03em;
}
.dip__badge i{
  display:block;font-style:normal;
  font-size:.5625rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  margin-top:.2rem;opacity:.72;
}

.transform__copy .h2{margin-bottom:1.5rem;max-width:14ch}
.transform__facts{
  display:flex;flex-wrap:wrap;gap:0;
  margin:clamp(1.75rem,3vw,2.5rem) 0;
  border-top:1px solid var(--line);
}
.transform__fact{
  flex:1 1 8rem;
  padding:1.15rem 1.25rem 1.15rem 0;
  border-bottom:1px solid var(--line);
}
.transform__fact b{
  display:block;font-family:var(--f-display);
  font-size:clamp(1.6rem,3vw,2.35rem);line-height:1;letter-spacing:-.02em;
  margin-bottom:.3rem;
}
.transform__fact span{font-size:.75rem;color:var(--fg-faint);letter-spacing:.05em}
.quote-mark{
  font-family:var(--f-display);font-size:3.5rem;line-height:.6;
  color:var(--accent);display:block;margin-bottom:.35rem;opacity:.85;
}
.pull{
  font-family:var(--f-display);
  font-size:clamp(1.2rem,2vw,1.6rem);
  line-height:1.34;letter-spacing:-.015em;
  font-style:italic;
  color:var(--fg);
  max-width:32ch;
}

/* ---------- Methode (sticky steps) ---------- */
.method__grid{
  display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:clamp(2rem,5vw,5rem);align-items:start;
}
.method__sticky{position:sticky;top:calc(var(--header-h) + clamp(2rem,6vw,5rem))}
.method__sticky .h2{margin:1.25rem 0 1.5rem;max-width:11ch}
.method__steps{display:flex;flex-direction:column}
.step{
  display:grid;grid-template-columns:auto minmax(0,1fr);
  gap:clamp(1.25rem,3vw,2.5rem);
  padding-block:clamp(1.75rem,3.4vw,2.75rem);
  border-top:1px solid var(--line);
}
.step:last-child{border-bottom:1px solid var(--line)}
.step__n{
  font-family:var(--f-display);
  font-size:clamp(1.6rem,3vw,2.5rem);line-height:1;
  color:var(--accent);letter-spacing:-.02em;
  min-width:2.5ch;
}
.step h3{
  font-family:var(--f-display);font-size:var(--t-h3);
  line-height:1.08;letter-spacing:-.02em;margin-bottom:.7rem;
}
.step p{color:var(--fg-soft);font-size:.9375rem;max-width:46ch}
.step__meta{
  margin-top:1rem;display:flex;flex-wrap:wrap;gap:.45rem;
}
.chip{
  font-size:.6875rem;font-weight:500;letter-spacing:.04em;
  padding:.4rem .7rem;border-radius:100px;
  border:1px solid var(--line);color:var(--fg-soft);
}

/* ---------- Programme / Preise ---------- */
.plans{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(.85rem,1.6vw,1.35rem);
  align-items:stretch;
}
.plan{
  display:flex;flex-direction:column;
  padding:clamp(1.75rem,2.6vw,2.5rem);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--surface);
  position:relative;
  transition:transform .6s var(--ease),border-color .5s var(--ease),background-color .5s var(--ease);
}
.plan:hover{transform:translateY(-6px);border-color:rgba(198,168,125,.42)}
.plan--feature{
  background:var(--bone);color:var(--ink);border-color:transparent;
  box-shadow:0 2rem 4rem -1.5rem rgba(0,0,0,.55);
}
.plan--feature .plan__label,.plan--feature .plan__price small,
.plan--feature .plan__for,.plan--feature .plan__list li{color:rgba(11,12,11,.66)}
.plan--feature .plan__list li::before{background:var(--sand-deep)}
.plan--feature:hover{border-color:transparent}
.plan__flag{
  position:absolute;top:0;right:clamp(1.5rem,2.4vw,2.25rem);
  transform:translateY(-50%);
  font-size:.625rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  background:var(--sand);color:var(--ink);
  padding:.45rem .85rem;border-radius:100px;
}
.plan__label{
  font-size:.6875rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--fg-faint);margin-bottom:1rem;
}
.plan__name{
  font-family:var(--f-display);font-size:clamp(1.75rem,2.8vw,2.35rem);
  line-height:1;letter-spacing:-.025em;margin-bottom:.85rem;
}
.plan__for{font-size:.875rem;color:var(--fg-soft);margin-bottom:1.5rem;min-height:2.6em}
.plan__price{
  display:flex;align-items:baseline;gap:.4rem;
  font-family:var(--f-display);font-size:clamp(2.1rem,3.4vw,2.9rem);
  line-height:1;letter-spacing:-.03em;
  padding-bottom:1.4rem;margin-bottom:1.4rem;
  border-bottom:1px solid var(--line);
}
.plan--feature .plan__price{border-bottom-color:rgba(11,12,11,.12)}
.plan__price small{
  font-family:var(--f-ui);font-size:.75rem;font-weight:500;letter-spacing:0;
  color:var(--fg-faint);
}
.plan__list{display:flex;flex-direction:column;gap:.72rem;margin-bottom:1.9rem}
.plan__list li{
  position:relative;padding-left:1.5rem;
  font-size:.875rem;line-height:1.55;color:var(--fg-soft);
}
.plan__list li::before{
  content:"";position:absolute;left:0;top:.62em;
  width:.5rem;height:1px;background:var(--sand);
}
.plan__cta{margin-top:auto}
.plan--feature .btn--ghost{box-shadow:inset 0 0 0 1px rgba(11,12,11,.22);--btn-fg:var(--ink)}
.plan--feature .btn--ghost::after{background:var(--ink)}
.plan--feature .btn--ghost:hover{color:var(--bone)}
.plans__note{
  margin-top:clamp(1.5rem,3vw,2.25rem);
  font-size:.8125rem;color:var(--fg-faint);
  display:flex;flex-wrap:wrap;gap:.5rem 1.5rem;align-items:center;
}
.plans__note span{display:inline-flex;align-items:center;gap:.45rem}
.plans__note svg{width:14px;height:14px;stroke:var(--accent);fill:none;stroke-width:1.8}

/* ---------- Stimmen / Video ---------- */
.voices__grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(.85rem,2vw,1.5rem);
  max-width:46rem;margin-inline:auto;
}
.vcard{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--ink-2);
  aspect-ratio:9/16;
  cursor:pointer;
  isolation:isolate;
  border:1px solid var(--line);
}
.vcard img{
  width:100%;height:100%;object-fit:cover;object-position:center center;
  transition:transform 1.1s var(--ease),filter .6s var(--ease);
  filter:saturate(.9) contrast(1.03);
}
.vcard:hover img{transform:scale(1.045)}
.vcard::after{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg,rgba(11,12,11,.15) 0%,rgba(11,12,11,0) 35%,rgba(11,12,11,.85) 100%);
}
.vcard__play{
  position:absolute;top:50%;left:50%;z-index:2;
  width:74px;height:74px;margin:-37px 0 0 -37px;
  border-radius:50%;
  background:rgba(244,241,234,.14);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border:1px solid rgba(244,241,234,.3);
  display:grid;place-items:center;
  transition:transform .5s var(--ease),background-color .4s var(--ease);
}
.vcard:hover .vcard__play{transform:scale(1.1);background:var(--sand);border-color:transparent}
.vcard__play svg{width:20px;height:20px;fill:var(--bone);margin-left:3px;transition:fill .4s var(--ease)}
.vcard:hover .vcard__play svg{fill:var(--ink)}
.vcard__meta{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  padding:clamp(1.1rem,2vw,1.5rem);
  text-align:left;
}
.vcard__meta strong{
  display:block;font-family:var(--f-display);
  font-size:clamp(1.15rem,1.9vw,1.5rem);letter-spacing:-.015em;line-height:1.1;
  color:var(--bone);
}
.vcard__meta span{
  display:block;margin-top:.3rem;
  font-size:.6875rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(244,241,234,.6);
}

/* Lightbox */
.lb{
  position:fixed;inset:0;z-index:950;
  background:rgba(6,7,6,.94);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  display:grid;place-items:center;
  padding:clamp(1rem,4vw,3rem);
  opacity:0;visibility:hidden;
  transition:opacity .45s var(--ease),visibility .45s;
}
.lb.is-open{opacity:1;visibility:visible}
.lb__box{
  position:relative;
  max-width:min(94vw,26rem);
  width:100%;
  transform:scale(.96);
  transition:transform .55s var(--ease);
}
.lb.is-open .lb__box{transform:none}
.lb video{
  width:100%;height:auto;
  aspect-ratio:9/16;max-height:82svh;
  object-fit:cover;object-position:center center;
  border-radius:var(--radius-lg);
  background:#000;
  box-shadow:0 3rem 6rem -2rem rgba(0,0,0,.8);
}
.lb__close{
  position:absolute;top:-3.25rem;right:0;
  width:44px;height:44px;border-radius:50%;
  border:1px solid rgba(244,241,234,.25);
  display:grid;place-items:center;color:var(--bone);
  transition:background-color .35s var(--ease),color .35s var(--ease),border-color .35s var(--ease);
}
.lb__close:hover{background:var(--bone);color:var(--ink);border-color:transparent}
.lb__close svg{width:16px;height:16px;stroke:currentColor;stroke-width:1.8}

/* ---------- Über mich ---------- */
.about__grid{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
  gap:clamp(2rem,5vw,5rem);align-items:center;
}
.about__media{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  grid-template-rows:1fr 1fr;
  gap:clamp(.6rem,1.2vw,1rem);
}
.about__media figure{
  position:relative;overflow:hidden;
  border-radius:var(--radius-lg);background:var(--surface-2);
}
.about__media img{width:100%;height:100%;object-fit:cover}
.about__media figure:nth-child(1){grid-row:1/3;aspect-ratio:3/4.2}
/* Bilder 2+3 absolut positionieren, damit sie keine Eigenhöhe beisteuern —
   so bestimmt allein Bild 1 die Rasterhöhe und beide Spalten enden bündig. */
.about__media figure:nth-child(2),
.about__media figure:nth-child(3){min-height:0}
.about__media figure:nth-child(2) img,
.about__media figure:nth-child(3) img{position:absolute;inset:0}
.about__copy .h2{margin:1.25rem 0 1.5rem;max-width:13ch}
.about__copy p{color:var(--fg-soft);margin-bottom:1.05rem;max-width:48ch}
.creds{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;background:var(--line);
  border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
  margin-top:clamp(1.75rem,3vw,2.5rem);
}
.cred{background:var(--bg);padding:1.15rem 1.25rem}
.cred b{
  display:block;font-family:var(--f-display);font-size:1.5rem;
  line-height:1;letter-spacing:-.02em;margin-bottom:.35rem;
}
.cred span{font-size:.75rem;color:var(--fg-faint);line-height:1.4;display:block}
.sig{
  font-family:var(--f-display);font-style:italic;
  font-size:1.5rem;margin-top:1.75rem;color:var(--accent);
}

/* ---------- FAQ ---------- */
.faq__grid{
  display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
  gap:clamp(2rem,5vw,5rem);align-items:start;
}
.faq__list{border-top:1px solid var(--line)}
.acc{border-bottom:1px solid var(--line)}
.acc summary{
  list-style:none;cursor:pointer;
  display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;
  padding-block:clamp(1.15rem,2.2vw,1.6rem);
  font-family:var(--f-display);
  font-size:clamp(1.08rem,1.75vw,1.4rem);
  line-height:1.28;letter-spacing:-.015em;
  transition:color .35s var(--ease);
}
.acc summary::-webkit-details-marker{display:none}
.acc summary:hover{color:var(--accent)}
.acc__ico{
  flex:none;width:26px;height:26px;margin-top:.15rem;
  border:1px solid var(--line);border-radius:50%;
  display:grid;place-items:center;position:relative;
  transition:background-color .4s var(--ease),border-color .4s var(--ease);
}
.acc__ico::before,.acc__ico::after{
  content:"";position:absolute;background:currentColor;
  transition:transform .45s var(--ease),opacity .3s var(--ease);
}
.acc__ico::before{width:10px;height:1px}
.acc__ico::after{width:1px;height:10px}
.acc[open] .acc__ico{background:var(--accent);border-color:transparent;color:var(--bg)}
.acc[open] .acc__ico::after{transform:scaleY(0);opacity:0}
.acc__body{overflow:hidden}
.acc__body p{
  color:var(--fg-soft);font-size:.9375rem;max-width:56ch;
  padding-bottom:clamp(1.15rem,2.2vw,1.6rem);
}
@media (prefers-reduced-motion:no-preference){
  .acc[open] .acc__body{animation:accIn .5s var(--ease)}
}
@keyframes accIn{from{opacity:0;transform:translateY(-.5rem)}to{opacity:1;transform:none}}

/* ---------- Kontakt ---------- */
.cta{
  position:relative;overflow:hidden;
  background:var(--ink);
}
.cta__glow{
  position:absolute;left:50%;top:-30%;translate:-50% 0;
  width:min(120vw,70rem);aspect-ratio:1;
  background:radial-gradient(circle,rgba(198,168,125,.16) 0%,rgba(198,168,125,0) 62%);
  pointer-events:none;
}
.cta__head{text-align:center;margin-bottom:clamp(2.5rem,5vw,4rem);position:relative}
.cta__head .h2{margin:1.15rem auto 1.15rem;max-width:17ch}
.cta__head .lead{margin-inline:auto;max-width:52ch}
.cta__grid{
  display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,.85fr);
  gap:clamp(1.75rem,4vw,3.5rem);align-items:start;position:relative;
}

.form{
  display:grid;gap:1rem;
  padding:clamp(1.5rem,2.8vw,2.5rem);
  border:1px solid var(--line);border-radius:var(--radius-lg);
  background:var(--surface);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
}
.form__row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.field{position:relative;display:flex;flex-direction:column;gap:.45rem}
.field label{
  font-size:.6875rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--fg-faint);
}
.field input,.field select,.field textarea{
  width:100%;
  padding:.9rem 1rem;
  background:rgba(244,241,234,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--fg);
  font-size:.9375rem;
  transition:border-color .35s var(--ease),background-color .35s var(--ease);
}
.field textarea{resize:vertical;min-height:7rem}
.field select{
  appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C6A87D' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;background-size:11px;
  padding-right:2.5rem;
}
.field select option{background:var(--ink-2);color:var(--bone)}
.field input::placeholder,.field textarea::placeholder{color:rgba(244,241,234,.3)}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--sand);background:rgba(244,241,234,.07);
}
.field input:user-invalid,.field textarea:user-invalid{border-color:#C4574B}

.consent{
  display:flex;gap:.75rem;align-items:flex-start;
  font-size:.75rem;line-height:1.55;color:var(--fg-faint);
  cursor:pointer;
}
.consent input{
  appearance:none;flex:none;
  width:18px;height:18px;margin-top:.1rem;
  border:1px solid var(--line);border-radius:2px;
  display:grid;place-items:center;cursor:pointer;
  transition:background-color .3s var(--ease),border-color .3s var(--ease);
}
.consent input::after{
  content:"";width:9px;height:5px;
  border-left:1.6px solid var(--ink);border-bottom:1.6px solid var(--ink);
  transform:rotate(-45deg) scale(0);
  transition:transform .3s var(--ease);
}
.consent input:checked{background:var(--sand);border-color:var(--sand)}
.consent input:checked::after{transform:rotate(-45deg) scale(1)}
.consent a{color:var(--fg-soft);text-decoration:underline;text-underline-offset:3px}

.form__status{
  font-size:.8125rem;min-height:1.2em;
  color:var(--accent);
}

/* Direct channels */
.channels{display:flex;flex-direction:column;gap:.75rem}
.channel{
  display:flex;align-items:center;gap:1.05rem;
  padding:1.1rem 1.25rem;
  border:1px solid var(--line);border-radius:var(--radius-lg);
  background:var(--surface);
  transition:border-color .45s var(--ease),background-color .45s var(--ease),transform .45s var(--ease);
}
.channel:hover{border-color:rgba(198,168,125,.45);background:var(--surface-2);transform:translateX(4px)}

.channel__ico{
  flex:none;width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(198,168,125,.13);
  color:var(--sand);
  transition:background-color .45s var(--ease),color .45s var(--ease);
}
.channel:hover .channel__ico{background:var(--sand);color:var(--ink)}
.channel__ico svg{width:20px;height:20px;display:block;fill:currentColor}
.channel__ico svg[stroke]{fill:none}

.channel__txt{display:flex;flex-direction:column;gap:.15rem;min-width:0}
.channel__txt b{font-size:.9375rem;font-weight:600;line-height:1.3;color:var(--fg)}
.channel__txt small{font-size:.78125rem;line-height:1.4;color:var(--fg-faint)}

.channel__arr{
  flex:none;margin-left:auto;padding-left:.75rem;
  display:flex;align-items:center;color:var(--fg-faint);
  transition:transform .45s var(--ease),color .45s var(--ease);
}
.channel:hover .channel__arr{transform:translateX(4px);color:var(--sand)}
.channel__arr svg{width:16px;height:16px;display:block}
.channels__note{
  margin-top:.5rem;padding:1.15rem 1.35rem;
  border:1px dashed var(--line);border-radius:var(--radius-lg);
  font-size:.8125rem;color:var(--fg-faint);line-height:1.6;
}
.channels__note b{color:var(--fg);font-weight:600}

/* ---------- 10. Footer ---------- */
.footer{
  background:var(--ink);color:var(--bone);
  border-top:1px solid var(--ink-line);
  padding-block:clamp(3rem,6vw,5rem) clamp(1.75rem,3vw,2.5rem);
}
.footer__top{
  display:grid;grid-template-columns:minmax(0,1.3fr) repeat(3,minmax(0,.9fr));
  gap:clamp(1.75rem,4vw,3rem);
  padding-bottom:clamp(2.5rem,5vw,4rem);
  border-bottom:1px solid var(--ink-line);
}
.footer__brand p{
  color:rgba(244,241,234,.5);font-size:.875rem;max-width:32ch;margin-top:1.15rem;
}
.footer__col h4{
  font-size:.6875rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(244,241,234,.38);margin-bottom:1.15rem;
}
.footer__col ul{display:flex;flex-direction:column;gap:.65rem}
.footer__col a{
  font-size:.875rem;color:rgba(244,241,234,.72);
  transition:color .3s var(--ease),padding-left .35s var(--ease);
  display:inline-block;
}
.footer__col a:hover{color:var(--sand);padding-left:.3rem}
.footer__bottom{
  padding-top:clamp(1.5rem,3vw,2rem);
  display:flex;flex-wrap:wrap;gap:1rem 2rem;
  align-items:center;justify-content:space-between;
  font-size:.75rem;color:rgba(244,241,234,.4);
}
.footer__bottom nav{display:flex;flex-wrap:wrap;gap:1.35rem}
.footer__bottom a:hover{color:var(--bone)}
.footer__word{
  font-family:var(--f-display);
  font-size:clamp(3.5rem,17vw,15rem);
  line-height:.78;letter-spacing:-.04em;
  color:rgba(244,241,234,.045);
  text-align:center;
  margin-top:clamp(2rem,4vw,3rem);
  user-select:none;pointer-events:none;
  white-space:nowrap;
}

/* ---------- 11. Motion & reveals ---------- */
[data-reveal]{
  opacity:0;
  transform:translateY(2rem);
  transition:opacity .95s var(--ease),transform .95s var(--ease);
  transition-delay:var(--d,0s);
}
[data-reveal].is-in{opacity:1;transform:none}

[data-reveal="mask"]{
  opacity:1;transform:none;
  clip-path:inset(0 0 100% 0);
  transition:clip-path 1.15s var(--ease);
  transition-delay:var(--d,0s);
}
[data-reveal="mask"].is-in{clip-path:inset(0 0 0 0)}

[data-reveal="scale"]{
  opacity:0;transform:scale(1.06);
  transition:opacity 1.1s var(--ease),transform 1.4s var(--ease);
  transition-delay:var(--d,0s);
}
[data-reveal="scale"].is-in{opacity:1;transform:none}

.lines>*{overflow:hidden}
.lines>*>span{
  display:block;transform:translateY(105%);
  transition:transform 1s var(--ease);
  transition-delay:var(--d,0s);
}
.lines.is-in>*>span{transform:translateY(0)}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.001ms!important;animation-iteration-count:1!important;
    transition-duration:.001ms!important;scroll-behavior:auto!important;
  }
  [data-reveal],.lines>*>span,.hero__title .ln>span,.hero__fade{
    opacity:1!important;transform:none!important;clip-path:none!important;
  }
  .gate{display:none}
  .grain{animation:none}
}

/* ---------- 12. Responsive ---------- */
@media (max-width:1100px){
  .footer__top{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer__brand{grid-column:1/-1}
}
@media (max-width:1024px){
  :root{--header-h:68px}
  .header__cta .btn--back{display:inline-flex;padding:.72em 1.1em;font-size:.75rem}
  .nav{display:none}
  .burger{display:flex}
  .header__cta .btn{display:none}
  .hero__side{display:none}
  .hero__grid{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stat:nth-child(2n){border-right:none}
  .manifest__grid{grid-template-columns:1fr}
  .manifest__note{grid-template-columns:1fr}
  .transform__grid,.method__grid,.about__grid,.faq__grid,.cta__grid{grid-template-columns:1fr}
  .method__sticky{position:static}
  .about__media{max-width:34rem}
  .plans{grid-template-columns:1fr}
  .plan--feature{order:-1}
  .sec-head{grid-template-columns:1fr;align-items:start}
}
@media (max-width:760px){
  .voices__grid{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}

  /* Hero: Hochformat-Zuschnitt, kompakter Text, damit Philippos oben sichtbar bleibt */
  .hero{min-height:100svh}
  .hero__media img{object-position:center top;transform:none}
  .hero__scrim{
    background:linear-gradient(180deg,
      rgba(11,12,11,.44) 0%,
      rgba(11,12,11,.10) 17%,
      rgba(11,12,11,.66) 45%,
      rgba(11,12,11,.97) 78%);
  }
  .hero__title{font-size:clamp(2.4rem,11.5vw,3.1rem)}
  .hero__lead{font-size:.9375rem;line-height:1.55;max-width:34ch}
  .hero__eyebrow{font-size:.5625rem;letter-spacing:.16em;margin-bottom:.85rem}
  .hero__actions{gap:.6rem}
  .hero .btn--lg{padding:1em 1.6em;font-size:.875rem}
  .hero__proof{margin-top:1.1rem;padding-top:1rem;gap:.8rem;align-items:center}
  .hero__proof .stars{display:none}
  .hero__proof p{font-size:.75rem;line-height:1.4}
  .stack img{width:32px;height:32px;margin-left:-9px}
  .footer__top{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;align-items:flex-start}
  .transform__facts{flex-direction:column}
  .transform__fact{flex:0 0 auto;padding:.95rem 0}
}
@media (max-width:480px){
  .btn{width:100%}
  .hero__actions{flex-direction:column;align-items:stretch}
  .eyebrow{letter-spacing:.14em}
  .eyebrow::before{width:1.15rem}
  .stat{padding-inline:1.15rem}
  .plans__note{flex-direction:column;align-items:flex-start;gap:.55rem}
}

/* ---------- Rechtliche Seiten ---------- */
.legal{padding-top:calc(var(--header-h) + clamp(3.5rem,8vw,7rem))}
.legal__head{margin-bottom:clamp(2.5rem,5vw,4rem)}
.legal__head .h1{margin-top:1.15rem;max-width:14ch}
.prose{max-width:64ch}
.prose h2{
  font-family:var(--f-display);font-size:clamp(1.35rem,2.2vw,1.85rem);
  line-height:1.14;letter-spacing:-.02em;
  margin:clamp(2.25rem,4vw,3rem) 0 .9rem;
  padding-top:clamp(1.5rem,3vw,2rem);
  border-top:1px solid var(--line);
}
.prose h2:first-child{border-top:none;padding-top:0;margin-top:0}
.prose h3{
  font-size:1rem;font-weight:600;letter-spacing:-.005em;
  margin:1.75rem 0 .5rem;
}
.prose p,.prose li{color:var(--fg-soft);font-size:.9375rem;line-height:1.75}
.prose p{margin-bottom:1rem}
.prose ul{margin:0 0 1rem;padding-left:1.15rem;list-style:disc}
.prose li{margin-bottom:.4rem}
.prose a{color:var(--accent);text-decoration:underline;text-underline-offset:3px}
.prose strong{color:var(--fg);font-weight:600}
.prose address{font-style:normal;color:var(--fg-soft);line-height:1.8}
.todo{
  border:1px dashed rgba(198,168,125,.5);
  border-radius:var(--radius-lg);
  padding:1.15rem 1.35rem;margin-bottom:2rem;
  font-size:.8125rem;line-height:1.65;color:var(--fg-soft);
  background:rgba(198,168,125,.06);
}
.todo b{color:var(--accent);display:block;margin-bottom:.35rem;letter-spacing:.08em;text-transform:uppercase;font-size:.6875rem}


/* ============================================================
   13. Kein Verzicht
   ============================================================ */
.free{position:relative;overflow:hidden}
.free__glow{
  position:absolute;right:-14%;top:-18%;
  width:min(90vw,44rem);aspect-ratio:1;pointer-events:none;
  background:radial-gradient(circle,rgba(198,168,125,.15) 0%,rgba(198,168,125,0) 64%);
}
.free__grid{
  position:relative;
  display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
  gap:clamp(2rem,5vw,4.5rem);align-items:center;
}
.free__copy .h2{margin:1.15rem 0 1.5rem;max-width:15ch}
.free__copy p+p{margin-top:1.05rem}
.free__copy .lead{max-width:52ch}
.free__cta{margin-top:clamp(1.5rem,2.6vw,2rem)}

.free__card{
  position:relative;
  padding:clamp(1.85rem,3.4vw,2.75rem);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:linear-gradient(160deg,rgba(198,168,125,.10),rgba(244,241,234,.02));
  overflow:hidden;
}
.free__card::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 1px 0 rgba(244,241,234,.08);
}
.free__label{
  font-size:.6875rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--fg-faint);margin-bottom:1.1rem;
}
.free__big{
  font-family:var(--f-display);
  font-size:clamp(3.25rem,7.5vw,5.5rem);
  line-height:.9;letter-spacing:-.035em;
  color:var(--sand);
  margin-bottom:1.1rem;
}
.free__note{
  font-size:.9375rem;line-height:1.6;color:var(--fg-soft);
  padding-top:1.1rem;border-top:1px solid var(--line);
}

.cloud{
  display:flex;flex-wrap:wrap;gap:.55rem;
  margin-top:clamp(2.5rem,5vw,4rem);
  padding-top:clamp(2rem,4vw,3rem);
  border-top:1px solid var(--line);
}
.cloud li{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.62rem 1.05rem;border-radius:100px;
  border:1px solid var(--line);
  background:var(--surface);
  font-size:.875rem;font-weight:450;color:var(--fg-soft);
  transition:border-color .4s var(--ease),color .4s var(--ease),
             background-color .4s var(--ease),transform .4s var(--ease);
}
.cloud li:hover{
  border-color:rgba(198,168,125,.5);color:var(--fg);
  background:var(--surface-2);transform:translateY(-2px);
}
.cloud li svg{
  width:13px;height:13px;flex:none;
  stroke:var(--sand);fill:none;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round;
}
.cloud__more{
  align-self:center;margin-left:.35rem;
  font-size:.8125rem;color:var(--fg-faint);
}

.foodtrio{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(.45rem,1.1vw,.8rem);align-items:start;
}
.foodtrio figure{
  position:relative;aspect-ratio:4/5;overflow:hidden;
  border-radius:var(--radius-lg);background:var(--ink-3);
  border:1px solid var(--line);
  box-shadow:0 1.75rem 3.5rem -1.75rem rgba(0,0,0,.7);
}
.foodtrio{gap:clamp(.6rem,1.5vw,1.1rem)}
.foodtrio figure:nth-child(1){margin-top:clamp(1.5rem,4vw,3.25rem)}
.foodtrio figure:nth-child(3){margin-top:clamp(.75rem,2.2vw,1.75rem)}
.foodtrio img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.15s var(--ease);
}
.foodtrio figure:hover img{transform:scale(1.06)}
.foodtrio figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:2rem .7rem .65rem;
  font-size:.5625rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  color:var(--bone);text-align:center;
  background:linear-gradient(180deg,rgba(11,12,11,0),rgba(11,12,11,.88));
}

/* Beispieltag */
.day{
  margin-top:clamp(2.5rem,5vw,4rem);
  display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
  gap:clamp(1.5rem,4vw,3.5rem);align-items:start;
  padding-top:clamp(2rem,4vw,3rem);
  border-top:1px solid var(--line);
}
.day__intro h3{
  font-family:var(--f-display);font-size:var(--t-h3);
  line-height:1.08;letter-spacing:-.02em;margin:.9rem 0 .9rem;
}
.day__intro p{font-size:.9375rem;color:var(--fg-soft);max-width:38ch}
.day__list{display:flex;flex-direction:column}
.day__row{
  display:grid;grid-template-columns:4.5rem minmax(0,1fr) auto;
  gap:clamp(.75rem,2vw,1.5rem);align-items:baseline;
  padding-block:1.05rem;
  border-top:1px solid var(--line);
}
.day__row:last-child{border-bottom:1px solid var(--line)}
.day__row--hero{background:rgba(198,168,125,.07);margin-inline:-1rem;padding-inline:1rem}
.day__time{
  font-family:var(--f-display);font-size:1.15rem;letter-spacing:-.01em;
  color:var(--accent);font-variant-numeric:tabular-nums;
}
.day__meal b{display:block;font-size:.9375rem;font-weight:600;margin-bottom:.2rem}
.day__meal span{font-size:.8125rem;color:var(--fg-faint);line-height:1.45}
.day__tag{
  font-size:.5625rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  padding:.35rem .6rem;border-radius:100px;
  border:1px solid var(--line);color:var(--fg-faint);white-space:nowrap;
}
.day__row--hero .day__tag{background:var(--sand);color:var(--ink);border-color:transparent}
.day__note{
  margin-top:1.15rem;font-size:.8125rem;color:var(--fg-faint);
  display:flex;gap:.55rem;align-items:flex-start;line-height:1.55;
}
.day__note svg{width:14px;height:14px;flex:none;margin-top:.2rem;stroke:var(--sand);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* Für wen */
.fit__grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;background:var(--line);
  border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
}
.fit__col{background:var(--bg);padding:clamp(1.6rem,3vw,2.5rem)}
.fit__col h3{
  display:flex;align-items:center;gap:.65rem;
  font-family:var(--f-display);font-size:var(--t-h3);
  line-height:1.1;letter-spacing:-.02em;margin-bottom:1.35rem;
}
.fit__badge{
  flex:none;width:26px;height:26px;border-radius:50%;
  display:grid;place-items:center;
}
.fit__badge svg{width:13px;height:13px;stroke-width:2.4;fill:none;stroke-linecap:round;stroke-linejoin:round}
.fit__col--yes .fit__badge{background:rgba(198,168,125,.16);color:var(--sand)}
.fit__col--no .fit__badge{background:rgba(244,241,234,.07);color:var(--fg-faint)}
.fit__col--no .fit__badge svg{stroke:currentColor}
.fit__col--yes .fit__badge svg{stroke:currentColor}
.fit__col ul{display:flex;flex-direction:column;gap:.85rem}
.fit__col li{
  position:relative;padding-left:1.35rem;
  font-size:.9375rem;line-height:1.55;color:var(--fg-soft);
}
.fit__col li::before{
  content:"";position:absolute;left:0;top:.62em;
  width:.5rem;height:1px;background:var(--sand);
}
.fit__col--no li::before{background:rgba(244,241,234,.25)}

.snap{
  display:grid;grid-template-columns:5.5rem minmax(0,1fr);
  gap:1.1rem;align-items:center;
  margin-top:clamp(1.75rem,3vw,2.5rem);
  padding-top:clamp(1.25rem,2.4vw,1.75rem);
  border-top:1px solid var(--line);
}
.snap img{
  width:100%;aspect-ratio:1;object-fit:cover;object-position:center 38%;
  border-radius:var(--radius-lg);
  filter:grayscale(.3) contrast(.97);
}
.snap figcaption{font-size:.8125rem;line-height:1.5;color:var(--fg-faint);max-width:40ch}
.snap figcaption b{
  display:block;font-size:.625rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--accent);margin-bottom:.3rem;
}

/* ============================================================
   14. Garantie-Band
   ============================================================ */
.guarantee{
  display:grid;grid-template-columns:auto minmax(0,1fr);
  gap:clamp(1.25rem,3vw,2.25rem);align-items:center;
  margin-top:clamp(1.75rem,3.5vw,2.75rem);
  padding:clamp(1.5rem,3vw,2.25rem);
  border:1px solid rgba(198,168,125,.34);
  border-radius:var(--radius-lg);
  background:linear-gradient(120deg,rgba(198,168,125,.11),rgba(198,168,125,.02));
}
.guarantee__seal{
  flex:none;width:clamp(3.25rem,6vw,4.25rem);aspect-ratio:1;
  border-radius:50%;
  display:grid;place-items:center;
  background:var(--sand);color:var(--ink);
}
.guarantee__seal svg{width:46%;height:46%;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.guarantee h3{
  font-family:var(--f-display);
  font-size:clamp(1.3rem,2.4vw,1.85rem);
  line-height:1.1;letter-spacing:-.02em;margin-bottom:.5rem;
}
.guarantee p{font-size:.9375rem;color:var(--fg-soft);max-width:62ch}

/* ============================================================
   15. Wunschtermin
   ============================================================ */
.slots{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:rgba(198,168,125,.05);
  padding:clamp(1.15rem,2.2vw,1.5rem);
  display:grid;gap:1rem;
}
.slots__head{display:flex;flex-wrap:wrap;gap:.35rem 1rem;align-items:baseline}
.slots__title{
  font-size:.6875rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--accent);
}
.slots__hint{font-size:.75rem;color:var(--fg-faint);line-height:1.45}

.slots__scroll{
  display:flex;gap:.45rem;
  overflow-x:auto;padding-bottom:.35rem;
  scrollbar-width:thin;scrollbar-color:rgba(198,168,125,.4) transparent;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
}
.slots__scroll::-webkit-scrollbar{height:4px}
.slots__scroll::-webkit-scrollbar-thumb{background:rgba(198,168,125,.35);border-radius:4px}

.slot-day{
  flex:none;scroll-snap-align:start;
  min-width:4.15rem;padding:.6rem .55rem;
  border:1px solid var(--line);border-radius:var(--radius-lg);
  background:rgba(244,241,234,.03);
  text-align:center;line-height:1.15;
  transition:border-color .3s var(--ease),background-color .3s var(--ease),color .3s var(--ease);
}
.slot-day b{
  display:block;font-size:.625rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--fg-faint);margin-bottom:.25rem;
  transition:color .3s var(--ease);
}
.slot-day span{
  display:block;font-family:var(--f-display);font-size:1.15rem;
  letter-spacing:-.02em;color:var(--fg);
}
.slot-day:hover{border-color:rgba(198,168,125,.45);background:rgba(244,241,234,.06)}
.slot-day[aria-checked="true"]{
  background:var(--sand);border-color:var(--sand);
}
.slot-day[aria-checked="true"] b{color:rgba(11,12,11,.62)}
.slot-day[aria-checked="true"] span{color:var(--ink)}

.slots__times{display:flex;flex-wrap:wrap;gap:.45rem}
.slot-time{
  padding:.55rem .95rem;border-radius:100px;
  border:1px solid var(--line);
  background:rgba(244,241,234,.03);
  font-size:.8125rem;font-weight:500;color:var(--fg-soft);
  font-variant-numeric:tabular-nums;
  transition:border-color .3s var(--ease),background-color .3s var(--ease),color .3s var(--ease);
}
.slot-time:hover{border-color:rgba(198,168,125,.45);color:var(--fg)}
.slot-time[aria-checked="true"]{background:var(--sand);border-color:var(--sand);color:var(--ink);font-weight:600}

.slots__picked{
  font-size:.8125rem;line-height:1.5;color:var(--fg-faint);
  padding-top:.85rem;border-top:1px solid var(--line);
  display:flex;align-items:flex-start;gap:.5rem;
}
.slots__picked.is-set{color:var(--fg)}
.slots__picked b{color:var(--accent);font-weight:600}
.slots__picked svg{width:14px;height:14px;flex:none;margin-top:.25rem;stroke:var(--sand);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

@media (max-width:1024px){
  .free__grid{grid-template-columns:1fr}
  .guarantee{grid-template-columns:1fr;text-align:left}
  .day{grid-template-columns:1fr}
  .fit__grid{grid-template-columns:1fr}
}
@media (max-width:560px){
  .day__row{grid-template-columns:3.5rem minmax(0,1fr);row-gap:.5rem}
  .day__tag{grid-column:2;justify-self:start}
  .foodtrio figcaption{letter-spacing:.1em;font-size:.5rem;padding:1.5rem .35rem .5rem}
}
