/* ── RESET & TOKENS ── */
:root {
  --orange:    #e46d38;
  --gold:      #e28939;
  --brown:     #4b241a;
  --cream:     #ffeedf;
  --cream-mid: #fde8ce;
  --white:     #ffffff;
}

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

img, picture, svg { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold); color: var(--white); }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: "Comme", sans-serif;
  overflow-x: hidden;
}

/* ── NAVBAR (original, unverändert) ── */
header {
  background-color: #ffffff;
  padding: 14px 22px;
  text-align: start;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
  border-radius: 120px;
  margin: 1.5vh 1vw 0 1vw;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(95vw, 1200px);
  max-width: 100%;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-family: "Madimi One", sans-serif;
  font-size: 0.7rem;
  z-index: 100;
}

@media (max-width: 768px) {
  .desktop-logo {
    display: none;
  }
  header {
    background-image: none;
    width: 100%;
    min-width: 0;
    padding: 0 1rem;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    transform: none;
    justify-content: flex-end;
    align-items: center;
  }
  header img {
    height: 5vh;
    max-height: 44px;
    width: auto;
    margin: 0;
  }
  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  nav h1 {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

header img {
  height: 6vh;
  max-height: 65px;
  width: auto;
  display: block;
}

nav, .space-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.desktop-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.desktop-logo img {
  height: 6vh;
  max-height: 65px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1vw;
}

.nav-toggle {
  display: none;
  background: var(--cream);
  border: none;
  padding: 0.7rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.nav-toggle img {
  display: block;
  width: 2.6rem;
  height: auto;
}

@media (max-width: 1024px) {
  .desktop-logo {
    display: inline-flex;
  }

  header {
    width: min(95vw, 1200px);
    max-width: 100%;
    min-width: 0;
    padding: 14px 22px;
    margin: 1.5vh 1vw 0 1vw;
    background-color: #ffffff;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    border-radius: 120px;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transform: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu:not(.open) a {
    display: block;
  }

  nav {
    width: auto;
    justify-content: space-between;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    width: 100%;
  }

  .nav-menu h1 {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    transition: background 0.2s;
    text-align: left;
    font-size: 1rem;
  }

  .nav-menu a:hover h1 {
    background: rgba(228,109,56,0.1);
  }

  .nav-menu:not(.open) a {
    display: none;
  }

  nav {
    width: auto;
    justify-content: space-between;
  }
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}

nav a {
  text-decoration: none;
  color: var(--brown);
  transition: color 0.2s;
}
nav a:hover h1 { color: var(--orange); }
header h1:last-child { margin-right: 1vw; }

/* ── SHARED ── */
.label-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: "Madimi One", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

h2 {
  font-family: "Comme", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown);
}

/* ── HERO ── */
.hero {
  min-height: 84vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #4b241a 0%, #7a3520 35%, #e46d38 75%, #e28939 100%);
}



#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 13vh 7vw 9vh;
  gap: 4vw;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}



/* ── Text Block — zentriert ── */
.hero-left {
  text-align: center;
  max-width: 700px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-right-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1 / 1;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,179,71,0.4) 0%, rgba(228,109,56,0.15) 55%, transparent 75%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  max-width: 580px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: heroFloat 5s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  position: relative;
  z-index: 1;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Wolken */
.hero-clouds {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}
.hero-clouds svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-eyebrow {
  font-family: "Madimi One", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: "Comme", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 200;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--orange);
  font-family: "Madimi One", sans-serif;
  display: block;
  text-align: left;
}

.hero-sub {
  font-family: "Comme", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 2.2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--brown);
  text-decoration: none;
  font-family: "Madimi One", sans-serif;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s;
}
.hero-btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.hero-btn:hover { background: var(--cream); transform: translateY(-3px); }
.hero-btn:hover svg { transform: translateX(4px); }

/* ── Images — 3 gleich gross nebeneinander ── */
.hero-right {
  width: 100%;
}

.hero-img-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.himg {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 16px 48px rgba(75,36,26,0.15);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}

.himg:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(75,36,26,0.22);
  z-index: 2;
}

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

