/* =============================================================
   IFS – Institut für Stressabbau, Hannover · Relaunch
   Design system & styles  (Bordeaux · Salbei · Sand)
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand – signature bordeaux (aus dem Original-Intro) */
  --red-900: #5c1212;
  --red-800: #7a1a1a;
  --red-700: #8f1d1d;   /* primary */
  --red-600: #a52828;
  --red-100: #f4e0dc;
  --red-050: #fbf1ef;

  /* Salbei – ruhige, heilende Sekundärfarbe */
  --sage-800: #33463b;
  --sage-700: #3f5647;
  --sage-600: #4f6a58;
  --sage-500: #6c8874;
  --sage-100: #e3ede6;
  --sage-050: #f0f5f1;

  /* Warme Neutraltöne */
  --sand-050: #faf6f0;
  --sand-100: #f3ece1;
  --sand-200: #e8ddcd;
  --cream: #fffdf9;

  --ink-900: #241d1b;
  --ink-700: #463c39;
  --ink-500: #6d605b;
  --ink-300: #9a8d87;

  --white: #ffffff;

  /* Semantic */
  --bg: var(--sand-050);
  --surface: var(--cream);
  --text: var(--ink-900);
  --text-soft: var(--ink-700);
  --text-mute: var(--ink-500);
  --primary: var(--red-700);
  --accent: var(--sage-600);
  --line: rgba(36, 29, 27, 0.10);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing / radius */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(92, 18, 18, 0.06);
  --shadow: 0 14px 40px -18px rgba(60, 25, 22, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(60, 25, 22, 0.38);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.14rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.6rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.8rem, 5vw, 4.5rem); }
.narrow { max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--center::before { display: none; }

.section-title { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem); margin-top: 0.7rem; }
.section-lead { font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem); color: var(--text-soft); margin-top: 1.1rem; }

.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 650; font-size: 1.02rem;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  border: 2px solid transparent; text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 12px 26px -12px rgba(143, 29, 29, 0.7); }
.btn--primary:hover { background: var(--red-800); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(143, 29, 29, 0.7); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(79, 106, 88, 0.75); }
.btn--accent:hover { background: var(--sage-700); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(79, 106, 88, 0.75); }
.btn--ghost { background: transparent; color: var(--primary); border-color: rgba(143, 29, 29, 0.28); }
.btn--ghost:hover { background: var(--red-050); border-color: var(--primary); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--primary); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled { background: rgba(250, 246, 240, 0.95); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 84px; transition: height 0.3s var(--ease); }
.site-header.is-scrolled .header-inner { height: 70px; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 50px; width: auto; transition: height 0.3s var(--ease); }
.site-header.is-scrolled .brand img { height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 1.16rem; color: var(--red-800); letter-spacing: -0.01em; }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-600); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  position: relative; padding: 0.5rem 0.85rem; border-radius: 999px;
  color: var(--text-soft); font-weight: 550; font-size: 0.98rem;
  transition: color 0.2s, background 0.2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.32rem; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--red-800); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--red-800); }
.nav a.is-active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 0.7rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--red-800); white-space: nowrap; }
.header-phone svg { width: 1.1em; height: 1.1em; color: var(--accent); }

.nav-toggle { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 200;
  background: var(--surface); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.42s var(--ease);
  display: flex; flex-direction: column; padding: 1.5rem 1.4rem 2rem; gap: 0.4rem;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.mobile-nav-head strong { font-family: var(--font-display); color: var(--red-800); font-size: 1.2rem; }
.mobile-nav a { padding: 0.9rem 0.6rem; border-radius: 12px; font-size: 1.1rem; font-weight: 600; color: var(--ink-900); border-bottom: 1px solid var(--line); }
.mobile-nav a:hover, .mobile-nav a.is-active { background: var(--red-050); color: var(--red-800); }
.mobile-nav .btn { margin-top: 1.1rem; }
.scrim { position: fixed; inset: 0; z-index: 150; background: rgba(36, 29, 27, 0.44); opacity: 0; visibility: hidden; transition: opacity 0.35s; }
.scrim.is-open { opacity: 1; visibility: visible; }
.icon-btn { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--red-800); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 7rem); }
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(120% 90% at 82% 6%, var(--red-050) 0%, transparent 55%),
    radial-gradient(90% 80% at 6% 94%, var(--sage-050) 0%, transparent 52%),
    var(--sand-050); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-title { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.3rem); }
