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

:root {
  --bg:           #f7f2ea;
  --surface:      rgba(255,255,255,0.74);
  --surface-2:    rgba(255,248,241,0.92);
  --surface-3:    #f0e4d6;
  --accent:       #9c4f2d;
  --accent-2:     #c97847;
  --accent-deep:  #69331c;
  --text:         #231711;
  --text-soft:    #5f4a3f;
  --muted:        #907564;
  --border:       rgba(125,87,61,0.18);
  --line:         rgba(125,87,61,0.12);
  --shadow:       0 18px 55px rgba(42, 25, 14, 0.12);
  --shadow-soft:  0 10px 30px rgba(42, 25, 14, 0.07);
  --header-h:     88px;
  --footer-h:     72px;
  --radius:       22px;
  --radius-sm:    14px;
  --trans:        0.24s ease;
  --content:      1180px;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(201,120,71,0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(156,79,45,0.10), transparent 24%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 42%, #f3eae0 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7), transparent 18%),
    repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(110,74,45,0.025) 120px, rgba(110,74,45,0.025) 121px);
  opacity: 0.7;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  height: var(--header-h);
  background: rgba(255, 249, 242, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(130, 91, 63, 0.16);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 1.15rem 0 1.5rem;
  gap: 1.5rem;
  max-width: calc(var(--content) + 36px);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 18px rgba(156,79,45,0.18));
}

.logo-image {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  padding: 0.18rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.01em;
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.12rem;
}


.logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
}

.logo-wordmark {
  display: block;
  width: auto;
  height: 74px;
  max-width: min(44vw, 360px);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 20px rgba(89, 54, 30, 0.16));
}

.hero-media-card-start .hero-brandmark {
  width: min(100%, 560px);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-brandmark-image {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(44,26,14,0.10));
}

nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  transition: color var(--trans), background var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

nav a:hover {
  color: var(--accent-deep);
  background: rgba(156,79,45,0.08);
  transform: translateY(-1px);
}

nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 10px 22px rgba(156,79,45,0.26);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  border-radius: 999px;
  background: rgba(156,79,45,0.08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-deep);
  border-radius: 2px;
  transition: all var(--trans);
}

main {
  flex: 1;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 8.8rem 1.5rem 7rem;
}

.page {
  display: block;
  animation: fadeIn 0.42s ease both;
}

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

#page-startseite {
  display: block;
}

#page-startseite .hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 3rem;
  align-items: center;
  padding: 3.4rem;
  background:
    linear-gradient(135deg, rgba(255,252,248,0.92), rgba(246,236,224,0.88)),
    linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  border: 1px solid rgba(130, 91, 63, 0.14);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

#page-startseite .hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -28% 45%;
  height: 280px;
  background: radial-gradient(circle, rgba(201,120,71,0.26), transparent 62%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(156,79,45,0.09);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 0.96;
  color: var(--text);
  max-width: 11ch;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  color: var(--text-soft);
  font-size: 1.02rem;
  max-width: 58ch;
}

.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.45rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(156,79,45,0.23);
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans), background var(--trans);
}

.btn:hover {
  transform: var(--btn-hover-transform, translateY(-2px));
  box-shadow: 0 18px 32px rgba(156,79,45,0.28);
  filter: saturate(1.05);
}

.btn-outline {
  background: rgba(255,255,255,0.58);
  color: var(--accent-deep);
  border: 1px solid rgba(130, 91, 63, 0.18);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 22px rgba(52,30,18,0.08);
}

.hero-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.86), transparent 26%),
    linear-gradient(145deg, rgba(255,248,241,0.96), rgba(237,220,204,0.96));
  border: 1px solid rgba(130, 91, 63, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 20px 40px rgba(45, 27, 15, 0.10);
}

.hero-art::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(130, 91, 63, 0.10);
  pointer-events: none;
}

.hero-art svg {
  width: 76%;
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(44,26,14,0.08));
}
.hero-slider {
  display: block !important;
  padding: 0 !important;
  min-height: 620px;
  overflow: visible;
}

.hero-slides {
  position: relative;
  min-height: 620px;
  width: 100%;
}

.hero-slide {
  display: none;
  min-height: 620px;
  padding: 1.2rem 1.2rem 5.3rem;
  position: relative;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.55s ease both;
}

.hero-slide-frame {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.hero-copy-shell {
  position: relative;
  padding-bottom: 54px;
}

.hero-copy-card,
.hero-media-card {
  border: none;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,252,248,0.96), rgba(246,236,224,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78), 0 16px 34px rgba(46,28,17,0.08);
}

.hero-copy-card {
  min-height: 440px;
  padding: 1.7rem 1.35rem;
}

.hero-copy-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.15rem;
}

.hero-copy-card .hero-eyebrow {
  margin: 0 auto;
}

.hero-copy-card h1 {
  max-width: 100%;
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-copy-card p {
  max-width: 28ch;
  margin: 0 auto;
}

.hero-price-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  --btn-transform: translate(-50%, 50%);
  --btn-hover-transform: translate(-50%, calc(50% - 2px));
  min-width: 178px;
  box-shadow: 0 16px 30px rgba(156,79,45,0.20);
  z-index: 3;
  padding-inline: 1.25rem;
}

.hero-media-card {
  position: relative;
  min-height: 508px;
  padding: 1.35rem 1.35rem 5.8rem;
  overflow: hidden;
}

.hero-media-visual {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(201,120,71,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,246,240,0.98));
  padding: 1.5rem;
}

.hero-media-card-start .hero-media-visual {
  background:
    radial-gradient(circle at 50% 35%, rgba(201,120,71,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,252,248,0.98), rgba(252,246,240,0.98));
}

.hero-media-visual-product {
  padding: 1.1rem;
}

.hero-product-image {
  display: block;
  width: min(100%, 440px);
  max-width: 100%;
  max-height: 390px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 30px rgba(44,26,14,0.14));
  margin: auto;
}

.hero-media-stamp {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(35,23,17,0.88);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-media-btn {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  --btn-transform: translateX(-50%);
  --btn-hover-transform: translateX(-50%) translateY(-2px);
  min-width: 240px;
  z-index: 2;
}

.hero-brandmark {
  position: relative;
  width: min(100%, 320px);
  margin: auto;
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255,250,245,0.86);
  border: 1px solid rgba(130,91,63,0.12);
  box-shadow: 0 18px 40px rgba(45,27,15,0.08);
}

