/* Das Wohnzimmer – Seminarlocation Fürth */
:root {
  --cream: #faf7f2;
  --sand: #f0e8dc;
  --sand-dark: #e3d6c4;
  --ink: #2e2722;
  --ink-soft: #5b5249;
  --terra: #b3683f;
  --terra-dark: #95522f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(46, 39, 34, .10);
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--terra);
  transition: color 0.25s ease-out;
}
a:hover {
  color: var(--terra-dark);
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .5rem; letter-spacing: -0.3px; }
h3 { font-size: 1.35rem; margin-bottom: .5rem; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4.5rem 0; }
.kicker {
  display: block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .8rem; color: var(--terra); margin-bottom: .6rem; font-weight: 600;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46rem; }
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .7rem 1.25rem; max-width: 1240px; margin: 0 auto; }
.nav .logo img { height: 52px; width: auto; }
.nav ul { list-style: none; display: flex; gap: 1.6rem; align-items: center; }
.nav a {
  text-decoration: none; color: var(--ink); font-size: .98rem;
  transition: color 0.25s ease-out;
  position: relative;
}
.nav a:hover { color: var(--terra); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav a:hover::after { width: 100%; }
.nav a.cta {
  background: var(--terra); color: #fff; padding: .55rem 1.15rem;
  border-radius: 999px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(179, 104, 63, 0.25);
  transition: all 0.25s ease-out;
}
.nav a.cta:hover {
  background: var(--terra-dark);
  box-shadow: 0 6px 20px rgba(179, 104, 63, 0.35);
  transform: translateY(-1px);
}
.nav a.cta::after { display: none; }
#menu-toggle, .burger { display: none; }

/* Hero */
.hero {
  position: relative; color: #fff; text-align: center;
  display: grid; place-items: center;
  min-height: 100vh; min-height: 100svh;
  padding: 1rem 1.25rem 5rem;
  background: linear-gradient(rgba(30, 23, 18, .50), rgba(30, 23, 18, .60)), url('../img/seminarraum-wohnzimmer-fuerth-hero.webp') center/cover no-repeat;
  transition: background-image 0.8s ease-out;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.hero-dots {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 2;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: 1.5px solid rgba(255,255,255,.7); background: rgba(255,255,255,.25);
  cursor: pointer; transition: all 0.25s ease-out;
}
.hero-dot:hover { background: rgba(255,255,255,.5); }
.hero-dot.active { background: #fff; transform: scale(1.2); }

.hero-content {
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.hero h1 { text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7); }
.hero .kicker { color: #f0cdb4; text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5); }
.hero p { max-width: 40rem; margin: 1rem auto 2rem; font-size: 1.15rem; text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.6); }
.hero-sub { page-break-inside: avoid; }

/* Page hero (Unterseiten, Boutique-Stil) */
.page-hero {
  position: relative; color: #fff; text-align: center;
  display: grid; place-items: center;
  min-height: 72vh; min-height: 72svh;
  padding: 4rem 1.25rem;
  background: linear-gradient(rgba(30, 23, 18, .42), rgba(30, 23, 18, .55)) center/cover no-repeat;
  background-blend-mode: normal;
}
.page-hero h1 { text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7); }
.page-hero .kicker { color: #f0cdb4; text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5); }
.page-hero p { max-width: 42rem; margin: 1rem auto 2rem; font-size: 1.12rem; text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.6); }

/* Boutique-Bildzeilen: große, ruhige Bilder */
.row .media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.row .roomfacts {
  display: flex; gap: 1.6rem; margin-top: 1.2rem;
  font-family: var(--font-head); color: var(--terra); font-size: 1.05rem;
}
.row .roomfacts span { display: block; }
.row .roomfacts small {
  display: block; font-family: var(--font-body); color: var(--ink-soft);
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
}

/* Parallax section */
.parallax {
  position: relative; min-height: 65vh; overflow: hidden;
  background-attachment: fixed; background-position: center; background-size: cover;
  display: flex; align-items: center; justify-content: center;
  margin: 3rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(46, 39, 34, 0.15);
}
.parallax-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(30, 23, 18, .45), rgba(30, 23, 18, .55));
  display: flex; align-items: center; justify-content: center;
}
.parallax-content {
  text-align: center; color: #fff; z-index: 2; position: relative;
}
.parallax h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.parallax .kicker { display: block; margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-block; background: var(--terra); color: #fff; text-decoration: none;
  padding: .85rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(179, 104, 63, 0.25);
}
.btn:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(179, 104, 63, 0.35);
}
.btn:active { transform: translateY(0); }
.btn.ghost { background: transparent; border: 2px solid #fff; box-shadow: none; }
.btn.ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn.light { background: var(--sand); color: var(--ink); box-shadow: 0 4px 15px rgba(46, 39, 34, 0.1); }
.btn.light:hover {
  background: var(--sand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 39, 34, 0.15);
}

/* Cards & Grids */
.grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(46, 39, 34, 0.22);
}
.card img {
  aspect-ratio: 3/2; object-fit: cover; width: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover img { transform: scale(1.08); }
.card .pad { padding: 1.5rem; flex: 1; }
.card ul { list-style: none; margin-top: .8rem; }
.card ul li, .checks li {
  padding-left: 1.5rem; position: relative; margin-bottom: .35rem; color: var(--ink-soft);
}
.card ul li::before, .checks li::before {
  content: "✓"; position: absolute; left: 0; color: var(--terra); font-weight: 700;
}
.checks { list-style: none; margin-top: .8rem; }

/* Alternating media rows */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-top: 3rem; }
.row img { border-radius: var(--radius); box-shadow: var(--shadow); }
.row.flip > .media { order: 2; }
.about-people .row img {
  border-radius: 50% !important;
  box-shadow: none;
  display: block;
}

