/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --creme: #F9F5F0;
  --rose: #C9947A;
  --rose-dark: #b07d65;
  --text: #2C2C2C;
  --white: #FFFFFF;
  --grey-light: #f0ebe4;
  --grey-mid: #888;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 8px;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text);
}

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--rose);
}

.btn-rose-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-rose-outline:hover {
  background: var(--rose);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--grey-mid);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.section-header {
  text-align: center;
  margin-bottom: 0;
}
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
  display: block;
}

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 245, 240, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 148, 122, 0.2);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.25s;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover,
.main-nav a.active { color: var(--rose); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}
.main-nav .nav-cta::after { content: none; }
.main-nav .nav-cta,
.main-nav .nav-cta:hover,
.main-nav .nav-cta:active,
.main-nav .nav-cta:focus,
.main-nav .nav-cta:focus-visible,
.main-nav .nav-cta:visited { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  aria-label: Menü öffnen;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* === HERO === */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === WELCOME SECTION === */
.welcome {
  padding: 80px 0 60px;
  text-align: center;
}
.welcome p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--grey-mid);
}

/* === SERVICES GRID === */
.services {
  padding: 60px 0 80px;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--grey-light);
  transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--creme); }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--rose); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* === MINI GALLERY === */
.mini-gallery {
  padding: 80px 0;
}

.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-grid-home .gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-grid-home .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid-home .gallery-item:hover img { transform: scale(1.06); }

.gallery-link-center { text-align: center; }

/* === TESTIMONIALS === */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.ts-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.ts-carousel-outer {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.ts-carousel-item {
  position: absolute;
  width: 55%;
  top: 0;
  left: -200%;
  opacity: 0;
  z-index: 1;
  transition:
    left 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
    transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
    opacity 0.5s ease;
}

.ts-carousel-item.slot-center {
  left: 22%;
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.ts-carousel-item.slot-left {
  left: -22%;
  transform: scale(0.85);
  opacity: 0.5;
}

.ts-carousel-item.slot-right {
  left: 67%;
  transform: scale(0.85);
  opacity: 0.5;
}

.ts-carousel-item.slot-hidden-left {
  left: -100%;
  transform: scale(0.7);
  opacity: 0;
  pointer-events: none;
}

.ts-carousel-item.slot-hidden-right {
  left: 120%;
  transform: scale(0.7);
  opacity: 0;
  pointer-events: none;
}

.ts-btn {
  background: none;
  border: 2px solid var(--rose);
  color: var(--rose);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-btn:hover {
  background: var(--rose);
  color: var(--white);
}

.ts-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.ts-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4b8ac;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.ts-dot.active {
  background: var(--rose);
  transform: scale(1.35);
}

.testimonial-stars {
  color: #f0a500;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--grey-mid);
  font-style: normal;
  margin-top: 4px;
  display: block;
}

.testimonial-card {
  background: var(--creme);
  padding: 36px 28px;
  border-radius: var(--radius);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: rgba(255,255,255,0.88);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9998;
  font-size: 0.85rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner a { color: var(--rose); text-decoration: underline; }
.cookie-btn-accept {
  padding: 10px 24px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-btn-accept:hover { background: var(--rose-dark); }

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 0;
  background: var(--rose);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }

/* === FOOTER === */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

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

.footer-logo img {
  height: 44px;
  margin-bottom: 16px;
  border-radius: 4px;
  opacity: 0.92;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--rose);
  background: var(--rose);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; color: rgba(255,255,255,0.8); }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--rose); }

/* === GALLERY PAGE === */
.page-hero {
  background: var(--text);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); }

.gallery-section { padding: 60px 0 80px; }

.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--rose);
  background: transparent;
  color: var(--rose);
  border-radius: 100px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--grey-light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item-overlay svg {
  color: white;
  width: 36px;
  height: 36px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.25); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 1.4rem;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--rose); }

.lightbox-close { top: 24px; right: 24px; font-size: 1.6rem; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
}

/* === ANGEBOTE PAGE === */
.angebote-section { padding: 60px 0 80px; }

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.angebot-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.angebot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.angebot-card-img {
  height: 260px;
  overflow: hidden;
}
.angebot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.angebot-card:hover .angebot-card-img img { transform: scale(1.05); }

