/* ---------- Farbpalette ----------
   Schwarz:      #0a0a0a
   Weinrot:      #6b1414  /  hell: #8b1a1a
   Gold:         #c9a24a  /  hell: #e6c170
   Weiß:         #f5f1ea
---------------------------------- */

/* Dezenter Rücklink oben rechts */
.back-to-offer {
  position: fixed;
  top: 14px;
  left: 18px;
  z-index: 50;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 234, 0.75);
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: color 0.2s ease;
}
.back-to-offer:hover { color: #e6c170; }
@media (max-width: 768px) {
  /* auf Mobile nach rechts, damit der ☰-Menü-Button oben links Platz hat */
  .back-to-offer { top: 10px; left: auto; right: 12px; font-size: 0.72rem; }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Cormorant Garamond", "Georgia", serif;
  color: #f5f1ea;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  background: #000;
}

/* Rotierende Hintergrundbilder mit Fade */
.bg-slide {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.bg-slide.active {
  opacity: 1;
}

/* Slider-Bilder: WebP bevorzugt, PNG als Fallback */
.bg-slide-1 { background-image: url("public/images/10.png"); }
.bg-slide-2 { background-image: url("public/images/11.png"); }
.bg-slide-3 { background-image: url("public/images/12.png"); }
.bg-slide-4 { background-image: url("public/images/13.png"); }
@supports (background-image: image-set(url("a.webp") type("image/webp"))) {
  .bg-slide-1 {
    background-image: image-set(
      url("public/images/10.webp") type("image/webp"),
      url("public/images/10.png") type("image/png"));
  }
  .bg-slide-2 {
    background-image: image-set(
      url("public/images/11.webp") type("image/webp"),
      url("public/images/11.png") type("image/png"));
  }
  .bg-slide-3 {
    background-image: image-set(
      url("public/images/12.webp") type("image/webp"),
      url("public/images/12.png") type("image/png"));
  }
  .bg-slide-4 {
    background-image: image-set(
      url("public/images/13.webp") type("image/webp"),
      url("public/images/13.png") type("image/png"));
  }
}

/* kein Overlay – Bild bleibt klar sichtbar */
.bg-overlay {
  display: none;
}

/* ---------- Sidebar ---------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 220px;
  padding: 3.65rem 1rem 1.5rem 72px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  z-index: 10;
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar { width: 0; }

/* Mobile-Toggle (☰ Menü) */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 30;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #e6c170;
  padding: 0.55rem 0.95rem;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 14px;
  cursor: pointer;
}

/* Menü-Buttons */
.menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 140px;
}

