/* ==========================================================================
   Bäckerei-Konditorei Schell — Stylesheet
   ========================================================================== */

/* ---------- Fonts (self-hosted, no external requests) ---------- */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-v51-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-v51-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-v51-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-condensed-v31-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/oswald-v57-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/oswald-v57-latin-600.woff2") format("woff2");
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors — carried over from the previous Schell website */
  --color-red: #e50000;
  --color-red-dark: #b80000;
  /* Fuer Text auf hellem Grund: #e50000 erreicht nur 4,47:1 und faellt durch WCAG AA */
  --color-red-text: #c40000;
  --color-brown: #381305;
  --color-brown-soft: #4a2415;
  --color-tan: #c38346;
  --color-tan-light: #eed2bb;
  --color-cream: #fbf5ec;
  --color-cream-deep: #f4ead9;
  --color-white: #ffffff;
  --color-text: #3c3c3c;
  --color-text-soft: #6b6259;
  --color-border: #e7dcc9;

  --font-heading: "Roboto Condensed", "Roboto", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-label: "Oswald", sans-serif;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;

  --shadow-s: 0 2px 10px rgba(56, 19, 5, 0.08);
  --shadow-m: 0 12px 32px rgba(56, 19, 5, 0.14);
  --shadow-l: 0 24px 60px rgba(56, 19, 5, 0.22);

  --container: 1180px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brown);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  body { font-size: 17px; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--color-red);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-s);
  z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Eyebrow / label ---------- */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red-text);
  display: inline-block;
  margin-bottom: 0.6em;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.section-heading p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  padding: 1.1em 2em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-s);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-brown);
  color: #fff;
}
.btn-dark:hover, .btn-dark:focus-visible {
  background: var(--color-brown-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(56, 19, 5, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(30, 11, 4, 0.94);
  box-shadow: var(--shadow-m);
  height: 68px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .brand img {
  height: 46px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
.brand-text span {
  font-family: var(--font-label);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-tan-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 13px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--color-red);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}
.main-nav a[aria-current="page"] {
  color: var(--color-tan-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-label);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 10px 4px;
}
.header-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  /* flex-shrink:0 ist zwingend - sonst quetscht .brand den Button auf 16px */
  flex-shrink: 0;
  min-width: 56px;
  min-height: 48px;
  padding: 6px 4px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Wort statt reines Symbol - Hamburger-Icons werden von aelteren
   Nutzern haeufig nicht als Menue erkannt. */
.nav-toggle b {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 3px;
}

@media (max-width: 940px) {
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(20, 8, 3, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .main-nav a { font-size: 1.1rem; }
  .main-nav .header-actions {
    margin-top: 10px;
  }
  body.nav-open { overflow: hidden; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  /* Kein isolation/negative z-index: iOS/Safari rendert Videos mit z-index < 0 oft nicht. */
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--color-brown) center/cover no-repeat;
  /* iOS: Video als Block, sonst teils 0-Höhe / kein Abspielen */
  display: block;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30, 11, 4, 0.72) 0%, rgba(30, 11, 4, 0.62) 40%, rgba(20, 8, 3, 0.88) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content .eyebrow {
  color: var(--color-tan-light);
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin-bottom: 0.35em;
}
.hero-content p {
  font-size: 1.15rem;
  color: #f2e9dd;
  max-width: 560px;
  margin-bottom: 2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

@media (max-width: 600px) {
  .hero { min-height: 620px; }
}

/* ==========================================================================
   Sections shared
   ========================================================================== */
main { display: block; }

section {
  padding: 5.5rem 0;
}
@media (max-width: 700px) {
  section { padding: 3.4rem 0; }
}

.section-alt {
  background: var(--color-white);
}

.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 3.4rem) 0 3.6rem;
  color: #fff;
  background: linear-gradient(160deg, var(--color-brown) 0%, #241007 100%);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(229, 0, 0, 0.35), transparent 55%);
}
.page-banner .container { position: relative; }
.page-banner .eyebrow { color: var(--color-tan-light); }
.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 0.3em;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e9d9c6;
  margin-top: 0.6em;
}
.breadcrumbs a { color: #fff; }
.breadcrumbs a:hover { color: var(--color-tan-light); }

/* ---------- Intro / About teaser ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.intro-media img { border-radius: var(--radius-l); }
.intro-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--color-red);
  color: #fff;
  border-radius: 50%;
  width: 128px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-m);
  line-height: 1.1;
}
.intro-badge strong { font-size: 1.9rem; }
.intro-badge span {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.intro-text .eyebrow { }
.intro-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.9rem;
}
.intro-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text-soft);
}
.intro-list svg {
  flex-shrink: 0;
  color: var(--color-red);
  margin-top: 3px;
}

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .intro-badge { width: 104px; height: 104px; right: 10px; bottom: -18px; }
}

/* ---------- Feature / specialty cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
}
.feature-card .media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feature-card:hover .media img { transform: scale(1.06); }
.feature-card .body { padding: 1.6rem 1.7rem 1.9rem; }
.feature-card h3 { font-size: 1.28rem; margin-bottom: 0.45em; }
.feature-card p { color: var(--color-text-soft); margin-bottom: 0; font-size: 1.05rem; }

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Locations ---------- */
.locations {
  background: var(--color-brown);
  color: #f2e9dd;
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(229, 0, 0, 0.25), transparent 55%);
}
.locations .container { position: relative; }
.locations .section-heading h2, .locations .section-heading p { color: #fff; }
.locations .section-heading p { color: #d9c7b3; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 2.2rem;
  backdrop-filter: blur(2px);
}
.location-card h3 {
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-card h3 svg { color: var(--color-red); }
.location-card .addr {
  color: #e9d9c6;
  margin: 0.8em 0 1.3em;
}
.location-card .addr a { display: inline-block; padding: 10px 0; text-decoration: underline; text-underline-offset: 3px; font-size: 1.1rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.15rem;
}
.hours-table td {
  padding: 0.45em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f2e9dd;
}
.hours-table td:first-child { color: #d9c7b3; }
.hours-table td:last-child { text-align: right; font-family: var(--font-label); letter-spacing: 0.02em; }
.location-card .map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.4rem;
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-tan-light);
  padding: 12px 0;
}
.location-card .map-link:hover { color: #fff; }

@media (max-width: 780px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Closing call-to-action strip ---------- */
.social-strip {
  background: var(--color-cream-deep);
  text-align: center;
}
.social-strip p { color: var(--color-text-soft); margin-bottom: 1.2rem; }

/* Large, high-contrast phone link — the primary action for our core audience */
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: 0.02em;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  box-shadow: var(--shadow-m);
  transition: background 0.2s ease, transform 0.2s ease;
}
.phone-cta:hover, .phone-cta:focus-visible {
  background: var(--color-red-dark);
  transform: translateY(-3px);
}
.phone-cta svg { flex-shrink: 0; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.gallery-filter button {
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-brown);
  cursor: pointer;
  transition: all 0.18s ease;
}
.gallery-filter button:hover {
  border-color: var(--color-red);
}
.gallery-filter button.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.gallery-section {
  margin-top: 2.4rem;
}
.gallery-section:first-of-type {
  margin-top: 1.2rem;
}
.gallery-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-brown);
  margin: 0 0 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--color-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.gallery-item {
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-s);
  cursor: zoom-in;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}
.gallery-item .media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  padding: 0.7em 0.9em;
  font-size: 1rem;
  font-family: var(--font-label);
  letter-spacing: 0.02em;
  color: var(--color-brown);
  text-align: left;
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(15, 6, 2, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox figure {
  margin: 0;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-s);
  margin: 0 auto;
  box-shadow: var(--shadow-l);
}
.lightbox figcaption {
  color: #f2e9dd;
  font-family: var(--font-label);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--color-red);
}
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ==========================================================================
   About page specifics
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.4rem;
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}
.value-card .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--color-cream-deep);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.value-card p { font-size: 1.05rem; color: var(--color-text-soft); margin: 0; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  border-left: 2px solid var(--color-border);
  padding-left: 2rem;
  display: grid;
  gap: 2.2rem;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.46rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-red);
  border: 3px solid var(--color-cream);
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 0.25em; }
.timeline-item .year {
  font-family: var(--font-label);
  color: var(--color-red);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.timeline-item p { color: var(--color-text-soft); margin: 0.3em 0 0; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  overflow: hidden;
}
.contact-card .map-frame {
  aspect-ratio: 16/9;
  border: 0;
  width: 100%;
  display: block;
  filter: grayscale(0.15);
}

/* Zwei-Klick-Lösung: Die Karte lädt erst nach ausdrücklicher Zustimmung,
   damit ohne Zutun des Besuchers keine Daten an OpenStreetMap fließen. */
.map-embed {
  aspect-ratio: 16/9;
  width: 100%;
  display: block;
  position: relative;
  background: var(--color-cream-deep);
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
  background-image:
    linear-gradient(rgba(56, 19, 5, 0.05), rgba(56, 19, 5, 0.05)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(195, 131, 70, 0.09) 14px 28px);
}
.map-placeholder svg { color: var(--color-red); }
.map-placeholder strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-brown);
}
.map-placeholder .map-hint {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin: 0;
  max-width: 42ch;
}
.map-placeholder .map-hint a { color: var(--color-red); text-decoration: underline; }
.map-placeholder .btn { margin-top: 0.4rem; }
.contact-card .body { padding: 1.8rem 2rem 2.1rem; }
.contact-card h3 {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card h3 svg { color: var(--color-red); }
.contact-card ul { display: grid; gap: 0.55rem; margin: 1.1rem 0 1.3rem; }
.contact-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-text-soft);
}
.contact-card ul li svg { color: var(--color-red); flex-shrink: 0; margin-top: 3px; }
.contact-card ul li a { display: inline-block; padding: 8px 0; text-decoration: underline; text-underline-offset: 3px; }
.contact-card ul li a:hover { color: var(--color-red); }
.contact-card .hours-table td { color: var(--color-text); border-bottom-color: var(--color-border); }
.contact-card .hours-table td:first-child { color: var(--color-text-soft); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.map-note {
  max-width: 760px;
  margin: 2.4rem auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-soft);
}
.map-note a { color: var(--color-red); text-decoration: underline; }

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--color-border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1.12rem; margin-top: 1.4rem; }
.legal-content p, .legal-content li { color: var(--color-text-soft); }
.legal-content ul { padding-left: 1.3rem; list-style: disc; display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.legal-content a { color: var(--color-red); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--color-text); }
.legal-note {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.6rem;
  margin: 1.6rem 0;
  font-size: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #1c0b03;
  color: #cdbba7;
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 0.85rem; }
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b4a08a;
  max-width: 240px;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--color-red); }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.footer-col address a {
  display: inline-block;
  padding: 6px 0 0;
  color: #e9d9c6;
  text-decoration: none;
}
.footer-col address a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-col address {
  font-style: normal;
  color: #b4a08a;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.footer-bottom {
  padding: 1.25rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #9a8774;
}
.footer-bottom a { color: #b4a08a; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-bottom .footer-credit {
  opacity: 0.75;
  font-size: 0.85rem;
}
.footer-bottom .footer-credit:hover { opacity: 1; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding-top: 3rem; }
}