/* Raum-Bänder: jeder Bereich in eigener Zone mit abwechselndem Hintergrund */
.room-band { padding: 4.5rem 0; }
.room-band.alt { background: var(--sand); }
.room-band .row { margin-top: 0; }
.room-band .row-gallery { margin-top: 1.5rem; }
/* Echtes Alternieren der Bildseite – nur in den Raum-Bändern */
.room-band .row.flip > div:not(.media) { order: 2; }
.room-band .row.flip > .media { order: 1; }

/* Bereich-Kennzeichnung (01–04) */
.room-tag {
  display: inline-block; font-family: var(--font-head);
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra); opacity: .65; margin-bottom: .5rem;
  padding-bottom: .35rem; border-bottom: 1px solid rgba(179, 104, 63, .3);
}

/* Section Color Alternation */
section {
  background: var(--white);
  border-top: 1px solid rgba(227, 214, 196, 0.2);
}

/* Creme sections: 2, 4, 6, 8... */
section:nth-of-type(2),
section:nth-of-type(4),
section:nth-of-type(6),
section:nth-of-type(8),
section:nth-of-type(10),
section:nth-of-type(12),
section:nth-of-type(14),
section:nth-of-type(16),
section:nth-of-type(18),
section:nth-of-type(20) {
  background: linear-gradient(135deg, var(--sand) 0%, #eae2d8 100%);
  border-top: 1px solid rgba(227, 214, 196, 0.4);
}

/* Light sections: 1, 3, 5, 7... */
section:nth-of-type(1),
section:nth-of-type(3),
section:nth-of-type(5),
section:nth-of-type(7),
section:nth-of-type(9),
section:nth-of-type(11),
section:nth-of-type(13),
section:nth-of-type(15),
section:nth-of-type(17),
section:nth-of-type(19) {
  background: var(--white);
}

/* Dark section override */
section.dark {
  background: linear-gradient(135deg, #f5f0eb 0%, #f9f6f1 100%);
  color: var(--ink-soft);
  border-top: 1px solid rgba(227, 214, 196, 0.4);
}
/* Boutique-Style Light Section */
.dark {
  background: linear-gradient(135deg, #f5f0eb 0%, #f9f6f1 100%);
  color: var(--ink-soft);
  border-top: 1px solid rgba(227, 214, 196, 0.4);
}
.dark h2, .dark h3 { color: var(--ink); }
.dark .lead { color: var(--ink-soft); }

/* Boutique section grid content */
.dark .grid {
  gap: 2.5rem;
}

.dark .grid > div {
  padding: 2.5rem;
  border-left: 5px solid var(--terra);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(46, 39, 34, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dark .grid > div::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(179, 104, 63, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .grid > div:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(46, 39, 34, 0.1);
  transform: translateY(-4px);
  border-left-color: var(--terra);
}

.dark .grid > div:hover::before {
  transform: translate(20%, -20%);
}

.dark .grid h3 {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--terra);
  font-weight: 500;
  font-family: var(--font-head);
}

.dark .grid p {
  position: relative;
  z-index: 2;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* Grid with Images */
.grid-with-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.grid-item-with-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(46, 39, 34, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.grid-item-with-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(46, 39, 34, 0.15);
}

.grid-item-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-item-with-image:hover .grid-item-image {
  transform: scale(1.06);
}

.grid-item-content {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 5px solid var(--terra);
  position: relative;
}

.grid-item-content h3 {
  font-size: 1.3rem;
  color: var(--terra);
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-weight: 500;
}

.grid-item-content p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.95rem;
  flex: 1;
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animations nur für Kontakt-Sektion */
#kontakt .jenny-card,
#kontakt .cta-box {
  animation: fadeInUp .6s ease-out both;
}

#kontakt .jenny-card { animation-delay: 0s; }
#kontakt .cta-box:nth-of-type(1) { animation-delay: .2s; }
#kontakt .cta-box:nth-of-type(2) { animation-delay: .4s; }

/* Pricing / packages */
.pkg { text-align: center; }
.pkg .pad { padding: 2rem 1.5rem; }
.pkg .time { font-size: 1.25rem; color: var(--terra); font-weight: 700; margin: .6rem 0; }
.pkg ul { text-align: left; display: inline-block; }

/* Boutique-Pakete (.pkg.lux) – Embleme, Linien & Featured-Highlight */
.pkg.lux { position: relative; overflow: hidden; }
.pkg.lux .pad {
  padding: 2.6rem 1.6rem 2rem;
  display: flex; flex-direction: column; align-items: center;
}
.pkg.lux h3 { font-size: 1.45rem; margin-bottom: .2rem; }
.pkg.lux .time {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin: .1rem 0 1.1rem;
}
.pkg.lux p { color: var(--ink-soft); }
.pkg.lux .pkg-incl {
  margin-top: 1.1rem; font-size: .76rem; font-weight: 600; color: var(--terra);
  letter-spacing: .1em; text-transform: uppercase;
}

/* Rundes Emblem mit Liniensymbol (Tagespakete) */
.pkg.lux .pkg-emblem {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  color: var(--terra);
  background: radial-gradient(circle at 30% 25%, #fff 0%, var(--sand) 100%);
  box-shadow: inset 0 0 0 1px rgba(179,104,63,.25), 0 8px 20px rgba(179,104,63,.14);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.pkg.lux .pkg-emblem svg { width: 30px; height: 30px; }
.pkg.lux:hover .pkg-emblem {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: inset 0 0 0 1px rgba(179,104,63,.4), 0 12px 28px rgba(179,104,63,.25);
}

/* Größen-Emblem (Verpflegungspakete: S / M / L) */
.pkg.lux .pkg-size {
  font-family: var(--font-head); font-size: 1.8rem; line-height: 1;
  color: var(--terra); font-weight: 400;
}
.pkg.lux:hover .pkg-size { transform: translateY(-3px) scale(1.06); }

/* Verpflegungs-Liste als feine Menü-Aufzählung (ohne Häkchen) */
.pkg.lux ul { text-align: center; display: block; margin-top: .4rem; }
.pkg.lux ul li { padding: .55rem 0; color: var(--ink-soft); }
.pkg.lux ul li::before { content: none; }
.pkg.lux ul li + li { border-top: 1px solid rgba(227, 214, 196, .55); }

/* Featured-Karte – dezent hervorgehoben */
.pkg.lux.featured {
  border: 1.5px solid rgba(179, 104, 63, .5);
  box-shadow: 0 18px 44px rgba(179, 104, 63, .18);
}
.pkg.lux.featured .pad { padding-top: 3rem; }
.pkg.lux.featured .pkg-emblem {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(179,104,63,.35);
}
.pkg.lux .pkg-flag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1.4rem; border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 16px rgba(179,104,63,.3);
}

/* Scroll-Reveal (Unterseiten) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease-out, transform .7s cubic-bezier(0.4,0,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; counter-reset: step; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
  text-align: center; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(46, 39, 34, 0.12);
}
.step .num {
  width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff; display: grid; place-items: center; font-size: 1.4rem; font-family: var(--font-head);
  margin: 0 auto 1rem; box-shadow: 0 6px 20px rgba(179, 104, 63, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.step:hover .num {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(179, 104, 63, 0.4);
}

/* Buchungs-Flow: durchgehende 3-Schritte-Geschichte */
.booking-flow .flow { list-style: none; margin: 0; padding: 0; }
.flow-step {
  position: relative;
  padding-left: 6rem; padding-bottom: 4rem;
}
.flow-step:last-child { padding-bottom: 0; }
/* durchgehende Verbindungslinie zwischen den Schritten */
.flow-step::before {
  content: ""; position: absolute; left: 27px; top: 0; bottom: 0;
  width: 2px; background: rgba(179, 104, 63, .45);
}
.flow-step:first-child::before { top: 28px; }
.flow-step:last-child::before { bottom: auto; height: 28px; }
.flow-num {
  position: absolute; left: 0; top: 0; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff; display: grid; place-items: center;
  font-size: 1.4rem; font-family: var(--font-head);
  box-shadow: 0 6px 20px rgba(179, 104, 63, .3);
}
.flow-head { min-height: 56px; display: flex; flex-direction: column; justify-content: center; margin-bottom: 1.6rem; }
.flow-head h3 { font-size: 1.6rem; margin-bottom: .25rem; }
.flow-head h3 em {
  font-style: normal; font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--terra); vertical-align: middle;
}
.flow-head > p { color: var(--ink-soft); max-width: 46rem; }
.flow-step .grid { margin-top: 0; }
.flow-note {
  margin-top: 1.3rem; font-size: .92rem; color: var(--ink-soft);
  background: rgba(179, 104, 63, .06); border-left: 3px solid var(--terra);
  padding: .75rem 1.1rem; border-radius: 0 8px 8px 0; max-width: 46rem;
}
.flow-cta { padding-top: .3rem; }
.flow-cta .btn { font-size: 1.05rem; }
.flow-cta > p { margin-top: 1rem; color: var(--ink-soft); }
@media (max-width: 768px) {
  .flow-step { padding-left: 3.6rem; padding-bottom: 3rem; }
  .flow-num { width: 44px; height: 44px; font-size: 1.15rem; }
  .flow-step::before { left: 21px; }
  .flow-step:first-child::before { top: 22px; }
  .flow-step:last-child::before { height: 22px; }
  .flow-head { min-height: 44px; }
}

/* Testimonials on Homepage (smaller version) */
.testimonials-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card-small {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(46, 39, 34, 0.08);
  padding: 1.4rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--terra);
}

.testimonial-card-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46, 39, 34, 0.12);
}

.testimonial-card-small .testimonial-author {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-card-small .testimonial-role {
  color: var(--terra);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.testimonial-card-small .testimonial-stars {
  font-size: 0.85rem;
  color: #ffc107;
  letter-spacing: 0.1rem;
  margin-bottom: 0.8rem;
}

.testimonial-card-small .testimonial-text {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.testimonial-card-small .testimonial-date {
  font-size: 0.75rem;
  color: #999;
}

@media (max-width: 1200px) {
  .testimonials-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .testimonial-card-small {
    padding: 1.2rem;
  }
}

@media (max-width: 640px) {
  .testimonials-grid-home {
    grid-template-columns: 1fr;
  }
}

/* Modern Logo Slider */
.logo-slider-container {
  margin-top: 2.5rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.logo-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.logo-slider-track::-webkit-scrollbar {
  height: 6px;
}

.logo-slider-track::-webkit-scrollbar-track {
  background: rgba(227, 214, 196, 0.2);
  border-radius: 10px;
}

.logo-slider-track::-webkit-scrollbar-thumb {
  background: var(--terra);
  border-radius: 10px;
}

.logo-slider-track::-webkit-scrollbar-thumb:hover {
  background: var(--terra-dark);
}

.logo-slide {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.logo-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(46, 39, 34, 0.08);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(227, 214, 196, 0.3);
  cursor: pointer;
}

.logo-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(46, 39, 34, 0.15);
  border-color: var(--terra);
}

.logo-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.logo-placeholder {
  color: var(--terra);
  font-size: 3rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}


@media (max-width: 768px) {
  .logo-slide {
    width: 160px;
  }

  .logo-item {
    min-height: 120px;
    padding: 1.5rem 1rem;
  }

  .logo-item img {
    max-height: 60px;
  }
}

/* Forms */
form.booking { max-width: 680px; margin: 2.5rem auto 0; display: grid; gap: 1rem; }
form.booking .two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .3rem; }
input, select, textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--sand-dark);
  border-radius: 10px; font: inherit; background: var(--white); color: var(--ink);
  transition: all 0.25s ease-out;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(179, 104, 63, 0.1);
}
textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-soft); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.gallery img {
  border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%;
  box-shadow: var(--shadow); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(46, 39, 34, 0.15);
}