.hero-title em { font-style: normal; color: var(--primary); position: relative; }
.hero-title .u { background: linear-gradient(transparent 66%, var(--sage-100) 0); }
.hero-lead { font-size: clamp(1.12rem, 1rem + 0.5vw, 1.38rem); color: var(--text-soft); margin-top: 1.3rem; max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--text-soft); font-size: 0.98rem; }
.hero-trust svg { width: 1.3em; height: 1.3em; color: var(--accent); flex: none; }

/* Hero visual: breathing balance emblem */
.hero-visual { position: relative; }
.hero-card {
  position: relative; background: linear-gradient(165deg, #fff, var(--sand-050));
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.7);
}
.hero-emblem { width: 100%; height: auto; display: block; }
.breathe { transform-box: fill-box; transform-origin: center; animation: breathe 7s ease-in-out infinite; }
.breathe--2 { animation-delay: -2.3s; }
.breathe--3 { animation-delay: -4.6s; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.06); opacity: 0.5; } }

.hero-badge {
  position: absolute; background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.7rem;
}
.hero-badge strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--red-800); display: block; line-height: 1; }
.hero-badge span { font-size: 0.8rem; color: var(--text-mute); }
.hero-badge .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero-badge--tl { top: 5%; left: -4%; }
.hero-badge--br { bottom: 7%; right: -5%; }
.hero-badge .ic--red { background: var(--red-100); color: var(--red-700); }
.hero-badge .ic--sage { background: var(--sage-100); color: var(--sage-600); }
.hero-badge svg { width: 22px; height: 22px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--red-900); color: #f0dedb; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem 2rem; padding-block: 1.3rem; }
.trust-strip p { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; font-size: 0.98rem; }
.trust-strip svg { width: 1.4em; height: 1.4em; color: var(--sage-500); flex: none; }

