/* ================================================================
   Xtra Dach – Stylesheet
   Google Fonts: Bebas Neue + Inter
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --ink:   #0e0e0e;
  --ink2:  #1a1a1a;
  --ink3:  #2a2a2a;
  --steel: #3d3d3d;
  --fog:   #888;
  --ash:   #bbb;
  --off:   #f2ede8;
  --off2:  #e8e2db;
  --white: #fff;
  --red:   #c1272d;
  --red2:  #a01f24;
  --nav-h: 68px;
  --t:     .25s ease;
  --sh:    0 4px 24px rgba(0,0,0,.4);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 18px; }
body  { font-family: 'Inter', sans-serif; color: var(--off); background: var(--ink); 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: 1200px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; }

/* ── Utilities ───────────────────────────────────────────────── */
.bb  { font-family: 'Bebas Neue', cursive; line-height: 1.05; letter-spacing: .02em; }
.red { color: var(--red); }

/* Fade-in animations */
.fade   { opacity: 0; transform: translateY(28px);  transition: opacity .65s ease, transform .65s ease; }
.fade-l { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.fade-r { opacity: 0; transform: translateX(32px);  transition: opacity .65s ease, transform .65s ease; }
.fade.up, .fade-l.up, .fade-r.up { opacity: 1; transform: none; }

/* Section label */
.s-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.s-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t);
  line-height: 1;
}
.btn:hover           { transform: translateY(-2px); }
.btn-red             { background: var(--red);  color: var(--white); border-color: var(--red); }
.btn-red:hover       { background: var(--red2); border-color: var(--red2); }
.btn-ghost           { background: transparent; color: var(--off);   border-color: rgba(242,237,232,.4); }
.btn-ghost:hover     { background: var(--off);  color: var(--ink); }
.btn-ghost-dark      { background: transparent; color: var(--ink);   border-color: rgba(14,14,14,.3); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--off); }

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar        { background: var(--red); padding: 9px 0; font-size: .74rem; font-weight: 500; letter-spacing: .04em; }
.topbar-inner  { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.85); }
.topbar a      { color: var(--white); }
.topbar a:hover { text-decoration: underline; }
.tb-sep        { opacity: .4; }

/* ================================================================
   NAVIGATION
   ================================================================ */
nav            { position: sticky; top: 0; z-index: 200; height: var(--nav-h); background: rgba(14,14,14,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--ink3); transition: box-shadow var(--t); }
nav.scrolled   { box-shadow: 0 4px 32px rgba(0,0,0,.6); }
.nav-inner     { display: flex; align-items: center; justify-content: space-between; height: 100%; }

/* Logo */
.nav-logo      { display: flex; align-items: center; gap: 12px; }
.logo-mark     { display: flex; align-items: flex-end; gap: 0; }
.logo-x        { font-family: 'Bebas Neue', cursive; font-size: 2.2rem; color: var(--red); line-height: 1; }
.logo-text     { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; color: var(--off); line-height: 1; letter-spacing: .06em; }
.logo-divider  { width: 1.5px; height: 28px; background: var(--ink3); margin: 0 14px; }
.logo-sub      { font-size: .64rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--fog); }

.nav-links     { display: flex; gap: 2px; align-items: center; }
.nav-links a   { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); padding: 8px 14px; transition: color var(--t); }
.nav-links a:hover             { color: var(--off); }
.nav-links .btn-red            { font-size: .72rem; padding: 10px 22px; margin-left: 12px; }
.nav-links .btn-red:hover      { color: var(--white); }