.nav-btn {
  font-family: "Cinzel", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0;
  text-align: center;
  cursor: pointer;
  color: rgba(245, 241, 234, 0.9);
  background: rgba(20, 10, 10, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 14px;
  transition: all 0.25s ease;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.nav-btn:hover {
  border-color: #e6c170;
  color: #e6c170;
  background: rgba(107, 20, 20, 0.3);
}

.nav-btn.active {
  border-color: #e6c170;
  color: #e6c170;
  box-shadow: 0 0 10px rgba(201, 162, 74, 0.2);
}

/* Socials unten */
/* Rechtliches – als nav-btn mit Aufklappfunktion */
.legal {
  width: 100%;
}

.legal-arrow {
  margin-left: 0.4rem;
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.legal.open .legal-arrow {
  transform: rotate(180deg);
}

.legal-items {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.4rem;
  padding-left: 0.75rem;
}

.legal.open .legal-items {
  display: flex;
}

.legal-link {
  text-align: left;
  font-family: "Cinzel", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.65);
  background: transparent;
  border: none;
  padding: 0.2rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #e6c170;
}

/* ---------- LUNA Titel oben ---------- */
/* Platzhalter oben – Überschrift kommt später */
.luna-title {
  display: none;
}

/* Home-Panel transparent, enthält die Home-Karte */
#home {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-height: 0;
  padding: 0 !important;
  overflow: visible;
}

/* Home-Text – sehr dezent, kaum Glas */
.home-sub {
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #e6c170;
  text-align: center;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.home-intro {
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.home-more-link {
  display: inline;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.95);
  background: transparent;
  border: none;
  padding: 0 0 0 0.35rem;
  margin: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  vertical-align: baseline;
  font-style: italic;
}

.home-more-link:hover {
  color: #e6c170;
}

.more-arrow {
  color: #e6c170;
  margin-left: 0.15rem;
}

#home {
  text-align: center;
  background: rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  border: 1px solid rgba(201, 162, 74, 0.18) !important;
  border-radius: 8px !important;
  padding: 1.25rem 1.5rem !important;
}

/* Hero-Überschrift LADY SUN – wärmeres Gold, edel, eine Zeile */
.hero-title {
  position: fixed;
  top: 7vh;
  left: 32vw;
  width: min(480px, 45vw);
  margin: 0;
  white-space: nowrap;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3rem, 5.6vw, 4.6rem);
  letter-spacing: 0.2em;
  text-align: center;
  background: linear-gradient(
    180deg,
    #fff0b3 0%,
    #ffd86b 30%,
    #f4c430 60%,
    #c89417 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 240, 180, 0.35),
    0 2px 1px rgba(0, 0, 0, 0.55),
    0 3px 4px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(244, 196, 48, 0.18);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55));
  z-index: 6;
  pointer-events: none;
  user-select: none;
}

#home {
  position: fixed !important;
  top: 30vh !important;
  left: 32vw !important;
  width: min(480px, 45vw) !important;
  max-height: none !important;
  z-index: 5;
}

/* "Mehr lesen"-Popup öffnet sich an exakt der gleichen Position
   wie das Home-Feld — gleiche Mittelachse, gleiche Breite. */
#mehr.panel {
  position: fixed;
  top: 30vh;
  left: 32vw;
  width: min(480px, 45vw);
  max-height: 60vh;
  overflow-y: auto;
  z-index: 7;
  transform-origin: top center;
}

.home-sub {
  margin-bottom: 0.35rem !important;
}

.home-intro {
  margin-top: 0 !important;
}

/* Telefonnummer mittig im Footer */
.phone-bottom {
  position: fixed;
  bottom: 18px;
  left: calc(32vw + min(240px, 22.5vw));
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Cinzel", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 8;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.phone-icon {
  display: inline-block;
  font-size: 1.7rem;
  line-height: 1;
  color: #e6c170;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
}

.phone-bottom:hover { opacity: 0.85; }

/* ---------- Content-Panel ---------- */
.content {
  position: fixed;
  top: 56%;
  left: calc(180px + (100vw - 180px) / 2);
  transform: translate(-50%, -50%);
  width: min(580px, calc(100vw - 180px - 5vw));
  max-height: 72vh;
  z-index: 5;
}

