/* ============================================================
   Gitarrenunterricht Albert Rehm — site.css
   Brizy-freier Neubau · Design nah am Original (Teal), destec/Uli
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --teal:        #2ea7ae;   /* Türkis (Buttons, Akzent, "albert rehm") */
  --teal-bright: #3fb9c0;   /* heller (Hover/Highlight, wie Original-Button) */
  --teal-deep:   #1e878d;   /* dunkler (Hover) */
  --teal-panel:  #2ba1a8;   /* Intro-Panel */

  --charcoal:    #2a2a2b;   /* dunkle Sektionen */
  --charcoal-2:  #202021;
  --ink:         #1c1e1f;   /* Text auf hell */
  --ink-soft:    #55595b;
  --paper:       #eef2f2;   /* heller Sektions-Hintergrund (aus Original) */
  --white:       #ffffff;
  --line:        rgba(28,30,31,.12);

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 60px);
  --r:    14px;

  --ease: cubic-bezier(.16,1,.3,1);
  --dur:  .8s;

  --ff-display: 'Blinker', system-ui, sans-serif;   /* Überschriften + Titel (wie Original) */
  --ff-body:    'Blinker', system-ui, sans-serif;   /* Fließtext (wie Original) */
  --ff-ui:      'Montserrat', system-ui, sans-serif; /* Buttons + Labels (wie Original) */
}

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

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.06rem;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1,h2,h3,h4 { font-family: var(--ff-display); margin: 0; line-height: 1.08; }
:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 10vw, 120px); position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-ui); font-weight: 500;
  font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 6px;
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  background-image: linear-gradient(115deg, #3fd0cf 0%, var(--teal-bright) 32%, var(--teal) 62%, var(--teal-deep) 100%);
  background-size: 200% 100%; background-position: 0% 50%;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .3s var(--ease), background-position .55s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-3px); background-position: 100% 50%; box-shadow: 0 14px 28px -10px rgba(46,167,174,.5), inset 0 1px 0 rgba(255,255,255,.35); }
.btn:active { transform: translateY(-1px); }
.btn--ghost {
  background-image: none; background-color: transparent;
  border: 2px solid rgba(255,255,255,.5); box-shadow: none;
}
.btn--ghost:hover { background-color: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.btn--lg { padding: 19px 40px; font-size: 1.05rem; border-radius: 8px; }

/* ---------- Header (erscheint erst nach dem Hero) ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px var(--pad);
  background: rgba(26,28,29,.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(-100%); transition: transform .4s var(--ease);
}
.header.is-shown { transform: none; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; color:#fff; }
.brand b { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; letter-spacing: .01em; }
.brand span { font-family: var(--ff-ui); font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--teal-bright); margin-top: 4px; }
.header .btn { padding: 10px 20px; font-size: .82rem; }
@media (max-width: 520px) { .header .btn span.lbl { display: none; } .header .btn { padding: 10px 14px; } }

/* ---------- Hero (vollflächig, wie Original) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: left;
  padding: 120px 0 90px; overflow: hidden; color:#fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 116%; object-fit: cover; object-position: center 32%; will-change: transform; }
.hero-bg::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,16,18,.5) 0%, rgba(12,16,18,.4) 45%, rgba(10,12,14,.68) 100%);
}
.hero-inner { position: relative; z-index: 2; width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: var(--pad); }
/* Zeilen-Maske für den Slide-Up-Reveal der Titel-Zeichen */
.hero h1 .line { display: block; overflow: hidden; padding: .05em 0 .14em; }
.hero h1 {
  font-weight: 400; text-transform: lowercase;
  font-size: clamp(1.8rem, 7.6vw, 5.8rem); letter-spacing: -.03em;
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
}
.hero h1 .rehm { display:block; color: var(--teal-bright); font-weight: 700; margin-top: .04em; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px 18px; justify-content: flex-start; align-items: center; }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index:1; color: rgba(255,255,255,.7); }
.hero-scroll svg { width: 26px; height: 26px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(7px) } }

/* ---------- Intro (Foto + Teal-Panel) ---------- */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.3fr 0.85fr; align-items: center; gap: 0; }
.intro-figure {
  position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 4/5;
  background: var(--charcoal); z-index: 2; margin-right: -7%;
  box-shadow: 0 50px 95px -40px rgba(0,0,0,.7);
}
.intro-figure img { width: 100%; height: 114%; object-fit: cover; object-position: center 22%; will-change: transform; }
.intro-panel {
  background: var(--teal-panel); color:#fff; border-radius: 18px;
  padding: clamp(34px, 4vw, 60px);
  padding-left: calc(7% + clamp(34px, 4vw, 60px));
  z-index: 1; align-self: stretch;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 30px 60px -34px rgba(46,167,174,.55);
}
.intro-panel h2 { font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.2rem); letter-spacing: -.01em; }
.intro-list { list-style: none; margin: 26px 0 0; padding: 0; }
.intro-list li {
  font-family: var(--ff-display); font-weight: 300; font-size: clamp(1.2rem, 2vw, 1.55rem);
  padding: 11px 0; border-top: 1px solid rgba(255,255,255,.22);
}
.intro-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }

/* ---------- Gitarren (dunkel) ---------- */
.guitars {
  color:#fff; position: relative; overflow: hidden;
  background:
    radial-gradient(85% 55% at 50% 10%, rgba(46,167,174,.16), transparent 60%),
    linear-gradient(180deg, #24292b 0%, #1c1f20 55%, #171a1b 100%);
}
.guitars .wrap { position: relative; z-index: 1; }
.guitar-row { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2.4vw, 30px); padding-block: clamp(10px, 3vw, 40px); }
.guitar {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 3/4.15; background: var(--charcoal-2);
  flex: 0 0 clamp(210px, 30%, 340px);
  box-shadow: 0 44px 80px -34px rgba(0,0,0,.85);
}
/* Desktop: große, überlappende Kacheln (mittlere vorne + größer) */
@media (min-width: 881px) {
  .guitar-row { gap: 0; }
  .guitar { flex-basis: clamp(300px, 30vw, 420px); margin-inline: clamp(-52px, -3.4vw, -28px); }
  .guitar:nth-child(1) { z-index: 1; }
  .guitar:nth-child(2) { flex-basis: clamp(330px, 32vw, 470px); z-index: 3; }
  .guitar:nth-child(3) { z-index: 2; }
}
.guitar img { width: 100%; height: 112%; object-fit: cover; will-change: transform; transition: transform .7s var(--ease); }
.guitar:hover img { transform: scale(1.05); }
.guitar figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 20px; color:#fff; font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: -.01em;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
}
/* Randkacheln: Caption an die freie Seite, damit sie die mittlere Kachel nicht verdeckt */
@media (min-width: 881px) {
  .guitar:nth-child(1) figcaption { text-align: left; }
  .guitar:nth-child(3) figcaption { text-align: right; }
}
.guitars-note {
  text-align: center; margin: clamp(34px, 5vw, 54px) auto 0; max-width: 44ch;
  font-family: var(--ff-display); font-weight: 300; font-size: clamp(1.05rem, 2vw, 1.4rem);
}
.guitars-note b { color: var(--teal-bright); font-weight: 300; }

/* ---------- Kontakt (dunkel) ---------- */
.contact { position: relative; overflow: hidden; color:#fff; background: linear-gradient(180deg, #171a1b 0%, #1b2325 100%); }
.contact-glow { position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; right: -12vw; top: -14vw; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(46,167,174,.22), transparent 65%); }
.contact .wrap { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 46px); align-items: stretch; }