.hamburger     { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--off); transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero          { position: relative; height: 92vh; min-height: 560px; overflow: hidden; background: var(--ink2); }
.slide         { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.slide.active  { opacity: 1; z-index: 1; }
.slide img     { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35) saturate(.7); }
.hero::before  { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); z-index: 10; }
.hero-content  { position: absolute; bottom: 16%; left: 0; right: 0; z-index: 5; pointer-events: none; }
.hero-content .container { pointer-events: auto; }
.hero-eyebrow  { font-size: .7rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }
.hero h1       { font-family: 'Bebas Neue', cursive; font-size: clamp(4rem,10vw,9rem); line-height: .95; color: var(--white); letter-spacing: .02em; margin-bottom: 28px; }
.hero h1 span  { color: var(--red); }
.hero-sub      { font-size: 1rem; color: var(--ash); max-width: 480px; line-height: 1.7; font-weight: 300; margin-bottom: 40px; }
.hero-btns     { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider bottom bar */
.hero-bar          { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; background: rgba(14,14,14,.7); padding: 18px 0; }
.hero-bar-inner    { display: flex; align-items: center; justify-content: space-between; }
.hero-dots         { display: flex; gap: 8px; }
.hero-dot          { width: 28px; height: 2px; background: rgba(255,255,255,.25); cursor: pointer; border: none; transition: background var(--t), width var(--t); }
.hero-dot.active   { width: 52px; background: var(--red); }
.hero-arrows       { display: flex; gap: 8px; }
.hero-arr          { background: none; border: 1px solid rgba(255,255,255,.2); color: var(--off); width: 42px; height: 42px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), border-color var(--t); }
.hero-arr:hover    { background: var(--red); border-color: var(--red); }
.hero-slide-count  { font-size: .72rem; font-weight: 500; letter-spacing: .18em; color: var(--fog); }

/* ================================================================
   INTRO
   ================================================================ */
.intro         { background: var(--ink2); padding: 80px 0; border-bottom: 1px solid var(--ink3); }
.intro-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.intro-left h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem,6vw,5.5rem); line-height: .95; color: var(--off); }
.intro-left h2 em { font-style: normal; color: var(--red); }
.intro-right p { color: var(--ash); font-weight: 300; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.intro-right p:last-of-type { margin-bottom: 32px; }
.stats         { display: flex; gap: 48px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--ink3); }
.stat-n        { font-family: 'Bebas Neue', cursive; font-size: 3.5rem; color: var(--off); line-height: 1; }
.stat-n span   { color: var(--red); }
.stat-l        { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--fog); margin-top: 4px; }

/* ================================================================
   LEISTUNGEN – abwechselnde Bild-Text-Blöcke
   ================================================================ */
.leist-section     { background: var(--ink); overflow: hidden; }
.leist-section-head { }

.leist-row         { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.leist-row.flip .leist-img { order: 2; }
.leist-row.flip .leist-txt { order: 1; }
.leist-img         { position: relative; overflow: hidden; background: var(--ink3); }
.leist-img img     { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.85); transition: transform .7s ease, filter .7s ease; }
.leist-row:hover .leist-img img { transform: scale(1.04); filter: saturate(.9) brightness(.9); }
.leist-img-num     { position: absolute; bottom: 20px; right: 20px; font-family: 'Bebas Neue', cursive; font-size: 5rem; color: rgba(255,255,255,.07); line-height: 1; pointer-events: none; }
.leist-txt         { background: var(--ink2); display: flex; flex-direction: column; justify-content: center; padding: 64px 56px; }
.leist-row.flip .leist-txt { background: var(--ink3); }
.leist-num         { font-family: 'Bebas Neue', cursive; font-size: 1rem; color: var(--red); letter-spacing: .2em; margin-bottom: 14px; }
.leist-txt h3      { font-family: 'Bebas Neue', cursive; font-size: clamp(2rem,3.5vw,3rem); color: var(--off); margin-bottom: 16px; line-height: 1; }
.leist-txt p       { font-weight: 300; color: var(--ash); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; }
.leist-tags        { display: flex; flex-wrap: wrap; gap: 8px; }
.leist-tag         { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--ink3); color: var(--fog); transition: border-color var(--t), color var(--t); }
.leist-row:hover .leist-tag { border-color: var(--steel); color: var(--ash); }

/* ================================================================
   ÜBER UNS
   ================================================================ */