/* Mosaik-Galerie (Masonry, auffällig) */
.gallery-mosaic {
  column-count: 3; column-gap: 1rem; margin-top: 2.5rem;
}
.gallery-mosaic .g-item {
  position: relative; margin: 0 0 1rem; break-inside: avoid;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-mosaic .g-item img {
  width: 100%; display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-mosaic .g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,23,18,.55) 0%, transparent 45%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-mosaic .g-item figcaption {
  position: absolute; left: 1rem; bottom: .9rem; z-index: 2;
  color: #fff; font-family: var(--font-head); font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-mosaic .g-item:hover img { transform: scale(1.07); }
.gallery-mosaic .g-item:hover::after { opacity: 1; }
.gallery-mosaic .g-item:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery-mosaic { column-count: 2; } }
@media (max-width: 560px) { .gallery-mosaic { column-count: 1; } }

/* Zusätzliche Bildzeile unter einer .row (zwei Bilder nebeneinander) */
.row-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.row-gallery img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* Technik & Bestuhlung – dezente Variante */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.specs > div {
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(227, 214, 196, .7);
  border-radius: 12px; padding: 1.6rem 1.9rem;
}
.specs h3 { font-size: 1.1rem; color: var(--ink-soft); font-weight: 400; margin-bottom: .8rem; }
.specs .checks { margin-top: .4rem; }
.specs .checks li { font-size: .92rem; margin-bottom: .3rem; }
.specs p { font-size: .9rem; }
@media (max-width: 768px) {
  .row-gallery, .specs { grid-template-columns: 1fr; }
}

/* Parallax-Hintergrund für ganze Section (Bild via --bg inline) */
main section.parallax-bg {
  position: relative;
  background-image: linear-gradient(rgba(30, 23, 18, .55), rgba(30, 23, 18, .62)), var(--bg);
  background-position: center; background-size: cover;
  background-repeat: no-repeat; background-attachment: fixed;
}
@media (max-width: 768px) {
  main section.parallax-bg { background-attachment: scroll; }
}
.parallax-bg .center .kicker { color: #f0cdb4; text-shadow: 1px 2px 6px rgba(0, 0, 0, .5); }
.parallax-bg .center h2 { color: #fff; text-shadow: 2px 4px 12px rgba(0, 0, 0, .6); }
.parallax-bg .center .lead { color: rgba(255, 255, 255, .92); }

/* 360°-Rundgang */
.tour-consent {
  background: linear-gradient(135deg, var(--sand) 0%, #eae2d8 100%);
  border-radius: var(--radius);
  display: grid; place-items: center; text-align: center;
  min-height: 220px; padding: 2.5rem; margin-top: 1.5rem;
}
.tour-consent .tour-icon { font-size: 2.4rem; margin-bottom: .6rem; }
.tour-consent p { color: var(--ink-soft); max-width: 34rem; margin: 0 auto 1.3rem; }
.tour-consent p.tour-alt { margin: 1rem auto 0; font-size: .92rem; }
.tour-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem;
}
.tour-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .45rem;
}
.tour-card h3 { font-size: 1.1rem; color: var(--ink-soft); font-weight: 400; margin-bottom: .4rem; }
.tour-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.tour-frame {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px); overflow: hidden;
  background: var(--sand);
}
.tour-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 768px) { .tour-grid { grid-template-columns: 1fr; } }

