/* ================================================================
   Salon NOIR Xtra – Stylesheet
   Font: Bebas Neue (display) + DM Sans (body) via Google Fonts
   Loaded in index.html <head>
   ================================================================ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #181818;
  --line:      #2a2a2a;
  --neon:      #c8f23c;
  --neon2:     #a8d420;
  --white:     #f0f0ee;
  --muted:     #888880;
  --text:      #d8d8d4;
  --nav-h:     68px;
  --r:         0px;
  --t:         0.25s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 18px; }
body  {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Utilities ────────────────────────────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-alt { background: var(--bg2); }

.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
  line-height: 0.95;
  color: var(--white);
}
.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--neon);
  display: block;
  margin-bottom: 16px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  line-height: 1;
}
.btn-neon        { background: var(--neon); color: var(--bg); border-color: var(--neon); }
.btn-neon:hover  { background: var(--neon2); border-color: var(--neon2); transform: translateY(-2px); }
.btn-ghost       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }

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

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  background: var(--neon);
  color: var(--bg);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 8px 0;
  text-align: center;
}
.topbar-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.topbar a { color: var(--bg); font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  transition: border-color var(--t);
}
nav.scrolled { border-bottom-color: var(--neon); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: .12em;
  color: var(--white);
}
.nav-logo em { color: var(--neon); font-style: normal; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); transition: color var(--t);
}
.nav-links a:hover { color: var(--neon); }
.nav-links .btn-neon { padding: 9px 22px; font-size: .7rem; }

.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(--white); 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
   ================================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 0;
  position: relative; z-index: 2;
}
.hero-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11rem; line-height: 1;
  color: rgba(255,255,255,.04);
  position: absolute; top: 40px; left: -20px;
  user-select: none; pointer-events: none;
  letter-spacing: -.02em;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: .9; letter-spacing: .03em;
  color: var(--white); margin-bottom: 32px;
}
.hero h1 .accent { color: var(--neon); display: block; }
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--muted);
  max-width: 400px; margin-bottom: 48px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, var(--bg) 0%, transparent 45%);
}
.hero-right::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--neon); z-index: 2;
}

.founded-badge {
  display: inline-flex; align-items: center; gap: 16px;
  border: 1px solid var(--line); padding: 16px 24px; margin-top: 36px;
}
.founded-badge .year { font-family: 'Bebas Neue',sans-serif; font-size: 2.4rem; color: var(--neon); line-height: 1; }
.founded-badge .desc { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.hero-scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.3); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.hero-scroll::before { content: ''; width: 1px; height: 48px; background: rgba(255,255,255,.15); }

/* ================================================================
   TICKER BAND
   ================================================================ */
.ticker-band { background: var(--neon); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-track span { font-family: 'Bebas Neue',sans-serif; font-size: 1rem; letter-spacing: .12em; color: var(--bg); padding: 0 28px; }
.ticker-track span.dot { color: rgba(10,10,10,.35); padding: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ================================================================
   ÜBER UNS
   ================================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }

.about-img-side { position: relative; overflow: hidden; min-height: 560px; }
.about-img-side img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: filter .6s ease; }
.about-img-side:hover img { filter: grayscale(0%); }
.about-img-side::before {
  content: ''; position: absolute; top: 24px; left: 24px;
  width: 48px; height: 48px; border-top: 2px solid var(--neon); border-left: 2px solid var(--neon); z-index: 2;
}
.about-img-side::after {
  content: ''; position: absolute; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-bottom: 2px solid var(--neon); border-right: 2px solid var(--neon); z-index: 2;
}
.about-text-side {
  background: var(--bg2); padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--line);
}
.about-text-side h2 { font-size: clamp(3rem, 5vw, 5.5rem); margin-bottom: 28px; }
.about-text-side p  { color: var(--muted); margin-bottom: 18px; }