.hero-brandmark svg {
  width: 100%;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 10px 20px rgba(44,26,14,0.08));
}

.hero-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2rem;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,249,242,0.82);
  border: 1px solid rgba(130, 91, 63, 0.16);
  box-shadow: 0 14px 28px rgba(52,30,18,0.10);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(105, 51, 28, 0.24);
  cursor: pointer;
  transition: width var(--trans), transform var(--trans), background var(--trans), opacity var(--trans);
  opacity: 0.9;
}

.hero-dot:hover {
  transform: scale(1.08);
  background: rgba(156,79,45,0.6);
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

.product-shape {
  position: relative;
  flex: 0 0 auto;
  filter: drop-shadow(0 24px 24px rgba(56, 33, 19, 0.22));
}

.product-cap {
  width: 245px;
  height: 150px;
}

.product-cap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 56% 56% 44% 44% / 68% 68% 36% 36%;
  background: linear-gradient(180deg, #8f5738 0%, #4c2f1f 100%);
}

.product-cap::after {
  content: '';
  position: absolute;
  left: 48%;
  bottom: -18px;
  width: 110px;
  height: 48px;
  border-radius: 20% 65% 70% 20% / 50% 70% 45% 55%;
  background: linear-gradient(180deg, #7f4d31 0%, #372116 100%);
  transform: translateX(-10%) rotate(-9deg);
  transform-origin: left center;
}

.product-western {
  width: 270px;
  height: 160px;
}

.product-western::before {
  content: '';
  position: absolute;
  left: 44px;
  right: 44px;
  top: 10px;
  height: 96px;
  border-radius: 48% 48% 42% 42% / 62% 62% 38% 38%;
  background: linear-gradient(180deg, #8c5a39 0%, #563624 100%);
  z-index: 1;
}

.product-western::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 44px;
  border-radius: 50% 50% 48% 48% / 80% 80% 20% 20%;
  background: linear-gradient(180deg, #6e442c 0%, #311d13 100%);
}

.product-bag {
  width: 220px;
  height: 220px;
}

.product-bag::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 42px;
  bottom: 0;
  border-radius: 18% 18% 16% 16% / 14% 14% 16% 16%;
  background: linear-gradient(180deg, #9a613d 0%, #5b3824 100%);
}

.product-bag::after {
  content: '';
  position: absolute;
  left: 62px;
  right: 62px;
  top: 0;
  height: 82px;
  border: 12px solid #6b432a;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}

.product-reader {
  width: 116px;
  height: 270px;
}

.product-reader::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #d2ad82 0%, #8c5737 55%, #543221 100%);
}

.product-reader::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(255,248,240,0.55);
  box-shadow: 0 0 0 8px rgba(68,40,24,0.18);
}


.divider {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin: 0.4rem 0 2rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,87,61,0.24), transparent);
}

.divider-flame {
  width: 20px;
  height: 20px;
  color: var(--accent);
  filter: drop-shadow(0 4px 10px rgba(156,79,45,0.18));
}

.page:not(#page-startseite) {
  background: var(--surface);
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  padding: 2.6rem;
  backdrop-filter: blur(10px);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin-bottom: 0.4rem;
  text-wrap: balance;
}

.page-sub {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.2rem;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(248,240,231,0.94));
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans), background var(--trans);
  box-shadow: 0 12px 26px rgba(48, 28, 16, 0.06);
}

.card:hover {
  border-color: rgba(156,79,45,0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(48, 28, 16, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,241,233,0.98));
}

.card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4/3;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 38%),
    radial-gradient(circle at top left, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(145deg, #eedfcd, #d3b296);
  border: 1px solid rgba(130, 91, 63, 0.14);
  border-radius: calc(var(--radius-sm) + 2px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  color: rgba(255,255,255,0.98);
  text-align: left;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans), filter var(--trans);
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  font: inherit;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34,22,17,0.04) 0%, rgba(34,22,17,0.14) 42%, rgba(34,22,17,0.72) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 2px, transparent 2px, transparent 9px);
  z-index: -1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.9;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(156,79,45,0.28);
  box-shadow: 0 18px 32px rgba(44,26,14,0.16);
  filter: saturate(1.04);
}

.gallery-item:focus-visible {
  outline: 2px solid rgba(156,79,45,0.45);
  outline-offset: 3px;
}

.gallery-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1;
}

.gallery-item-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.gallery-item-meta {
  color: rgba(255,255,255,0.84);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-item-note {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 24ch;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}

.gallery-source {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.gallery-source code {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(156,79,45,0.08);
  color: var(--accent-deep);
  font-size: 0.8em;
  font-weight: 700;
}

.gallery-status {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(156,79,45,0.06);
  border: 1px solid rgba(130, 91, 63, 0.12);
  color: var(--text-soft);
  font-size: 0.94rem;
}

.gallery-status.loading {
  color: var(--accent-deep);
  background: rgba(156,79,45,0.10);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform var(--trans), filter var(--trans);
}

.gallery-item.has-image {
  background: #2b1a12;
}

.gallery-item.has-image:hover img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.gallery-filename {
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  word-break: break-word;
}

.gallery-item.warm-oak {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 38%),
    radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(145deg, #f0dfca, #b88860);
}

.gallery-item.deep-walnut {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 38%),
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, #7f5b46, #3f271c);
}

.gallery-item.soft-smoke {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent 38%),
    radial-gradient(circle at top left, rgba(255,255,255,0.20), transparent 28%),
    linear-gradient(145deg, #d8c8b8, #8b6852);
}

.gallery-item.ember-glow {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent 38%),
    radial-gradient(circle at top left, rgba(255,220,180,0.26), transparent 28%),
    linear-gradient(145deg, #f1d1b2, #9f4c28);
}


.gallery-grid-fixed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.gallery-grid-fixed .gallery-item {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-category-overview {
  margin-top: 1.35rem;
}

.gallery-category-card {
  min-height: 0;
}

.gallery-category-card .gallery-item-title {
  font-size: 1.36rem;
  text-wrap: balance;
}

.gallery-category-card .gallery-item-meta {
  word-break: break-word;
}

.gallery-category-placeholder {
  cursor: default;
  opacity: 0.68;
  filter: saturate(0.72);
}

.gallery-category-placeholder:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(130, 91, 63, 0.14);
  filter: saturate(0.72);
}

.gallery-overview-copy {
  max-width: 72ch;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.8rem);
  background: rgba(24, 15, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
  z-index: 250;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-panel {
  position: relative;
  width: 1180px;
  height: 760px;
  max-width: calc(100vw - 2.4rem);
  max-height: calc(100vh - 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 1fr);
  gap: 0;
  background: rgba(255, 249, 242, 0.97);
  border: 1px solid rgba(130, 91, 63, 0.16);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  transform: translateY(10px) scale(0.985);
  transition: transform var(--trans);
}

.lightbox.active .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-visual {
  height: 760px;
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1rem, 2vw, 1.4rem) 4.9rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(145deg, #efdcca, #b7865f);
  cursor: zoom-in;
}

.lightbox-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: calc(100% - 2.8rem);
  max-height: calc(100% - 6.2rem);
  object-fit: contain;
  display: none;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 180ms ease-out;
  will-change: transform, transform-origin;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.lightbox-visual.has-image img {
  display: block;
}

.lightbox-visual.is-zoomed img {
  transform: scale(2);
}

.lightbox-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(35,23,17,0.24)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 2px, transparent 2px, transparent 10px);
  z-index: 0;
  pointer-events: none;
}

