/* shared.css – kinesiologie-butzbach.de design system */
/* Color palette: warm amber/gold, parchment cream, burgundy wine */
:root {
  --sage:      #c8893a;   /* warm amber gold – main accent */
  --sage-d:    #7a3d10;   /* dark amber/rust – hero, dark sections */
  --sage-l:    #f5e4cc;   /* light amber – card highlights */
  --sage-p:    #fdf5eb;   /* pale warm – section backgrounds */
  --warm:      #8b2252;   /* wine/burgundy – secondary accent */
  --warm-l:    #f8eaf0;   /* light wine */
  --cream:     #faf4e8;   /* warm cream background */
  --text:      #2a1a0e;   /* dark warm brown text */
  --muted:     #6b4a30;   /* muted brown */
  --sub:       #9a7a60;   /* subtle warm text */
  --bord:      #e8d5c0;   /* warm border */
  --r:         10px;
  --rl:        16px;
  --max:       1100px;
  --sh:        0 1px 3px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.07);
  --sh-lg:     0 4px 6px rgba(0,0,0,.04),0 12px 40px rgba(0,0,0,.10);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
body{font-family:'Inter',sans-serif;color:var(--text);background:#fff;
     -webkit-font-smoothing:antialiased;line-height:1.6;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
h1,h2{font-family:'Cormorant Garamond',serif;line-height:1.15}
h1{font-size:clamp(2.2rem,4.5vw,3.4rem);font-weight:600}
h2{font-size:clamp(1.7rem,3vw,2.5rem);font-weight:600}
h3{font-size:1rem;font-weight:600;line-height:1.35;font-family:'Inter',sans-serif}
p{color:var(--muted);line-height:1.8}
.wrap{max-width:var(--max);margin:0 auto;padding:0 clamp(16px,5vw,48px)}
.sec{padding:clamp(56px,8vw,88px) clamp(16px,5vw,48px)}
.center{text-align:center}

/* EYEBROW */
.eyebrow{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;
    letter-spacing:.1em;text-transform:uppercase;margin-bottom:10px;color:var(--sage)}
.ey-dot{width:5px;height:5px;border-radius:50%;background:currentColor;flex-shrink:0}
.ey-warm{color:var(--warm)}
.ey-white{color:rgba(255,255,255,.55)}

/* BADGE */
.badge-pill{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);color:rgba(255,255,255,.92);font-size:12px;
  font-weight:600;padding:6px 15px;border-radius:100px;margin-bottom:22px;letter-spacing:.03em}
.live-dot{width:7px;height:7px;border-radius:50%;background:#f5c842;
  animation:pulse 1.8s infinite;flex-shrink:0}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 26px;font-size:14px;
  font-weight:600;border-radius:var(--r);transition:all .18s;cursor:pointer;border:none;
  white-space:nowrap;font-family:'Inter',sans-serif;text-decoration:none}