.angebot-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.angebot-card-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.angebot-card-body p { color: var(--grey-mid); margin-bottom: 20px; font-size: 0.95rem; }
.angebot-card-body .btn { margin-top: auto; align-self: flex-start; }

.includes-list { margin-bottom: 24px; }
.includes-list li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.includes-list li::before {
  content: '✓';
  color: var(--rose);
  font-weight: 700;
  flex-shrink: 0;
}

.price-note-box {
  background: var(--creme);
  border-left: 4px solid var(--rose);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 48px 0;
  font-size: 1rem;
  color: var(--text);
}

.includes-section { padding: 60px 0; background: var(--white); }
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.include-item {
  text-align: center;
  padding: 32px 20px;
}
.include-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.include-item h4 { font-size: 1rem; margin-bottom: 8px; }
.include-item p { font-size: 0.88rem; color: var(--grey-mid); }

/* === ÜBER MICH PAGE === */
.ueber-section { padding: 80px 0; }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portrait-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-light);
  position: relative;
}
.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  gap: 12px;
}
.portrait-placeholder svg { width: 60px; height: 60px; opacity: 0.4; }
.portrait-placeholder span { font-size: 0.85rem; }

.ueber-content h1 { margin-bottom: 20px; }
.ueber-content p { color: var(--grey-mid); margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0;
}
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--rose);
  opacity: 0.3;
  margin-bottom: 8px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--grey-mid); }

.equipment-section { padding: 60px 0; background: var(--white); }
.equipment-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.equip-tag {
  background: var(--creme);
  border: 1px solid rgba(201,148,122,0.3);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text);
}

/* === KONTAKT PAGE === */
.kontakt-section { padding: 60px 0 80px; }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.kontakt-info h2 { margin-bottom: 16px; }
.kontakt-info p { color: var(--grey-mid); margin-bottom: 32px; }

.info-block { margin-bottom: 28px; }
.info-block h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}
.info-block p { color: var(--text); font-size: 0.95rem; }

.map-embed {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
}

.contact-form {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h2 { margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group label .required { color: var(--rose); margin-left: 2px; }

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--creme);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checkbox-group input[type="checkbox"] {
  appearance: checkbox;
  -webkit-appearance: checkbox;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--rose);
  cursor: pointer;
}
.checkbox-group label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--grey-mid);
  cursor: pointer;
}
.checkbox-group a { color: var(--rose); text-decoration: underline; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; padding: 16px; }

.form-success { display: none; background: var(--creme); border: 2px solid var(--rose); border-radius: 8px; padding: 36px 28px; text-align: center; margin-top: 8px; }
.form-success .form-success-title { font-size: 1.2rem; font-weight: 700; color: var(--rose-dark); margin-bottom: 10px; }
.form-success p { margin: 0; color: var(--text); }

/* === IMPRESSUM / DATENSCHUTZ === */
.legal-section { padding: 60px 0 80px; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 12px; color: var(--text); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; font-family: 'Lato', sans-serif; font-weight: 700; }
.legal-content p { margin-bottom: 12px; font-size: 0.95rem; color: #444; }
.legal-content a { color: var(--rose); text-decoration: underline; }
.legal-content ul { margin: 8px 0 16px 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; font-size: 0.95rem; color: #444; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: none; border-bottom: 1px solid var(--grey-light); }
  .service-card:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a {
    padding: 14px 28px;
    border-bottom: 1px solid var(--grey-light);
    font-size: 1rem;
  }
  .main-nav a::after { display: none; }
  .nav-cta { margin: 16px 28px 4px; text-align: center; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { height: calc(100svh - 72px); }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }

  .gallery-grid-home {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .ts-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .ts-carousel-outer { min-height: 310px; }
  .ts-carousel-item.slot-left,
  .ts-carousel-item.slot-right { opacity: 0; pointer-events: none; }
  .ts-carousel-item.slot-center { left: 5%; width: 90%; }

  .angebote-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

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

  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; }
  .container { padding: 0 16px; }
}