.panel {
  display: none;
  padding: 2.25rem 2.25rem;
  background: rgba(10, 10, 10, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-height: 82vh;
  overflow-y: auto;
  animation: fadeIn 0.45s ease both;
}

.panel.active {
  display: block;
}

/* Schließen-Button im Panel */
.panel-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(245, 241, 234, 0.7);
  background: transparent;
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.panel-close:hover {
  color: #e6c170;
  border-color: #e6c170;
  background: rgba(107, 20, 20, 0.3);
}

.panel { position: relative; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel h1 {
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #e6c170;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 162, 74, 0.35);
}

.panel p {
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0.85rem;
  color: rgba(245, 241, 234, 0.92);
}

.accent { color: #e6c170; }

.lead {
  font-size: 1.2rem;
  color: #e6c170;
  font-style: italic;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.5);
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

/* Scrollbar */
.panel::-webkit-scrollbar { width: 6px; }
.panel::-webkit-scrollbar-track { background: transparent; }
.panel::-webkit-scrollbar-thumb {
  background: rgba(201, 162, 74, 0.4);
  border-radius: 3px;
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.tile {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.75);
  background: rgba(20, 6, 6, 0.55);
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.tile:hover {
  border-color: #e6c170;
  color: #e6c170;
  background: rgba(107, 20, 20, 0.45);
}

.tile-video {
  aspect-ratio: 16 / 10;
}

.tile small {
  display: block;
  margin-top: 0.4rem;
  color: #e6c170;
  font-size: 0.8rem;
}

/* Shop-Karten */
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.shop-card {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(201, 162, 74, 0.45);
  border-radius: 6px;
  transition: all 0.25s ease;
}

.shop-card:hover {
  border-color: #e6c170;
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.25);
}

.shop-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  background: rgba(0, 0, 0, 0.3);
}

.shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-title {
  margin-top: 0.75rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #e6c170;
  text-align: center;
}

.shop-btn {
  margin-top: 0.6rem;
  padding: 0.4rem 1.1rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(245, 241, 234, 0.9);
  background: rgba(20, 10, 10, 0.4);
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-btn:hover {
  color: #e6c170;
  border-color: #e6c170;
  background: rgba(107, 20, 20, 0.4);
}

/* Video-Karte */
.video-grid {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.video-card {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(201, 162, 74, 0.45);
  border-radius: 6px;
  transition: all 0.25s ease;
}

.video-card:hover {
  border-color: #e6c170;
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.25);
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  background: transparent;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.gallery-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 6px;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(201, 162, 74, 0.45);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-card:hover {
  border-color: #e6c170;
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.25);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 220px);
  }
}

/* Lightbox-Overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease both;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201, 162, 74, 0.6);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
  line-height: 1;
  color: #e6c170;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(107, 20, 20, 0.5);
  border-color: #e6c170;
}

/* Listen */
.list {
  list-style: none;
  margin-top: 0.5rem;
}

.list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* Tribute */
.tribute-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.tribute-btn {
  padding: 1.1rem 0;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #e6c170;
  background: linear-gradient(
    135deg,
    rgba(107, 20, 20, 0.6) 0%,
    rgba(20, 6, 6, 0.6) 100%
  );
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tribute-btn:hover {
  border-color: #e6c170;
  background: linear-gradient(
    135deg,
    rgba(139, 26, 26, 0.75) 0%,
    rgba(30, 8, 8, 0.75) 100%
  );
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.3);
}

/* Kontaktformular */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(10, 10, 10, 0.55);
  color: #f5f1ea;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 2px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e6c170;
  background: rgba(20, 6, 6, 0.6);
}

.send-btn {
  align-self: flex-start;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #e6c170;
  background: linear-gradient(
    135deg,
    rgba(107, 20, 20, 0.65) 0%,
    rgba(20, 6, 6, 0.65) 100%
  );
  border: 1px solid rgba(201, 162, 74, 0.55);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.send-btn:hover {
  border-color: #e6c170;
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.35);
}

/* ============================================================
   MOBILE — Demo-Startfläche zentriert, scrollbar
   Desktop oberhalb 768 px bleibt 1:1 unverändert.
   ============================================================ */
