/* Uhrenservice Franz — Premium handwerklicher Auftritt */

:root {
  --bg: #f2f0ea;
  --bg-deep: #e8e4d9;
  --surface: #ffffff;
  --ink: #171c19;
  --ink-soft: #2a3230;
  --muted: #5f6a66;
  --forest: #1e3b32;
  --forest-deep: #152925;
  --line: rgba(23, 28, 25, 0.1);
  --accent: #9e7d4f;
  --accent-soft: rgba(158, 125, 79, 0.15);
  --hero-overlay: linear-gradient(
    120deg,
    rgba(8, 14, 12, 0.93) 0%,
    rgba(12, 22, 19, 0.62) 45%,
    rgba(18, 32, 28, 0.42) 100%
  );
  --meister-accent: #6b2d2d;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1180px;
  --narrow: 720px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-parallax-wrap,
  .hero-parallax-img {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  z-index: 300;
  font-weight: 500;
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
}

/* ——— Top bar ——— */
.topbar {
  background: var(--forest-deep);
  color: rgba(242, 240, 234, 0.88);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem var(--space);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: inherit;
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

.topbar-sep {
  opacity: 0.45;
  margin: 0 0.35rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--ink);
  border-radius: var(--radius);
}

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary a {
  display: block;
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  border-radius: var(--radius);
}

.nav-primary a:hover {
  background: var(--bg);
  color: var(--ink);
}

.nav-primary a.is-active {
  background: var(--forest);
  color: #f4f2ea;
}

/* ——— Hero variants ——— */
.hero {
  position: relative;
}

.hero--home {
  min-height: min(88vh, 920px);
  display: flex;
  align-items: flex-end;
}

.hero--home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-parallax-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  height: 118%;
  bottom: -8%;
  will-change: transform;
}

.hero-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  transform: scale(1.08);
  will-change: transform;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay),
    radial-gradient(
      ellipse 90% 55% at 75% 100%,
      rgba(0, 0, 0, 0.35),
      transparent 55%
    );
  pointer-events: none;
}

.hero--home .hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 6rem) var(--space);
  width: 100%;
}

.hero--compact {
  background: var(--forest);
  color: #e8e4d9;
  padding: clamp(2.5rem, 6vw, 4rem) var(--space);
}

.hero--compact .hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero--compact .hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 1rem;
}

.hero-kicker {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.75);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  color: #faf8f2;
  margin: 0 0 1.25rem;
  max-width: 16ch;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(242, 240, 234, 0.88);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn--primary {
  background: #faf8f2;
  color: var(--forest-deep);
  border-color: #faf8f2;
}

.btn--primary:hover {
  background: var(--accent-soft);
  color: #faf8f2;
  border-color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: #faf8f2;
  border-color: rgba(250, 248, 242, 0.45);
}

.btn--ghost:hover {
  border-color: #faf8f2;
  background: rgba(250, 248, 242, 0.06);
}

.hero-title--compact {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: #faf8f2;
}

.hero-desc--compact {
  margin: 0;
  max-width: 55ch;
  color: rgba(232, 228, 217, 0.88);
}

/* ——— Trust strip ——— */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem var(--space);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--space);
}

.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

.section-intro {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

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

.welcome-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.figure-archive {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.figure-archive img {
  width: 100%;
}

@media (min-width: 900px) {
  .figure-archive {
    margin-left: 0;
    margin-right: 0;
    align-self: flex-start;
  }
}

.figure-panorama {
  margin-top: 2rem;
}

.figure-panorama img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
}

.prose {
  max-width: 65ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1.1rem;
}

.prose ul {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.figure-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(21, 41, 37, 0.12);
  border: 1px solid var(--line);
}

.figure-frame figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--surface);
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat-panel div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  font-weight: 600;
  line-height: 1;
}

.stat-panel div span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ——— Cards (Leistungen) ——— */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card:hover {
  border-color: rgba(158, 125, 79, 0.35);
  box-shadow: 0 16px 40px rgba(21, 41, 37, 0.07);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--forest);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}

.brands-panel {
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
  background: var(--forest);
  color: #e0dcd0;
  border-radius: var(--radius);
}

.brands-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: #faf8f2;
}

.brands-panel p {
  margin: 0 0 1rem;
  color: rgba(224, 220, 208, 0.88);
  max-width: 70ch;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-chips span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(250, 248, 242, 0.25);
  color: #faf8f2;
}

/* ——— Partners ——— */
.partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem 2rem;
}

@media (min-width: 700px) {
  .partner-list {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

/* ——— Portrait schwarzweiß ——— */
.figure-bw {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
}

.figure-bw::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(250, 248, 242, 0.06);
  pointer-events: none;
  z-index: 1;
}

.figure-bw img {
  width: 100%;
  filter: contrast(1.03) grayscale(1);
  mix-blend-mode: normal;
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}

.figure-bw:hover img {
  filter: contrast(1.06) grayscale(1);
  transform: scale(1.015);
}

.figure-bw figcaption {
  background: var(--forest-deep);
  color: rgba(232, 228, 217, 0.9);
}

/* ——— Meisterbrief-Karte ——— */
.meister-block {
  display: grid;
  gap: 2rem 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .meister-block {
    grid-template-columns: 1fr 1fr;
  }
}

.meister-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #2a2420 0%, #1a1816 100%);
  border: 1px solid rgba(158, 125, 79, 0.35);
  box-shadow: 0 24px 60px rgba(10, 14, 12, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  aspect-ratio: 4 / 3;
  max-height: 420px;
}

.meister-card:hover {
  box-shadow: 0 28px 70px rgba(10, 14, 12, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.meister-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.meister-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 55%;
  opacity: 0.97;
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease);
}

.meister-card:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.meister-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(8, 10, 9, 0.92));
  color: #f0ebe2;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.meister-card__cap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  color: #faf8f2;
}