.contact-card {
  background: linear-gradient(158deg, rgba(46,167,174,.13), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 34px 70px -36px rgba(0,0,0,.7);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-eyebrow { font-family: var(--ff-ui); font-weight: 600; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--teal-bright); }
.contact h2 { font-weight: 700; font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -.02em; margin-top: 12px; }
.contact-phone { display: inline-flex; align-items: center; gap: 16px; margin-top: 26px; text-decoration: none; color:#fff; width: fit-content; }
.contact-phone-icon { flex: none; width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; background-image: linear-gradient(135deg, var(--teal-bright), var(--teal-deep)); box-shadow: 0 14px 30px -10px rgba(46,167,174,.8), inset 0 1px 0 rgba(255,255,255,.3); transition: transform .3s var(--ease); }
.contact-phone-icon svg { width: 30px; height: 30px; color:#fff; }
.contact-phone:hover .contact-phone-icon { transform: translateY(-3px) rotate(-7deg) scale(1.05); }
.contact-phone-num { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--ff-display); font-weight: 300; font-size: clamp(1.65rem, 3.3vw, 2.35rem); letter-spacing: -.01em; }
.contact-phone-num small { font-family: var(--ff-ui); font-weight: 400; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-say { color: rgba(255,255,255,.8); margin-top: 20px; font-size: 1.25rem; font-weight: 300; }
.contact-addr { margin-top: 16px; font-style: normal; color: rgba(255,255,255,.62); line-height: 1.55; font-size: 1.12rem; }
.contact-addr b { color:#fff; font-family: var(--ff-display); font-weight: 700; }
.contact-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

.contact-figure { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 44px 90px -38px rgba(0,0,0,.8); min-height: 500px; margin-top: clamp(-70px, -6vw, -34px); }
.contact-figure img { position: absolute; top: -7%; left: 0; width: 100%; height: 114%; object-fit: cover; will-change: transform; }

.map { position: relative; margin-top: clamp(24px, 4vw, 40px); border-radius: 20px; overflow: hidden; aspect-ratio: 21/7; background:#11312f; border: 1px solid rgba(46,167,174,.4); box-shadow: 0 30px 60px -34px rgba(0,0,0,.6); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15) saturate(.95); }
.map-pin { position: absolute; z-index: 2; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 6px; background: rgba(23,26,27,.82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color:#fff; font-size: .82rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }

/* ---------- Proberaum (vollflächiges Band) ---------- */
.room { position: relative; height: clamp(460px, 66vw, 820px); overflow: hidden; background: #0d0f10; }
.room img { width: 100%; height: 122%; object-fit: cover; object-position: center 48%; will-change: transform; }
.room::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,30,31,.28), rgba(20,30,31,.55)); }

/* ---------- Footer (Premium) ---------- */
.footer {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(46,167,174,.22), transparent 55%),
    linear-gradient(180deg, #16302f 0%, #16191a 42%, #0f1213 100%);
  color: rgba(255,255,255,.66);
  padding-block: clamp(48px, 7vw, 84px) 30px;
}
.footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63,185,192,.7), transparent);
}
.footer-inner { position: relative; z-index: 1; }

.footer-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px 40px; }
.footer-eyebrow { font-family: var(--ff-ui); font-weight: 700; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--teal-bright); }
.footer-headline { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.7rem, 3.6vw, 2.7rem); letter-spacing: -.02em; color: #fff; margin-top: 12px; line-height: 1.05; }
.footer-sub { margin-top: 12px; color: rgba(255,255,255,.6); font-size: 1.18rem; }