/* subtle individual tilts */
.himg-back  { transform: rotate(-2deg); }
.himg-mid   { transform: rotate(0deg) translateY(-12px); }
.himg-front { transform: rotate(2deg); }
.himg-back:hover  { transform: rotate(0deg) translateY(-12px) scale(1.02); }
.himg-mid:hover   { transform: rotate(0deg) translateY(-24px) scale(1.02); }
.himg-front:hover { transform: rotate(0deg) translateY(-12px) scale(1.02); }

.hero-blob { display: none; }

/* floating pill */
.hero-pill {
  position: absolute;
  bottom: 3vh;
  right: 7vw;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 20px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(75,36,26,0.1);
  font-family: "Madimi One", sans-serif;
  font-size: 0.85rem;
  color: var(--brown);
  animation: pillFloat 4s ease-in-out infinite;
  z-index: 3;
}
.hero-pill svg { width: 28px; height: 28px; }

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 12vh 6vw 8vh;
    gap: 3rem;
    min-height: auto;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .hero-right {
    margin-top: 2rem;
  }
  .hero-img {
    max-width: 520px;
  }
  .hero-title em {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 10vh 5vw 7vh;
    gap: 2.5rem;
  }
  .hero-img-stack {
    gap: 10px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-btn {
    width: min(100%, 260px);
    justify-content: center;
  }
  .hero-pill {
    position: static;
    margin: 2rem auto 0;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    justify-content: center;
  }
  .hero-right {
    align-items: center;
  }
}

@media (max-width: 540px) {
  .hero-content {
    padding: 8vh 4vw 5vh;
  }
  .hero-title {
    font-size: clamp(2rem, 13vw, 3rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  .hero-pill {
    font-size: 0.82rem;
    padding: 12px 14px;
  }
}

/* ── ANGEBOT ── */
.angebot {
  padding: 10vh 7vw;
}

/* Zentriere Text in der zweiten Section (Angebot) */
.angebot {
  text-align: center;
}

.angebot .welcome-heading,
.angebot .angebot-intro h2 {
  text-align: center;
}

.angebot .welcome-box p {
  text-align: left;
}

.angebot-intro {
  margin-bottom: 5vh;
}

.angebot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  margin-bottom: 4vh;
  overflow: visible;
}

@media (max-width: 768px) {
  .angebot-cards { grid-template-columns: 1fr; gap: 2vh; }
}

.acard {
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  position: relative;
  transform-origin: center center;
}

.acard:hover {
  transform: rotate(3deg);
  box-shadow: 0 20px 50px rgba(75,36,26,0.13);
}

.acard.acard-mid:hover {
  transform: rotate(-3deg);
}

.acard-accent {
  background: var(--orange);
  color: var(--white);
}
.acard.acard-accent h3,
.acard.acard-accent p { color: var(--white); }
.acard-accent .acard-num { color: rgba(255,255,255,0.4); }
.acard-accent .acard-icon svg { stroke: var(--white); }
.acard-accent::after { background: rgba(255,255,255,0.3); }
.acard-accent:hover::after { background: rgba(255,255,255,0.7); }

.acard-num {
  font-family: "Comme", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  opacity: 0.6;
}

.acard-icon svg { width: 44px; height: 44px; }

.acard h3 {
  font-family: "Madimi One", sans-serif;
  font-size: 1.15rem;
  color: var(--brown);
}

.acard p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--brown);
  opacity: 0.75;
}

.zeiten-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-mid);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.95rem;
  margin-bottom: 3vh;
}