/* ---------- Services / Methoden grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.svc-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.svc-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--sage-050); color: var(--sage-600); margin-bottom: 1.15rem; transition: background 0.4s, color 0.4s; }
.svc-card:hover .svc-ic { background: var(--red-050); color: var(--red-700); }
.svc-ic svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.svc-card p { color: var(--text-soft); font-size: 0.99rem; }
.svc-card .svc-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-weight: 650; font-size: 0.94rem; color: var(--red-700); }
.svc-card .svc-more svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; }
.quote-card {
  background: linear-gradient(160deg, var(--red-800), var(--red-900));
  color: #f6e7e4; border-radius: var(--radius-xl); padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.quote-card::before { content: "\201C"; position: absolute; top: -0.3rem; left: 1.4rem; font-family: var(--font-display); font-size: 9rem; color: rgba(108, 136, 116, 0.4); line-height: 1; }
.quote-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; position: relative; }
.quote-card p { position: relative; font-size: 1.14rem; line-height: 1.72; }
.quote-sign { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.8rem; position: relative; }
.quote-sign .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-500); display: grid; place-items: center; color: #fff; flex: none; }
.quote-sign strong { display: block; color: #fff; }
.quote-sign span { font-size: 0.88rem; color: #e3b9b3; }

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .ck { width: 30px; height: 30px; border-radius: 50%; background: var(--sage-100); color: var(--sage-600); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feature-list .ck svg { width: 17px; height: 17px; }
.feature-list strong { display: block; color: var(--ink-900); font-size: 1.06rem; }
.feature-list p { color: var(--text-soft); font-size: 0.98rem; margin-top: 0.15rem; }

/* ---------- Steps / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 3rem; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; position: relative; box-shadow: var(--shadow-sm); }
.step-num { counter-increment: step; font-family: var(--font-display); font-size: 2.4rem; color: var(--sage-500); line-height: 1; }
.step-num::before { content: "0" counter(step); }
.step h3 { font-size: 1.16rem; margin: 0.6rem 0 0.4rem; }
.step p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Stats / facts ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat { text-align: center; padding: 1.2rem; }
.stat b { font-family: var(--font-display); font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); color: var(--red-800); display: block; line-height: 1; }
.stat span { color: var(--text-mute); font-weight: 600; margin-top: 0.5rem; display: block; font-size: 0.98rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 3rem; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; gap: 1.4rem; align-items: flex-start; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-portrait { width: 96px; height: 96px; border-radius: 20px; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, var(--red-100), var(--sage-100)); font-family: var(--font-display); font-size: 2rem; color: var(--red-800); position: relative; overflow: hidden; }
.team-portrait span { position: relative; z-index: 1; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.15rem; }
.team-role { color: var(--sage-600); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.team-card p { color: var(--text-soft); font-size: 0.98rem; margin-top: 0.7rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.team-tags span { font-size: 0.78rem; font-weight: 600; color: var(--red-700); background: var(--red-050); border: 1px solid var(--red-100); padding: 0.25rem 0.65rem; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(135deg, var(--red-700), var(--red-900));
  border-radius: var(--radius-xl); padding: clamp(2.4rem, 5vw, 4rem);
  color: #f6e7e4; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
.cta-inner p { margin-top: 0.9rem; font-size: 1.1rem; color: #eccfcb; }
.cta-actions { display: flex; flex-direction: column; gap: 0.9rem; }
.cta-actions .btn { width: 100%; }
.cta-phone { font-family: var(--font-display); font-size: 1.5rem; color: #fff; display: inline-flex; align-items: center; gap: 0.7rem; }
.cta-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(108,136,116,0.5), transparent 70%); top: -120px; right: -80px; }

/* ---------- Content pages (prose) ---------- */
.page-hero { background:
    radial-gradient(120% 100% at 85% 0%, var(--red-050) 0%, transparent 55%),
    radial-gradient(80% 90% at 5% 100%, var(--sage-050) 0%, transparent 55%),
    var(--sand-050);
  padding-block: clamp(2.8rem, 6vw, 4.6rem) clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { font-size: 0.9rem; color: var(--text-mute); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--text-mute); }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
.page-hero p { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem); color: var(--text-soft); margin-top: 1rem; max-width: 62ch; }

.prose { max-width: 800px; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); margin-top: 2.6rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8rem; margin-bottom: 0.5rem; color: var(--red-800); }
.prose p { margin-bottom: 1.05rem; color: var(--text-soft); }
.prose ul { margin: 0 0 1.2rem; padding-left: 0; list-style: none; display: grid; gap: 0.7rem; }
.prose ul li { position: relative; padding-left: 1.9rem; color: var(--text-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0.2rem; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.prose strong { color: var(--ink-900); }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* Method detail blocks */
.method { display: grid; grid-template-columns: 88px 1fr; gap: 1.5rem; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); scroll-margin-top: 100px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.method:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.method + .method { margin-top: 1.4rem; }
.method-ic { width: 88px; height: 88px; border-radius: 20px; display: grid; place-items: center; background: var(--sage-050); color: var(--sage-600); }
.method-ic svg { width: 40px; height: 40px; }
.method:nth-child(even) .method-ic { background: var(--red-050); color: var(--red-700); }
.method h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.method .method-sub { color: var(--sage-600); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.method p { color: var(--text-soft); margin-top: 0.7rem; }
.method .method-for { margin-top: 0.9rem; font-size: 0.92rem; color: var(--ink-500); }
.method .method-for strong { color: var(--red-800); }

/* Info cards */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 2rem; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card .tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-600); background: var(--sage-100); padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 0.9rem; }
.info-card h3 { font-size: 1.28rem; margin-bottom: 0.5rem; color: var(--ink-900); }
.info-card p { color: var(--text-soft); font-size: 0.99rem; }

/* Accordion */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.acc + .acc { margin-top: 1rem; }
.acc summary { list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-size: 1.18rem; color: var(--ink-900); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--sage-050); color: var(--sage-600); display: grid; place-items: center; flex: none; transition: transform 0.35s var(--ease), background 0.3s; }
.acc[open] summary .chev { transform: rotate(180deg); background: var(--red-050); color: var(--red-600); }
.acc .acc-body { padding: 0 1.5rem 1.4rem; color: var(--text-soft); }
.acc .acc-body p { margin-bottom: 0.8rem; }