.lightbox-visual.has-image::before {
  inset: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 36%, rgba(35,23,17,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.14);
}

.lightbox-visual::after {
  content: 'Werkvorschau';
  position: absolute;
  left: 32px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.lightbox-visual.warm-oak {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(145deg, #f0dfca, #b88860);
}

.lightbox-visual.deep-walnut {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(145deg, #7f5b46, #3f271c);
}

.lightbox-visual.soft-smoke {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 24%),
    linear-gradient(145deg, #d8c8b8, #8b6852);
}

.lightbox-visual.ember-glow {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at top left, rgba(255,220,180,0.24), transparent 24%),
    linear-gradient(145deg, #f1d1b2, #9f4c28);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(35,23,17,0.72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
  transition: transform var(--trans), background var(--trans), opacity var(--trans);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(35,23,17,0.88);
}

.lightbox-nav[hidden] {
  display: none;
}

/* Umbenannt in -prev & -next statt -nav-prev */
.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-copy {
  padding: 2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.95rem;
  color: var(--text);
  overflow: auto;
}

.lightbox-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Breadcrumb Styling hier eingefügt */
.lightbox-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.lightbox-breadcrumb span,
.lightbox-breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--trans);
  cursor: pointer;
}

.lightbox-breadcrumb span:hover,
.lightbox-breadcrumb a:hover {
  color: var(--accent);
}

.lightbox-breadcrumb .separator {
  color: rgba(130, 91, 63, 0.3);
  font-size: 0.8em;
  margin: 0 0.1rem;
  cursor: default;
}

.lightbox-breadcrumb .current {
  color: var(--accent-deep);
  cursor: default;
}

.lightbox-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(156,79,45,0.08);
  border: 1px solid rgba(130, 91, 63, 0.12);
  color: var(--accent-deep);
  white-space: nowrap;
}

.lightbox-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  color: var(--accent-deep);
}

.lightbox-copy p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.lightbox-zoom-note {
  margin-top: -0.15rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lightbox-meta {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.lightbox-meta div {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(156,79,45,0.06);
  border: 1px solid rgba(130, 91, 63, 0.1);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.lightbox-meta strong {
  display: block;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(35,23,17,0.72);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: transform var(--trans), background var(--trans);
}

.lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(35,23,17,0.88);
}


.termine-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.termin {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.4rem;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(248,240,231,0.96));
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 24px rgba(48,28,16,0.06);
}

.termin-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(156,79,45,0.13), rgba(156,79,45,0.06));
  border: 1px solid rgba(156,79,45,0.10);
}

.termin-date .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-deep);
}

.termin-date .month {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.termin-info h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.22rem;
}

.termin-info p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.prose {
  max-width: 74ch;
}

.prose p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.55rem;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(156,79,45,0.35);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,240,231,0.96));
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(48,28,16,0.06);
}

.contact-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.contact-card h2,
.contact-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-deep);
}

.contact-card p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.contact-facts {
  display: grid;
  gap: 0.8rem;
}

.contact-fact {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(156,79,45,0.06);
  border: 1px solid rgba(130, 91, 63, 0.1);
}

.contact-fact strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--accent-deep);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-fact span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(130, 91, 63, 0.12);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  padding: 1.6rem;
  display: grid;
  gap: 1.25rem;
}

.contact-form-head p,
.form-note,
.form-status {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-title {
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(130, 91, 63, 0.16);
  background: rgba(255,255,255,0.82);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(156,79,45,0.38);
  box-shadow: 0 0 0 4px rgba(156,79,45,0.10);
  background: rgba(255,255,255,0.96);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.choice-card span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(130, 91, 63, 0.12);
  background: rgba(255,255,255,0.72);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans), background var(--trans), color var(--trans);
}

.choice-card:hover span {
  transform: translateY(-2px);
  border-color: rgba(156,79,45,0.24);
  box-shadow: 0 10px 20px rgba(48,28,16,0.06);
}

.choice-card input:checked + span {
  background: linear-gradient(135deg, rgba(156,79,45,0.14), rgba(201,120,71,0.14));
  border-color: rgba(156,79,45,0.34);
  color: var(--accent-deep);
  box-shadow: 0 12px 24px rgba(156,79,45,0.12);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.option-chip {
  position: relative;
  display: block;
  cursor: pointer;
}

.option-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.option-chip span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(130, 91, 63, 0.12);
  background: rgba(255,255,255,0.72);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
}

.option-chip input:checked + span {
  background: rgba(156,79,45,0.11);
  border-color: rgba(156,79,45,0.28);
  color: var(--accent-deep);
  box-shadow: 0 10px 18px rgba(156,79,45,0.10);
}

.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(130, 91, 63, 0.12);
  background: rgba(255,255,255,0.72);
}

.checkbox-inline input {
  accent-color: var(--accent);
  margin-top: 0.2rem;
}

.checkbox-inline label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(73, 138, 94, 0.10);
  border: 1px solid rgba(73, 138, 94, 0.18);
  color: #2f6642;
  font-weight: 600;
}

.form-status.active {
  display: block;
}