@media (max-width: 768px) {

  /* --- Body: scrollbar, gibt Positionierungs-Kontext.
         padding-bottom hält die Telefonnummer von den Inhalten frei,
         safe-area-inset deckt iPhone-Notch/Home-Indikator-Bereich ab. --- */
  html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh !important;
    position: relative !important;
  }
  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* --- Hintergrund-Slider: Bild bewusst nach oben gerückt
         (center 22%), damit Gesicht/Oberkörper sichtbar bleiben
         statt mittig durchgeschnitten zu werden. --- */
  .bg-slide {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover !important;
    background-position: center 22% !important;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
  }
  .bg-slide.active { opacity: 0.85; }

  /* --- Lesbarkeits-Overlay (Desktop hat display:none, hier wieder an).
         Sanfter dunkler Verlauf von oben + Boden, Mitte heller — Bild
         bleibt sichtbar, aber Text wird gut lesbar. --- */
  .bg-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 30%,
      rgba(0, 0, 0, 0.35) 65%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  /* --- Mobile-Toggle (☰ Menü) sichtbar — feste 44×44 Touch-Target,
         klar gegenüber Hintergrund abgehoben. --- */
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    top: calc(12px + env(safe-area-inset-top, 0px));
    left: 12px;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 0.9rem;
    font-size: 0.95rem;
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid rgba(201, 162, 74, 0.55);
  }

  /* --- Rück-Link rechts oben, mit Safe-Area-Padding --- */
  .back-to-offer {
    top: calc(16px + env(safe-area-inset-top, 0px));
    right: 12px;
    left: auto;
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    background: rgba(10, 10, 10, 0.55);
    border-radius: 12px;
  }

  /* --- Sidebar als Off-Canvas (Hamburger). Backdrop kommt unten. --- */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 82vw;
    max-width: 320px;
    height: 100vh;
    padding: calc(4.5rem + env(safe-area-inset-top, 0px)) 1.5rem
             calc(2rem + env(safe-area-inset-bottom, 0px)) 1.5rem;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-right: 1px solid rgba(201, 162, 74, 0.35);
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
  }
  .sidebar.open { transform: translateX(0); }

  /* --- Backdrop für Sidebar — dimmt Bühne wenn Menü offen ist.
         Klick außerhalb wird durch script.js bereits gehandhabt. --- */
  .sidebar::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .sidebar.open::before { opacity: 1; pointer-events: auto; }

  .menu { width: 100%; gap: 0.55rem; }
  .nav-btn { min-height: 44px; height: auto; font-size: 0.95rem; padding: 0.4rem 0.6rem; }
  .legal-link { font-size: 0.88rem; padding: 0.5rem 0; min-height: 36px; }

  /* --- Hero-Titel (LADY SUN). Liegt OBERHALB der Karte, mit klarem
         Abstand zu Toggle/Back-Link. Nicht fixed, sondern Teil des
         Layouts — flexibler bei Landscape/Notch. --- */
  .hero-title {
    position: absolute !important;
    top: calc(74px + env(safe-area-inset-top, 0px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92vw !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: clamp(2rem, 9.5vw, 3rem) !important;
    letter-spacing: 0.12em !important;
    white-space: normal !important;
    z-index: 5;
  }

  /* --- Content-Wrapper: nur Positions-Container, kein Layout --- */
  .content {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* --- Aktives Panel / Home-Karte: mittig im sicheren Bereich
         zwischen Hero-Titel und Telefonnummer. Top per calc, damit
         es weder Titel überlappt noch in das Telefon klemmt. --- */
  .panel.active,
  #home {
    position: fixed !important;
    top: calc(140px + env(safe-area-inset-top, 0px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 1.5rem) !important;
    max-width: 420px !important;
    max-height: calc(100vh - 220px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
    overflow-y: auto !important;
    padding: 1.4rem 1.2rem !important;
    margin: 0 !important;
    background: rgba(10, 10, 10, 0.55) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(201, 162, 74, 0.4) !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55) !important;
    box-sizing: border-box;
    z-index: 5;
  }

  /* Nicht-aktive Panels bleiben versteckt */
  .panel:not(.active) { display: none !important; }

  /* --- Telefonnummer fest unten mittig, Touch-tauglich (44px),
         mit Safe-Area-Padding für iPhone Home-Indikator. --- */
  .phone-bottom {
    position: fixed !important;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem !important;
    min-height: 44px;
    padding: 0.5rem 1rem !important;
    text-align: center !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(201, 162, 74, 0.45);
    border-radius: 22px;
    z-index: 6;
  }
  .phone-bottom .phone-icon { font-size: 1.3rem !important; color: #e6c170 !important; }

  /* --- Galerie-Karten: 2 Spalten --- */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem;
    padding: 0 0.25rem;
  }

  /* --- Shop / Wunschliste — je 1 Spalte --- */
  .shop-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .shop-card { width: 100% !important; max-width: 320px; }

  /* --- Video-Player passt sich an --- */
  .video-card { max-width: 100% !important; }

  /* --- Tribute: 2 Spalten statt 3 für Touch-Größe --- */
  .tribute-grid { grid-template-columns: 1fr 1fr !important; }
  .tribute-btn { min-height: 56px; font-size: 1.05rem; }

  /* --- Lightbox auf Mobile vereinfachen --- */
  .lightbox-img { max-width: 95vw; max-height: 75vh; }
  .lightbox-close { top: calc(0.75rem + env(safe-area-inset-top, 0px)); right: 1rem; width: 44px; height: 44px; }

  /* --- Schriftgrößen für Lesbarkeit --- */
  .panel h1 { font-size: 1.55rem !important; margin-bottom: 1rem !important; }
  .panel h2 { font-size: 1.2rem !important; }
  .panel p { font-size: 1rem !important; line-height: 1.6 !important; }
  .home-sub { font-size: 1.35rem !important; margin-bottom: 0.4rem !important; }
  .home-intro { font-size: 1rem !important; line-height: 1.65 !important; }

  /* --- Kontaktformular: Eingaben groß genug für Touch --- */
  .contact-form input,
  .contact-form textarea { min-height: 44px; padding: 0.75rem 0.85rem; }
  .send-btn { min-height: 44px; padding: 0.75rem 1.5rem; }

  /* --- Shop-Button: Touch-Größe --- */
  .shop-btn { min-height: 40px; padding: 0.55rem 1.2rem; }
}

/* ============================================================
   SCHMALES HANDY ≤ 430 px (iPhone 12/13/14/15 Standard)
   Feinjustierung für sehr schmale Viewports.
   ============================================================ */
@media (max-width: 430px) {
  .hero-title {
    top: calc(70px + env(safe-area-inset-top, 0px)) !important;
    font-size: clamp(1.85rem, 9vw, 2.6rem) !important;
    letter-spacing: 0.1em !important;
  }
  .panel.active,
  #home {
    top: calc(126px + env(safe-area-inset-top, 0px)) !important;
    max-height: calc(100vh - 206px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
    padding: 1.2rem 1rem !important;
  }
  .home-sub { font-size: 1.2rem !important; }
  .home-intro { font-size: 0.95rem !important; }
  .panel h1 { font-size: 1.4rem !important; }
  .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 0.5rem; }
  .phone-bottom { font-size: 1rem !important; }
}

/* ============================================================
   SEHR SCHMALES HANDY ≤ 360 px (Galaxy S9, alte iPhones)
   ============================================================ */
@media (max-width: 360px) {
  .hero-title {
    top: calc(64px + env(safe-area-inset-top, 0px)) !important;
    font-size: clamp(1.7rem, 8.5vw, 2.3rem) !important;
  }
  .panel.active,
  #home {
    top: calc(116px + env(safe-area-inset-top, 0px)) !important;
    max-height: calc(100vh - 196px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
    width: calc(100vw - 1rem) !important;
  }
  .mobile-toggle { font-size: 0.85rem; padding: 0.45rem 0.7rem; }
  .back-to-offer { font-size: 0.65rem; padding: 0.3rem 0.5rem; }
  .home-sub { font-size: 1.1rem !important; }
  .panel h1 { font-size: 1.3rem !important; }
}

/* ============================================================
   LANDSCAPE-MODUS auf kleinen Höhen — Hero-Titel kleiner,
   damit Karte noch in den Viewport passt.
   ============================================================ */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero-title {
    top: calc(60px + env(safe-area-inset-top, 0px)) !important;
    font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
  }
  .panel.active,
  #home {
    top: calc(110px + env(safe-area-inset-top, 0px)) !important;
    max-height: calc(100vh - 170px - env(safe-area-inset-bottom, 0px)) !important;
    max-width: 520px !important;
  }
  .phone-bottom { font-size: 0.95rem !important; bottom: 0.5rem !important; }
}
