/* ============================================================
   DIE MIT DEN SCHERENHÄNDEN – Stylesheet
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #F8F5F1;
  --bg-cream:     #EFE9E0;
  --bg-dark:      #1C1A18;
  --text:         #1C1A18;
  --text-muted:   #8A8880;
  --accent:       #8B5E3A;
  --accent-hover: #A06F46;
  --border:       #E2DDD6;
  --white:        #FFFFFF;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --max-w:        1240px;
  --nav-h:        72px;

  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.t-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.t-large {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section--cream {
  background: var(--bg-cream);
}

.section__header {
  margin-bottom: 64px;
}

.section__header .t-eyebrow {
  margin-bottom: 16px;
}

.section__header .t-h2 {
  max-width: 560px;
}

/* ── Button ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--outline {
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(248, 245, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav__inner { padding: 0 48px; }
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero__logo {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 32px;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav__menu {
    display: flex;
  }
}

.nav__menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.nav__menu a:hover,
.nav__menu a.active {
  color: var(--text);
}

.nav__cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: inline-flex;
    font-size: 13px;
    padding: 10px 22px;
  }
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .nav__actions { gap: 20px; }
}

.nav__insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  transition: color 0.2s var(--ease);
}

.nav__insta:hover { color: var(--accent); }

.nav__insta svg { width: 26px; height: 26px; display: block; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav__toggle { display: none; }
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

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

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 48px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.nav__mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__mobile-menu a:hover {
  color: var(--accent);
}

.nav__mobile-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 8px 0 40px;
  padding: 16px 32px;
  font-size: 15px;
}

.nav__mobile-info {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

.nav__mobile-info a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__mobile-info a:hover {
  color: var(--text);
}

/* ── Hero (Vollbild-Foto, farbig abgedunkelt, Text mittig) ──── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gleichmäßige, FARBIGE Abdunklung (kein Schwarz-Weiß) – Text tritt hervor */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18, 16, 15, 0.46);
}