.about-intro {
  margin-bottom: 1.5rem;
}

.about-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}

.about-person,
.about-pets {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,240,231,0.96));
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(48,28,16,0.06);
  overflow: hidden;
}

.about-person {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
}

.about-person-media {
  min-height: 100%;
  background: linear-gradient(145deg, rgba(240,223,202,0.9), rgba(184,136,96,0.9));
}

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

.about-person-copy {
  padding: 1.35rem 1.35rem 1.2rem;
}

.about-person-copy span,
.about-pets-copy span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(156,79,45,0.08);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-person-copy h2,
.about-pets-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-deep);
  margin-bottom: 0.65rem;
}

.about-person-copy p,
.about-pets-copy p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

.about-pets {
  padding: 1.4rem;
}

.about-pets-copy {
  margin-bottom: 1.05rem;
}

.pet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.pet-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(48,28,16,0.05);
}

.pet-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #ead8c3;
}

.pet-card figcaption {
  padding: 0.75rem 0.8rem 0.9rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.pet-card strong {
  display: block;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.22rem;
}



.notice-prose {
margin-bottom: 1.2rem;
}

.notice-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.25rem;
align-items: stretch;
}

.notice-card {
display: grid;
align-content: start;
gap: 0.85rem;
padding: 1.4rem 1.4rem 1.35rem;
background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,240,231,0.96));
border: 1px solid rgba(130, 91, 63, 0.12);
border-radius: 24px;
box-shadow: 0 12px 26px rgba(48,28,16,0.06);
}

.notice-card h2 {
margin: 0;
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.7rem, 2.4vw, 2.2rem);
line-height: 0.98;
color: var(--accent-deep);
}

.notice-card p {
margin: 0;
color: var(--text-soft);
font-size: 0.98rem;
line-height: 1.72;
}

.notice-kicker {
display: inline-flex;
align-items: center;
justify-self: start;
padding: 0.36rem 0.74rem;
border-radius: 999px;
background: rgba(156,79,45,0.10);
color: var(--accent);
font-size: 0.7rem;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.notice-list {
margin: 0;
padding-left: 1.15rem;
display: grid;
gap: 0.52rem;
color: var(--text-soft);
}

.notice-list li {
line-height: 1.68;
}

.notice-legal {
padding-top: 0.15rem;
font-size: 0.88rem !important;
color: var(--muted) !important;
}

.notice-edit-box {
margin-top: 1.25rem;
padding: 1rem 1.1rem;
border-radius: 18px;
border: 1px dashed rgba(156,79,45,0.32);
background: rgba(255,248,240,0.88);
color: var(--text-soft);
font-size: 0.93rem;
line-height: 1.65;
}

.notice-edit-box strong {
color: var(--accent-deep);
}

.notice-edit-box code {
font-family: inherit;
font-weight: 700;
color: var(--accent-deep);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,240,231,0.96));
  border: 1px solid rgba(130, 91, 63, 0.12);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(48,28,16,0.06);
  overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.faq-item:hover {
  border-color: rgba(156,79,45,0.24);
  box-shadow: 0 16px 30px rgba(48,28,16,0.08);
  transform: translateY(-1px);
}

.faq-item.active {
  border-color: rgba(156,79,45,0.28);
  box-shadow: 0 18px 34px rgba(48,28,16,0.10);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(156,79,45,0.10);
  color: var(--accent-deep);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform var(--trans), background var(--trans);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(156,79,45,0.18);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--trans);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  padding: 0 1.25rem 1.2rem;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

footer {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: var(--footer-h);
  background: rgba(34, 22, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(30, 18, 13, 0.20);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.4rem;
  gap: 1rem;
  border-radius: 999px;
  max-width: calc(var(--content) + 36px);
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: color var(--trans), background var(--trans), transform var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}


.before-after-showcase {
  margin-top: 2.6rem;
  display: grid;
  gap: 1.2rem;
}

.before-after-head {
  display: grid;
  gap: 0.55rem;
  max-width: 72ch;
}

.before-after-title {
  margin-bottom: 0;
}

.before-after-copy,
.before-after-note {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.comparison-hero {
  --comparison-position: 50%;
  position: relative;
  min-height: 620px;
  width: 100%;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,252,248,0.96), rgba(246,236,224,0.92));
  box-shadow: var(--shadow);
  border: 1px solid rgba(130, 91, 63, 0.14);
  isolation: isolate;
}

.comparison-image,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-after {
  width: var(--comparison-position);
  overflow: hidden;
  z-index: 2;
  border-right: 1px solid rgba(255,255,255,0.55);
}

.comparison-image {
  display: block;
  object-fit: cover;
  background: linear-gradient(145deg, rgba(240,223,202,0.9), rgba(184,136,96,0.9));
  user-select: none;
  pointer-events: none;
}

.comparison-overlay {
  position: absolute;
  top: 1.25rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(35,23,17,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-overlay-before {
  left: 1.25rem;
}

.comparison-overlay-after {
  right: 1.25rem;
  background: rgba(156,79,45,0.86);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 0;
  z-index: 5;
  pointer-events: none;
}

.comparison-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 0 0 1px rgba(35,23,17,0.10), 0 0 22px rgba(35,23,17,0.16);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98), rgba(255,246,236,0.96) 46%, rgba(235,208,180,0.96) 100%);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(73,44,26,0.22), inset 0 0 0 1px rgba(255,255,255,0.8);
  border: 3px solid rgba(156,79,45,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.comparison-handle::before {
  content: 'Ziehen';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(120,64,36,0.82);
}

.comparison-handle-arrows {
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.1em;
  transform: translateY(-7px);
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

.comparison-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  cursor: ew-resize;
}

.comparison-range::-moz-range-thumb {
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  cursor: ew-resize;
}

.comparison-hero-enhanced {
min-height: clamp(360px, 52vw, 620px);
}

.comparison-picker-wrap {
display: grid;
gap: 0.7rem;
}

.comparison-picker-title {
margin: 0;
font-size: 1rem;
color: var(--accent-deep);
}

.comparison-picker {
display: flex;
flex-wrap: wrap;
gap: 0.72rem;
align-items: flex-start;
}

.comparison-thumb {
position: relative;
display: grid;
grid-template-rows: 76px auto;
width: clamp(84px, 9vw, 104px);
padding: 0;
border: 1px solid rgba(130, 91, 63, 0.14);
border-radius: 18px;
overflow: hidden;
background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,239,231,0.98));
cursor: pointer;
box-shadow: 0 8px 18px rgba(42,25,14,.07);
transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans), filter var(--trans);
}