.about         { background: var(--off); color: var(--ink); padding: 100px 0; }
.about-grid    { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.about-left .s-label { color: var(--red); }
.about-left .s-label::before { background: var(--red); }
.about-left h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.8rem,5vw,4.5rem); line-height: .95; color: var(--ink); margin-bottom: 28px; }
.about-left h2 em { font-style: normal; color: var(--red); }
.about-left p  { color: var(--steel); font-weight: 300; line-height: 1.8; margin-bottom: 16px; }
.about-checks  { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 0; }
.about-check   { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--off2); }
.about-check:first-child { border-top: 1px solid var(--off2); }
.check-dash    { width: 20px; height: 1.5px; background: var(--red); flex-shrink: 0; margin-top: 12px; }
.about-check span { font-size: .95rem; color: var(--steel); }
.about-right   { position: relative; }
.about-img-main    { width: 100%; height: 500px; object-fit: cover; filter: saturate(.8); }
.about-img-overlay { position: absolute; bottom: -28px; right: -28px; width: 58%; object-fit: cover; border: 5px solid var(--off); box-shadow: var(--sh); }

/* ================================================================
   TEAM
   ================================================================ */
.team          { background: var(--ink2); padding: 100px 0; }
.team-head     { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.team-head h2  { font-family: 'Bebas Neue', cursive; font-size: clamp(2.4rem,4.5vw,3.8rem); color: var(--off); line-height: 1; }
.team-head p   { color: var(--fog); font-weight: 300; max-width: 340px; font-size: .9rem; text-align: right; }
.team-row      { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ink3); }
.team-member   { background: var(--ink2); overflow: hidden; position: relative; }
.team-member img { width: 100%; height: 400px; object-fit: cover; object-position: top; filter: saturate(.6) brightness(.8); transition: filter .5s ease, transform .5s ease; }
.team-member:hover img { filter: saturate(.85) brightness(.9); transform: scale(1.03); }
.team-info     { padding: 24px 22px 28px; border-top: 2px solid var(--ink3); transition: border-color var(--t); }
.team-member:hover .team-info { border-color: var(--red); }
.team-info h3  { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; color: var(--off); margin-bottom: 2px; letter-spacing: .04em; }
.team-role     { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.team-info p   { font-size: .82rem; color: var(--fog); font-weight: 300; margin-top: 10px; line-height: 1.65; }

/* ================================================================
   GALERIE – asymmetrisches Raster
   ================================================================ */
.galerie       { background: var(--ink); padding: 100px 0; }
.galerie-head  { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.galerie-head h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.4rem,4.5vw,3.8rem); color: var(--off); line-height: 1; }
.galerie-head p  { color: var(--fog); font-weight: 300; font-size: .9rem; line-height: 1.7; }
.gal-grid      { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 280px 280px; gap: 6px; }
.gi-1 { grid-column: 1/6;  grid-row: 1/2; }
.gi-2 { grid-column: 6/10; grid-row: 1/2; }
.gi-3 { grid-column: 10/13; grid-row: 1/3; }
.gi-4 { grid-column: 1/8;  grid-row: 2/3; }
.gi-5 { grid-column: 8/10; grid-row: 2/3; }
.gal-item      { position: relative; overflow: hidden; cursor: zoom-in; background: var(--ink3); }
.gal-item img  { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: filter .4s ease, transform .4s ease; display: block; }
.gal-item:hover img { filter: saturate(1); transform: scale(1.05); }
.gal-overlay   { position: absolute; inset: 0; background: rgba(14,14,14,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gal-item:hover .gal-overlay { background: rgba(193,39,45,.25); }
.gal-label     { position: absolute; bottom: 12px; left: 14px; font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.gal-item:hover .gal-label { opacity: 1; transform: none; }
.gal-zoom      { color: var(--white); font-size: 2rem; 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,5,5,.97); 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(.94)} to{opacity:1;transform:scale(1)} }
#lb-box img        { max-width: 90vw; max-height: 82vh; object-fit: contain; display: block; }
#lb-cap            { text-align: center; color: rgba(255,255,255,.4); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 14px; }
#lb-cnt            { text-align: center; color: rgba(255,255,255,.25); font-size: .68rem; margin-top: 4px; letter-spacing: .14em; }
#lb-close          { position: fixed; top: 20px; right: 24px; background: none; border: 1px solid rgba(255,255,255,.2); color: var(--white); width: 42px; height: 42px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), border-color var(--t); }
#lb-close:hover    { background: var(--red); border-color: var(--red); }
#lb-prev, #lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,.18); color: var(--white); width: 50px; height: 50px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), border-color var(--t); }
#lb-prev           { left: 18px; }
#lb-next           { right: 18px; }
#lb-prev:hover, #lb-next:hover { background: var(--red); border-color: var(--red); }

/* ================================================================
   TESTIMONIALS – typografisch
   ================================================================ */
.testi         { background: var(--off); color: var(--ink); padding: 100px 0; }
.testi-head    { margin-bottom: 72px; }
.testi-head .s-label { color: var(--red); }
.testi-head .s-label::before { background: var(--red); }
.testi-head h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.4rem,4.5vw,3.8rem); color: var(--ink); line-height: 1; }
.testi-list    { display: flex; flex-direction: column; gap: 0; }
.testi-item    { display: grid; grid-template-columns: 1fr 3fr 1fr; gap: 40px; align-items: start; padding: 48px 0; border-top: 1px solid var(--off2); transition: padding var(--t); }
.testi-item:last-child { border-bottom: 1px solid var(--off2); }
.testi-item:hover { padding-left: 20px; padding-right: 20px; margin: 0 -20px; }
.testi-meta    { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.testi-stars   { color: var(--red); font-size: .8rem; letter-spacing: 4px; }
.testi-name    { font-weight: 600; font-size: .9rem; color: var(--ink); margin-top: 6px; }
.testi-where   { font-size: .76rem; color: var(--fog); }
.testi-q       { font-family: 'Inter', sans-serif; font-size: 1.12rem; font-weight: 300; line-height: 1.75; color: var(--steel); font-style: italic; position: relative; }
.testi-q::before { content: '\201E'; font-family: 'Georgia', serif; font-size: 4rem; color: var(--red); opacity: .15; position: absolute; top: -12px; left: -8px; line-height: 1; }
.testi-img-wrap img { width: 100%; height: 120px; object-fit: cover; object-position: top; filter: saturate(.5); }

/* ================================================================
   FAQ
   ================================================================ */
.faq           { background: var(--ink2); padding: 100px 0; }
.faq-grid      { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-left h2   { font-family: 'Bebas Neue', cursive; font-size: clamp(2.4rem,4.5vw,3.8rem); color: var(--off); line-height: 1; margin-bottom: 16px; }
.faq-left p    { color: var(--fog); font-weight: 300; font-size: .9rem; margin-bottom: 32px; }
.faq-list      { display: flex; flex-direction: column; }
.faq-item      { border-bottom: 1px solid var(--ink3); }
.faq-item:first-child { border-top: 1px solid var(--ink3); }
.faq-q         { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; color: var(--off); text-align: left; transition: color var(--t); }
.faq-q:hover   { color: var(--white); }
.faq-icon      { width: 28px; height: 28px; border: 1px solid var(--ink3); flex-shrink: 0; margin-left: 16px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .9rem; transition: transform var(--t), background var(--t), border-color var(--t); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: var(--white); }
.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 20px; font-size: .9rem; color: var(--fog); line-height: 1.8; font-weight: 300; }

/* ================================================================
   KONTAKT – zweigeteilte Fläche
   ================================================================ */
.kontakt-grid  { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.kontakt-info  { background: var(--red); padding: 80px 56px; display: flex; flex-direction: column; justify-content: space-between; }
.kontakt-info h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.6rem,5vw,4.2rem); color: var(--white); line-height: .95; margin-bottom: 8px; }
.kontakt-info .sub { font-size: .95rem; color: rgba(255,255,255,.75); font-weight: 300; margin-bottom: 48px; line-height: 1.7; }
.k-block       { margin-bottom: 22px; }
.k-block strong { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 4px; }
.k-block span, .k-block a { font-size: 1rem; color: var(--white); font-weight: 300; }
.k-block a:hover { text-decoration: underline; }
.ht            { width: 100%; font-size: .88rem; }
.ht td         { padding: 4px 0; color: rgba(255,255,255,.65); }
.ht td:last-child { text-align: right; color: var(--white); font-weight: 500; }
.kontakt-form  { background: var(--ink2); padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; }
.kontakt-form h3 { font-family: 'Bebas Neue', cursive; font-size: 2.2rem; color: var(--off); margin-bottom: 32px; letter-spacing: .04em; }
.fg            { margin-bottom: 16px; }
.fg label      { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--fog); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 13px 16px; border: 1px solid var(--ink3); background: var(--ink); font-family: 'Inter', sans-serif; font-size: .92rem; color: var(--off); outline: none; transition: border-color var(--t), background var(--t); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--red); background: var(--ink2); }
.fg textarea   { resize: vertical; min-height: 110px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note     { font-size: .68rem; color: var(--fog); margin-top: 10px; letter-spacing: .04em; }
.form-success  { display: none; padding: 12px 16px; background: rgba(193,39,45,.1); border-left: 2px solid var(--red); color: rgba(242,237,232,.7); font-size: .85rem; margin-top: 12px; }

/* ================================================================
   FOOTER
   ================================================================ */
footer         { background: var(--ink); border-top: 1px solid var(--ink3); padding: 60px 0 24px; }
.footer-grid   { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 4px; margin-bottom: 18px; }
.footer-brand  { font-size: .88rem; font-weight: 300; color: var(--fog); line-height: 1.75; max-width: 320px; }
footer h5      { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--fog); margin-bottom: 18px; }
.footer-links li  { margin-bottom: 9px; }
.footer-links a   { font-size: .88rem; font-weight: 300; color: var(--steel); transition: color var(--t); }
.footer-links a:hover { color: var(--off); }
.footer-bottom { border-top: 1px solid var(--ink3); padding-top: 18px; display: flex; justify-content: space-between; font-size: .72rem; color: var(--steel); flex-wrap: wrap; gap: 8px; }
.footer-bottom a  { color: var(--steel); margin-left: 14px; transition: color var(--t); }
.footer-bottom a:hover { color: var(--red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .leist-row                { grid-template-columns: 1fr; }
  .leist-row .leist-img     { height: 320px; }
  .leist-row.flip .leist-img { order: 0; }
  .leist-row.flip .leist-txt { order: 0; }
  .gal-grid                 { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gi-1 { grid-column: 1/2; grid-row: 1/2; }
  .gi-2 { grid-column: 2/3; grid-row: 1/2; }
  .gi-3 { grid-column: 1/3; grid-row: 2/3; }
  .gi-4 { grid-column: 1/2; grid-row: 3/4; }
  .gi-5 { grid-column: 2/3; grid-row: 3/4; }
  .about-grid               { grid-template-columns: 1fr; }
  .kontakt-grid             { grid-template-columns: 1fr; }
  .intro-inner              { grid-template-columns: 1fr; }
  .testi-item               { grid-template-columns: 1fr; }
  .testi-img-wrap           { display: none; }
  .footer-grid              { grid-template-columns: 1fr 1fr; }
  .team-row                 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--ink2); border-top: 1px solid var(--ink3); padding: 16px 28px 24px; gap: 4px; }
  .nav-links.open           { display: flex; }
  .hamburger                { display: flex; }
  .hero h1                  { font-size: 3.8rem; }
  .hero-bar-inner           { flex-direction: column; gap: 12px; }
  .team-row                 { grid-template-columns: 1fr; }
  .gal-grid                 { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .kontakt-info, .kontakt-form { padding: 48px 28px; }
  .faq-grid                 { grid-template-columns: 1fr; }
  .galerie-head             { grid-template-columns: 1fr; }
  .team-head                { flex-direction: column; align-items: flex-start; gap: 14px; }
  .team-head p              { text-align: left; }
  .footer-grid              { grid-template-columns: 1fr; }
  .stats                    { flex-wrap: wrap; gap: 28px; }
  .leist-txt                { padding: 40px 28px; }
  .section                  { padding: 64px 0; }
  #lb-prev                  { left: 8px; }
  #lb-next                  { right: 8px; }
}