/* Facts strip */
.facts { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; margin-top: 2.2rem; text-align: center; }
.facts div {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.facts div:hover {
  transform: translateY(-4px);
}
.facts div strong {
  display: block; font-size: 1.9rem; font-family: var(--font-head); color: var(--terra);
  margin-bottom: 0.3rem;
}
.facts div span { color: var(--ink-soft); font-size: .95rem; }

/* Contact */
/* Jenny Section - Option 2 Layout */
.jenny-section {
  text-align: center; margin: 3rem 0;
}

/* Contact Box */
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

.jenny-image {
  width: 100%; max-width: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.jenny-details {
  margin-bottom: 2.5rem;
}

.jenny-details h2 {
  font-size: 2.2rem; margin-bottom: .5rem; color: var(--ink);
}

.jenny-details .role {
  color: var(--terra); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 1.5rem; display: block;
}

.phone-number {
  font-size: 1.1rem; color: var(--ink);
  padding: .8rem 1.5rem; display: inline-block;
  border-radius: 8px; transition: all .3s;
  background: rgba(179, 104, 63, 0.08);
}

.phone-number:hover {
  background: rgba(179, 104, 63, 0.15);
  transform: scale(1.05);
}

.cta-buttons {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-large {
  font-size: 1.1rem; padding: 1rem 2.5rem;
  min-width: 220px; flex: 0 1 auto;
}

.contact-cta-section {
  display: flex; flex-direction: column; gap: 2rem;
}

.map-container {
  margin-top: 3rem; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}

.map-container iframe {
  border-radius: var(--radius);
}

/* CTA Booking Banner */
.cta-booking-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff; text-decoration: none;
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(179, 104, 63, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}

.cta-booking-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-booking-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(46, 39, 34, .25);
}

.cta-booking-banner:hover::before {
  transform: translate(25%, -25%);
}

.cta-booking-banner .cta-emoji {
  font-size: 2rem;
  margin-right: 1rem;
  position: relative; z-index: 1;
}

.cta-booking-banner h3 {
  font-size: 1.2rem;
  margin: 0;
  position: relative; z-index: 1;
}

.cta-booking-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
  position: relative; z-index: 1;
  flex: 1;
  margin-left: 1rem;
}

.cta-booking-banner .cta-arrow {
  font-size: 1.3rem;
  margin-left: auto;
  transition: transform .3s;
  position: relative; z-index: 1;
}

.cta-booking-banner:hover .cta-arrow {
  transform: translateX(5px);
}

/* Contact Grid */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin: 2rem 0; align-items: stretch;
}