.welcome-heading {
  font-family: "Madimi One", sans-serif;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 1.6rem;
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.welcome-box {
  background: var(--white);
  border-radius: 28px;
  padding: 2.4rem 2rem;
  box-shadow: 0 8px 40px rgba(75,36,26,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

@media (max-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

.welcome-box p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--brown);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .welcome-box {
    padding: 2rem 1.6rem;
    border-radius: 22px;
  }
}
.zeiten-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

/* ── GALERIE ── */
.galerie {
  padding: 10vh 7vw;
  background: var(--white);
  border-radius: 48px;
  margin: 0 2vw;
}

.galerie-header { margin-bottom: 4vh; }

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

@media (max-width: 1024px) {
  .galerie {
    padding: 8vh 5vw;
    margin: 0 1.5vw;
  }
}

@media (max-width: 768px) {
  .galerie {
    padding: 7vh 4vw;
    border-radius: 32px;
    margin: 0 1vw;
  }
}

@media (max-width: 540px) {
  .galerie {
    padding: 6vh 4vw;
    border-radius: 28px;
  }
  .masonry {
    grid-template-columns: 1fr;
  }
  .m-item {
    min-height: 180px;
  }
}

.m-col { display: flex; flex-direction: column; gap: 16px; }

.m-item {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 180px;
  cursor: pointer;
  position: relative;
}
.m-item.m-tall { min-height: 280px; }

.m-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(75, 36, 26, 0);
  transition: background 0.3s;
  border-radius: 20px;
}
.m-item:hover::after {
  background: rgba(75, 36, 26, 0.18);
}

.m-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.m-item:hover img { transform: scale(1.06); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(75, 36, 26, 0.92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.lightbox.open .lb-inner {
  transform: scale(1);
}

#lb-img {
  max-width: 88vw;
  max-height: 78vh;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  display: block;
}

.lb-caption {
  font-family: "Comme", sans-serif;
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.8;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}
.lb-caption:empty { display: none; }

.lb-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 1000;
}
.lb-close svg { width: 22px; height: 22px; stroke: var(--cream); }
.lb-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }

/* ── ÜBER MICH ── */
.ueber-mich {
  padding: 10vh 7vw;
}

.ueber-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5vw;
  align-items: center;
}

.ueber-photo {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(75,36,26,0.15);
  background: linear-gradient(135deg, #4b241a 0%, #7a3520 35%, #e46d38 75%, #e28939 100%);
}

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

.ueber-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: rgba(255,238,223,0.55);
}
.ueber-photo.no-photo .ueber-photo-fallback { display: flex; }
.ueber-photo-fallback svg { width: 34%; height: 34%; }

.ueber-photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(75,36,26,0.18);
  animation: pillFloat 4s ease-in-out infinite;
}
.ueber-photo-badge svg { width: 26px; height: 26px; }

.ueber-text h2 { margin-bottom: 1.4rem; }

.ueber-text p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--brown);
  opacity: 0.8;
  margin-bottom: 1.2rem;
}
.ueber-text p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .ueber-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ueber-photo {
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .ueber-mich { padding: 7vh 4vw; }
}

@media (max-width: 540px) {
  .ueber-mich { padding: 6vh 4vw; }
}

/* ── FAQ ── */
.faq {
  padding: 10vh 7vw;
}

