/* ──────────────────────────────────────────────────────────────────
   gastro-motivator.de — Site Styles
   Welt C "Kantinenschild" · Reset + Base + Components + Sections
   Tokens: assets/css/tokens.css
   ────────────────────────────────────────────────────────────────── */

/* ─────────── Reset ─────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─────────── Public Sans uppercase labels — semibold ─────────── */
.nav a, .hero-eyebrow, .section-eyebrow, .step-num,
.for-line .marker, .voice-meta, .more-card .label,
.footer-col h4, .footer-bottom { font-weight: 600; }
.voice-meta strong { font-weight: 700; }

/* ─────────── Container ─────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ─────────── Header (sticky, silent) ─────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 236, 218, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand .dot { color: var(--sienna); }
.nav {
  display: flex; gap: 32px;
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--sienna); }

/* Mobile nav: hamburger toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
@media (max-width: 800px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
    color: var(--ink);
  }
  /* Mobile-Nav: einfaches Dark-Dropdown unter dem Header */
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-top: 1px solid rgba(244, 236, 218, 0.1);
    z-index: 49;
    padding: 8px 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .nav.open { display: flex; }
  .nav a {
    display: block;
    padding: 18px var(--gap);
    color: var(--bone) !important;
    background: transparent;
    border-bottom: 1px solid rgba(244, 236, 218, 0.1);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a:hover, .nav a:focus, .nav a:active {
    background: var(--sienna);
    color: var(--bone) !important;
  }
}

/* ─────────── Hero ─────────── */
.hero {
  padding: clamp(80px, 14vh, 180px) 0 clamp(80px, 12vh, 140px);
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna-deep);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title em {
  font-style: normal;
  color: var(--sienna);
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  max-width: 720px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
}

/* ─────────── Buttons ─────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--sienna);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover, .btn-primary:focus { background: var(--sienna-deep); }
.btn-primary .arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.secondary-paths {
  display: flex; gap: 24px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.secondary-paths a {
  color: var(--ink-mute);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.secondary-paths a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ─────────── Section shell ─────────── */
section { padding: clamp(80px, 12vh, 140px) 0; }
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 800px;
}
.section-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ─────────── Wer ich bin (mit Portrait) ─────────── */
.who {
  background: var(--bone-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.who-portrait {
  position: relative;
}
.who-portrait img {
  width: 100%;
  filter: grayscale(0.18) contrast(1.04);
  border-bottom: 4px solid var(--sienna);
}
.who-text p {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}
.who-text p:last-child { margin-bottom: 0; color: var(--ink-soft); }
@media (max-width: 800px) { .who-grid { grid-template-columns: 1fr; } }

/* ─────────── Wie ich arbeite — three steps ─────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  margin-top: 64px;
}
.step {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.step-num {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--sienna);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.step-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─────────── Wofür ich da bin (Ink-invertiert) ─────────── */
.for {
  background: var(--ink);
  color: var(--bone);
}
.for .section-eyebrow { color: var(--olive-soft); }
.for .section-title { color: var(--bone); }
.for-lines {
  margin-top: 56px;
  max-width: 900px;
}
.for-line {
  display: flex; align-items: baseline;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(244, 236, 218, 0.15);
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--bone);
  font-weight: 300;
}
.for-line:first-child { border-top: 1px solid rgba(244, 236, 218, 0.15); }
.for-line .marker {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--sienna);
  min-width: 64px;
  flex-shrink: 0;
  text-transform: uppercase;
}

/* ─────────── Drei Stimmen — testimonials ─────────── */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: 56px;
}
.voice {
  background: var(--bone-2);
  padding: 36px 32px;
  border-left: 3px solid var(--olive);
}
.voice-quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}
.voice-meta {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.6;
}
.voice-meta strong { color: var(--ink); display: block; }
@media (max-width: 800px) { .voices-grid { grid-template-columns: 1fr; } }

/* ─────────── Außerdem — secondary paths cards ─────────── */
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-strong);
}
.more-card {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background .2s, padding-left .2s;
  display: block;
}
.more-card:last-child { border-right: none; }
.more-card:hover { background: var(--bone-2); padding-left: 16px; }
.more-card .label {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--sienna);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.more-card .title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.more-card .desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 800px) {
  .more-grid { grid-template-columns: 1fr; }
  .more-card { border-right: none; padding: 32px 0; }
}

/* ─────────── Footer ─────────── */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 236, 218, 0.15);
}
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-brand .dot { color: var(--sienna); }
.footer-tag {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244, 236, 218, 0.7);
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--bone);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--sienna); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 218, 0.5);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--sienna); }
.footer-bottom .legal { display: flex; gap: 24px; }
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