.meister-strip {
  display: block;
  width: 3px;
  height: 2.5rem;
  background: linear-gradient(
    180deg,
    var(--meister-accent),
    rgba(158, 125, 79, 0.9)
  );
  margin-bottom: 0.75rem;
}

/* ——— Werkstatt + Makro ——— */
.studio-split {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .studio-split {
    grid-template-columns: 1.45fr 1fr;
    align-items: stretch;
  }
}

.studio-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(21, 41, 37, 0.14);
  min-height: 220px;
}

.studio-shot--hero {
  min-height: 280px;
}

.studio-shot img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: 50% 55%;
  transition: transform 0.65s var(--ease);
}

.studio-shot:hover img {
  transform: scale(1.02);
}

.studio-shot__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  font-size: 0.875rem;
  color: rgba(250, 248, 242, 0.92);
  background: linear-gradient(transparent, rgba(21, 41, 37, 0.88));
}

.studio-macro {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(21, 41, 37, 0.08);
}

.studio-macro a {
  display: block;
  line-height: 0;
  transition: opacity 0.3s var(--ease);
}

.studio-macro a:hover {
  opacity: 0.95;
}

.studio-macro img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.studio-macro figcaption {
  padding: 1rem 1.15rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ——— Showcase-Slider ——— */
.showcase {
  position: relative;
  margin-top: 0.5rem;
}

.showcase-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: min(58vw, 580px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(21, 41, 37, 0.12);
  background: var(--ink);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.65s var(--ease);
  pointer-events: none;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

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

.showcase-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(transparent, rgba(8, 12, 11, 0.88));
  color: #f2f0ea;
  font-size: 0.9rem;
  line-height: 1.45;
}

.showcase-slide figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(250, 248, 242, 0.35);
  background: rgba(23, 28, 25, 0.55);
  backdrop-filter: blur(8px);
  color: #faf8f2;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.showcase-nav:hover {
  background: rgba(30, 59, 50, 0.75);
  border-color: rgba(250, 248, 242, 0.55);
  transform: translateY(-50%) scale(1.04);
}

.showcase-prev {
  left: 0.65rem;
}

.showcase-next {
  right: 0.65rem;
}

.section-block-media {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.showcase-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.showcase-dots button.is-active {
  background: var(--forest);
  transform: scale(1.15);
}

.showcase-dots button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.showcase-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 599px) {
  .showcase-nav {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* ——— CTA band ——— */
.cta-band {
  background: var(--forest-deep);
  color: #e8e4d9;
  padding: 2.75rem var(--space);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-inner p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  max-width: 28ch;
}

/* ——— Kontakt ——— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 1rem;
  color: var(--forest);
}

.contact-lines {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
}

.form-grid {
  display: grid;
  gap: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--bg);
}

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

.form-hint {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
}

.map-suggest {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.map-suggest a {
  font-weight: 500;
}

/* ——— Impressum ——— */
.legal-block {
  max-width: var(--narrow);
}

.legal-block h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-block p,
.legal-block address {
  margin: 0 0 1rem;
  font-style: normal;
}

.notice-box {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--forest-deep);
  color: rgba(232, 228, 217, 0.8);
  padding: 3rem var(--space) 2rem;
  font-size: 0.9375rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #faf8f2;
  margin: 0 0 0.75rem;
}

.footer-col h2 {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 228, 217, 0.55);
  margin: 0 0 1rem;
}

.footer-col p {
  margin: 0 0 0.5rem;
  line-height: 1.65;
}

.footer-col a {
  color: #e8e4d9;
  text-decoration: none;
}

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

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 248, 242, 0.12);
  font-size: 0.8125rem;
  color: rgba(232, 228, 217, 0.55);
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(12, 14, 13, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

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

.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 88vh;
  border-radius: var(--radius);
}

.lightbox-close-b {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
}

.lightbox-cap {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 90vw;
  font-size: 0.9rem;
}

.lightbox-cap:empty {
  display: none;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Utilities ——— */
.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;
}

@media (max-width: 799px) {
  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.5rem var(--space) 1.25rem;
  }

  .nav-wrap.is-open {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .brand {
    flex: 1;
  }

  .nav-primary {
    flex-direction: column;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    max-width: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .nav-toggle,
  .hero-actions,
  .showcase-nav,
  .showcase-dots,
  .lightbox {
    display: none !important;
  }

  body {
    background: #fff;
    font-size: 11pt;
    color: #000;
  }

  .section,
  .hero--compact {
    padding: 1rem 0;
  }
}
