/* ================================================================
   Xtra Malerservice – Stylesheet (Blau-Variante)
   Google Fonts: Playfair Display + Source Sans 3
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --cream:    #f0f4fa;
  --cream2:   #e2eaf5;
  --cream3:   #c8d6eb;
  --anth:     #0f2044;
  --anth2:    #1a3060;
  --anth3:    #2e4a80;
  --orange:   #2980d4;   /* Hauptakzent – Stahlblau         */
  --orange2:  #1a6ab8;   /* Hover-Variante                  */
  --yellow:   #38bdf8;   /* Sekundärakzent – Hellblau / Sky */
  --yellow2:  #0ea5e9;
  --warm:     #eaf1fb;
  --text:     #0d1b36;
  --muted:    #4a6080;
  --white:    #ffffff;
  --nav-h:    72px;
  --r:        3px;
  --t:        0.25s ease;
  --sh:       0 4px 20px rgba(15,32,68,.10);
  --sh-lg:    0 10px 40px rgba(15,32,68,.18);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 18px; }
body  { font-family: 'Source Sans 3', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 88px 0; }
.s-cream2  { background: var(--cream2); }
.s-anth    { background: var(--anth);  color: var(--white); }
.s-warm    { background: var(--warm); }

/* ── Typography ──────────────────────────────────────────────── */
h2.sh      { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3.8vw,2.8rem); font-weight: 700; line-height: 1.15; color: var(--anth); }
h2.sh-light { color: var(--white); }
.eyebrow   { font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 10px; }
.eyebrow-y { color: var(--yellow); }
.rule      { display: inline-block; width: 40px; height: 3px; background: var(--orange); border-radius: 2px; margin: 12px 0 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { display: inline-block; padding: 13px 30px; font-family: 'Source Sans 3', sans-serif; font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: var(--r); border: 2px solid transparent; cursor: pointer; transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t); line-height: 1; }
.btn:hover         { transform: translateY(-2px); box-shadow: var(--sh); }
.btn-orange        { background: var(--orange);  color: var(--white); border-color: var(--orange); }
.btn-orange:hover  { background: var(--orange2); border-color: var(--orange2); }
.btn-ghost-w       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost-w:hover { background: var(--white); color: var(--anth); }
.btn-ghost-d       { background: transparent; color: var(--anth); border-color: var(--anth3); }
.btn-ghost-d:hover { background: var(--anth); color: var(--white); }

/* ── Fade-in ─────────────────────────────────────────────────── */
.fade   { opacity: 0; transform: translateY(22px);  transition: opacity .6s ease, transform .6s ease; }
.fade-l { opacity: 0; transform: translateX(-26px); transition: opacity .6s ease, transform .6s ease; }
.fade-r { opacity: 0; transform: translateX(26px);  transition: opacity .6s ease, transform .6s ease; }
.fade.up, .fade-l.up, .fade-r.up { opacity: 1; transform: none; }

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar        { background: var(--anth); color: rgba(255,255,255,.6); font-size: .76rem; padding: 8px 0; }
.topbar-inner  { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left   { display: flex; gap: 24px; flex-wrap: wrap; }
.tb-item       { display: flex; align-items: center; gap: 6px; }
.topbar a      { color: var(--yellow); transition: color var(--t); }
.topbar a:hover { color: var(--white); }

/* ================================================================
   NAVIGATION
   ================================================================ */
nav            { position: sticky; top: 0; z-index: 200; background: var(--cream); border-bottom: 3px solid var(--orange); height: var(--nav-h); transition: box-shadow var(--t); }
nav.scrolled   { box-shadow: var(--sh-lg); }
.nav-inner     { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo      { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 40px; height: 40px; border-radius: var(--r); background: var(--orange); display: flex; align-items: center; justify-content: center; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--anth); }
.nav-logo-text em { font-style: italic; color: var(--orange); }
.nav-links     { display: flex; gap: 4px; align-items: center; }
.nav-links a   { font-size: .82rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--anth3); padding: 8px 12px; border-radius: var(--r); transition: background var(--t), color var(--t); }
.nav-links a:hover               { background: var(--cream2); color: var(--orange); }
.nav-links .btn-orange           { color: var(--white); margin-left: 8px; }
.nav-links .btn-orange:hover     { color: var(--white); background: var(--orange2); }
.hamburger     { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--anth); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* ================================================================
   SLIDESHOW
   ================================================================ */