/* Sehr dezente Glas-Fläche hinter dem Text – Bild bleibt gut sichtbar */
.hero__content {
  position: relative;
  z-index: 2;
  margin: 20px;
  width: calc(100% - 40px);
  max-width: 660px;
  padding: 40px 28px;
  color: #fff;
  background: rgba(18, 16, 15, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 4px;
}

@media (min-width: 768px) {
  .hero__content {
    margin: 0;
    width: auto;
    padding: 48px 56px;
  }
}

.hero__title {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 460px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.hero__phone:hover { color: #fff; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

/* ── Intro / USP ───────────────────────────────────────────── */
.intro {
  padding: 96px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.intro__text .t-h2 {
  margin-bottom: 32px;
}

.intro__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro__text p:last-child { margin-bottom: 0; }

.intro__image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.intro__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.intro__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.15), transparent);
}

.usp {
  background: var(--bg-cream);
  padding: 80px 0;
}

.usp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

@media (min-width: 1024px) {
  .usp__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.usp__item {}

.usp__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}

.usp__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.usp__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Über uns ──────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
  }
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about__img {
  background: linear-gradient(145deg, #C8BBAB, #A89B8B);
}

.about__img--tall {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.about__img--short {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.about__img--short:nth-child(3) {
  aspect-ratio: 4/3;
}

.about__img--wide {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.about__text .t-eyebrow { margin-bottom: 16px; }
.about__text .t-h2 { margin-bottom: 32px; }

.about__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.about__text p:last-of-type { margin-bottom: 32px; }

.about__usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .about__usp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.about__usp-item {
  display: flex;
  flex-direction: column;
}

.about__usp-icon {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
  height: 32px;
  display: flex;
  align-items: flex-end;
}

.about__usp-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.about__usp-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Team ──────────────────────────────────────────────────── */
.team__intro {
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}

.team__intro .t-eyebrow { margin-bottom: 16px; }
.team__intro .t-h2 { margin-bottom: 20px; }
.team__intro p { color: var(--text-muted); font-size: 15px; line-height: 1.75; }

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.team__member {}

.team__member-img {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #C5B7A8 0%, #9F9085 100%);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.team__member-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team__member-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.2) 0%, transparent 50%);
}

.team__member:nth-child(2) .team__member-img {
  background: linear-gradient(160deg, #B8AB9C 0%, #918579 100%);
}

.team__member:nth-child(3) .team__member-img {
  background: linear-gradient(160deg, #CAC0B2 0%, #A49689 100%);
}

.team__member:nth-child(4) .team__member-img {
  background: linear-gradient(160deg, #BEB2A5 0%, #978B80 100%);
}

.team__member-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.team__member-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team__member-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Preise ────────────────────────────────────────────────── */
.prices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .prices__grid { grid-template-columns: 2fr 1fr; gap: 80px; }
}

.price-group {
  margin-bottom: 48px;
}

.price-group:last-child { margin-bottom: 0; }

.price-group__title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.price-item:last-child { border-bottom: none; }

.price-item__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}

.price-item__note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.price-item__amount {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
  color: var(--text);
}

.price-item__amount span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* ── Preis-Dropdowns (Damen / Herren / Kinder) ─────────────── */
.price-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-acc {
  border: 1px solid var(--border);
  background: var(--bg);
}

.price-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s var(--ease);
}

.price-acc__head::-webkit-details-marker { display: none; }

.price-acc__head:hover { background: var(--bg-cream); }

.price-acc[open] .price-acc__head {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
}

.price-acc__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}

.price-acc__icon {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-top: -4px;
}

.price-acc[open] .price-acc__icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.price-acc__body {
  padding: 12px 24px 22px;
}

.price-acc__body .price-group { margin-bottom: 32px; }
.price-acc__body .price-group:last-child { margin-bottom: 0; }

.prices__aside {}

.prices__aside-box {
  background: var(--bg-cream);
  padding: 32px;
  margin-bottom: 24px;
}

.prices__aside-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.prices__aside-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Galerie / Einblicke ───────────────────────────────────── */
.gallery__lead {
  max-width: 480px;
  margin-bottom: 64px;
}

.gallery__lead .t-eyebrow { margin-bottom: 16px; }
.gallery__lead .t-h2 { margin-bottom: 20px; }
.gallery__lead p { color: var(--text-muted); font-size: 15px; }

.gallery__video-inline {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  aspect-ratio: 9/16;
}

/* ── Horizontales Scroll-System (mit Pfeilen) ──────────────── */
.gallery__block { margin-top: 64px; }

.gallery__block-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.hscroll { position: relative; }

.hscroll__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.hscroll__track::-webkit-scrollbar { display: none; }

.hscroll__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: 300px;
  background: var(--bg-cream);
}

@media (min-width: 768px) { .hscroll__item { height: 440px; } }

.hscroll__img {
  height: 100%;
  width: auto;
  display: block;
}

.hscroll__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.hscroll__arrow:hover { background: #fff; }
.hscroll__arrow--prev { left: 10px; }
.hscroll__arrow--next { right: 10px; }
.hscroll__arrow[hidden] { display: none; }

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

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.gallery__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,26,24,0);
  transition: background 0.3s var(--ease);
  pointer-events: none;
}

.gallery__item:hover::after {
  background: rgba(28,26,24,0.12);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__real-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.gallery__real-img--bottom {
  object-position: center 60%;
}

.gallery__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.g1 { background: linear-gradient(145deg, #C8BBAB, #9F9085); aspect-ratio: 1; }
.g2 { background: linear-gradient(175deg, #B5A898, #8A7E74); }
.g3 { background: linear-gradient(130deg, #D0C3B5, #A89A8C); aspect-ratio: 1; }
.g4 { background: linear-gradient(155deg, #BFB3A5, #978C82); aspect-ratio: 1; }
.g5 { background: linear-gradient(140deg, #C4B8AC, #9C9088); aspect-ratio: 1; }
.g6 { background: linear-gradient(165deg, #CABDAf, #A29589); }
.g7 { background: linear-gradient(135deg, #B8AC9F, #918882); aspect-ratio: 3/2; }
.g8 { background: linear-gradient(150deg, #D2C7BC, #B0A49A); aspect-ratio: 1; }

.gallery__testimonials {
  margin-top: 80px;
}

.gallery__testimonials-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 32px;
}

.testimonials__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.testimonials__grid::-webkit-scrollbar {
  display: none;
}

.testimonial-video {
  flex: 0 0 80vw;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .testimonial-video { flex: 0 0 45%; }
}

@media (min-width: 1024px) {
  .testimonial-video { flex: 0 0 calc(33.333% - 16px); }
}

.testimonial-video__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #000;
  object-fit: cover;
}

/* Zentraler Play-Button auf den Video-Testimonials */
.testimonial-video { position: relative; }

.testimonial-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), opacity 0.2s var(--ease);
}

.testimonial-video__icon {
  width: 30px;
  height: 30px;
}

.testimonial-video__icon--play { margin-left: 4px; }
.testimonial-video__icon--pause { display: none; }

.testimonial-video__play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Beim Abspielen: Pause-Symbol zeigen, Button dezenter (zentral pausierbar) */
.testimonial-video.is-playing .testimonial-video__icon--play { display: none; }
.testimonial-video.is-playing .testimonial-video__icon--pause { display: block; }

.testimonial-video.is-playing .testimonial-video__play {
  opacity: 0.55;
}

.testimonial-video.is-playing .testimonial-video__play:hover {
  opacity: 1;
}

.testimonial-video__placeholder {
  aspect-ratio: 9 / 16;
  background: var(--bg-cream);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ── Blog ──────────────────────────────────────────────────── */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .blog__grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

@media (min-width: 1024px) {
  .blog__grid { grid-template-columns: repeat(3, 1fr); }
}

.blog__card {}

.blog__card-img {
  display: block;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  overflow: hidden;
}

.b1 { background: linear-gradient(145deg, #C2B8AD, #9A9088); }
.b2 { background: linear-gradient(145deg, #CBBFB5, #A49990); }
.b3 { background: linear-gradient(145deg, #BFBAAF, #989288); }

.blog__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog__card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(139, 94, 58, 0.08);
  padding: 4px 10px;
}

.blog__card-date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog__card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.blog__card:hover .blog__card-title { color: var(--accent); }

.blog__card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog__card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog__card:hover .blog__card-link { gap: 10px; }

.blog__card-link::after {
  content: '→';
}

/* ── Jobs ──────────────────────────────────────────────────── */
.jobs__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .jobs__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 96px; }
}

.jobs__content .t-eyebrow { margin-bottom: 16px; }
.jobs__content .t-h2 { margin-bottom: 32px; }

.jobs__content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.jobs__content p:last-of-type { margin-bottom: 40px; }

.jobs__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.jobs__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

.jobs__email {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.jobs__email a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

.jobs__email a:hover {
  color: var(--accent-hover);
}

.jobs__image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.jobs__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.jobs__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.1), transparent);
}

/* ── Prices banner image ───────────────────────────────────── */
.prices__banner {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .prices__banner {
    height: 560px;
  }
}

.prices__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ── Kontakt ───────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
}

.contact__info .t-eyebrow { margin-bottom: 16px; }
.contact__info .t-h2 { margin-bottom: 40px; }

.contact__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.contact__block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact__block-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact__block-text {
  font-size: 15px;
  line-height: 1.7;
}

.contact__block-text a {
  color: var(--text);
  transition: color 0.2s;
}

.contact__block-text a:hover { color: var(--accent); }

.contact__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 15px;
}

.contact__hours-day { color: var(--text-muted); font-size: 14px; }
.contact__hours-time { font-size: 14px; }

.contact__map {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.contact__map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact__map-pin::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.contact__map-label {
  background: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.contact__cta {
  background: var(--accent);
  padding: 64px 48px;
  text-align: center;
  margin-top: 80px;
}

.contact__cta .t-h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact__cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 15px;
}

.contact__cta .btn {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.contact__cta .btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 64px 0 32px;
}

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

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 64px; }
}

.footer__brand {}

.footer__brand-logo {
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__brand-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── CTA Strip ─────────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}

.cta-strip .t-h2 { margin-bottom: 12px; }
.cta-strip p { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; }

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
}

/* ── Scroll Animation ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Google Reviews ────────────────────────────────────────── */
.review {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.review:last-child { border-bottom: none; padding-bottom: 0; }
.review:first-child { padding-top: 0; }

.review__stars {
  color: #F4A227;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 8px;
}

.review__author {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.review__meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.review__link {
  color: var(--accent);
  transition: color 0.2s;
}

.review__link:hover { color: var(--accent-hover); }

/* ── Blog Post Page ────────────────────────────────────────── */
.blog-post {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 96px;
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
  transition: color 0.2s;
}

.blog-post__back:hover { color: var(--text); }

.blog-post__header {
  max-width: 720px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-post__title {
  line-height: 1.15;
}

.blog-post__cover {
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .blog-post__cover {
    height: 560px;
  }
}

.blog-post__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-post__body {
  max-width: 680px;
}

.blog-post__body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 48px 0 16px;
  color: var(--text);
}

.blog-post__body p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 20px;
}

.blog-post__body ul {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-post__body ul li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}

.blog-post__body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.blog-post__cta {
  max-width: 680px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.blog-post__cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── Legal pages (Impressum, Datenschutz) ──────────────────── */
.legal-page {
  padding: calc(var(--nav-h) + 64px) 0 96px;
}

.legal-page__body {
  max-width: 680px;
}

.legal-block {
  margin-bottom: 32px;
}

.legal-block p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 8px;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--accent-hover);
}

.legal-block__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

/* ── Interaktives Inhaltsverzeichnis (Bild-Kacheln) ────────── */
.toc-index {
  padding: 28px 0 8px;
}

@media (min-width: 1024px) {
  .toc-index { padding: 40px 0 16px; }
}

.toc-tiles {
  display: grid;
  grid-template-columns: 1fr;     /* Mobile: untereinander gestapelt */
  gap: 12px;
}

@media (min-width: 640px) {
  .toc-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .toc-tiles { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .toc-tile { aspect-ratio: 3 / 2; }   /* 2 × 2, große Kacheln */
}

.toc-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--bg-cream);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;            /* Mobile: große, breite Bilder */
  transition: box-shadow 0.25s var(--ease);
}

@media (min-width: 640px) {
  .toc-tile { aspect-ratio: 4 / 3; }
}


.toc-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

/* Team-Bild: Fokus zwischen Mitte und oben, damit obere & untere Gesichter sichtbar bleiben */
.toc-tile[data-tab="team"] img {
  object-position: center 25%;
}

.toc-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.78) 0%, rgba(28,26,24,0.12) 55%, transparent 100%);
  transition: background 0.3s var(--ease);
}

/* Überschrift = eigener Button innerhalb der Kachel */
.toc-tile__btn {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

@media (min-width: 1024px) {
  .toc-tile__btn { left: 22px; bottom: 22px; font-size: 16px; padding: 13px 30px; }
}

.toc-tile:hover .toc-tile__btn,
.toc-tile__btn:hover,
.toc-tile__btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.toc-tile.is-active .toc-tile__btn,
.toc-tile__btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.toc-tile:hover img,
.toc-tile:focus-visible img { transform: scale(1.05); }

.toc-tile:hover::after {
  background: linear-gradient(to top, rgba(28,26,24,0.82) 0%, rgba(139,94,58,0.28) 70%, transparent 100%);
}

.toc-tile.is-active {
  box-shadow: 0 0 0 3px var(--accent);
}

.toc-tile.is-active::after {
  background: linear-gradient(to top, rgba(139,94,58,0.85) 0%, rgba(139,94,58,0.3) 70%, transparent 100%);
}

/* ── Kontakt-CTA (am Ende jedes Bereichs) ──────────────────── */
.page-cta {
  background: var(--accent);
  color: #fff;
  padding: 56px 0;
}

@media (min-width: 768px) {
  .page-cta { padding: 64px 0; }
}

.page-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) {
  .page-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}

.page-cta__title { color: #fff; }

.page-cta__meta {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}

.page-cta__btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--accent);
  font-size: 15px;
  padding: 16px 36px;
}

.page-cta__btn:hover { background: rgba(255,255,255,0.88); }

/* ── Standort-Karte (immer sichtbar) ───────────────────────── */
.map-strip {
  width: 100%;
  height: 360px;
}

@media (min-width: 768px) {
  .map-strip { height: 440px; }
}

.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Panels: ohne JS alle sichtbar (SEO/Fallback), mit JS nur das aktive */
.tab-panel { scroll-margin-top: var(--nav-h); }

.tabs-enabled .tab-panel { display: none; }

.tabs-enabled .tab-panel.is-active {
  display: block;
  animation: tabFade 0.4s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .tabs-enabled .tab-panel.is-active { animation: none; }
}

/* ── Responsive helpers ────────────────────────────────────── */
@media (max-width: 767px) {
  .section { padding: 72px 0; }
  .section__header { margin-bottom: 48px; }
  .hero__scroll { display: none; }
  .about__images { grid-template-columns: 1fr; }
  .about__img--tall { grid-row: auto; aspect-ratio: 4/3; }
}