.about-checks { margin: 28px 0; }
.check { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.check-mark {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid var(--neon); display: flex; align-items: center; justify-content: center;
}
.check-mark::after { content: '✓'; font-size: .6rem; color: var(--neon); }
.check span { font-size: 1rem; color: var(--text); }

/* ================================================================
   TEAM
   ================================================================ */
.team-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.team-header h2 { font-size: clamp(3rem, 6vw, 6rem); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.team-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg3); }
.team-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%); transition: filter .5s, transform .5s; }
.team-card:hover img { filter: grayscale(0%); transform: scale(1.04); }
.team-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,.92) 100%); }
.team-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.team-card-info h3 { font-family: 'Bebas Neue',sans-serif; font-size: 1.6rem; letter-spacing: .06em; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--neon); }
.team-bio {
  font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 10px; line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s ease; opacity: 0;
}
.team-card:hover .team-bio { max-height: 80px; opacity: 1; }

/* ================================================================
   UNSER SALON
   ================================================================ */
.salon-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.salon-text h2 { font-size: clamp(3rem, 5vw, 5rem); margin-bottom: 24px; }
.salon-text p  { color: var(--muted); margin-bottom: 18px; }

.salon-mosaic { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; height: 560px; }
.salon-mosaic .big { grid-row: span 2; }
.salon-mosaic img  { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(25%); transition: filter .5s; }
.salon-mosaic img:hover { filter: none; }

/* ================================================================
   LEISTUNGEN
   ================================================================ */
.leistungen-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 32px; }
.leistungen-header h2 { font-size: clamp(3rem, 6vw, 6rem); }
.leistungen-header p  { max-width: 360px; color: var(--muted); font-size: .95rem; text-align: right; }