.slider        { position: relative; overflow: hidden; height: 580px; background: var(--anth); }
.slide         { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.slide.active  { opacity: 1; z-index: 1; }
.slide img     { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.75); }
.slide::after  { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(15,32,68,.60) 0%, transparent 55%); }
.slide-content { position: relative; z-index: 2; padding: 0 0 0 56px; max-width: 700px; }
.slide-tag     { display: inline-block; background: var(--orange); color: var(--white); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r); margin-bottom: 18px; }
.slide-content h1  { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,6vw,4.4rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.slide-content h1 em { font-style: italic; color: var(--yellow); }
.slide-content p  { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 480px; font-weight: 300; }
.slide-btns    { display: flex; gap: 14px; flex-wrap: wrap; }
.sl-prev, .sl-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.25); color: var(--white); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
.sl-prev       { left: 20px; }
.sl-next       { right: 20px; }
.sl-prev:hover, .sl-next:hover { background: var(--orange); border-color: var(--orange); }
.sl-dots       { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.sl-dot        { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; border: none; transition: background var(--t), transform var(--t); }
.sl-dot.active { background: var(--yellow); transform: scale(1.25); }

/* ================================================================
   FEATURE BAND
   ================================================================ */
.feat-band     { background: var(--anth2); padding: 0; }
.feat-grid     { display: grid; grid-template-columns: repeat(3,1fr); }
.feat-item     { padding: 28px 24px; display: flex; align-items: flex-start; gap: 18px; border-right: 1px solid rgba(255,255,255,.1); transition: background var(--t); }
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(255,255,255,.04); }
.feat-icon     { font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px; background: rgba(41,128,212,.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.feat-item h4  { font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.feat-item p   { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ================================================================
   INTRO
   ================================================================ */
.intro-grid       { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-img-wrap   { position: relative; }
.intro-img-main   { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r); }
.intro-badge      { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: var(--white); padding: 18px 22px; border-radius: var(--r); text-align: center; box-shadow: var(--sh-lg); }
.intro-badge .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.intro-badge .lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.intro-text h2    { margin-bottom: 18px; }
.intro-text p     { color: var(--muted); margin-bottom: 14px; }
.intro-checks     { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.chk              { display: flex; align-items: flex-start; gap: 10px; }
.chk-ico          { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 700; margin-top: 3px; }
.chk span         { font-size: 1rem; color: var(--text); }

/* ================================================================
   ÜBER UNS
   ================================================================ */
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-imgs    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-imgs img { width: 100%; height: 195px; object-fit: cover; border-radius: var(--r); filter: saturate(.85); }
.about-imgs img:first-child { height: 400px; grid-column: span 2; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { color: var(--muted); margin-bottom: 14px; }
.about-stats   { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 26px 0; }
.st-box        { background: var(--cream); border: 1px solid var(--cream3); border-top: 3px solid var(--orange); padding: 16px 12px; text-align: center; border-radius: var(--r); }
.st-box .n     { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--orange); line-height: 1; }
.st-box .l     { font-size: .72rem; color: var(--muted); margin-top: 3px; }

/* ================================================================
   TEAM
   ================================================================ */
.team-head     { text-align: center; margin-bottom: 52px; }
.team-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.team-card     { background: var(--cream); border-radius: var(--r); overflow: hidden; border: 1px solid var(--cream3); box-shadow: var(--sh); transition: box-shadow var(--t), transform var(--t); text-align: center; }
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.team-card img { width: 100%; height: 275px; object-fit: cover; filter: saturate(.85); }
.team-card-body { padding: 20px 16px 22px; }
.team-card h3  { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--anth); margin-bottom: 3px; }
.team-role     { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 9px; }
.team-card p   { font-size: .86rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   LEISTUNGEN
   ================================================================ */
.leist-head    { text-align: center; margin-bottom: 52px; }
.leist-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.leist-card    { background: var(--cream); border-radius: var(--r); border: 1px solid var(--cream3); border-top: 3px solid var(--orange); padding: 28px 22px; transition: box-shadow var(--t), transform var(--t); }
.leist-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.leist-icon    { width: 50px; height: 50px; border-radius: var(--r); background: rgba(41,128,212,.12); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.leist-card h3 { font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--anth); margin-bottom: 10px; }
.leist-card p  { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.leist-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.leist-card ul li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.leist-card ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ================================================================
   GALERIE
   ================================================================ */
.gal-head      { text-align: center; margin-bottom: 48px; }
.gal-grid      { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.gal-item      { position: relative; overflow: hidden; border-radius: var(--r); cursor: zoom-in; aspect-ratio: 1 / 1; }
.gal-item img  { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay   { position: absolute; inset: 0; background: rgba(15,32,68,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gal-item:hover .gal-overlay { background: rgba(15,32,68,.50); }
.gal-label     { position: absolute; bottom: 10px; left: 10px; background: rgba(20,90,180,.88); color: var(--white); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r); }
.gal-zoom      { color: var(--white); font-size: 1.6rem; opacity: 0; transform: scale(.6); transition: opacity .3s, transform .3s; }
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

/* ================================================================
   LIGHTBOX
   ================================================================ */
#lightbox        { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
#lightbox.open   { display: flex; }
#lb-bg           { position: absolute; inset: 0; background: rgba(5,12,28,.96); cursor: zoom-out; animation: lbin .2s; }
@keyframes lbin  { from{opacity:0} to{opacity:1} }
#lb-box          { position: relative; z-index: 1; max-width: 90vw; animation: lbpop .22s; }
@keyframes lbpop { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }
#lb-box img      { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--r); display: block; box-shadow: 0 24px 64px rgba(0,0,0,.6); }
#lb-cap          { text-align: center; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 12px; font-family: 'Playfair Display', serif; font-style: italic; }
#lb-cnt          { text-align: center; color: rgba(255,255,255,.3); font-size: .72rem; margin-top: 4px; letter-spacing: .12em; }
#lb-close        { position: fixed; top: 18px; right: 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: var(--white); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
#lb-close:hover  { background: var(--orange); border-color: var(--orange); }
#lb-prev, #lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: var(--white); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
#lb-prev         { left: 18px; }
#lb-next         { right: 18px; }
#lb-prev:hover, #lb-next:hover { background: var(--orange); border-color: var(--orange); }
#lb-prev:hover   { transform: translateY(-50%) scale(1.06); }
#lb-next:hover   { transform: translateY(-50%) scale(1.06); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-head    { text-align: center; margin-bottom: 48px; }
.testi-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card    { background: var(--cream); border-radius: var(--r); padding: 26px 22px; border: 1px solid var(--cream3); box-shadow: var(--sh); position: relative; transition: box-shadow var(--t), transform var(--t); }
.testi-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.testi-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5.5rem; line-height: 1; color: var(--orange); opacity: .12; position: absolute; top: 8px; left: 16px; }
.testi-stars   { color: var(--orange); font-size: .9rem; margin-bottom: 12px; }
.testi-text    { font-size: .95rem; color: var(--muted); line-height: 1.72; margin-bottom: 18px; position: relative; z-index: 1; font-style: italic; }
.testi-author  { display: flex; align-items: center; gap: 12px; }
.testi-avatar  { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; filter: saturate(.75); border: 2px solid var(--cream3); }
.testi-name    { font-weight: 700; font-size: .9rem; color: var(--anth); }
.testi-where   { font-size: .74rem; color: var(--muted); margin-top: 1px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-layout    { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-left h2   { margin-bottom: 14px; }
.faq-left p    { color: var(--muted); margin-bottom: 24px; }
.faq-list      { display: flex; flex-direction: column; }
.faq-item      { border-bottom: 1px solid var(--cream3); }
.faq-item:first-child { border-top: 1px solid var(--cream3); }
.faq-q         { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 17px 0; font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 600; color: var(--anth); text-align: left; transition: color var(--t); }
.faq-q:hover   { color: var(--orange); }
.faq-arrow     { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--cream3); flex-shrink: 0; margin-left: 14px; display: flex; align-items: center; justify-content: center; font-size: .78rem; color: var(--orange); transition: transform var(--t), background var(--t), border-color var(--t); }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: rgba(41,128,212,.1); border-color: var(--orange); }
.faq-a         { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner   { padding: 0 0 16px; font-size: .93rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band      { background: url('../images/intro/cta-bg.jpg') center / cover no-repeat; padding: 72px 0; text-align: center; color: var(--white); position: relative; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,32,68,.92) 0%, rgba(15,32,68,.80) 100%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2   { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3.8vw,2.8rem); margin-bottom: 14px; color: var(--white); }
.cta-band p    { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 32px; }
.cta-btns      { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   KONTAKT
   ================================================================ */
.kontakt-grid  { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.ki h2         { margin-bottom: 14px; }
.ki p          { color: var(--muted); margin-bottom: 26px; }
.kb            { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--cream3); }
.kb:last-of-type { border-bottom: none; }
.kb strong     { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 4px; }
.kb span, .kb a { font-size: 1rem; color: var(--text); }
.kb a:hover    { color: var(--orange); }
.ht            { width: 100%; font-size: .9rem; }
.ht td         { padding: 4px 0; color: var(--muted); }
.ht td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.form-card     { background: var(--white); border-radius: var(--r); padding: 34px 30px; border: 1px solid var(--cream3); box-shadow: var(--sh); }
.form-card h3  { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--anth); margin-bottom: 20px; }
.fg            { margin-bottom: 14px; }
.fg label      { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--cream3); background: var(--cream); font-family: 'Source Sans 3', sans-serif; font-size: .95rem; color: var(--text); border-radius: var(--r); outline: none; transition: border-color var(--t), background var(--t); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--orange); background: var(--white); }
.fg textarea   { resize: vertical; min-height: 108px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note     { font-size: .73rem; color: var(--muted); margin-top: 8px; }
.form-success  { display: none; padding: 12px 16px; background: #e8f0fa; border-left: 3px solid var(--orange); color: var(--anth); font-size: .9rem; border-radius: var(--r); margin-top: 12px; }

/* ================================================================
   FOOTER
   ================================================================ */
footer         { background: var(--anth); color: rgba(255,255,255,.5); padding: 58px 0 22px; }
.footer-grid   { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 42px; }
.footer-logo-wrap  { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-wrap .nav-logo-icon { background: var(--orange); }
.footer-logo-text2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); }
.footer-logo-text2 em { font-style: italic; color: var(--yellow); }
.footer-brand  { font-size: .92rem; line-height: 1.75; }
footer h5      { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer-links li  { margin-bottom: 8px; }
.footer-links a   { font-size: .92rem; transition: color var(--t); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; display: flex; justify-content: space-between; font-size: .74rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a  { color: rgba(255,255,255,.35); margin-left: 14px; }
.footer-bottom a:hover { color: var(--yellow); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .intro-grid, .about-grid, .faq-layout, .kontakt-grid { grid-template-columns: 1fr; }
  .intro-img-main       { height: 300px; }
  .intro-badge          { right: 10px; bottom: -14px; }
  .about-imgs img:first-child { height: 260px; }
  .team-grid, .leist-grid    { grid-template-columns: 1fr 1fr; }
  .testi-grid           { grid-template-columns: 1fr 1fr; }
  .gal-grid             { grid-template-columns: 1fr 1fr; }
  .feat-grid            { grid-template-columns: 1fr; }
  .feat-item            { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .feat-item:last-child { border-bottom: none; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .slide-content        { padding-left: 28px; }
  .slider               { height: 440px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--cream); border-bottom: 3px solid var(--orange); padding: 18px 24px 24px; gap: 4px; box-shadow: var(--sh-lg); }
  .nav-links.open       { display: flex; }
  .hamburger            { display: flex; }
  .slider               { height: 380px; }
  .slide-content h1     { font-size: 2rem; }
  .team-grid, .leist-grid, .testi-grid { grid-template-columns: 1fr; }
  .gal-grid             { grid-template-columns: 1fr 1fr; }
  .about-stats          { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .slide-btns           { flex-direction: column; }
  .section              { padding: 60px 0; }
  .form-card            { padding: 22px 16px; }
  #lb-prev              { left: 8px; }
  #lb-next              { right: 8px; }
}