.comparison-thumb::after {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
pointer-events: none;
}

.comparison-thumb:hover {
transform: translateY(-3px);
filter: saturate(1.05);
box-shadow: 0 14px 28px rgba(42,25,14,.14);
border-color: rgba(156,79,45,0.34);
}

.comparison-thumb[aria-current="true"] {
border-color: rgba(156,79,45,0.72);
box-shadow: 0 0 0 3px rgba(156,79,45,0.16), 0 16px 30px rgba(42,25,14,.16);
transform: translateY(-2px);
}

.comparison-thumb img {
width: 100%;
height: 76px;
object-fit: cover;
object-position: center;
pointer-events: none;
display: block;
}

.comparison-thumb-label {
display: block;
padding: 0.46rem 0.45rem 0.52rem;
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent-deep);
text-align: center;
line-height: 1.25;
}




/* ===== LANDINGPAGE-STYLE BEFORE/AFTER ===== */
.ba-wrap {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 52vw, 620px);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,252,248,0.96), rgba(246,236,224,0.92));
  box-shadow: var(--shadow);
  border: 1px solid rgba(130, 91, 63, 0.14);
  isolation: isolate;
}

.ba-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-after {
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}

.ba-handle {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-1px);
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,255,255,.62);
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--accent-deep);
  border: 2px solid var(--accent);
  box-shadow: 0 16px 32px rgba(42,25,14,.16);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.ba-range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  cursor: ew-resize;
  z-index: 6;
}

.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
}

.ba-range::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
}

.ba-overlay {
  position: absolute;
  top: 1.25rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(35,23,17,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.ba-overlay-before {
  left: 1.25rem;
}

.ba-overlay-after {
  right: 1.25rem;
  background: rgba(156,79,45,0.86);
}

.ba-picker-wrap {
  display: grid;
  gap: 0.65rem;
}

.ba-picker-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--accent-deep);
}

.ba-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
}

.ba-thumb {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(130, 91, 63, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(42,25,14,.06);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.ba-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(42,25,14,.12);
  border-color: rgba(156,79,45,0.35);
}

.ba-thumb[aria-current="true"] {
  border-color: rgba(156,79,45,0.62);
  box-shadow: 0 0 0 3px rgba(156,79,45,0.14), 0 12px 24px rgba(42,25,14,.12);
}

.ba-thumb img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  pointer-events: none;
}

.ba-thumb-label {
  display: block;
  padding: 0.72rem 0.8rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  text-align: center;
}

@media (max-width: 980px) {
  .notice-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ba-wrap {
    min-height: 540px;
  }
}

@media (max-width: 760px) {
  .ba-wrap {
    min-height: 420px;
  }

  .ba-overlay {
    top: 0.95rem;
    min-height: 36px;
    padding: 0.48rem 0.78rem;
    font-size: 0.66rem;
  }

  .comparison-thumb {
    width: 90px;
    grid-template-rows: 72px auto;
  }

  .comparison-thumb img {
    height: 72px;
  }
}