.faq-header {
  margin-bottom: 5vh;
  text-align: center;
}
.faq-header h2 { margin: 0 auto; }
.faq-header .label-tag { display: inline-block; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(75,36,26,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Comme", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brown);
  padding: 1.4rem 1.8rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer p {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--brown);
  opacity: 0.8;
  padding: 0 1.8rem;
  min-height: 0;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer p {
  padding: 0 1.8rem 1.6rem;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
  color: var(--brown);
  opacity: 0.85;
}
.faq-cta a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.faq-cta a:hover { color: var(--brown); }

@media (max-width: 768px) {
  .faq { padding: 7vh 4vw; }
  .faq-question { padding: 1.2rem 1.4rem; font-size: 0.95rem; }
  .faq-item.open .faq-answer p { padding: 0 1.4rem 1.4rem; }
  .faq-answer p { padding: 0 1.4rem; }
}

/* ── FOOTER ── */
.kontakt {
  padding: 10vh 7vw;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  align-items: start;
}

@media (max-width: 1024px) {
  .kontakt {
    padding: 8vh 5vw;
  }
  .kontakt-inner {
    gap: 3vw;
  }
}

@media (max-width: 900px) {
  .kontakt-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .kontakt {
    padding: 6vh 4vw;
  }
  .kontakt-inner {
    gap: 2rem;
  }
  .form-card {
    padding: 2rem 1.5rem;
  }
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  .kinfo {
    gap: 10px;
    flex-wrap: wrap;
  }
  .kinfo svg {
    width: 28px;
    height: 28px;
  }
}

/* mobile override */
@media (max-width: 1024px) {
  main { padding-top: 0; }
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 14vh 6vw 6vh;
    gap: 2.8rem;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .hero-right { margin-top: 2rem; }
  .hero-img { max-width: 520px; }
  .hero-btn { width: min(100%, 320px); }
  .hero-pill { width: min(100%, 340px); margin: 2rem auto 0; }
  .angebot { padding: 8vh 5vw; }
  .angebot-cards { gap: 1.8rem; }
  .galerie { padding: 8vh 5vw; margin: 0 1.5vw; }
}

@media (max-width: 768px) {
  main { padding-top: 0; }
  .hero-content {
    padding: 12vh 5vw 5vh;
    gap: 2rem;
  }
  .hero-title { font-size: clamp(2rem, 11vw, 3.4rem); }
  .hero-sub { font-size: 1rem; }
  .hero-btn { padding: 12px 18px; width: 100%; justify-content: center; }
  .hero-pill {
    position: static;
    transform: none;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .angebot { padding: 7vh 4vw; }
  .angebot-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .acard { padding: 2rem 1.5rem; }
  .zeiten-strip { width: 100%; justify-content: center; padding: 12px 18px; }
  .galerie { padding: 7vh 4vw; }
  .kontakt { padding: 7vh 4vw; }
  .kontakt-inner { gap: 1.5rem; }
  .form-card { padding: 2.2rem 1.4rem; }
}

@media (max-width: 540px) {
  main { padding-top: 0; }
  .hero-content {
    padding: 8.5vh 4vw 5vh;
    gap: 1.5rem;
  }
  .hero-title { font-size: clamp(1.8rem, 14vw, 2.8rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btn { padding: 12px 16px; width: 100%; }
  .hero-pill { width: 100%; padding: 10px 14px; font-size: 0.8rem; }
  .galerie { padding: 6vh 4vw; }
  .masonry { grid-template-columns: 1fr; }
  .m-item { min-height: 170px; }
  .kontakt { padding: 5.5vh 3.5vw; }
  .form-card { padding: 1.8rem 1.2rem; }
  .submit-btn { width: 100%; }
}

/* final mobile fixes */
@media (max-width: 1024px) {
  main { padding-top: 0; }
  header {
    width: calc(100% - 2vw);
    padding: 14px 16px;
  }
  nav {
    width: 100%;
    justify-content: center;
    gap: 0.6rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 14vh 5vw 5vh;
    gap: 2.5rem;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .hero-right {
    margin-top: 2rem;
  }
  .hero-img {
    max-width: 520px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 14px;
    margin-top: 0;
    justify-content: center;
    align-items: center;
  }
  header img {
    height: 5vh;
    max-height: 44px;
  }
  .hero-content {
    padding: 12vh 4vw 4.5vh;
  }
  .hero-btn {
    width: 100%;
    max-width: 100%;
  }
  .hero-pill {
    position: static;
    transform: none;
    width: 100%;
    margin: 1.5rem auto 0;
    padding: 12px 14px;
  }
  .angebot {
    padding: 7vh 4vw;
  }
  .galerie {
    padding: 7vh 4vw;
  }
}

@media (max-width: 540px) {
  header {
    padding: 10px 12px;
  }
  header img {
    height: 4.5vh;
    max-height: 36px;
  }
  .hero-content {
    padding: 9vh 4vw 4vh;
    gap: 1.3rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 13vw, 2.6rem);
  }
  .hero-btn {
    padding: 12px 14px;
  }
  .hero-pill {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
  .galerie {
    padding: 6vh 3.5vw;
  }
  .kontakt {
    padding: 5vh 3.5vw;
  }
}

/* ultimate mobile override */
@media (max-width: 1024px) {
  main { padding-top: 0; }
  .desktop-logo {
    display: inline-flex;
  }
  header {
    width: min(95vw, 1200px);
    max-width: 100%;
    min-width: 0;
    padding: 14px 22px;
    margin: 1.5vh 1vw 0 1vw;
    background-color: #ffffff;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    border-radius: 120px;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: center;
  }
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .nav-menu:not(.open) a {
    display: block;
  }
  nav {
    width: auto;
    justify-content: space-between;
  }
  header img {
    height: 5.2vh;
    max-height: 48px;
  }
  nav h1 { font-size: 0.85rem; }
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 14vh 5vw 6vh;
    gap: 2.8rem;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .hero-right { margin-top: 2rem; }
  .hero-img { max-width: 520px; width: 100%; }
  .hero-pill { position: static; margin: 1.8rem auto 0; width: min(100%, 340px); }
  .hero-btn { width: min(100%, 320px); }
  .angebot { padding: 8vh 5vw; }
  .galerie { padding: 8vh 5vw; margin: 0 1.5vw; }
}

@media (max-width: 768px) {
  main { padding-top: 0; }
  .desktop-logo {
    display: none;
  }
  header {
    width: 100%;
    min-width: 0;
    padding: 0 1rem;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: fixed;
    top: 1rem;
    left: 0;
    transform: none;
    justify-content: flex-start;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    background: var(--cream);
    width: 3.4rem;
    height: 3.4rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: auto;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 0.75rem;
    border-radius: 22px;
    z-index: 90;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a,
  .nav-menu h1 {
    width: 100%;
  }
  header img { height: 5vh; max-height: 42px; }
  .hero-content { padding: 12.5vh 4vw 5vh; gap: 2rem; }
  .hero-title { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero-sub { font-size: 1rem; }
  .hero-btn { padding: 12px 20px; width: 100%; }
  .hero-pill { width: 100%; padding: 12px 16px; }
  .angebot { padding: 7vh 4vw; }
  .galerie { padding: 7vh 4vw; }
  .kontakt { padding: 7vh 4vw; }
}

@media (max-width: 540px) {
  .desktop-logo {
    display: none;
  }
  header {
    width: 100%;
    min-width: 0;
    padding: 0 0.9rem;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    transform: none;
    justify-content: flex-start;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    background: var(--cream);
    width: 3.4rem;
    height: 3.4rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: auto;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0.9rem;
    right: 0.9rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 0.75rem;
    border-radius: 22px;
    z-index: 90;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a,
  .nav-menu h1 {
    width: 100%;
  }
  header img { height: 4.7vh; max-height: 36px; }
  .hero-content { padding: 9vh 4vw 4vh; gap: 1.4rem; }
  .hero-title { font-size: clamp(1.8rem, 14vw, 2.6rem); }
  .hero-btn { padding: 12px 14px; width: 100%; }
  .hero-pill { padding: 10px 12px; font-size: 0.78rem; }
  .galerie { padding: 6vh 3.5vw; }
  .kontakt { padding: 5.5vh 3.5vw; }
}

.kontakt-left h2 { margin-bottom: 3vh; }

.kinfo-list { display: flex; flex-direction: column; gap: 1.2rem; }

.kinfo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.kinfo svg { width: 32px; height: 32px; flex-shrink: 0; }
.kinfo a { color: var(--brown); text-decoration: none; transition: color 0.2s; }
.kinfo a:hover { color: var(--orange); }

/* Google reviews badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 18px;
  padding: 12px 18px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.google-badge:hover {
  box-shadow: 0 14px 36px rgba(75,36,26,0.2);
}
.google-badge-icon { width: 30px; height: 30px; flex-shrink: 0; }
.google-badge-text { display: flex; flex-direction: column; gap: 1px; }
.google-badge-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.google-badge-stars svg { width: 14px; height: 14px; }
.google-badge-stars strong {
  margin-left: 6px;
  font-family: "Madimi One", sans-serif;
  font-size: 0.85rem;
  color: var(--brown);
}
.google-badge-title {
  font-family: "Madimi One", sans-serif;
  font-size: 0.82rem;
  color: var(--brown);
  margin-top: 2px;
}
.google-badge-sub {
  font-size: 0.74rem;
  color: var(--brown);
  opacity: 0.6;
}

/* Placement: sits in normal flow, just under the hero image, slightly overlapping */
.hero-google-badge {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  align-self: flex-start;
  margin-left: 6%;
  transform: rotate(-4deg);
}
.hero-google-badge:hover {
  transform: rotate(0deg) translateY(-4px);
}

@media (max-width: 1024px) {
  .hero-google-badge {
    align-self: center;
    margin-left: 0;
    margin-top: 1.6rem;
    transform: none;
  }
  .hero-google-badge:hover { transform: translateY(-3px); }
}

@media (max-width: 540px) {
  .google-badge { padding: 10px 14px; gap: 10px; }
  .google-badge-icon { width: 26px; height: 26px; }
}

/* form card */
.form-card {
  background: var(--white);
  border-radius: 32px;
  padding: 2.8rem;
  box-shadow: 0 8px 40px rgba(75,36,26,0.08);
}

.form-card h3 {
  font-family: "Madimi One", sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 2rem;
}

form { display: flex; flex-direction: column; gap: 1.2rem; }

.fg { display: flex; flex-direction: column; gap: 6px; }

.fg label {
  font-family: "Madimi One", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.fg input, .fg textarea, .fg select {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-family: "Comme", sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.fg input::placeholder, .fg textarea::placeholder { opacity: 0.4; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--orange); }

.fg select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%234b241a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.fg select:invalid { color: rgba(75,36,26,0.4); }

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: "Madimi One", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.submit-btn svg { width: 18px; height: 18px; }
.submit-btn:hover { background: var(--brown); transform: translateY(-2px); }

.form-success {
  display: none;
  color: var(--orange);
  font-family: "Madimi One", sans-serif;
}
.form-success.visible { display: block; }

/* ── IMPRESSUM ── */
.impressum {
  padding: 8vh 7vw;
  border-top: 1px solid rgba(75, 36, 26, 0.1);
}

.section-title-small {
  font-family: "Madimi One", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.impressum-sub {
  font-family: "Comme", sans-serif;
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 4vh;
}

.impressum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .impressum-grid { grid-template-columns: 1fr; }
}

.impressum-block h3 {
  font-family: "Madimi One", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.impressum-block p {
  font-family: "Comme", sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--brown);
  opacity: 0.7;
}

.impressum-block a {
  color: var(--brown);
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.2s;
}
.impressum-block a:hover { color: var(--orange); opacity: 1; }

.impressum-page {
  padding-top: 18vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Madimi One", sans-serif;
  font-size: 0.85rem;
  color: var(--brown);
  text-decoration: none;
  opacity: 0.6;
  margin-bottom: 3vh;
  transition: opacity 0.2s, color 0.2s;
}
.back-link svg { width: 18px; height: 18px; }
.back-link:hover { opacity: 1; color: var(--orange); }

/* ── DATENSCHUTZ ── */
.datenschutz-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
}

.ds-block h3 {
  font-family: "Madimi One", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.ds-block p, .ds-block ul {
  font-family: "Comme", sans-serif;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--brown);
  opacity: 0.75;
}

.ds-block ul {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ds-block strong {
  font-weight: 700;
  color: var(--brown);
}

/* ── FOOTER ── */
footer {
  display: block !important;
  padding: 7vh 7vw 3rem !important;
  font-family: "Comme", sans-serif;
  color: var(--brown);
  border-top: 1px solid rgba(75,36,26,0.15);
  background: var(--cream);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-family: "Madimi One", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--brown);
  opacity: 0.8;
}

.footer-col a {
  color: var(--brown);
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.footer-col a:hover { color: var(--orange); opacity: 1; }

.footer-bottom {
  text-align: center;
  margin-top: 4vh;
  padding-top: 2rem;
  border-top: 1px solid rgba(75,36,26,0.12);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-family: "Madimi One", sans-serif;
  font-size: 0.85rem;
  color: var(--brown);
  opacity: 0.6;
}

.footer-link {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s, opacity 0.2s;
}
.footer-link:hover { color: var(--orange); opacity: 1; }

@media (max-width: 768px) {
  footer { padding: 6vh 5vw 2.5rem !important; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }
  .footer-bottom { margin-top: 3vh; padding-top: 1.5rem; }
}
