/* ============================================
   FRÄULEIN ROSI – Stylesheet (helles Design)
   ============================================ */

:root {
  --rose:         #C4827A;
  --rose-light:   #F3C8C2;
  --rose-pale:    #FAF0EE;
  --rose-dark:    #A86060;
  --creme:        #FDF6F4;
  --creme-2:      #F7EEEC;
  --white:        #FFFFFF;
  --dark:         #5A4F4F;
  --text:         #4A3F3F;
  --text-muted:   #9A8585;
  --border:       #EDD9D6;
  --radius:       20px;
  --radius-sm:    12px;
  --shadow-sm:    0 2px 12px rgba(180, 100, 90, 0.08);
  --shadow:       0 8px 32px rgba(180, 100, 90, 0.12);
  --shadow-lg:    0 24px 64px rgba(180, 100, 90, 0.16);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; font-size: 16px; }

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

em {
  font-style: italic;
  color: var(--rose);
}

.hide-mobile { display: inline; }

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--rose   { background: var(--rose-pale); }
.section--creme  { background: var(--creme); }

.section--booking {
  background: linear-gradient(160deg, #C9A0A0 0%, #DDBAB6 50%, #F0D5D0 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ── Typography ── */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.section-eyebrow--light { color: rgba(255,255,255,0.8); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-header .section-title { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-large { padding: 16px 40px; font-size: 1rem; }

.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 96, 88, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--rose-dark);
  border-color: var(--rose-light);
}
.btn-secondary:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
}

.btn-white {
  background: #fff;
  color: var(--rose-dark);
  border-color: #fff;
  font-weight: 600;
}
.btn-white:hover {
  background: var(--creme);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  transition: all var(--transition);
  overflow: visible;
}

#navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

#navbar.scrolled .nav-logo-img {
  height: 54px;
  transform: translateY(0);
  filter: none;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 52px;
  overflow: visible;
}

.nav-logo {
  margin-right: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.nav-logo-img {
  height: 108px;
  width: auto;
  position: relative;
  transform: translateY(28px);
  filter: drop-shadow(0 6px 16px rgba(180, 100, 90, 0.2));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: translateY(22px);
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--rose); }

.nav-links a.active {
  color: var(--rose);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}

.nav-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-insta:hover { color: var(--rose); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 52px 24px 28px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  border-bottom: none;
}
.mobile-menu-social {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 4px;
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
  border-bottom: none !important;
}
.mobile-menu-social:hover { color: var(--rose) !important; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow: clip;
  background: linear-gradient(150deg, #FBF0EE 0%, #FDF5EE 40%, #F9EBE6 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-blob--1 {
  width: 550px; height: 550px;
  background: var(--rose-light);
  opacity: 0.5;
  top: -150px; right: -100px;
}
.hero-blob--2 {
  width: 400px; height: 400px;
  background: #F5C9BE;
  opacity: 0.35;
  bottom: -100px; left: 10%;
}
.hero-blob--3 {
  width: 300px; height: 300px;
  background: #FDE8C8;
  opacity: 0.4;
  top: 30%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-inner > * { min-width: 0; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  overflow-wrap: break-word;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-icon { font-size: 1.1rem; }
.badge-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.badge-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* Hero visuals */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-image-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  animation: kenburns 12s ease-out forwards;
  transform-origin: 75% center;
}

@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-polaroid {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 10px 14px;
  box-shadow: var(--shadow);
  width: 140px;
  transform: rotate(-4deg);
}

.hero-polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.hero-polaroid span {
  display: block;
  font-size: 0.72rem;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Über ── */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: sepia(0.25) saturate(0.85) brightness(1.06) contrast(1.06);
}
.image-frame:hover img { transform: scale(1.03); }

.ueber-text .section-title { margin-bottom: 20px; }

.ueber-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.75;
}

.ueber-body strong { color: var(--dark); }

.ueber-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--rose-pale);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.highlight-icon { font-size: 1rem; flex-shrink: 0; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: stretch;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:last-child { grid-column: 2; }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose-light);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--rose-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--rose);
  transition: background 0.2s, color 0.2s;
}
.feature-card:hover .feature-icon {
  background: var(--rose-light);
  color: var(--rose-dark);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Ablauf ── */
.steps {
  display: flex;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 18px;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--rose-light), var(--border));
  margin-top: 55px;
  border-radius: 2px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item--tall  { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide  { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial:hover {
  box-shadow: var(--shadow);
  border-color: var(--rose-light);
  transform: translateY(-3px);
}

.testimonial-stars { color: var(--rose); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose-dark);
  border: 2px solid var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testimonial-author span  { font-size: 0.8rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--rose); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--rose);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 4px 22px;
}