@media (max-width: 520px) {
  .notice-card {
    padding: 1.15rem 1rem 1.05rem;
    border-radius: 20px;
  }

  .notice-card h2 {
    font-size: 1.7rem;
  }

  .notice-edit-box {
    padding: 0.95rem 0.9rem;
  }

  .comparison-handle {
    width: 72px;
    height: 72px;
  }

  .comparison-handle::before {
    bottom: 11px;
    font-size: 0.48rem;
  }

  .comparison-handle-arrows {
    font-size: 1.35rem;
    transform: translateY(-6px);
  }

  .comparison-picker {
    gap: 0.55rem;
  }

  .comparison-thumb {
    width: 78px;
    grid-template-rows: 64px auto;
    border-radius: 15px;
  }

  .comparison-thumb img {
    height: 64px;
  }

  .comparison-thumb-label {
    padding: 0.4rem 0.35rem 0.46rem;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .ba-wrap {
    min-height: 320px;
  }

  .ba-knob {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .ba-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-thumb img {
    height: 76px;
  }

  .ba-thumb-label {
    padding: 0.62rem 0.55rem 0.68rem;
    font-size: 0.68rem;
  }
}
@media (max-width: 980px) {
  header {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  footer {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  #page-startseite .hero {
    grid-template-columns: 1fr;
    padding: 0 !important;
  }

  .hero-slide-frame {
    grid-template-columns: 1fr;
  }

  .hero-copy-shell {
    padding-bottom: 0;
  }

  .hero-price-btn {
    position: static;
    transform: none;
    --btn-transform: none;
    --btn-hover-transform: translateY(-2px);
    margin: 1rem auto 0;
  }

  .hero-media-card {
    min-height: 420px;
  }


  .comparison-hero {
    min-height: 540px;
  }

  .hero h1 {
    max-width: 14ch;
  }

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

  .gallery-grid-fixed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-people,
  .contact-layout,
  .lightbox-panel {
    grid-template-columns: 1fr;
  }

  .pet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-person {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .contact-card {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --header-h: 78px;
    --footer-h: auto;
  }

  header {
    padding: 0 0.9rem 0 1rem;
    border-radius: 28px;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-h) + 10px);
    left: 0;
    right: 0;
    margin: 0;
    background: rgba(255,250,245,0.95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(130, 91, 63, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 0.8rem;
    gap: 0.3rem;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 0.95rem 1rem;
  }

  .hamburger {
    display: flex;
  }


  .logo-wordmark {
    height: 56px;
    max-width: min(56vw, 280px);
  }

  main {
    padding: 7.4rem 1rem 7.5rem;
  }

  .page:not(#page-startseite) {
    padding: 1.45rem;
    border-radius: 24px;
  }

  #page-startseite .hero {
    padding: 0 !important;
    border-radius: 28px;
  }

  .hero-slide {
    min-height: auto;
    padding: 0.85rem 0.85rem 4.9rem;
  }

  .hero-copy-card {
    min-height: auto;
    padding: 1.35rem 1.1rem;
  }

  .hero-copy-content {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-copy-card .hero-eyebrow,
  .hero-copy-card p {
    margin-left: 0;
  }

  .hero-copy-card p {
    max-width: 100%;
  }

  .hero-media-card {
    min-height: 320px;
    padding: 1rem 1rem 5rem;
  }

  .hero-media-visual {
    min-height: 220px;
    padding: 1rem;
  }

  .hero-product-image {
    max-height: 280px;
  }


  .comparison-hero {
    min-height: 400px;
  }

  .comparison-overlay {
    top: 0.9rem;
  }

  .comparison-handle {
    width: 60px;
    height: 60px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    max-width: 100%;
  }

  .hero p,
  .prose p,
  .termin-info p {
    font-size: 0.95rem;
  }

  .hero-media-btn {
    width: calc(100% - 2rem);
    min-width: 0;
  }

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

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

  .about-person {
    grid-template-columns: 1fr;
  }

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

  .form-grid,
  .checkbox-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
  }

  .form-submit-row .btn {
    width: 100%;
  }

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

  .termin-date {
    width: 84px;
  }

  footer {
    border-radius: 28px;
    height: auto;
    padding: 0.9rem 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    white-space: normal;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .logo-text strong {
    font-size: 1.3rem;
  }

  .logo-text span {
    font-size: 0.62rem;
  }


  .logo-wordmark {
    height: 48px;
    max-width: min(58vw, 220px);
  }

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

  .gallery-grid-fixed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .gallery-grid-fixed .gallery-item-title {
    font-size: 1rem;
  }

  .gallery-grid-fixed .gallery-item-meta,
  .gallery-grid-fixed .gallery-item-note,
  .gallery-grid-fixed .gallery-item-label {
    font-size: 0.62rem;
  }

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

  .hero-btns {
    flex-direction: column;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }


  .comparison-hero {
    min-height: 320px;
  }

  .comparison-overlay {
    min-height: 36px;
    padding: 0.45rem 0.72rem;
    font-size: 0.64rem;
  }

  .comparison-handle {
    width: 52px;
    height: 52px;
  }
}


#page-content {
  min-height: 60vh;
}

.page-shell-loading {
  display: grid;
  place-items: center;
  min-height: 40vh;
  color: var(--text-soft);
  font-size: 0.98rem;
}


nav a,
nav button {
font-size: 0.74rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-soft);
text-decoration: none;
padding: 0.78rem 1rem;
border-radius: 999px;
transition: color var(--trans), background var(--trans), transform var(--trans), box-shadow var(--trans);
cursor: pointer;
white-space: nowrap;
border: none;
background: transparent;
font-family: inherit;
}

nav a:hover,
nav button:hover {
color: var(--accent-deep);
background: rgba(156,79,45,0.08);
transform: translateY(-1px);
}

nav a.active,
.menu-dropdown.open > .nav-menu-toggle {
color: #fff;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
box-shadow: 0 10px 22px rgba(156,79,45,0.26);
}

.menu-dropdown {
position: relative;
}

.nav-menu-toggle,
.social-menu-toggle {
position: relative;
display: inline-flex;
align-items: center;
gap: 0.72rem;
padding: 0.72rem 1rem;
border-radius: 999px;
border: 1px solid rgba(130, 91, 63, 0.14);
background: linear-gradient(180deg, rgba(255,250,245,0.95), rgba(247,236,224,0.92));
box-shadow: 0 10px 24px rgba(70, 42, 25, 0.08);
transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease, border-color 0.26s ease, color 0.26s ease;
}

.social-menu-toggle {
background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
border-color: rgba(255,255,255,0.10);
box-shadow: 0 10px 24px rgba(8, 6, 5, 0.14);
}

.nav-menu-toggle:hover,
.social-menu-toggle:hover {
transform: translateY(-2px);
}

.menu-hamburger-icon {
display: inline-flex;
flex-direction: column;
gap: 3px;
}

.menu-hamburger-icon span {
display: block;
width: 13px;
height: 2px;
border-radius: 2px;
background: currentColor;
}

.menu-caret {
font-size: 0.8rem;
line-height: 1;
transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-dropdown.open > .nav-menu-toggle .menu-caret,
.menu-dropdown.open > .social-menu-toggle .menu-caret {
transform: rotate(180deg);
}

.dropdown-panel {
position: absolute;
top: calc(100% + 0.7rem);
right: 0;
min-width: 240px;
display: flex;
flex-direction: column;
gap: 0.34rem;
padding: 0.58rem;
border-radius: 24px;
background: rgba(255,250,245,0.97);
border: 1px solid rgba(130, 91, 63, 0.14);
box-shadow: 0 26px 54px rgba(48, 28, 16, 0.16);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
z-index: 130;
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateY(-6px) scale(0.97);
transform-origin: top right;
transition: opacity 0.24s ease, transform 0.28s cubic-bezier(.22,1,.36,1), visibility 0s linear 0.28s;
}

.menu-dropdown.open > .dropdown-panel {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(0) scale(1);
transition-delay: 0s;
}

.dropdown-panel a {
display: block;
padding: 0.88rem 1rem;
border-radius: 18px;
color: var(--text-soft);
text-decoration: none;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
border: 1px solid transparent;
transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dropdown-panel a:hover {
background: linear-gradient(135deg, rgba(156,79,45,0.12), rgba(212,165,116,0.14));
color: var(--accent-deep);
border-color: rgba(156,79,45,0.16);
transform: translateX(4px);
box-shadow: 0 10px 18px rgba(156,79,45,0.10);
}

.dropdown-panel-header a.active {
background: linear-gradient(135deg, rgba(156,79,45,0.12), rgba(212,165,116,0.14));
color: var(--accent-deep);
border-color: rgba(156,79,45,0.18);
}

.dropdown-panel-footer {
top: auto;
bottom: calc(100% + 0.7rem);
right: 0;
left: auto;
min-width: 260px;
background: rgba(34,22,17,0.96);
border-color: rgba(255,255,255,0.10);
box-shadow: 0 26px 54px rgba(8,6,5,0.34);
transform: translateY(8px) scale(0.97);
transform-origin: bottom right;
}

.dropdown-panel-footer a {
color: rgba(255,255,255,0.82);
}

.dropdown-panel-footer a:hover {
background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
color: #fff;
border-color: rgba(255,255,255,0.10);
}

.footer-meta {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 0.85rem;
margin-left: auto;
flex-wrap: wrap;
}

.footer-social {
display: flex;
align-items: center;
gap: 0.45rem;
flex-wrap: wrap;
justify-content: flex-end;
}

.social-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.55rem 0.8rem;
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.10);
background: rgba(255,255,255,0.05);
color: rgba(255,255,255,0.78);
text-decoration: none;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
transition: color var(--trans), background var(--trans), transform var(--trans), border-color var(--trans);
}

.social-link:hover,
.menu-dropdown.open > .social-menu-toggle {
color: #fff;
background: rgba(255,255,255,0.10);
border-color: rgba(255,255,255,0.18);
transform: translateY(-1px);
}

.social-link-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 999px;
background: rgba(255,255,255,0.12);
color: #fff;
font-size: 0.64rem;
font-weight: 800;
letter-spacing: 0.08em;
}

.dropdown-panel-footer {
right: 0;
left: auto;
min-width: 250px;
background: rgba(34,22,17,0.96);
border-color: rgba(255,255,255,0.10);
box-shadow: 0 22px 42px rgba(8,6,5,0.34);
}

.dropdown-panel-footer a {
color: rgba(255,255,255,0.82);
}

.dropdown-panel-footer a:hover {
background: rgba(255,255,255,0.08);
color: #fff;
}

@media (max-width: 760px) {
.menu-dropdown,
.menu-dropdown-header {
  width: 100%;
}

.nav-menu-toggle {
  width: 100%;
  justify-content: center;
}

.dropdown-panel-header {
  position: static;
  margin-top: 0.4rem;
  min-width: 0;
  width: 100%;
  box-shadow: none;
  transform: none;
  transition: opacity 0.22s ease;
}

.menu-dropdown-footer {
  width: auto;
}

.dropdown-panel-footer {
  width: min(280px, calc(100vw - 2.4rem));
  right: 0;
  left: auto;
  bottom: calc(100% + 0.55rem);
}

.footer-meta,
.footer-social {
  width: 100%;
  justify-content: flex-start;
}

.social-link,
.social-menu-toggle {
  width: 100%;
  justify-content: flex-start;
}

.menu-dropdown-footer .social-menu-toggle {
  width: auto;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}
}

@media (max-width: 520px) {
.footer-links,
.footer-social {
  flex-direction: column;
  align-items: stretch;
}

.footer-links a,
.social-link,
.social-menu-toggle {
  width: 100%;
  justify-content: flex-start;
}
}


@media (max-width: 980px) {
.lightbox-panel {
  width: min(100%, 1080px);
  height: auto;
  grid-template-columns: minmax(0, 1fr);
}

.lightbox-visual {
  height: min(58vh, 560px);
  min-height: min(58vh, 560px);
}
}

@media (max-width: 760px) {
.lightbox {
  padding: 0.85rem;
}

.lightbox-panel {
  width: 100%;
  height: auto;
  max-height: 92vh;
}

.lightbox-visual {
  height: 320px;
  min-height: 320px;
  padding: 0.85rem 0.85rem 4.2rem;
}

.lightbox-visual::before {
  inset: 10px;
}

.lightbox-visual::after {
  left: 18px;
  bottom: 18px;
}

.lightbox-copy {
  padding: 1.25rem 1rem 1.1rem;
}

.lightbox-topline {
  flex-wrap: wrap;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  font-size: 1.7rem;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}
}

.footer-mobile-head {
display: flex;
align-items: center;
gap: 1rem;
flex: 1 1 auto;
min-width: 0;
}

.footer-toggle {
display: none;
border: 1px solid rgba(255,255,255,0.12);
border-radius: 999px;
background: rgba(255,255,255,0.07);
color: rgba(255,255,255,0.9);
padding: 0.62rem 0.9rem;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
align-items: center;
gap: 0.55rem;
cursor: pointer;
transition: background var(--trans), border-color var(--trans), transform var(--trans);
}

.footer-toggle:hover {
background: rgba(255,255,255,0.11);
border-color: rgba(255,255,255,0.2);
transform: translateY(-1px);
}

.footer-toggle-icon {
display: inline-flex;
transition: transform var(--trans);
}

@media (max-width: 760px) {
footer {
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  padding: 0.85rem 0.95rem;
  gap: 0;
  bottom: max(12px, env(safe-area-inset-bottom));
  overflow: visible;
}

.footer-mobile-head {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
}

.footer-copy {
  white-space: normal;
  max-width: calc(100% - 152px);
}

.footer-toggle {
  display: inline-flex;
  flex-shrink: 0;
}

.footer-meta {
  width: 100%;
  margin-left: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  overflow-y: hidden;
  pointer-events: none;
  transition: max-height 0.34s ease, opacity 0.22s ease, margin-top 0.28s ease, padding-top 0.28s ease, border-color 0.28s ease;
  border-top: 1px solid transparent;
}

footer.footer-open .footer-meta {
  max-height: min(70dvh, calc(100dvh - 7.5rem));
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
  margin-top: 0.7rem;
  padding-top: 0.8rem;
  padding-right: 0.1rem;
  border-top-color: rgba(255,255,255,0.08);
  -webkit-overflow-scrolling: touch;
}

footer.footer-open .footer-toggle-icon {
  transform: rotate(180deg);
}

.menu-dropdown-footer,
.footer-social,
.social-link,
.social-menu-toggle,
.menu-dropdown-footer .social-menu-toggle {
  width: 100%;
}

.footer-social {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.55rem;
}

.social-link,
.social-menu-toggle {
  justify-content: flex-start;
}

.dropdown-panel-footer {
  position: static;
  width: 100%;
  min-width: 0;
  margin-top: 0.45rem;
  margin-bottom: 0;
  left: auto;
  right: auto;
  bottom: auto;
  box-shadow: none;
  transform: none;
}
}

@media (max-width: 520px) {
.footer-copy {
  max-width: 100%;
}

.footer-mobile-head {
  flex-wrap: wrap;
}

.footer-toggle {
  width: 100%;
  justify-content: center;
}
}

/* =========================================================
   TERMINE – DYNAMISCHE TXT-AUSGABE
   Zukunft = grün hervorgehoben
   Vergangenheit = ausgegraut
   Lesbar gestapelt für Mobil / Tablet / Desktop
   ========================================================= */

#page-termine .termine-source-note,
#page-termine #termine-disclaimer,
#page-termine .termine-sections {
  width: min(100%, 980px);
  margin-inline: auto;
}