/* ==========================================================================
   Cookie notice (informational only — no consent needed, no cookies set)
   ========================================================================== */
.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2500;
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-brown);
  color: #f2e9dd;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-notice.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-notice svg { flex-shrink: 0; color: var(--color-tan-light); margin-top: 2px; }
.cookie-notice p { margin: 0 0 0.9rem; font-size: 1rem; color: #ecdfcd; }
.cookie-notice a { color: #fff; text-decoration: underline; }
.cookie-notice .btn { padding: 0.8em 1.8em; font-size: 1rem; }

@media (max-width: 560px) {
  .cookie-notice { left: 10px; right: 10px; bottom: 10px; padding: 1.1rem 1.2rem; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.max-w { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Sichtbarkeit ist der Standardzustand. Die Einblend-Animation greift nur,
   wenn JavaScript laeuft (Klasse .js am <html>). Ohne JavaScript bleibt der
   komplette Seiteninhalt lesbar - sonst waere z. B. die Kontaktseite leer. */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   Feste Anrufleiste auf Mobilgeraeten
   Die Telefonnummer ist der haeufigste Grund fuer den Seitenbesuch. Im
   Header ist unter 940px kein Platz dafuer, deshalb hier dauerhaft sichtbar.
   ========================================================================== */
.call-bar { display: none; }

@media (max-width: 940px) {
  .call-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 850;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 62px;
    padding: 0.6rem 1rem;
    background: var(--color-red-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.01em;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }
  .call-bar svg { flex-shrink: 0; }
  /* Platz schaffen, damit die Leiste den Footer nicht verdeckt */
  body { padding-bottom: 62px; }
  .cookie-notice { bottom: 74px; }
}

/* ==========================================================================
   Deutlich sichtbarer Fokusindikator
   ========================================================================== */
:focus-visible {
  outline: 3px solid var(--color-red-text);
  outline-offset: 3px;
}
.site-header :focus-visible,
.hero :focus-visible,
.locations :focus-visible,
.site-footer :focus-visible,
.call-bar:focus-visible {
  outline-color: #ffd9a0;
}

/* ==========================================================================
   Offene Platzhalter in den Rechtstexten unuebersehbar machen
   ========================================================================== */
mark {
  background: #ffe9a8;
  color: #6b4a00;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  font-weight: 700;
}

/* ==========================================================================
   Bewegung reduzieren - gilt global, nicht nur fuer einzelne Elemente
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Sehr niedrige Viewports (z. B. 200 % Zoom auf dem Laptop)
   ========================================================================== */
@media (max-height: 520px) {
  .hero { min-height: 420px; }
  .site-header { height: 56px; }
  .hero-scroll { display: none; }
}

/* ==========================================================================
   Galerie: Ergebnisanzeige und Klick-Hinweis
   Auf Touchgeraeten gibt es keinen Mauszeiger — ohne sichtbares Symbol ist
   nicht erkennbar, dass die Bilder anklickbar sind.
   ========================================================================== */
.gallery-status {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 1rem;
  margin: -1.6rem 0 2.2rem;
}
.gallery-hint {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}
.gallery-item .media { position: relative; }
.gallery-item .media::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(56, 19, 5, 0.72) center/18px 18px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Sehr schmale Displays (z. B. iPhone SE, Galaxy A mit 360 px)
   Logo + Untertitel brauchen dort allein 374 px und draengen den
   Menue-Button aus dem Bild. Untertitel weicht, Kernmarke bleibt.
   ========================================================================== */
@media (max-width: 560px) {
  .site-header .container { gap: 10px; }
  .brand { gap: 9px; }
  .brand img { height: 46px; }
  .site-header.is-scrolled .brand img { height: 40px; }
  .brand-text strong { font-size: 1.08rem; line-height: 1.15; }
  .brand-text span { display: none; }
}

@media (max-width: 380px) {
  .brand-text strong { font-size: 1rem; }
  .brand img { height: 42px; }
  .nav-toggle { min-width: 50px; }
}