/* Contact Card - Jenny */
.contact-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(46, 39, 34, 0.2);
}

.contact-card img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover;
}

.contact-info {
  padding: 2rem;
  background: linear-gradient(135deg, #faf7f2 0%, #f0e8dc 100%);
  flex: 1;
}

.contact-info h3 {
  font-size: 1.6rem; margin-bottom: .3rem; color: var(--ink);
}

.contact-info .title {
  color: var(--terra); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: .9rem; margin-bottom: 1.5rem;
}

.contact-links {
  display: flex; flex-direction: column; gap: 1.2rem;
}

.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: .95rem; color: var(--ink-soft);
}

.contact-item span:first-child {
  font-size: 1.3rem; flex-shrink: 0; margin-top: .2rem;
}

.contact-item a {
  color: var(--ink); text-decoration: none; transition: color .2s;
}

.contact-item a:hover {
  color: var(--terra);
}

/* Contact Form */
.contact-form {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem;
  display: flex; flex-direction: column;
}

.contact-form h3 {
  font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--ink);
}

.form-group {
  display: flex; flex-direction: column; margin-bottom: 1.2rem;
}

.form-group label {
  font-weight: 600; font-size: .9rem; margin-bottom: .5rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  padding: .9rem 1rem;
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
  transition: all .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(179, 104, 63, 0.1);
}