.btn-sage{background:var(--sage);color:#fff;box-shadow:0 2px 12px rgba(200,137,58,.25)}
.btn-sage:hover{background:var(--sage-d);transform:translateY(-1px);box-shadow:0 6px 20px rgba(200,137,58,.35)}
.btn-warm{background:var(--warm);color:#fff;box-shadow:0 2px 12px rgba(139,34,82,.22)}
.btn-warm:hover{background:#6a1840;transform:translateY(-1px)}
.btn-white{background:#fff;color:var(--sage-d);box-shadow:0 2px 12px rgba(0,0,0,.12)}
.btn-white:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,.16)}
.btn-ghost{background:transparent;color:rgba(255,255,255,.88);border:1.5px solid rgba(255,255,255,.3)}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.btn-outline{background:transparent;color:var(--sage-d);border:1.5px solid var(--bord)}
.btn-outline:hover{border-color:var(--sage);background:var(--sage-p)}
.btn-sm{padding:9px 18px;font-size:13px}
.btn-lg{padding:16px 32px;font-size:15px}

/* NAV */
.nav{position:fixed;top:0;left:0;right:0;z-index:200;background:rgba(250,244,232,.97);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--bord);height:68px}
body{padding-top:68px}
.nav-inner{max-width:var(--max);margin:0 auto;padding:0 clamp(16px,5vw,48px);
  height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px}
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-logo-text{display:flex;flex-direction:column;line-height:1.2}
.nav-logo-name{font-family:'Cormorant Garamond',serif;font-size:16px;font-weight:600;color:var(--sage-d)}
.nav-logo-sub{font-size:10px;color:var(--sub);font-weight:500;letter-spacing:.04em}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{font-size:13.5px;font-weight:500;color:var(--muted);
  padding:6px 10px;border-radius:6px;transition:all .15s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{color:var(--sage-d);background:var(--sage-p)}
.nav-termin{color:var(--sage-d)!important;border:1.5px solid var(--sage)!important;
  border-radius:8px!important;padding:7px 16px!important;font-weight:600!important}
.nav-termin:hover{background:var(--sage)!important;color:#fff!important}
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;
  padding:6px;border:none;background:transparent}
.burger span{width:22px;height:2px;background:var(--sage-d);border-radius:2px;display:block}
.mob-menu{display:none;position:absolute;top:68px;left:0;right:0;
  background:rgba(250,244,232,.98);border-bottom:1px solid var(--bord);
  padding:12px clamp(16px,5vw,48px) 20px;z-index:999;flex-direction:column;gap:2px}
.mob-menu.open{display:flex}
.mob-menu a{font-size:15px;font-weight:500;color:var(--muted);
  padding:10px 8px;border-bottom:1px solid var(--bord)}
.mob-menu a:last-child{border:none;color:var(--sage-d);font-weight:700;margin-top:6px}

/* HERO */
.hero{background:linear-gradient(135deg,var(--sage-d) 0%,#9a5520 60%,#7a3d10 100%);overflow:hidden}
.hero-wrap{max-width:var(--max);margin:0 auto;
  padding:clamp(64px,10vw,96px) clamp(16px,5vw,48px) 0;
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:flex-end}
.hero-content{padding-bottom:clamp(48px,6vw,80px)}
.hero h1{color:#fff;margin-bottom:8px}
.hero h1 em{font-style:italic;color:#f0d090}
.hero-sub{font-size:17px;color:rgba(255,255,255,.68);max-width:480px;
  margin-bottom:28px;line-height:1.78}
.hero-checks{display:flex;flex-direction:column;gap:9px;margin-bottom:30px}
.hc{display:flex;align-items:center;gap:10px;font-size:14px;
  color:rgba(255,255,255,.88);font-weight:500}
.hc-tick{width:20px;height:20px;border-radius:50%;background:rgba(245,200,66,.15);
  border:1px solid rgba(245,200,66,.4);display:flex;align-items:center;
  justify-content:center;font-size:10px;color:#f5c842;flex-shrink:0}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.hero-img{align-self:flex-end;position:relative}
.hero-img img{width:100%;max-height:520px;object-fit:cover;
  object-position:top center;border-radius:14px 14px 0 0}
.hero-float{position:absolute;background:#fff;border-radius:12px;
  padding:14px 18px;box-shadow:var(--sh-lg);bottom:24px;left:-18px}
.hf-ico{font-size:20px;margin-bottom:4px}
.hf-label{font-size:12px;color:var(--sage-d);font-weight:600;line-height:1.3}

/* TRUST STRIP */
.trust-strip{background:var(--sage-p);border-bottom:1px solid var(--bord)}
.trust-inner{max-width:var(--max);margin:0 auto;padding:16px clamp(16px,5vw,48px);
  display:flex;align-items:center;justify-content:center;gap:32px;flex-wrap:wrap}
.ts-item{display:flex;align-items:center;gap:8px;font-size:12.5px;
  color:var(--sage-d);font-weight:500}
.ts-ico{font-size:16px}

/* SEC HEADER */
.sec-hd{margin-bottom:clamp(28px,4vw,44px)}
.sec-hd h2{margin-bottom:10px}
.sec-hd p{font-size:16px;max-width:600px}
.sec-hd.center p{margin:0 auto}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{background:#fff;border:1px solid var(--bord);border-radius:var(--rl);
  padding:28px;transition:all .2s}
.card:hover{border-color:var(--sage);box-shadow:var(--sh-lg);transform:translateY(-2px)}
.card-icon{font-size:32px;margin-bottom:14px}
.card h3{margin-bottom:8px;color:var(--sage-d)}
.card p{font-size:14px}
.card-link{display:inline-flex;align-items:center;gap:4px;margin-top:14px;
  font-size:13px;font-weight:600;color:var(--sage)}
.card-link::after{content:'→';transition:transform .15s}
.card-link:hover::after{transform:translateX(3px)}

/* TWO COL */
.two-col{display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(36px,6vw,68px);align-items:center;max-width:var(--max);margin:0 auto}
.col-img img{width:100%;border-radius:var(--rl);object-fit:cover}
.col-text h2{margin-bottom:14px}
.col-text p{font-size:16px;margin-bottom:14px}
.check-list{list-style:none;display:flex;flex-direction:column;gap:9px;margin:18px 0 26px}
.check-list li{font-size:14px;color:var(--muted);font-weight:500;
  display:flex;align-items:flex-start;gap:10px;line-height:1.65}
.check-list li::before{content:'';width:7px;height:7px;border-radius:50%;
  background:var(--sage);flex-shrink:0;margin-top:7px}

/* REVIEWS */
.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.review{background:#fff;border:1px solid var(--bord);border-radius:var(--rl);padding:26px}
.rv-stars{color:#d4a017;font-size:14px;letter-spacing:1px;margin-bottom:12px}
.rv-text{font-size:14px;line-height:1.78;color:var(--text);font-style:italic;margin-bottom:14px}
.rv-author{font-size:11px;font-weight:600;color:var(--sub);text-transform:uppercase;letter-spacing:.05em}

/* CTA BAND */
.cta-band{background:var(--sage-d);text-align:center;padding:clamp(64px,8vw,88px) clamp(16px,5vw,48px)}
.cta-band h2{color:#fff;margin-bottom:12px}
.cta-band p{color:rgba(255,255,255,.65);font-size:16px;max-width:460px;margin:0 auto 32px}
.cta-btns{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}

/* BLOG */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.blog-card{background:#fff;border:1px solid var(--bord);
  border-radius:var(--rl);overflow:hidden;transition:all .22s}
.blog-card:hover{transform:translateY(-3px);box-shadow:var(--sh-lg);border-color:var(--sage)}
.blog-img{height:130px;background:var(--sage-l);
  display:flex;align-items:center;justify-content:center;font-size:44px}
.blog-body{padding:20px}
.blog-tag{display:inline-block;font-size:10px;font-weight:700;
  padding:3px 9px;border-radius:100px;margin-bottom:9px;
  text-transform:uppercase;letter-spacing:.05em}
.bt-sage{background:var(--sage-l);color:var(--sage-d)}
.bt-warm{background:var(--warm-l);color:#6a1840}
.bt-cream{background:#f0ece4;color:#5a4a2e}
.blog-card h3{font-size:15px;margin-bottom:7px;line-height:1.35}
.blog-card p{font-size:13px;line-height:1.65}
.blog-ft{padding:13px 20px;border-top:1px solid var(--bord);
  display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--sub)}
.blog-read{font-weight:600;color:var(--sage)}
.blog-read::after{content:' →'}

/* FORM */
.form-wrap{background:#fff;border-radius:var(--rl);padding:clamp(24px,4vw,40px);box-shadow:var(--sh-lg)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.fg{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
.fg label{font-size:11.5px;font-weight:700;color:var(--sage-d);letter-spacing:.05em;text-transform:uppercase}
.fg input,.fg select,.fg textarea{border:1.5px solid var(--bord);border-radius:var(--r);
  padding:11px 14px;font-size:14px;font-family:'Inter',sans-serif;
  color:var(--text);background:#fff;transition:border-color .15s;outline:none}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--sage)}
.fg textarea{resize:vertical;min-height:110px}
.form-submit{width:100%;padding:14px;background:var(--sage);color:#fff;
  border:none;border-radius:var(--r);font-size:15px;font-weight:700;
  font-family:'Inter',sans-serif;cursor:pointer;transition:background .18s}
.form-submit:hover{background:var(--sage-d)}

/* ARTICLE (blog posts) */
.art-hero{background:var(--sage-d);padding:clamp(48px,7vw,80px) clamp(16px,5vw,48px) 0}
.art-hero-inner{max-width:760px;margin:0 auto;padding-bottom:clamp(36px,5vw,56px)}
.art-back{display:inline-flex;align-items:center;gap:6px;font-size:13px;
  color:rgba(255,255,255,.6);margin-bottom:20px;transition:color .15s}
.art-back:hover{color:#fff}
.art-tag{display:inline-block;font-size:10.5px;font-weight:700;padding:4px 12px;
  border-radius:100px;background:rgba(255,255,255,.12);color:rgba(255,255,255,.8);
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:16px}
.art-hero h1{color:#fff;margin-bottom:12px}
.art-meta{font-size:13px;color:rgba(255,255,255,.5);display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.art-body{max-width:760px;margin:0 auto;padding:clamp(32px,5vw,56px) clamp(16px,5vw,48px)}
.art-body h2{font-size:clamp(1.4rem,2.5vw,1.9rem);color:var(--sage-d);margin:36px 0 14px}
.art-body h3{font-size:1.1rem;color:var(--sage-d);margin:24px 0 10px}
.art-body p{font-size:15.5px;line-height:1.85;margin-bottom:18px}
.art-body ul{margin:0 0 18px 20px}
.art-body li{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:6px}
.pull-quote{background:var(--sage-p);border-left:3px solid var(--sage);
  padding:18px 22px;border-radius:0 var(--r) var(--r) 0;margin:28px 0;
  font-family:'Cormorant Garamond',serif;font-size:1.25rem;color:var(--sage-d);
  font-style:italic;line-height:1.65}

/* FOOTER */
footer{background:#1a0800;padding:clamp(40px,6vw,60px) clamp(16px,5vw,48px) 0}
.ft-inner{max-width:var(--max);margin:0 auto}
.ft-top{display:grid;grid-template-columns:2fr 1fr 1fr;
  gap:clamp(28px,5vw,56px);padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.07)}
.ft-brand p{font-size:13px;color:rgba(255,255,255,.38);line-height:1.85;margin-top:14px}
.ft-brand a{color:rgba(255,255,255,.4);transition:color .15s}
.ft-brand a:hover{color:rgba(255,255,255,.75)}
.ft-col h4{font-size:10px;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.22);margin-bottom:16px}
.ft-col a{display:block;font-size:13.5px;color:rgba(255,255,255,.5);
  margin-bottom:9px;transition:color .15s}
.ft-col a:hover{color:#fff}
.ft-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;
  gap:10px;font-size:12px;color:rgba(255,255,255,.2);
  padding:20px 0 28px;align-items:center}
.ft-bottom a{color:rgba(255,255,255,.32);transition:color .15s}
.ft-bottom a:hover{color:rgba(255,255,255,.7)}

/* ANWENDUNGEN page */
.service-block{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,6vw,68px);align-items:start;max-width:var(--max);margin:0 auto}
.service-block+.service-block{margin-top:clamp(48px,7vw,80px)}
.service-icon-wrap{width:56px;height:56px;border-radius:14px;background:var(--sage-l);
  display:flex;align-items:center;justify-content:center;font-size:26px;margin-bottom:18px}
.service-img img{width:100%;border-radius:var(--rl);max-height:400px;object-fit:cover}
.faq{margin-top:16px}
.faq-item{border-bottom:1px solid var(--bord)}
.faq-q{padding:14px 0;font-size:14.5px;font-weight:600;color:var(--sage-d);
  cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:12px;
  user-select:none}
.faq-q::after{content:'+';font-size:20px;color:var(--sage);flex-shrink:0;line-height:1}
.faq-item.open .faq-q::after{content:'−'}
.faq-a{display:none;padding:0 0 14px;font-size:14px;color:var(--muted);line-height:1.78}
.faq-item.open .faq-a{display:block}

/* ÜBER MICH page */
.bio-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,6vw,68px);align-items:start}
.bio-text p{font-size:16px;color:var(--muted);line-height:1.85;margin-bottom:16px}
.bio-quote{background:var(--sage-p);border-left:3px solid var(--sage);padding:18px 22px;
  border-radius:0 var(--r) var(--r) 0;margin:24px 0;
  font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:var(--sage-d);font-style:italic}
.credential-list{display:flex;flex-direction:column;gap:12px;margin-top:20px}
.cred{display:flex;align-items:flex-start;gap:14px;background:#fff;
  border:1px solid var(--bord);border-radius:var(--r);padding:16px 18px}
.cred-ico{font-size:22px;flex-shrink:0}
.cred h4{font-size:14px;font-weight:600;color:var(--sage-d);margin-bottom:2px}
.cred p{font-size:13px;margin:0}
.dog-section{background:var(--sage-d);border-radius:var(--rl);padding:clamp(28px,4vw,44px);
  display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center;margin-top:32px}
.dog-section h3{font-family:'Cormorant Garamond',serif;font-size:1.6rem;color:#fff;margin-bottom:12px}
.dog-section p{color:rgba(255,255,255,.65);font-size:15px;line-height:1.8}
.dog-section img{border-radius:var(--r);width:100%;object-fit:cover;max-height:260px}

/* KONTAKT page */
.kontakt-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,6vw,68px)}
.contact-info{display:flex;flex-direction:column;gap:20px;margin-top:8px}
.ci-item{display:flex;align-items:flex-start;gap:14px}
.ci-ico{width:44px;height:44px;border-radius:10px;background:var(--sage-l);
  display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.ci-text h4{font-size:14px;font-weight:600;color:var(--sage-d);margin-bottom:3px}
.ci-text p,.ci-text a{font-size:14px;color:var(--muted)}
.ci-text a:hover{color:var(--sage)}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-wrap,.two-col,.bio-grid,.service-block,.kontakt-grid,.dog-section{grid-template-columns:1fr}
  .inner-grid,.dark-box-grid{grid-template-columns:1fr!important}
  .cards,.reviews,.blog-grid{grid-template-columns:1fr}
  .ft-top{grid-template-columns:1fr}
  .nav-links{display:none}
  .burger{display:flex}
  .form-row{grid-template-columns:1fr}
  .hero-img{display:block!important;margin-top:28px}
  .hero-wrap{padding-bottom:clamp(32px,5vw,56px)}
  .hero-content{padding-bottom:0}
}
@media(max-width:600px){
  .hero-btns,.cta-btns{flex-direction:column;width:100%}
  .btn{width:100%;justify-content:center}
  .trust-inner{justify-content:flex-start;gap:10px}
  .ts-item{font-size:12px}
  .sec{padding:44px 16px}
  .inner-grid{grid-template-columns:1fr!important}
  .dark-box-grid{grid-template-columns:1fr!important}
}
@media(max-width:480px){
  h1{font-size:clamp(1.85rem,8vw,2.5rem)}
  .hero-sub{font-size:15px}
  .art-body{padding:32px 16px}
}