/* ── Booking CTA ── */
.booking-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.booking-blob--1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.15);
  top: -100px; right: 0;
}
.booking-blob--2 {
  width: 350px; height: 350px;
  background: rgba(0,0,0,0.1);
  bottom: -100px; left: 5%;
}

.booking-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.booking-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.booking-title em { color: rgba(255,255,255,0.85); }

.booking-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.booking-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ── Footer ── */
footer {
  background: var(--rose-pale);
  border-top: 1px solid var(--rose-light);
  padding: 36px 0 18px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(74,63,63,0.55);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(74,63,63,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose-dark); }


.footer-bottom {
  border-top: 1px solid var(--rose-light);
  padding-top: 16px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(74,63,63,0.35); }

/* ── Booking Form ── */
.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.booking-text .booking-title { margin-bottom: 16px; }
.booking-text .booking-subtitle { margin-bottom: 32px; }

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.booking-contact-item:hover { color: #fff; }
.booking-contact-icon { font-size: 1rem; }

.booking-form {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  height: 44px;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.form-group textarea {
  height: auto;
}

/* Select: eigener Pfeil */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A3F3F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  color: var(--dark);
  background: #fff;
}

/* Placeholder-Farbe einheitlich */
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(74,63,63,0.45); }

.form-group select:invalid,
.form-group select option[value=""] { color: rgba(74,63,63,0.45); }

/* Number input: Pfeile ausblenden */
.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.form-group input[type="number"] { -moz-appearance: textfield; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.45);
}

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

.form-submit { width: 100%; margin-top: 4px; }

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border-color: #25D366;
  width: 100%;
  gap: 10px;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn { display: none; }

.form-whatsapp-note {
  font-size: 0.75rem;
  color: rgba(74,63,63,0.45);
  text-align: center;
  line-height: 1.5;
  display: none;
}
.form-whatsapp-note a { color: rgba(74,63,63,0.55); text-decoration: underline; }

@media (max-width: 768px) {
  .whatsapp-btn { display: inline-flex; }
  .form-whatsapp-note { display: block; }
}

.form-privacy {
  font-size: 0.78rem;
  color: rgba(74,63,63,0.55);
  text-align: center;
  line-height: 1.5;
}
.form-privacy a { color: var(--rose-dark); text-decoration: underline; }

.form-success {
  text-align: center;
  color: var(--text);
  background: rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.95rem;
}

.form-error {
  text-align: center;
  color: var(--text);
  background: rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-text { text-align: center; }
  .booking-contact { align-items: center; }
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  animation: slideUp 0.4s ease;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--rose);
  text-decoration: underline;
}

.cookie-actions { flex-shrink: 0; }

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-inner         { gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta, .nav-insta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hide-mobile { display: none; }

  .nav-logo-img { height: 72px; transform: translateY(14px); }
  .hero-badges { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 60px;
    gap: 48px;
  }

  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-image-frame { aspect-ratio: 3/4; }

  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .image-frame { aspect-ratio: 4/3; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: 1; }

  .steps { flex-direction: column; align-items: center; gap: 36px; }
  .step-connector { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--wide { grid-row: span 1; grid-column: span 1; aspect-ratio: 3/2; }
  .gallery-item--tall { grid-row: span 1; grid-column: span 1; aspect-ratio: 2/3; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