.form-group textarea {
  min-height: 120px; resize: vertical;
}

.contact-form .btn {
  margin-top: .5rem; margin-bottom: 1rem;
}


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

/* Booking Modal */
.modal {
  display: none; position: fixed; z-index: 1000;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(30, 23, 18, 0.72);
  animation: fadeIn .3s;
  align-items: center; justify-content: center;
  backdrop-filter: blur(3px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  padding: 1.5rem; border-radius: 16px;
  width: min(94vw, 1120px); max-width: 1120px;
  max-height: calc(100vh - 2rem); max-height: calc(100svh - 2rem);
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(18, 14, 11, 0.42);
  position: relative;
  animation: slideUp .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
  position: absolute; top: .9rem; right: .9rem;
  background: transparent; border: none; font-size: 2.2rem;
  color: #999; cursor: pointer; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease-out;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--terra);
  background: rgba(179, 104, 63, 0.1);
  transform: scale(1.15);
}

.modal-logo {
  display: block;
  width: 190px;
  height: auto;
  margin: 0 auto .5rem;
}

.modal-header {
  text-align: center; margin-bottom: 1.5rem;
}

.modal-jenny {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.modal-content h2 {
  margin: 0 2rem .25rem; text-align: center; font-size: 1.6rem; color: var(--ink);
}

.modal-content form {
  display: grid; gap: 0.9rem;
}

.modal-content div {
  display: flex; flex-direction: column;
}

.modal-content label {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  padding: 0.62rem 0.75rem;
  border: 1.5px solid #bda992;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
  transition: all 0.25s ease-out;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(179, 104, 63, 0.1);
  background: rgba(179, 104, 63, 0.02);
}

.modal-content input:hover,
.modal-content select:hover,
.modal-content textarea:hover {
  border-color: var(--terra);
}

.modal-content textarea {
  resize: vertical;
  min-height: 68px;
  line-height: 1.45;
}

.modal-content button[type="submit"] {
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 16px rgba(179, 104, 63, 0.25);
}

.modal-content button[type="submit"]:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(179, 104, 63, 0.35);
}

.modal-content button[type="submit"]:active {
  transform: translateY(0);
}

.modal-hint {
  background: rgba(179, 104, 63, 0.08);
  border-left: 4px solid var(--terra);
  padding: 0.9rem 1rem;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 0rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0;
  line-height: 1.35;
}

/* Booking Card Layout */
.modal-cards {
  max-width: 1120px;
}

.modal-cards h2 {
  margin-bottom: 0.2rem;
  font-size: 1.6rem;
}

.modal-subtitle {
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: .85rem;
  text-align: center;
}

form.booking-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  max-width: 100%;
}