/* Callout (Platzhalter-Hinweis) */
.callout { background: var(--sage-050); border: 1px solid var(--sage-100); border-left: 4px solid var(--sage-500); border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; color: var(--ink-700); font-size: 0.95rem; margin: 1.2rem 0; }
.callout strong { color: var(--sage-700); }
.ph { color: var(--red-700); font-style: normal; background: var(--red-050); padding: 0.05em 0.4em; border-radius: 6px; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.contact-info { display: grid; gap: 1.1rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.contact-line .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-050); color: var(--sage-600); display: grid; place-items: center; flex: none; }
.contact-line .ic svg { width: 22px; height: 22px; }
.contact-line span { display: block; font-size: 0.82rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.contact-line strong { font-size: 1.1rem; color: var(--ink-900); font-weight: 650; }
.contact-line a { color: var(--ink-900); }
.contact-line a:hover { color: var(--primary); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 650; margin-bottom: 0.4rem; color: var(--ink-900); font-size: 0.98rem; }
.field label .req { color: var(--red-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--sand-200); border-radius: 12px;
  background: var(--sand-050); font: inherit; color: var(--ink-900); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(143, 29, 29, 0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--text-mute); margin-bottom: 1.2rem; }
.form-consent input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--primary); flex: none; }
.form-note { font-size: 0.85rem; color: var(--text-mute); margin-top: 0.9rem; text-align: center; }
.form-success { display: none; padding: 1.1rem 1.2rem; border-radius: 12px; background: var(--sage-050); border: 1px solid var(--sage-100); color: var(--sage-700); font-weight: 600; margin-bottom: 1.2rem; }
.form-success.is-visible { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 2rem; }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; filter: saturate(1.02); }
.map-placeholder { height: 340px; display: grid; place-items: center; text-align: center; background:
    repeating-linear-gradient(45deg, var(--sand-100) 0 18px, var(--sand-050) 18px 36px); color: var(--ink-500); }
.map-placeholder svg { width: 40px; height: 40px; color: var(--sage-600); margin-bottom: 0.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--red-900); color: #e3b9b3; padding-block: clamp(3rem, 6vw, 4.5rem) 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand .footer-mark { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand .footer-mark img { height: 52px; background: #fff; padding: 4px; border-radius: 14px; }
.footer-brand .footer-mark strong { font-family: var(--font-display); color: #fff; font-size: 1.2rem; line-height: 1.1; }
.footer-brand .footer-mark span { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-500); }
.footer-brand p { margin-top: 1.1rem; font-size: 0.96rem; max-width: 34ch; color: #d0938c; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: #e3b9b3; font-size: 0.98rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; }
.footer-contact svg { width: 1.15em; height: 1.15em; color: var(--sage-500); flex: none; margin-top: 0.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.6rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.88rem; color: #c98a83; }
.footer-bottom a { color: #c98a83; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animations ---------- */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

.float-slow { animation: floaty 7s ease-in-out infinite; }
.float-slow--2 { animation-delay: -3.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-slow, .breathe { animation: none !important; }
  .btn, .svc-card, .info-card, .method, .team-card { transition: none !important; }
}

/* ---------- Skip link & focus ---------- */
.skip-link { position: absolute; left: 1rem; top: -60px; background: var(--primary); color: #fff; padding: 0.7rem 1.2rem; border-radius: 8px; z-index: 300; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--sage-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- 404 ---------- */
.error-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.error-wrap .big { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 7rem); color: var(--red-700); line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-badge--tl { left: 2%; }
  .hero-badge--br { right: 2%; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-grid; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .method { grid-template-columns: 1fr; }
  .method-ic { width: 64px; height: 64px; }
  .method-ic svg { width: 30px; height: 30px; }
  .brand-text { display: none; }
}