#page-termine .termine-source-note {
  margin: 0 auto 1.4rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(156,79,45,0.08);
  border: 1px solid rgba(130,91,63,0.12);
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

#page-termine .termine-source-note code {
  color: var(--accent-deep);
  font-weight: 800;
}

#page-termine .termine-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

#page-termine .termine-block {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(130,91,63,0.12);
  overflow: hidden;
}

#page-termine .termine-block .page-title {
  margin: 0 0 0.35rem;
  line-height: 1;
}

#page-termine .termine-block .page-sub {
  margin: 0 0 1.15rem;
  max-width: none;
}

#page-termine .termine-block-future {
  background: linear-gradient(180deg, rgba(244,252,246,0.98), rgba(232,247,236,0.94));
  border-color: rgba(52,140,82,0.20);
  box-shadow: 0 18px 36px rgba(44,108,66,0.08), inset 0 1px 0 rgba(255,255,255,0.55);
}

#page-termine .termine-block-future .page-title {
  color: #256043;
}

#page-termine .termine-block-future .page-sub {
  color: #4e6f5c;
}

#page-termine .termine-block-past {
  background: linear-gradient(180deg, rgba(239,239,239,0.94), rgba(228,228,228,0.90));
  border-color: rgba(120,120,120,0.14);
  box-shadow: none;
}