.booking-card {
  background: #fffaf3;
  border: 1.5px solid rgba(179, 104, 63, 0.32);
  border-radius: 10px;
  padding: .95rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-card:hover {
  border-color: rgba(179, 104, 63, 0.2);
  box-shadow: 0 8px 24px rgba(179, 104, 63, 0.12);
}

.modal-content .booking-card-full {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  justify-self: center;
  display: flex;
  gap: .55rem;
  align-items: stretch;
  padding: .9rem 1rem;
}

.card-title {
  font-size: .98rem;
  font-weight: 800;
  color: var(--terra-dark);
  margin: 0 0 .25rem 0;
  font-family: var(--font-body);
}

.modal-content .booking-card-full .card-title,
.modal-content .booking-card-full .card-fields,
.modal-content .booking-card-full .form-note {
  grid-column: auto;
}

.modal-content .booking-card-full .btn-submit {
  grid-column: auto;
  grid-row: auto;
  align-self: center;
  max-width: 360px;
}

.modal-content .booking-card-full .card-title {
  text-align: center;
}

.modal-content .booking-card-full .form-note {
  text-align: center;
}

.card-fields {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.62rem 0.75rem;
  border: 1.5px solid #bda992;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  transition: all 0.25s ease-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(179, 104, 63, 0.1);
  background: #fefdfb;
}

.form-group textarea {
  resize: vertical;
  min-height: 84px;
  max-height: 130px;
}

.btn-submit {
  margin-top: 0;
  width: 100%;
  padding: 0.82rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Footer Button */
.footer-btn {
  background: none; border: none;
  color: #e8ddcd; text-decoration: none;
  cursor: pointer; padding: 0;
  transition: color .2s;
  font-family: inherit;
  font-size: inherit;
}

.footer-btn:hover {
  color: #fff; text-decoration: underline;
}

/* Contact Box Jenny Image */
.contact-jenny-image {
  width: 240px; height: 240px;
  border-radius: 50%;
  object-fit: cover;
  margin: -60px auto 2rem;
  display: block;
  box-shadow: none !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-jenny-image:hover {
  transform: scale(1.05);
}

/* Customers Box */
.customers-container {
  margin: 2rem auto 0;
  max-width: 1200px;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.customer-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(227, 214, 196, 0.6);
  position: relative;
  overflow: hidden;
}

.customer-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(179, 104, 63, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.customer-item:hover {
  box-shadow: 0 24px 48px rgba(46, 39, 34, 0.15);
  transform: translateY(-12px);
  border-color: var(--terra);
}

.customer-item:hover::before {
  transform: translate(20%, -20%);
}

.customer-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 100px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(80%);
  opacity: 0.85;
  position: relative;
  z-index: 2;
}

.customer-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Google Reviews - 4x2 Grid Layout */
.reviews-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 1200px;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.google-review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid var(--terra);
  opacity: 0;
  transform: translateY(30px);
}

.google-review-card.visible {
  animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.google-review-card:nth-child(1) { animation-delay: 0.1s; }
.google-review-card:nth-child(2) { animation-delay: 0.2s; }
.google-review-card:nth-child(3) { animation-delay: 0.3s; }
.google-review-card:nth-child(4) { animation-delay: 0.4s; }
.google-review-card:nth-child(5) { animation-delay: 0.5s; }
.google-review-card:nth-child(6) { animation-delay: 0.6s; }
.google-review-card:nth-child(7) { animation-delay: 0.7s; }
.google-review-card:nth-child(8) { animation-delay: 0.8s; }

.google-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46, 39, 34, 0.15);
}

.review-author {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.review-role {
  color: var(--terra);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-stars {
  font-size: 1rem;
  color: #ffc107;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  display: block;
}

.review-text {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
}

/* Old Google Reviews - 2 Column Layout (keeping for reference) */
.reviews-container {
  margin: 2rem auto 0;
  max-width: 1200px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.reviews-stats {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
}

.reviews-stats:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(46, 39, 34, 0.12);
}

.rating-number {
  font-size: 3.8rem;
  font-family: var(--font-head);
  color: var(--terra);
  margin-bottom: 0.8rem;
  letter-spacing: -1px;
}

.rating-stars {
  font-size: 2rem;
  letter-spacing: 0.4rem;
  margin-bottom: 1.2rem;
  color: #ffc107;
  display: block;
}

.rating-count {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.reviews-stats .btn {
  box-shadow: 0 6px 20px rgba(179, 104, 63, 0.25);
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(46, 39, 34, 0.08);
  padding: 1.8rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--terra);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46, 39, 34, 0.12);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.review-stars {
  font-size: 0.95rem;
  color: #ffc107;
  letter-spacing: 0.15rem;
}

.review-text {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
}

/* Modal 2-Column Layout */
.modal-content form:not(.booking-cards) {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.2rem !important;
}

.modal-content form:not(.booking-cards) div:nth-of-type(1),
.modal-content form:not(.booking-cards) .two,
.modal-content form:not(.booking-cards) textarea,
.modal-content form:not(.booking-cards) button,
.modal-content form:not(.booking-cards) .form-note,
.modal-hint {
  grid-column: span 2 !important;
}

.modal-hint {
  background: rgba(179, 104, 63, 0.1);
  border-left: 4px solid var(--terra);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

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

/* Footer */
footer.site { background: #3d3530; color: #cfc4b6; padding: 3.5rem 0 2rem; font-size: .95rem; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
footer.site h4 { color: #fff; margin-bottom: .8rem; font-family: var(--font-head); font-weight: 400; font-size: 1.1rem; }
footer.site a { color: #e8ddcd; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: .4rem; }
footer.site .legal { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; color: #9c9184; font-size: .85rem; }

/* Legal pages */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { margin-bottom: 1.5rem; }
.prose h2 { margin: 2.2rem 0 .6rem; font-size: 1.45rem; }
.prose h3 { margin: 1.6rem 0 .4rem; font-size: 1.15rem; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: .8rem; }
.prose ul { padding-left: 1.3rem; }

/* Jenny's Kontaktbereich */
section#kontakt {
  background: linear-gradient(135deg, var(--sand) 0%, #eae2d8 100%);
  border-top: 1px solid rgba(227, 214, 196, 0.4);
}

/* Feature Cards (3-Spalten-Sektion Homepage) */
.feature-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(46, 39, 34, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(46, 39, 34, 0.12);
}
.feature-card img { width: 100%; height: 240px; object-fit: cover; }
.feature-card .pad { padding: 1.5rem; }
.feature-card h4 { color: var(--terra); margin-bottom: 0.8rem; font-size: 1.15rem; }
.feature-card p { color: var(--ink-soft); line-height: 1.8; }

/* Kundenlogos (Referenzen) */
.client-logos {
  margin: 2.5rem auto 0; max-width: 900px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2.5rem;
}
.client-logos img { width: 100%; height: auto; }

/* FAQ */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; text-align: left; }
.faq-list details {
  background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 8px rgba(46, 39, 34, 0.08);
  margin-bottom: 1rem; border-left: 4px solid var(--terra);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  list-style: none; position: relative; padding-right: 3rem;
  transition: background 0.25s ease-out;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--terra);
  transition: transform 0.25s ease-out; line-height: 1;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { background: rgba(179, 104, 63, 0.04); }
.faq-list details p {
  padding: 0 1.5rem 1.3rem; color: var(--ink-soft); line-height: 1.75;
}

/* Responsive */
@media (max-width: 1000px) {
  .nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 1.2rem; gap: 1rem;
    border-bottom: 1px solid var(--sand-dark); box-shadow: var(--shadow);
  }
  .nav { position: relative; }
  .nav ul a { display: block; padding: .4rem 0; }
  #menu-toggle:checked ~ ul { display: flex; }
  .burger { display: block; font-size: 1.8rem; cursor: pointer; line-height: 1; user-select: none; padding: .4rem; }
}

@media (max-width: 1100px) {
  .reviews-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid.c3, .steps, .gallery { grid-template-columns: 1fr 1fr; }
  .row, footer.site .cols { grid-template-columns: 1fr; }
  .row.flip > .media { order: 0; }
  .room-band .row.flip > div:not(.media), .room-band .row.flip > .media { order: 0; }
  section { padding: 3rem 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid.c2, .steps { grid-template-columns: 1fr; }
  .parallax { margin: 2rem 1.25rem; min-height: 50vh; }
  .facts { gap: 1.8rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .customers-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .contact-jenny-image { width: 200px; height: 200px; margin-top: -40px; }
  .client-logos { padding: 1.5rem; }
}
@media (max-width: 768px) {
  .modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: .5rem 0;
  }
  .modal-content {
    width: min(96vw, 560px);
    max-height: none;
    margin: auto 0;
    padding: 1rem;
    border-radius: 14px;
  }
  .modal-close {
    top: .65rem;
    right: .65rem;
  }
  .modal-logo {
    width: 150px;
    margin-bottom: .35rem;
  }
  .modal-cards h2 {
    font-size: 1.35rem;
    margin: 0 2rem .2rem;
  }
  .modal-subtitle {
    font-size: .85rem;
    margin-bottom: .75rem;
  }
  form.booking-cards {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .modal-content .booking-card-full {
    grid-column: 1;
    display: flex;
    width: 100%;
  }
  .booking-card {
    padding: .8rem;
    gap: .45rem;
  }
  .card-fields {
    gap: .45rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea,
  .modal-content input,
  .modal-content select,
  .modal-content textarea {
    padding: .58rem .7rem;
  }
  .form-group textarea {
    min-height: 92px;
  }
  .btn-submit {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .grid.c2, .grid.c3, .steps, form.booking .two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .reviews-grid-new { grid-template-columns: 1fr; }
  .reviews-grid-new .google-review-card:nth-child(n+5) { display: none; }
  .hero { min-height: 60vh; min-height: 60svh; }
  .nav .logo img { height: 42px; }
  .modal-content { padding: 1rem; width: 96%; }

  form.booking-cards {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .booking-card {
    padding: .8rem;
  }

  .modal-content .booking-card-full {
    display: flex;
  }

  .modal-cards h2 {
    font-size: 1.5rem;
  }
}

/* Reduzierte Bewegung (Barrierefreiheit) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