.leistungen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.leistung-card { background: var(--bg2); padding: 40px 32px; transition: background var(--t); position: relative; overflow: hidden; }
.leistung-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--neon); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.leistung-card:hover { background: var(--bg3); }
.leistung-card:hover::before { transform: scaleX(1); }
.leistung-num { font-family: 'Bebas Neue',sans-serif; font-size: 3.5rem; color: rgba(200,242,60,.08); line-height: 1; margin-bottom: 16px; }
.leistung-card h3 { font-family: 'Bebas Neue',sans-serif; font-size: 1.5rem; letter-spacing: .05em; color: var(--white); margin-bottom: 12px; }
.leistung-card p  { font-size: 1rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   PREISLISTE
   ================================================================ */
.preise-header { margin-bottom: 56px; }
.preise-header h2 { font-size: clamp(3rem, 6vw, 6rem); }
.preise-header p  { color: var(--muted); margin-top: 16px; max-width: 480px; }
.preise-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.preise-group { background: var(--bg2); padding: 40px 32px; }
.preise-group h4 {
  font-family: 'Bebas Neue',sans-serif; font-size: 1.6rem; letter-spacing: .06em; color: var(--white);
  padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.preise-group h4 .icon { color: var(--neon); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.price-row:last-of-type { border-bottom: none; }
.price-row .name  { color: var(--text); }
.price-row .price { color: var(--neon); font-weight: 500; white-space: nowrap; margin-left: 12px; }
.price-note { font-size: .75rem; color: var(--muted); margin-top: 16px; font-style: italic; }

/* ================================================================
   GALERIE
   ================================================================ */
.galerie-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.galerie-header h2 { font-size: clamp(3rem, 6vw, 6rem); }
.galerie-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.gal-item { position: relative; overflow: hidden; aspect-ratio: 4/5; cursor: zoom-in; background: var(--bg3); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: filter .4s, transform .4s; display: block; }
.gal-item:hover img { filter: none; transform: scale(1.05); }
.gal-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gal-item:hover .gal-overlay { background: rgba(10,10,10,.4); }
.gal-zoom { font-size: 2rem; color: var(--neon); opacity: 0; transform: scale(.5); 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 ease; }
@keyframes lbin { from{opacity:0} to{opacity:1} }
#lb-box { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; animation: lbpop .25s ease; }
@keyframes lbpop { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
#lb-box img { max-width: 90vw; max-height: 82vh; object-fit: contain; display: block; }
#lb-caption { text-align: center; color: var(--muted); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 14px; }
#lb-counter { text-align: center; color: rgba(255,255,255,.25); font-size: .7rem; letter-spacing: .14em; margin-top: 4px; }
#lb-close { position: fixed; top: 20px; right: 24px; background: none; border: 1px solid var(--line); color: var(--white); width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color var(--t), color var(--t); }
#lb-close:hover { border-color: var(--neon); color: var(--neon); }
#lb-prev, #lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: 1px solid var(--line); color: var(--white); width: 52px; height: 52px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color var(--t), color var(--t), transform var(--t); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-prev:hover, #lb-next:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-50%) scale(1.05); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-header { margin-bottom: 56px; }
.testi-header h2 { font-size: clamp(3rem, 6vw, 6rem); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.testi-card { background: var(--bg2); padding: 40px 32px; }
.testi-stars { color: var(--neon); font-size: .85rem; margin-bottom: 20px; letter-spacing: .1em; }
.testi-quote { font-size: 1rem; font-weight: 300; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 24px; border-left: 2px solid var(--neon); padding-left: 18px; }
.testi-author { font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ================================================================
   INSTAGRAM
   ================================================================ */
.insta-section { padding: 80px 0; }
.insta-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.insta-header h2 { font-size: clamp(3rem, 5vw, 5rem); }
.insta-handle { font-size: 1rem; color: var(--neon); letter-spacing: .04em; }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 2px; }
.insta-cell { aspect-ratio: 1; background: var(--bg2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t), border-color var(--t); }
.insta-cell:hover { background: var(--bg3); border-color: var(--neon); }
.insta-cell-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.2); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; transition: color var(--t); }
.insta-cell:hover .insta-cell-inner { color: var(--neon); }

/* ================================================================
   KONTAKT
   ================================================================ */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.kontakt-info h2 { font-size: clamp(3rem, 5vw, 5rem); margin-bottom: 32px; }
.kontakt-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.kontakt-block:last-of-type { border-bottom: none; }
.kontakt-block strong { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--neon); display: block; margin-bottom: 8px; }
.kontakt-block span, .kontakt-block a { font-size: 1rem; color: var(--text); }
.kontakt-block a:hover { color: var(--neon); }
.hours-table { width: 100%; font-size: 1rem; }
.hours-table td { padding: 5px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--bg2); border: 1px solid var(--line);
  color: var(--white); font-family: 'DM Sans',sans-serif;
  font-size: 1rem; outline: none;
  transition: border-color var(--t), background var(--t);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--neon); background: var(--bg3); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; padding: 16px 20px; border: 1px solid var(--neon); color: var(--neon); font-size: .9rem; margin-top: 14px; }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { font-family: 'Bebas Neue',sans-serif; font-size: 2rem; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; }
.footer-logo em { color: var(--neon); font-style: normal; }
.footer-brand p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
footer h5 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--neon); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a  { font-size: 1rem; color: var(--muted); transition: color var(--t); }
.footer-links a:hover { color: var(--neon); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--muted); margin-left: 20px; transition: color var(--t); }
.footer-bottom a:hover { color: var(--neon); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; }
  .hero-left { padding: 64px 0 48px; }
  .hero-number { font-size: 7rem; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-side { min-height: 380px; }
  .about-text-side { padding: 48px 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid, .preise-cols, .testi-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .kontakt-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .salon-mosaic { height: 400px; }
  .salon-layout { grid-template-columns: 1fr; }
  .leistungen-header, .galerie-header, .team-header, .insta-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .leistungen-header p { text-align: left; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 24px 28px 32px; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 3.8rem; }
  .team-grid { grid-template-columns: 1fr; }
  .leistungen-grid, .preise-cols, .testi-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .section { padding: 64px 0; }
  .salon-mosaic { grid-template-columns: 1fr; height: auto; }
  .salon-mosaic .big { grid-row: span 1; }
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }
}