#page-termine .termine-block-past .page-title {
  color: #666;
}

#page-termine .termine-block-past .page-sub {
  color: #818181;
}

#page-termine .termine-block .termine-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#page-termine .termin {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 20px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans), background var(--trans), filter var(--trans);
}

#page-termine .termine-block-future .termin {
  border: 1px solid rgba(58,146,88,0.18);
  background: rgba(255,255,255,0.82);
}

#page-termine .termine-block-future .termin:hover {
  transform: translateY(-2px);
  border-color: rgba(44,128,74,0.30);
  box-shadow: 0 16px 30px rgba(38,102,61,0.14);
  background: rgba(255,255,255,0.94);
}

#page-termine .termine-block-past .termin {
  border: 1px dashed rgba(120,120,120,0.18);
  background: rgba(255,255,255,0.50);
  filter: grayscale(0.3);
}

#page-termine .termine-block-past .termin:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.60);
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
  filter: grayscale(0.12);
}

#page-termine .termin-date {
  width: 110px;
  min-width: 110px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0.55rem;
  border-radius: 18px;
  text-align: center;
}

#page-termine .termine-block-future .termin-date {
  border: 1px solid rgba(52,140,82,0.22);
  background: linear-gradient(180deg, rgba(71,168,101,0.22), rgba(71,168,101,0.10));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42);
}

#page-termine .termine-block-past .termin-date {
  border: 1px solid rgba(130,130,130,0.18);
  background: linear-gradient(180deg, rgba(170,170,170,0.16), rgba(170,170,170,0.08));
}

#page-termine .termin-date .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 700;
}

#page-termine .termine-block-future .termin-date .day {
  color: #1e5a3d;
}

#page-termine .termine-block-past .termin-date .day {
  color: #666;
}

#page-termine .termin-date .month {
  margin-top: 0.28rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#page-termine .termine-block-future .termin-date .month {
  color: #35684d;
}

#page-termine .termine-block-past .termin-date .month {
  color: #7d7d7d;
}

#page-termine .termin-info {
  min-width: 0;
}

#page-termine .termin-info h3 {
  margin: 0 0 0.55rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

#page-termine .termine-block-future .termin-info h3 {
  color: #1f5f40;
}

#page-termine .termine-block-past .termin-info h3 {
  color: #666;
}

#page-termine .termin-meta {
  display: grid;
  gap: 0.36rem;
}

#page-termine .termin-meta p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#page-termine .termine-block-future .termin-meta p {
  color: #466453;
}

#page-termine .termine-block-past .termin-meta p {
  color: #747474;
}

#page-termine .termin-meta strong {
  font-weight: 800;
}

#page-termine .termine-block-future .termin-meta strong {
  color: #214f39;
}

#page-termine .termine-block-past .termin-meta strong {
  color: #5e5e5e;
}

#page-termine .termin-link a {
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
}

#page-termine .termine-block-future .termin-link a {
  color: #2f8a58;
}

#page-termine .termine-block-future .termin-link a:hover {
  color: #1f5f40;
  text-decoration: underline;
}

#page-termine .termine-block-past .termin-link a {
  color: #6f6f6f;
}

#page-termine .termine-block-past .termin-link a:hover {
  color: #4f4f4f;
  text-decoration: underline;
}

#page-termine .termin-empty {
  grid-template-columns: 1fr;
}

#page-termine .termin-empty .termin-info h3 {
  margin-bottom: 0.4rem;
}

#page-termine #termine-disclaimer {
  margin: 1.35rem auto 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(130,91,63,0.10);
  background: rgba(255,255,255,0.52);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  #page-termine .termine-source-note,
  #page-termine #termine-disclaimer,
  #page-termine .termine-sections {
    width: 100%;
  }

  #page-termine .termine-block {
    padding: 1.2rem;
    border-radius: 22px;
  }

  #page-termine .termin {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  #page-termine .termin-date {
    width: 96px;
    min-width: 96px;
    min-height: 96px;
  }

  #page-termine .termin-info h3 {
    font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  }
}

@media (max-width: 760px) {
  #page-termine .termine-block {
    padding: 1rem;
    border-radius: 20px;
  }

  #page-termine .termin {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 18px;
  }

  #page-termine .termin-date {
    width: 82px;
    min-width: 82px;
    min-height: 82px;
    padding: 0.7rem 0.4rem;
    border-radius: 16px;
  }

  #page-termine .termin-date .day {
    font-size: 1.9rem;
  }

  #page-termine .termin-date .month {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  #page-termine .termin-info h3 {
    font-size: 1.4rem;
  }

  #page-termine .termin-meta p,
  #page-termine .termine-source-note,
  #page-termine #termine-disclaimer {
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  #page-termine .termin {
    grid-template-columns: 1fr;
  }

  #page-termine .termin-date {
    width: 88px;
    min-width: 88px;
    min-height: 88px;
  }

  #page-termine .termin-info h3 {
    font-size: 1.28rem;
  }
}