.footer-divider { height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.02)); margin: clamp(36px,5vw,56px) 0; }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col-h { display: block; font-family: var(--ff-ui); font-weight: 700; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-col address { font-style: normal; line-height: 1.7; font-size: 1.08rem; color: rgba(255,255,255,.62); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { padding: 5px 0; font-size: 1.08rem; color: rgba(255,255,255,.62); }
.footer-link {
  display: block; background: none; border: none; padding: 4px 0; cursor: pointer;
  font-family: var(--ff-body); font-size: 1.08rem; color: rgba(255,255,255,.62);
  text-align: left; transition: color .2s, transform .2s; width: fit-content;
}
.footer-link:hover { color: var(--teal-bright); transform: translateX(3px); }

.footer-bottom { margin-top: clamp(36px,5vw,54px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: .9rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.build-stamp { font-variant-numeric: tabular-nums; letter-spacing: .04em; }

/* destec-Werbebanner */
.footer-promo { position: relative; }
.footer-made-by { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; opacity: .62; transition: opacity .2s; }
.footer-made-by:hover { opacity: 1; }
.footer-made-by span { font-family: var(--ff-display); font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.footer-made-by img { height: 24px; width: auto; }
.destec-pop {
  position: absolute; bottom: 100%; left: 50%; padding-bottom: 14px; width: 300px; max-width: min(300px, 84vw);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(12px) scale(.96); transform-origin: bottom center;
  z-index: 50; pointer-events: none;
  transition: opacity .28s ease, transform .36s cubic-bezier(.34,1.3,.64,1), visibility .28s;
}
.footer-promo:hover .destec-pop, .footer-promo:focus-within .destec-pop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); pointer-events: auto; }
.destec-pop-inner { position: relative; text-align: left; background: linear-gradient(150deg, #1f6f73 0%, #143b3d 100%); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 18px 20px 20px; box-shadow: 0 24px 54px rgba(0,0,0,.55); }
.destec-pop-inner::after { content:""; position: absolute; bottom: -8px; left: calc(50% - 7px); width: 14px; height: 14px; background: #143b3d; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); transform: rotate(45deg); }
.destec-pop-eyebrow { display: block; font-family: var(--ff-ui); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 7px; }
.destec-pop-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; line-height: 1.12; color:#fff; margin: 0 0 8px; }
.destec-pop-text { font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.72); margin: 0 0 14px; }
.destec-pop-cta { display: inline-flex; align-items: center; gap: 7px; background: var(--teal); color:#fff; font-family: var(--ff-ui); font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 9px 16px; border-radius: 6px; text-decoration: none; transition: background .2s, transform .2s; }
.destec-pop-cta:hover { background: var(--teal-deep); transform: translateY(-2px); }
/* destec-Popup im Footer-Spalten-Kontext linksbündig (kein Überlauf rechts) */
.footer-col .destec-pop { left: 0; transform: translateX(0) translateY(12px) scale(.96); transform-origin: bottom left; }
.footer-col .footer-promo:hover .destec-pop, .footer-col .footer-promo:focus-within .destec-pop { transform: translateX(0) translateY(0) scale(1); }
.footer-col .destec-pop-inner::after { left: 26px; }

/* ---------- Hero-Text-Effekte (Split-Reveal) ---------- */
.hero-eyebrow { font-family: var(--ff-ui); font-weight: 600; font-size: clamp(.72rem, 1.4vw, .86rem); letter-spacing: .3em; text-transform: uppercase; color: var(--teal-bright); margin: 0 0 22px; }
.hero-eyebrow::before { content: ""; display: inline-block; width: 42px; height: 2px; background: var(--teal-bright); vertical-align: middle; margin-right: 16px; }
.hero-tagline { font-family: var(--ff-display); font-weight: 300; font-size: clamp(1.05rem, 2.1vw, 1.4rem); letter-spacing: .04em; color: rgba(255,255,255,.85); margin: 22px 0 0; }
.hero h1 .line { display: block; }
.split-char, .split-word { display: inline-block; will-change: transform, opacity; }
.split-word { white-space: pre; }
html.js .hero-inner { opacity: 0; }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: clamp(12px, 4vw, 40px); }
.modal[hidden] { display: none; }
.modal-scrim { position: absolute; inset: 0; background: rgba(12,18,18,.62); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s ease; }
.modal-card { position: relative; z-index: 2; width: min(760px, 100%); max-height: min(86vh, 900px); background: var(--white); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); transform: translateY(18px) scale(.98); opacity: 0; transition: transform .38s var(--ease), opacity .38s var(--ease); }
.modal.is-open .modal-scrim { opacity: 1; }
.modal.is-open .modal-card { transform: none; opacity: 1; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px clamp(20px,4vw,34px); border-bottom: 1px solid var(--line); flex: none; }
.modal-head h2 { font-weight: 700; font-size: 1.3rem; }
.modal-close { background: none; border: 1px solid var(--line); border-radius: 999px; width: 40px; height: 40px; cursor: pointer; font-size: 1.2rem; line-height: 1; color: var(--ink); transition: background .2s, transform .2s; flex: none; }
.modal-close:hover { background: var(--paper); transform: rotate(90deg); }
.modal-body { padding: 10px clamp(20px,4vw,34px) 30px; overflow-y: auto; }
.modal-body h3 { font-weight: 700; font-size: 1.28rem; margin: 26px 0 8px; color: var(--ink); }
.modal-body h4 { font-weight: 700; font-size: 1.08rem; margin: 18px 0 4px; color: var(--teal-deep); }
.modal-body p { margin: 0 0 14px; font-size: 1.08rem; color: var(--ink-soft); }
.modal-body ul { margin: 0 0 14px; padding-left: 20px; color: var(--ink-soft); font-size: 1.08rem; }
.modal-body a { color: var(--teal-deep); word-break: break-word; }
.modal-body .addr-block { margin: 4px 0 14px; }
.modal-body .addr-block p { margin: 0; }

/* ---------- Reveal-Animationen (GSAP steuert; nur bei aktivem JS verstecken) ---------- */
html.js [data-reveal] { opacity: 0; }
.guitar { will-change: transform; }
.guitar img, .hero-bg img, .intro-figure img, .contact-figure img, .room img, .guitars-bg img { will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { aspect-ratio: 16/11; order: -1; margin-right: 0; }
  .intro-panel { padding-left: clamp(34px, 4vw, 60px); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-figure { aspect-ratio: 16/10; min-height: 0; max-height: 380px; margin-top: 0; }
  .map { aspect-ratio: 4/3; }
  .guitar-row { flex-direction: column; max-width: 440px; margin-inline: auto; }
  .guitar { flex-basis: auto; width: 100%; aspect-ratio: 16/11; margin-inline: 0; }
}
@media (max-width: 900px) {
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-cta .btn { width: 100%; justify-content: center; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
/* Hero-Eyebrow auf schmalen Handys in eine Zeile */
@media (max-width: 600px) {
  .hero-eyebrow { font-size: .62rem; letter-spacing: .12em; }
  .hero-eyebrow::before { width: 22px; margin-right: 10px; }
}
@media (max-width: 360px) {
  .hero-eyebrow { letter-spacing: .08em; }
  .hero-eyebrow::before { width: 16px; margin-right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-bg img, .intro-figure img, .guitar img, .contact-figure img, .room img, .guitars-bg img { transform: none !important; }
  .hero-scroll svg { animation: none; }
  .btn, .guitar, .modal-card, .modal-scrim { transition: none !important; }
}
