/* ═══════════════════════════════════════════════════════════════
   JUWELIER BRADLER — STYLESHEET
   Cormorant Garamond (Display) + Jost (UI)
   Palette: Warm White · Gold · Dark Text
═══════════════════════════════════════════════════════════════ */

/* ── LOKALE WEBFONTS (DSGVO-konform, kein Google-CDN) ──────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../webfonts/CormorantGaramond-Variable.ttf') format('truetype-variations');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../webfonts/CormorantGaramond-Italic-Variable.ttf') format('truetype-variations');
  font-weight: 300 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../webfonts/Jost-Variable.ttf') format('truetype-variations');
  font-weight: 200 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../webfonts/Jost-Italic-Variable.ttf') format('truetype-variations');
  font-weight: 200 500;
  font-style: italic;
  font-display: swap;
}

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


:root {
  /* Light Theme */
  --bg:          #faf8f4;
  --surface:     #f0ece4;
  --surface-2:   #e6e1d6;
  --gold:        #b8924a;
  --gold-light:  #d4aa65;
  --gold-dark:   #8a6e38;
  --text:        #1c1a16;
  --muted:       #7a7068;
  --muted-2:     #b0a898;
  --white:       #ffffff;

  /* Hero / dark sections keep their own dark bg */
  --hero-bg:     #0c0b09;
  --dark-bg:     #0c0b09;
  --dark-surface:#161410;
  --dark-text:   #f5f0e8;
  --dark-muted:  #7a7068;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;

  --nav-h: 112px;
  --container: 1200px;
  --gap: clamp(1rem, 4vw, 2rem);

  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.78;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.section-header .gold-line {
  margin: 1.5rem auto 0;
}

/* ── GOLD LINE ───────────────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
}

.gold-line.animated,
.section-header .gold-line.animated {
  transform: scaleX(1);
  transition: transform 0.9s var(--ease-out);
}

.section-header .gold-line {
  transform-origin: center center;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--muted-2);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn--hero-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
}

.btn--hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 0.82rem;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(-14px);
  animation: navIn 0.7s var(--ease-out) 0.05s forwards;
}

@keyframes navIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav__logo,
.nav__links > li,
.nav__cta,
.nav__burger {
  opacity: 0;
  transform: translateY(-8px);
  animation: navItemIn 0.6s var(--ease-out) forwards;
}

.nav__logo { animation-delay: 0.2s; }
.nav__links > li:nth-child(1) { animation-delay: 0.28s; }
.nav__links > li:nth-child(2) { animation-delay: 0.34s; }
.nav__links > li:nth-child(3) { animation-delay: 0.4s; }
.nav__links > li:nth-child(4) { animation-delay: 0.46s; }
.nav__links > li:nth-child(5) { animation-delay: 0.52s; }
.nav__cta { animation-delay: 0.4s; animation-duration: 0.5s; transform: translateY(0) translateX(12px); }
.nav__burger { animation-delay: 0.28s; }

@keyframes navItemIn {
  to { opacity: 1; transform: translateY(0) translateX(0); }
}

.nav.at-hero {
  /* On dark hero: flip to white text */
  --nav-text: var(--dark-text);
  --nav-muted: var(--dark-muted);
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(20px);
  border-color: rgba(184, 146, 74, 0.15);
  box-shadow: 0 1px 24px rgba(28, 26, 22, 0.06);
  --nav-text: var(--text);
  --nav-muted: var(--muted);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  row-gap: 0.5rem;
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem var(--gap);
}

.nav__logo {
  display: grid;
  align-items: center;
  justify-items: center;
  line-height: 1;
  grid-column: 2;
  grid-row: 1;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  display: block;
  grid-area: 1 / 1;          /* both variants stack in same cell */
  transition: opacity 0.4s var(--ease-out);
}

/* Default (light nav): show gold crown + grey text */
.nav__logo-img--hero { opacity: 0; }

/* On dark hero: swap to white-text variant, keep gold crown */
.nav.at-hero .nav__logo-img--default { opacity: 0; }
.nav.at-hero .nav__logo-img--hero    { opacity: 1; }

.nav__logo:hover .nav__logo-img { opacity: 0.8; }
.nav.at-hero .nav__logo:hover .nav__logo-img--default { opacity: 0; }
.nav.at-hero .nav__logo:hover .nav__logo-img--hero    { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  margin-right: 0.75rem;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav.scrolled .nav__link { color: var(--muted); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--gold) !important; }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  padding: 0.6rem 1.5rem 0.6rem 1.65rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white) !important;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white) !important;
}

/* ── NAV DROPDOWN ────────────────────────────────────────────── */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-ui);
  padding: 0;
}

.nav.scrolled .nav__dropdown-toggle { color: var(--muted); }
.nav__dropdown-toggle:hover { color: var(--gold) !important; }

.nav__dropdown-toggle svg {
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.nav__dropdown:hover .nav__dropdown-toggle { color: var(--gold) !important; }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(184, 146, 74, 0.15);
  box-shadow: 0 12px 40px rgba(28, 26, 22, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  pointer-events: none;
  /* Unsichtbarer Bereich oben, damit Maus-Bewegung nicht das Menü schließt */
  padding-top: 1rem;
  margin-top: 0;
}

/* Lücke überbrücken mit Pseudo-Element */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: transparent;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav__dropdown-item {
  display: block;
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(184, 146, 74, 0.08);
  position: relative;
  z-index: 1;
}

.nav__dropdown-item:first-child {
  border-top: 1px solid rgba(184, 146, 74, 0.15);
}

.nav__dropdown-item:last-child { border-bottom: none; }
.nav__dropdown-item:hover { color: var(--gold); background: rgba(184, 146, 74, 0.04); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--dark-text);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav.scrolled .nav__burger span { background: var(--text); }

.nav__burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

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

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 0;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  transition: color 0.3s;
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-divider {
  width: 1px;
  height: 20px;
  background: rgba(184, 146, 74, 0.2);
}

.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav__mobile-sub-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.nav__mobile-sub-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.nav__mobile-sub-link:hover { color: var(--gold); }

.nav__mobile-link--cta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 146, 74, 0.6);
  padding: 0.85rem 4.5rem;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) var(--gap) 5rem;
  overflow: hidden;
  background: var(--hero-bg);
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../juwelierhero.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  animation: heroZoom 22s ease-in-out infinite;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 7, 0.65) 0%,
    rgba(10, 9, 7, 0.60) 50%,
    rgba(10, 9, 7, 0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-3%); }
  20% { transform: translate(3%,2%); }
  30% { transform: translate(-1%,4%); }
  40% { transform: translate(4%,-1%); }
  50% { transform: translate(-3%,3%); }
  60% { transform: translate(2%,-4%); }
  70% { transform: translate(-4%,1%); }
  80% { transform: translate(1%,-2%); }
  90% { transform: translate(3%,4%); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  transform: scaleX(0);
  transform-origin: right center;
  animation: heroLineIn 0.6s var(--ease-out) 0.1s forwards;
}

.hero__line--right {
  background: linear-gradient(to left, transparent, var(--gold));
  transform-origin: left center;
  animation-delay: 0.1s;
}

.hero__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg) scale(0);
  flex-shrink: 0;
  animation: heroDiamondIn 0.5s var(--ease-out) 0.4s forwards;
}

@keyframes heroLineIn {
  to { transform: scaleX(1); }
}

@keyframes heroDiamondIn {
  to { transform: rotate(45deg) scale(1); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  text-transform: uppercase;
}

.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}

.hero__word--gold {
  color: var(--gold);
  font-style: italic;
}

.hero__break { display: block; height: 0.1em; }

/* Hero-Teaser: "Im 100. Jahr · seit 1928" mit flankierenden Goldlinien */
.hero__century {
  position: absolute;
  bottom: clamp(1.6rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  opacity: 1; /* immer sichtbar – Effekt läuft nur über transform */
  animation: heroCenturyIn 0.6s var(--ease-out) 0.35s both;
}
@keyframes heroCenturyIn {
  from { transform: translateX(-50%) translateY(12px); }
  to   { transform: translateX(-50%) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__century { animation: none; }
}
.hero__century-line {
  display: inline-block;
  width: clamp(28px, 6vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.hero__sub {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.1em;
  margin: 1.25rem auto 3rem;
  max-width: 720px;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease-out) 1.4s, transform 0.9s var(--ease-out) 1.4s;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero__sub.animated { opacity: 1; transform: translateY(0); }

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── PAGE HERO (Unterseiten) ─────────────────────────────────── */
.page-hero {
  background: var(--hero-bg);
  padding: calc(var(--nav-h) + 4rem) var(--gap) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 60%, rgba(184, 146, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-hero__line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.page-hero__line--right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.page-hero__diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-hero__eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--dark-text);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero__sub {
  font-size: 1.05rem;
  color: var(--dark-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-fade.animated { opacity: 1; }

.reveal-text {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 1.4s;
}

.reveal-text.animated { opacity: 1; }

.reveal-line {
  transform: scaleX(0);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--delay, 0.2s);
}

.reveal-line.animated { transform: scaleX(1); }

/* ── BRANDS ──────────────────────────────────────────────────── */
.brands {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(184, 146, 74, 0.15);
  border-bottom: 1px solid rgba(184, 146, 74, 0.15);
  background: var(--white);
}

.brands__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2rem;
}

.brands__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.brands__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
  cursor: default;
}

.brands__item span {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.3s;
}

.brands__item:hover { color: var(--gold); }
.brands__item:hover span { color: var(--gold-dark); }

.brands__divider {
  color: var(--muted-2);
  font-size: 1.2rem;
  opacity: 0.4;
}

/* ── POSITIONING ─────────────────────────────────────────────── */
.positioning {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--bg);
}

.positioning__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.positioning__visual { position: relative; }

.positioning__img-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #d4c8a8 0%, #b8a070 50%, #c8b080 100%);
  position: relative;
  overflow: hidden;
}

.positioning__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.positioning__img-tag {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.5rem 0.6rem 1.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.positioning__content .gold-line { margin-top: 1rem; margin-bottom: 0.5rem; }

.positioning__text {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.positioning__content .btn { margin-top: 1rem; align-self: flex-start; }

/* ── LEISTUNGEN ──────────────────────────────────────────────── */
.leistungen {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--surface);
}

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(184, 146, 74, 0.1);
}

.leistung-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.leistung-card:hover { background: var(--surface); }

.leistung-card__number {
  padding: 1.5rem 2rem 0;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184, 146, 74, 0.15);
  line-height: 1;
  transition: color 0.3s;
}

.leistung-card:hover .leistung-card__number {
  color: rgba(184, 146, 74, 0.3);
}

.leistung-card__img {
  height: 240px;
  margin: 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.leistung-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Scrim: subtile Dunkel-Gradient unten für Label-Lesbarkeit ── */
.leistung-card__img-scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(
    to bottom,
    rgba(12, 11, 9, 0) 0%,
    rgba(12, 11, 9, 0.15) 45%,
    rgba(12, 11, 9, 0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Editorial Label im Bild ── */
.leistung-card__label {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  pointer-events: none;
}

.leistung-card__label-line {
  display: block;
  flex: 0 0 auto;
  width: 0;
  height: 1.5px;
  background: var(--gold);
}

.leistung-card__label-text {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.leistung-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.3);
  transition: opacity 0.3s;
}

.leistung-card:hover .leistung-card__img-overlay { opacity: 0; }

.leistung-card__img--1 { background: linear-gradient(135deg, #d4c8a8 0%, #b8a078 50%, #a08860 100%); }
.leistung-card__img--2 { background: linear-gradient(135deg, #b8b4a8 0%, #988c7c 50%, #7a7060 100%); }
.leistung-card__img--3 { background: linear-gradient(135deg, #c8b890 0%, #b09060 50%, #987848 100%); }
.leistung-card__img--4 { background: linear-gradient(135deg, #b4aabc 0%, #9888a0 50%, #7a6880 100%); }

.leistung-card__body {
  padding: 0 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.leistung-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.leistung-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  hyphens: auto;
}

.leistung-card__text {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  margin-top: 0.3rem;
  flex: 1;
}

.leistung-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}

.leistung-card__link:hover { gap: 0.9rem; }

/* ── STATEMENT BANNER ────────────────────────────────────────── */
.statement {
  overflow: hidden;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(184, 146, 74, 0.12);
  border-bottom: 1px solid rgba(184, 146, 74, 0.12);
  background: var(--bg);
}

.statement__inner { overflow: hidden; }

.statement__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted-2);
  width: max-content;
  will-change: transform;
}

/* JS-controlled fallback (if GSAP missing) */
.statement__track:not(.js-marquee) {
  animation: marquee 30s linear infinite;
}

.statement__diamond {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PROZESS ─────────────────────────────────────────────────── */
.prozess {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--white);
}

.prozess__timeline { position: relative; }

/* Alte horizontale Connector-Linie ausblenden */
.prozess__connector { display: none; }

.prozess__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Vertikale Zeitstrahl-Linie in der Mitte */
.prozess__steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(184, 146, 74, 0) 0%,
    rgba(184, 146, 74, 0.35) 8%,
    rgba(184, 146, 74, 0.35) 92%,
    rgba(184, 146, 74, 0) 100%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.prozess__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0 4rem;
  position: relative;
}

/* Linke Spalte (Steps 1 + 3) — rechtsbündig */
.prozess__step:nth-child(odd) {
  grid-column: 1;
  text-align: right;
  align-items: flex-end;
  padding-right: 2.5rem;
}

/* Rechte Spalte (Steps 2 + 4) — linksbündig, vertikal versetzt */
.prozess__step:nth-child(even) {
  grid-column: 2;
  text-align: left;
  align-items: flex-start;
  padding-left: 2.5rem;
  margin-top: 6rem;
}

/* Erster Step links bekommt extra Top-Space damit Punkt unter die Headline rutscht */
.prozess__step:first-child { padding-top: 0; }

/* Goldener Verbinder-Punkt auf der Mittellinie */
.prozess__step::before {
  content: '';
  position: absolute;
  top: 2.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(184, 146, 74, 0.4);
  z-index: 2;
}

.prozess__step:nth-child(odd)::before { right: -6px; }
.prozess__step:nth-child(even)::before { left: -6px; }

/* Header: Nummer + Titel oben */
.prozess__step-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.prozess__step-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  font-style: italic;
}

.prozess__step-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

/* Bild: voll sichtbar (Hochformat, kein Crop) */
.prozess__step-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5efe2;
  border: 1px solid rgba(184, 146, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prozess__step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.prozess__step:hover .prozess__step-img img {
  transform: scale(1.03);
}

.prozess__step-text {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 420px;
  margin: 0;
}

/* ── CRAFT ───────────────────────────────────────────────────── */
.craft {
  overflow: hidden;
  background: var(--surface);
}

.craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.craft__visual {
  position: relative;
  overflow: hidden;
}

.craft__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4c4a0 0%, #b89870 40%, #c8aa80 60%, #e0c89a 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.craft__img-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.craft__img-text span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(28, 26, 22, 0.5);
  font-style: italic;
}

.craft__img-text small {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 26, 22, 0.35);
}

/* Variante mit echtem Werkstatt-Bild */
.craft__img-placeholder--has-img {
  background: var(--dark-bg);
  padding: 0;
  align-items: stretch;
}

.craft__img-placeholder--has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

.craft__img-placeholder--has-img:hover img {
  transform: scale(1.04);
}

.craft__img-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
  padding: 1rem 1.2rem;
  background: rgba(12, 11, 9, 0.55);
  backdrop-filter: blur(6px);
  border-left: 2px solid var(--gold);
}

.craft__img-caption span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  line-height: 1;
}

.craft__img-caption small {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .craft__img-caption {
    bottom: 1rem;
    left: 1rem;
    padding: 0.7rem 0.9rem;
  }
  .craft__img-caption span { font-size: 1rem; }
  .craft__img-caption small { font-size: 0.55rem; }
}

.craft__content {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.craft__text {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--muted);
}

.craft__quote {
  border-left: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.craft__quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.craft__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── GALERIE ─────────────────────────────────────────────────── */
.galerie {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--bg);
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
}

.galerie__item--wide { grid-column: span 2; }
.galerie__item--tall { grid-row: span 2; }

.galerie__placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galerie__placeholder--1 { background: linear-gradient(135deg, #d4c4a0 0%, #b89870 100%); }
.galerie__placeholder--2 { background: linear-gradient(135deg, #b8bac0 0%, #8890a0 100%); }
.galerie__placeholder--3 { background: linear-gradient(135deg, #c8b890 0%, #a09060 100%); }
.galerie__placeholder--4 { background: linear-gradient(135deg, #a8b0b8 0%, #788090 100%); }
.galerie__placeholder--5 { background: linear-gradient(135deg, #c8b880 0%, #a89048 100%); }
.galerie__placeholder--6 { background: linear-gradient(135deg, #b0aab8 0%, #887888 100%); }

.galerie__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 22, 0.6);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  border: 1px solid transparent;
}

.galerie__placeholder:hover .galerie__overlay {
  opacity: 1;
  border-color: rgba(184, 146, 74, 0.4);
}

.galerie__overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Echte Bilder in der Galerie ─────────────────────────────── */
.galerie__placeholder--has-img {
  background: var(--dark-bg);
}

.galerie__placeholder--has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.galerie__placeholder--has-img:hover img {
  transform: scale(1.06);
}

/* CTA-Tile als 6. Galerie-Item */
.galerie__item--cta {
  display: block;
  background: var(--dark-bg);
  color: var(--bg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.galerie__item--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 146, 74, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(184, 146, 74, 0.10), transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.galerie__item--cta:hover { background: #1a1815; }
.galerie__item--cta:hover::before { opacity: 0.7; }

.galerie__cta-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.8rem;
}

.galerie__cta-ornament {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  transition: transform 0.4s var(--ease-out);
}

.galerie__item--cta:hover .galerie__cta-ornament {
  transform: rotate(45deg);
}

.galerie__cta-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.galerie__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--bg);
}

.galerie__cta-title em {
  font-style: italic;
  color: var(--gold);
}

.galerie__cta-arrow {
  font-family: var(--font-ui);
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 0.4rem;
  transition: transform 0.4s var(--ease-out);
}

.galerie__item--cta:hover .galerie__cta-arrow {
  transform: translateX(6px);
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.about__img-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #d4c8a8 0%, #b8a070 50%, #c8b080 100%);
  position: relative;
  overflow: hidden;
}

.about__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__img-tag {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.about__text {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--muted);
}

.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 146, 74, 0.15);
  flex-wrap: wrap;
}

.about__stat { display: flex; flex-direction: column; gap: 0.2rem; }

.about__stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 146, 74, 0.15);
  flex-shrink: 0;
}

/* ── ABOUT: HEADER + INTRO ───────────────────────────────────── */
.about__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about__header .gold-line { margin: 1.5rem auto; }

.about__intro {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 620px;
}

/* ── ABOUT: SUB-SECTION HEADER ───────────────────────────────── */
.about__sub-header {
  text-align: center;
  margin: 5rem auto 2.5rem;
}

.about__sub-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin: 0.5rem 0 0;
}

/* ── ABOUT: LEADERSHIP (2 Geschäftsführer-Cards) ─────────────── */
.about__leadership {
  margin-top: 1.5rem;
}

.about__leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 960px;
  margin: 0 auto;
}

.leader-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(184, 146, 74, 0.12);
  overflow: hidden;
}

.leader-card__photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #e8dfc8 0%, #c8b890 50%, #d4c4a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-card__photo--has-img {
  background: var(--surface);
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s var(--ease-out, ease-out);
}

.leader-card:hover .leader-card__photo img {
  transform: scale(1.03);
}

.leader-card__photo-fallback {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 26, 22, 0.45);
}

.leader-card__body {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.leader-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  color: var(--text);
}

.leader-card__role {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.leader-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ── ABOUT: TEAM ─────────────────────────────────────────────── */
.about__team {
  margin-top: 5rem;
}

.about__team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.about__team-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #d4c8a8 0%, #b8a070 50%, #c8b080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about__team-placeholder span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.about__team-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about__team-text {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  margin: 0;
}

/* ── BRADLER KOLLEKTION (Eigene Manufaktur) ──────────────────── */
.bradler-collection {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--surface);
  position: relative;
}

.bradler-collection__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.bradler-collection__header .gold-line { margin: 1.5rem auto; }

.bradler-collection__intro {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--muted);
  margin: 1.5rem auto 0;
  max-width: 580px;
}

.bradler-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.collection-tile {
  background: var(--white);
  border: 1px solid rgba(184, 146, 74, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.collection-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(28, 26, 22, 0.18);
}

.collection-tile__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #e8dfc8 0%, #c8b890 50%, #d4c4a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.collection-tile--gold .collection-tile__visual {
  background: linear-gradient(160deg, #d4c8a8 0%, #b8a070 50%, #c8b080 100%);
}

.collection-tile--dark .collection-tile__visual {
  background: linear-gradient(160deg, #2c2a25 0%, #1c1a16 50%, #2c2a25 100%);
}

.collection-tile__visual-fallback {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 26, 22, 0.45);
}

.collection-tile--dark .collection-tile__visual-fallback {
  color: rgba(245, 240, 232, 0.55);
}

.collection-tile__body {
  padding: 1.5rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.collection-tile__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.collection-tile__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0.2rem 0 0;
  color: var(--text);
  line-height: 1.25;
}

.collection-tile__text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.bradler-collection__cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── CTA SECTION (stays dark) ────────────────────────────────── */
.cta-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 146, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-section__ornament { font-size: 1.2rem; color: var(--gold); opacity: 0.6; }

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.1;
}

.cta-section__title em { font-style: italic; color: var(--gold); }

.cta-section__sub {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--dark-muted);
}

.cta-section__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.cta-section__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--dark-muted);
}

.cta-section__info-item svg { color: var(--gold-dark); flex-shrink: 0; }

.cta-section__info-divider { color: rgba(122, 112, 104, 0.4); font-size: 1.2rem; }

/* ── INSTAGRAM ───────────────────────────────────────────────── */
.instagram {
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--surface);
}

.instagram__header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4rem); }

.instagram__handle { color: var(--text); transition: color 0.3s; }
.instagram__handle:hover { color: var(--gold); }

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram__item {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  position: relative;
}

.instagram__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out);
}

.instagram__item:hover .instagram__placeholder { transform: scale(1.04); }

.instagram__placeholder--1 { background: linear-gradient(135deg, #d4c4a0 0%, #b89870 100%); }
.instagram__placeholder--2 { background: linear-gradient(135deg, #b8bcc4 0%, #8892a0 100%); }
.instagram__placeholder--3 { background: linear-gradient(135deg, #c8b888 0%, #a09050 100%); }
.instagram__placeholder--4 { background: linear-gradient(135deg, #a8b4bc 0%, #788898 100%); }
.instagram__placeholder--5 { background: linear-gradient(135deg, #c8b478 0%, #a88c40 100%); }
.instagram__placeholder--6 { background: linear-gradient(135deg, #b4aac0 0%, #887898 100%); }

.instagram__icon {
  color: rgba(28, 26, 22, 0.2);
  width: 32px;
  height: 32px;
  transition: color 0.3s;
}

.instagram__item:hover .instagram__icon { color: rgba(28, 26, 22, 0.5); }

/* ── Echte Instagram-Bilder ─────────────────────────────────── */
.instagram__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.instagram__item:hover .instagram__img {
  transform: scale(1.06);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 11, 9, 0);
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.instagram__item:hover .instagram__overlay,
.instagram__item:focus-visible .instagram__overlay {
  background: rgba(12, 11, 9, 0.45);
  opacity: 1;
}

.instagram__overlay svg {
  width: 36px;
  height: 36px;
  color: var(--bg);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}

.instagram__item:hover .instagram__overlay svg {
  transform: scale(1);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  background: #0c0b09;
  color: var(--dark-text);
}

/* Top row: Logo + CTA */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.35rem; }

.footer__logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 0.4rem;
  transition: opacity 0.3s var(--ease-out);
}

.footer__logo:hover { opacity: 0.85; }

.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

/* Divider */
.footer__divider {
  height: 1px;
  background: rgba(245, 240, 232, 0.08);
  margin: 0 0 3rem;
}

/* 4-column grid */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer__col-text {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.6;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.55);
  transition: color 0.3s;
  line-height: 1.5;
}

.footer__link:hover { color: var(--gold); }

.footer__insta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

/* Bottom row */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy { font-size: 0.75rem; color: rgba(245, 240, 232, 0.25); }

.footer__legal { display: flex; gap: 1.5rem; }

.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
  transition: color 0.3s;
}

.footer__legal-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   UNTERSEITEN — MARKEN/KOLLEKTIONEN GRID
══════════════════════════════════════════════════════════════ */

/* ── COLLECTION INTRO ────────────────────────────────────────── */
.collection-intro {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
  text-align: center;
}

.collection-intro__text {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ── BRANDS GRID (Unterseiten) ───────────────────────────────── */
.brands-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 8rem);
  background: var(--bg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184, 146, 74, 0.1);
  margin-top: 3rem;
}

.brand-card {
  background: var(--white);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.brand-card:hover { background: var(--surface); }
.brand-card:hover::before { width: 100%; }

.brand-card__index {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(184, 146, 74, 0.18);
  line-height: 1;
}

.brand-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  hyphens: auto;
  word-break: break-word;
}

.brand-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-card__desc {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  margin-top: 0.25rem;
}

.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}

.brand-card:hover .brand-card__cta { gap: 0.9rem; }

/* ─── Variante mit Bild oben (für bradler-kollektion.html) ─── */
.brand-card--with-image {
  padding: 0;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(184, 146, 74, 0.12);
}

.brand-card--with-image .brand-card__visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, #f5efe2 0%, #ebe0c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.brand-card--with-image .brand-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(184, 146, 74, 0.10), transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(184, 146, 74, 0.06), transparent 60%);
  pointer-events: none;
}

.brand-card--with-image .brand-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease-out);
  position: relative;
  z-index: 1;
}

.brand-card--with-image:hover .brand-card__visual img {
  transform: scale(1.04);
}

.brand-card--with-image .brand-card__content {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 1;
}

.brand-card--with-image .brand-card__index {
  font-size: 1.4rem;
}

.brand-card--with-image .brand-card__name {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

/* Kategorie-Cards (für Kinderschmuck, Bradler Kollektion) */
.category-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}

.category-card:hover { background: var(--surface); }
.category-card:hover::after { height: 100%; }

.category-card__icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 146, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.category-card__icon svg { width: 16px; height: 16px; color: var(--gold); }

.category-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  hyphens: auto;
}

.category-card__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── BACK LINK ───────────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.2rem var(--gap);
  background: var(--white);
  border-bottom: 1px solid rgba(184, 146, 74, 0.1);
  transition: color 0.3s;
  margin-top: var(--nav-h);
  display: flex;
}

.back-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .positioning__inner { grid-template-columns: 1fr; gap: 3rem; }
  .leistungen__grid { grid-template-columns: 1fr; }
  .craft__inner { grid-template-columns: 1fr; }
  .craft__visual { height: 400px; }
  .craft__img-placeholder { position: relative; height: 400px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__img-placeholder,
  .positioning__img-placeholder {
    aspect-ratio: 4 / 5;
    max-width: 480px;
    margin: 0 auto;
  }
  .about__leadership-grid { grid-template-columns: 1fr; max-width: 480px; }
  .about__team-inner { grid-template-columns: 1fr; }
  .about__team-placeholder { max-width: 480px; margin: 0 auto; }
  .about__sub-header { margin-top: 3rem; }
  .about__team { margin-top: 3rem; }
  .bradler-collection__grid { grid-template-columns: 1fr; max-width: 480px; }
  .prozess__steps { grid-template-columns: repeat(2, 1fr); }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .galerie__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie__item--wide { grid-column: span 2; }
  .galerie__item--tall { grid-row: span 1; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; }

  .nav__inner { padding: 0 var(--gap); row-gap: 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; grid-column: 3; grid-row: 1; justify-self: end; }
  .nav__logo { grid-column: 2; padding-top: 6px; }
  .nav__logo-img { height: 48px; }

  .hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
  .leistungen__grid { grid-template-columns: 1fr; gap: 0; }
  .leistung-card__img { height: 180px; }

  /* Prozess-Zeitstrahl auf Mobile: einspaltig, linksbündig, Linie links */
  .prozess__steps { grid-template-columns: 1fr; }
  .prozess__steps::before { left: 6px; transform: none; }
  .prozess__step:nth-child(odd),
  .prozess__step:nth-child(even) {
    grid-column: 1;
    text-align: left;
    align-items: flex-start;
    padding-left: 2.5rem;
    padding-right: 0;
    margin-top: 0;
  }
  .prozess__step:nth-child(odd)::before,
  .prozess__step:nth-child(even)::before {
    left: 0;
    right: auto;
  }
  .prozess__step + .prozess__step { padding-top: 2rem; }
  .prozess__step-img { max-width: 100%; }
  .galerie__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .galerie__item--wide { grid-column: span 1; }
  .galerie__placeholder { height: 250px; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .about__stats { flex-wrap: wrap; gap: 1.5rem; }
  .about__stat-divider { display: none; }
  .cta-section__info { flex-direction: column; gap: 0.75rem; }
  .cta-section__info-divider { display: none; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .brands__track { gap: 1.2rem; }
  .brands__divider { display: none; }
  .brands__item { font-size: 1.1rem; }
  .brands-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   MICRO-INTERACTIONS & SCROLL ENHANCEMENTS
══════════════════════════════════════════════════════════════ */

/* ── Galerie: 3D Tilt Perspective ────────────────────────────── */
.galerie__grid {
  perspective: 1200px;
}

.galerie__placeholder {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.galerie__placeholder:hover {
  box-shadow: 0 20px 60px rgba(28, 26, 22, 0.18);
}

/* ── Leistung card img: smooth scale container ───────────────── */
.leistung-card__img {
  overflow: hidden;
  transform-origin: center center;
}

/* ── Section title: clip-path support ───────────────────────── */
.section-title {
  overflow: hidden;
}

/* ── CTA Gold Glow ───────────────────────────────────────────── */
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(184, 146, 74, 0.08); }
  50%       { box-shadow: 0 0 80px rgba(184, 146, 74, 0.18), 0 0 120px rgba(184, 146, 74, 0.06); }
}

.cta-section.cta-active::before {
  animation: goldGlow 4s ease-in-out infinite;
}

/* ── Magnetic button: smooth transform ───────────────────────── */
.btn--gold,
.nav__link--cta {
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  /* transform handled by GSAP */
}

/* ── Brand card: bottom line on hover (smooth) ───────────────── */
.brand-card {
  transition: background 0.35s ease;
}

/* ── Prozess step: transition for border ─────────────────────── */
.prozess__step {
  transition: border-color 0.4s ease;
}

/* ── About stat numbers: scale on enter ──────────────────────── */
.about__stat-number {
  display: inline-block;
  will-change: contents;
}

/* ── Link arrow SVG: smooth x-shift ─────────────────────────── */
.leistung-card__link svg,
.brand-card__cta svg {
  will-change: transform;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HERO ACTIONS (2-CTA layout)
═══════════════════════════════════════════════════════════════ */
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: heroActionsIn 0.6s var(--ease-out) 0.6s forwards;
}

@keyframes heroActionsIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__usps {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 146, 74, 0.7);
  text-align: center;
  margin-bottom: 2.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s var(--ease-out) 1.7s, transform 0.9s var(--ease-out) 1.7s;
  line-height: 2;
}

.hero__usps.animated { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid rgba(184, 146, 74, 0.15);
  border-bottom: 1px solid rgba(184, 146, 74, 0.15);
  padding: 1.6rem var(--gap);
}

.trust-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-bar__item svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 1.4rem 0;
    overflow: hidden;
  }

  .trust-bar__inner--clone {
    display: flex;
  }

  .trust-bar {
    display: flex;
    flex-wrap: nowrap;
    animation: trustTicker 22s linear infinite;
  }

  .trust-bar__inner {
    flex-shrink: 0;
    flex-wrap: nowrap;
    max-width: none;
    margin: 0;
    gap: 2.5rem;
    padding: 0 2.5rem;
    justify-content: flex-start;
  }
}

@keyframes trustTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-bar__inner--clone {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU — improved spacing & contact section
═══════════════════════════════════════════════════════════════ */
.nav__mobile {
  align-items: flex-start;
  justify-content: flex-start;
}

.nav__mobile-links {
  width: 100%;
  padding: 2rem var(--gap) 1.5rem;
  align-items: center;
  gap: 0.3rem;
}

.nav__mobile-link {
  padding: 0.35rem 0;
  display: block;
  text-align: center;
}

.nav__mobile-link--cta {
  padding: 0.85rem 3rem;
}

/* Kollektionen accordion toggle */
.nav__mobile-kollektionen-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.nav__mobile-kollektionen-toggle:hover { color: var(--gold); }

.nav__mobile-kollektionen-toggle svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav__mobile-kollektionen-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Kollektionen sub-items: collapsed by default */
.nav__mobile-sub-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0;
}

.nav__mobile-sub-items.open {
  max-height: 220px;
  padding-top: 0.3rem;
}

.nav__mobile-sub {
  width: 100%;
  align-items: center;
  text-align: center;
  padding-bottom: 0.5rem;
}

.nav__mobile-sub-link {
  padding: 0.45rem 0;
  display: block;
}

.nav__mobile-contact {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 146, 74, 0.2);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav__mobile-contact-title {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.nav__mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  padding: 0.55rem 0;
  transition: color 0.25s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav__mobile-contact-link:last-child { border-bottom: none; }
.nav__mobile-contact-link:hover { color: var(--gold); }

.nav__mobile-contact-link svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA — floating pill button
═══════════════════════════════════════════════════════════════ */
.sticky-bar {
  display: none;
}


.sticky-bar__cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: #0c0b09;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem 0.85rem calc(1.8rem + 0.13em);
  border-radius: 2px;
  box-shadow: 0 4px 22px rgba(184, 146, 74, 0.4), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  white-space: nowrap;
}

.sticky-bar__cta:hover,
.sticky-bar__cta:active {
  background: #a07a3a;
  box-shadow: 0 6px 28px rgba(184, 146, 74, 0.55), 0 2px 10px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* Schnellkontakt-Items (Unterseiten: Anrufen / E-Mail) */
.sticky-bar__item {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.sticky-bar__item svg { flex-shrink: 0; }

/* Anrufen = primär (Gold) */
.sticky-bar__item:first-child {
  background: var(--gold);
  color: #0c0b09;
  box-shadow: 0 4px 22px rgba(184, 146, 74, 0.4), 0 2px 8px rgba(0,0,0,0.25);
}
.sticky-bar__item:first-child:active {
  background: #a07a3a;
  transform: translateY(-2px);
}

/* E-Mail = sekundär (dunkel) */
.sticky-bar__item:last-child {
  background: var(--dark-bg);
  color: var(--bg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}
.sticky-bar__item:last-child:active {
  background: #000;
  transform: translateY(-2px);
}

/* Sticky-Bar bleibt ausgeblendet — auf Mobil übernimmt der phone-fab (runder Anruf-Button).
   Die .sticky-bar__item-Styles oben bleiben erhalten, falls die Leiste später reaktiviert wird. */

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER — compact floating card (bottom right)
═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  max-width: 640px;
  width: calc(100vw - 3rem);
  z-index: 500;
  background: #ffffff;
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  font-family: var(--font-ui);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  padding: 1.75rem 1.9rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.cookie-banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.cookie-banner__text {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.cookie-banner__text a:hover {
  color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.cookie-banner__btn {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  border-radius: 2px;
}

.cookie-banner__btn--secondary {
  background: #1c1a16;
  border-color: #1c1a16;
  color: #ffffff;
}

.cookie-banner__btn--secondary:hover {
  background: #000;
  border-color: #000;
}

.cookie-banner__btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.cookie-banner__btn--primary:hover {
  background: var(--gold-light, #c9a35c);
  border-color: var(--gold-light, #c9a35c);
}

.cookie-banner__logo {
  width: 110px;
  height: auto;
  flex-shrink: 0;
  align-self: flex-end;
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 1rem;
    left: 1rem;
    bottom: 5rem;
    max-width: none;
    width: auto;
  }
  .cookie-banner__inner {
    padding: 1.25rem 1.3rem;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.9rem;
  }
  .cookie-banner__logo {
    width: 70px;
    align-self: flex-end;
  }
  .cookie-banner__text {
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE FADE MASKS — sanfte Kanten links/rechts
═══════════════════════════════════════════════════════════════ */
.statement {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

@media (max-width: 768px) {
  .trust-bar {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION — respect user preference
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg,
  .hero__grain,
  .statement__track,
  .trust-bar {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BRADLER-REVEAL — dunkle Section mit Uhr-Reveal-Animation
═══════════════════════════════════════════════════════════════ */
.bradler-reveal {
  position: relative;
  background: var(--dark-bg);
  color: var(--bg);
  padding: 7rem 0;
  overflow: hidden;
  isolation: isolate;
}

.bradler-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(184, 146, 74, 0.10), transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 30%, rgba(184, 146, 74, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Großer Gold-Text als Hintergrund — rechts, leicht über Rand hinaus */
.bradler-reveal__bg-text {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
  pointer-events: none;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.88;
  color: var(--gold);
  opacity: 0.32;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bradler-reveal__bg-line {
  font-size: clamp(4.5rem, 11vw, 12rem);
  display: block;
}

.bradler-reveal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
  min-height: 560px;
}

.bradler-reveal__content {
  max-width: 480px;
}

.bradler-reveal .eyebrow {
  color: var(--gold);
  opacity: 0.85;
}

.bradler-reveal__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--bg);
  margin: 0.8rem 0 1.4rem;
}

.bradler-reveal__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.bradler-reveal__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 1.6rem;
  transform-origin: left;
}

.bradler-reveal__text {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  margin: 0 0 2.2rem;
}

.bradler-reveal__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.bradler-reveal__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.55));
  /* Initial-State setzt GSAP (siehe main.js) — Fallback unten für No-JS */
  will-change: transform, opacity;
}

/* Fallback ohne GSAP: simple CSS-Transition über .is-visible */
.no-gsap .bradler-reveal__img {
  opacity: 0;
  transform: translateX(140px) scale(0.92) rotate(-3deg);
  transition: opacity 1.6s ease-out, transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.no-gsap .bradler-reveal__img.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1) rotate(0deg);
}

/* ─── MIRROR-VARIANTE (Bild links, Content rechts) ─── */
.bradler-reveal__bg-text--left {
  right: auto;
  left: -2vw;
  text-align: left;
}

.bradler-reveal__inner--mirror .bradler-reveal__content--right {
  grid-column: 2;
  justify-self: end;
}

.bradler-reveal__inner--mirror .bradler-reveal__visual--left {
  grid-column: 1;
}

/* Spiegel-Img: kommt von links rein */
.no-gsap .bradler-reveal__img--mirror {
  transform: translateX(-140px) scale(0.92) rotate(3deg);
}
.no-gsap .bradler-reveal__img--mirror.is-visible {
  transform: translateX(0) scale(1) rotate(0deg);
}

/* Tablet */
@media (max-width: 1024px) {
  .bradler-reveal { padding: 5rem 0; }
  .bradler-reveal__inner { gap: 2rem; min-height: 480px; }
  .bradler-reveal__visual { min-height: 480px; }
  .bradler-reveal__img { max-width: 380px; }
  .bradler-reveal__bg-line { font-size: clamp(4rem, 13vw, 9rem); }
}

/* Mobile */
@media (max-width: 768px) {
  .bradler-reveal { padding: 4rem 0; }
  .bradler-reveal__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }
  .bradler-reveal__content { max-width: 100%; }
  .bradler-reveal__visual { min-height: auto; order: 2; }
  .bradler-reveal__img {
    max-width: 280px;
    transform: translateY(60px) scale(0.92);
  }
  .bradler-reveal__img.is-visible { transform: translateY(0) scale(1); }
  .bradler-reveal__bg-text { opacity: 0.18; right: -5vw; }
  .bradler-reveal__bg-text--left { left: -5vw; right: auto; }
  .bradler-reveal__bg-line { font-size: clamp(3rem, 16vw, 5rem); }

  /* Mirror auf Mobile: einspaltig, kein Spaltenversatz */
  .bradler-reveal__inner--mirror .bradler-reveal__content--right,
  .bradler-reveal__inner--mirror .bradler-reveal__visual--left {
    grid-column: 1;
    justify-self: stretch;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .bradler-reveal__img {
    transition: opacity 0.4s ease-out;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TEAM-SEITE
═══════════════════════════════════════════════════════════════ */

/* Linksbündige Variante des section-headers (statt zentriert) */
.section-header--left {
  text-align: left;
  margin-bottom: 3rem;
}
.section-header--left .gold-line { margin-left: 0; }

/* Leadership-Section (helle Fläche) */
.team-leadership {
  background: var(--bg);
  padding: 6rem 0 4rem;
}

.team-leadership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Team-Grid Section (leicht abgesetzte Fläche) */
.team-grid-section {
  background: var(--surface);
  padding: 5rem 0 6rem;
}

.team-grid-section__intro {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-top: 1.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-grid-section__note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-2);
  font-style: italic;
}

/* TEAM-CARD */
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid rgba(184, 146, 74, 0.15);
  transition: border-color 0.4s ease, transform 0.5s var(--ease-out);
  min-width: 0; /* erlaubt Grid-Items zu schrumpfen (verhindert Overflow) */
}

.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.team-card--lead {
  background: var(--surface);
}

.team-card__visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #efe7d4 0%, #e5dcc6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.team-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 146, 74, 0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(184, 146, 74, 0.08), transparent 60%);
  pointer-events: none;
}

.team-card__visual--small {
  aspect-ratio: 1 / 1;
}

/* Variante mit echtem Foto: kein Gradient/Overlay */
.team-card__visual--photo {
  background: var(--surface);
}

.team-card__visual--photo::before {
  display: none;
}

.team-card__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s var(--ease-out, ease-out);
}

.team-card:hover .team-card__visual--photo img {
  transform: scale(1.03);
}

/* Quote-Block für Geschäftsführer-Zitate */
.team-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
  margin: 0.3rem 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.team-card__placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.team-card__body {
  padding: 1.6rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-card--lead .team-card__body {
  padding: 2rem 1.8rem 2.2rem;
}

.team-card__role {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  overflow-wrap: break-word; /* lange Wörter (GOLDSCHMIEDEMEISTERIN) umbrechen statt überlaufen */
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.1rem;
  line-height: 1.1;
  order: -1; /* Name oben, Position darunter */
}

.team-card--lead .team-card__name {
  font-size: 1.85rem;
}

.team-card__bio {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-leadership__grid { gap: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .team-leadership { padding: 4rem 0 2rem; }
  .team-leadership__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 480px;
    margin: 2rem auto 0;
  }
  .team-grid-section { padding: 3.5rem 0 4rem; }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .team-card__body { padding: 1.2rem 1.1rem 1.4rem; }
  .team-card__name { font-size: 1.25rem; }
  .team-card--lead .team-card__name { font-size: 1.6rem; }
  .team-card__bio { font-size: 0.9rem; }
}

/* Phones: Team-Grid einspaltig – Cards breit genug für lange Rollen, kein Overflow */
@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TEAM-SLIDER — dunkle Bühne, freigestellte Person + Gold-Vorname
═══════════════════════════════════════════════════════════════ */
.team-slider {
  background: var(--dark-bg);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}

.team-slider__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  position: relative;
}

.team-slider__head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.eyebrow--gold { color: var(--gold); }

.team-slider__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #faf8f4;
  margin: 0.5rem 0 0;
}
.team-slider__title em { font-style: italic; color: var(--gold); }

/* Bühne: alle Slides gestapelt, nur .is-active sichtbar */
.team-slider__stage {
  position: relative;
  min-height: clamp(440px, 50vw, 580px);
}

.team-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
  pointer-events: none;
}
.team-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }

/* Riesiger Vorname im Hintergrund */
.team-slide__bg {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-54%);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: var(--gold);
  opacity: 0.16;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Text links */
.team-slide__text { position: relative; z-index: 3; max-width: 30rem; }
.team-slide__name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  color: #faf8f4;
  margin: 0 0 1rem;
}
.team-slide__role {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  line-height: 1.7;
}
.team-slide__bio {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: rgba(250, 248, 244, 0.72);
  margin: 1.4rem 0 0;
  max-width: 26rem;
}

/* Foto rechts (freigestellt, steht auf der Bodenlinie) */
.team-slide__photo {
  position: relative;
  z-index: 2;
  height: clamp(440px, 50vw, 580px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-slide__photo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.45));
}

/* Steuerung */
.team-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(1rem, 2vw, 1.8rem);
  position: relative;
  z-index: 4;
}
.team-slider__arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, 0.45);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease-out), color 0.3s, border-color 0.3s, transform 0.3s;
}
.team-slider__arrow:hover { background: var(--gold); color: var(--dark-bg); transform: scale(1.06); }
.team-slider__arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Pfeile flankieren die Person: links + rechts der Bühne, vertikal mittig */
.team-slider__arrow--prev,
.team-slider__arrow--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(12, 11, 9, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.team-slider__arrow--prev { left: 50%; }
.team-slider__arrow--next { right: 0; }
.team-slider__arrow--prev:hover,
.team-slider__arrow--next:hover { transform: translateY(-50%) scale(1.06); background: var(--gold); }
.team-slider__counter {
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #faf8f4;
  font-variant-numeric: tabular-nums;
}
.team-slider__counter-total { color: rgba(250, 248, 244, 0.45); }

/* Tablet */
@media (max-width: 900px) {
  .team-slide { grid-template-columns: 1fr 0.85fr; gap: 1rem; }
  .team-slide__bg { font-size: clamp(4rem, 15vw, 9rem); }
}

/* Mobile: Foto oben, Text darunter, zentriert */
@media (max-width: 640px) {
  .team-slider__stage { min-height: 540px; }
  .team-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }
  .team-slide__photo { height: 320px; order: 1; }
  .team-slide__text { order: 2; max-width: 100%; }
  .team-slide__bio { margin-left: auto; margin-right: auto; }
  .team-slide__bg {
    font-size: clamp(3.5rem, 26vw, 7rem);
    top: 130px;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.13;
  }
  /* Pfeile flankieren das Foto auf Foto-Mitte (160px = 320px/2) */
  .team-slider__arrow--prev,
  .team-slider__arrow--next {
    top: 160px;
    width: 44px;
    height: 44px;
  }
  .team-slider__arrow--prev { left: 0; }
  .team-slider__arrow--next { right: 0; }
  .team-slider__controls { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .team-slide { transition: opacity 0.01s linear; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER-CREDIT — dezenter goRealise-Brandmark
═══════════════════════════════════════════════════════════════ */
.footer__credit {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.45);
  margin: 1.5rem 0 0;
  padding: 0;
}

.footer__credit-heart {
  color: var(--gold);
  display: inline-block;
  margin: 0 0.15rem;
  font-size: 0.85rem;
  animation: heartPulse 3s ease-in-out infinite;
  vertical-align: -1px;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.footer__credit-link {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  padding-bottom: 1px;
}

.footer__credit-link:hover,
.footer__credit-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Auf hellem Footer (Impressum/Datenschutz nutzen denselben dunklen Footer,
   daher hier nichts extra nötig) */

@media (prefers-reduced-motion: reduce) {
  .footer__credit-heart { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   TEAM-GRUPPENFOTO
═══════════════════════════════════════════════════════════════ */

/* Auf index.html: about__team-placeholder mit echtem Bild */
.about__team-placeholder--has-img {
  background: var(--surface);
  display: block;
  position: relative;
  overflow: hidden;
}

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

/* Auf team.html: neue Team-Group-Section */
.team-group {
  background: var(--bg);
  padding: 5rem 0 6rem;
}

.team-group__intro {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
  margin-top: 1.2rem;
}

.team-group__photo {
  margin: 3rem 0 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(184, 146, 74, 0.12);
}

.team-group__photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-out, ease-out);
}

.team-group__photo:hover img {
  transform: scale(1.02);
}

.team-group__caption {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(12, 11, 9, 0.65);
  padding: 0.5rem 0.9rem;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .team-group { padding: 3.5rem 0 4rem; }
  .team-group__caption {
    font-size: 0.7rem;
    left: 1rem;
    bottom: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND-CARD MIT LOGO (klickbar, öffnet brand-modal)
═══════════════════════════════════════════════════════════════ */
.brand-card--logo {
  /* button-reset */
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(184, 146, 74, 0.10);
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;

  /* layout */
  padding: 2.5rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-out);
}

.brand-card--logo:hover,
.brand-card--logo:focus-visible {
  background: var(--surface);
  border-color: rgba(184, 146, 74, 0.35);
  transform: translateY(-3px);
}

.brand-card--logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.brand-card--logo .brand-card__index {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(184, 146, 74, 0.35);
  letter-spacing: 0.05em;
}

.brand-card__logo-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.5rem;
  min-height: 120px;
}

.brand-card__logo {
  max-width: 85%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: contrast(1.02);
  transition: transform 0.5s var(--ease-out);
}

.brand-card--logo:hover .brand-card__logo {
  transform: scale(1.04);
}

/* Text-Logo-Fallback (z.B. Breuning ohne Logo-Datei) */
.brand-card__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Kategorie-Icon-Variante (für Kinderschmuck) */
.brand-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0.85;
  transition: transform 0.5s var(--ease-out), opacity 0.3s ease;
}

.brand-card--logo:hover .brand-card__icon {
  transform: scale(1.08);
  opacity: 1;
}

.brand-card__category-label {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.15;
}

.brand-card__hint {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  transition: opacity 0.3s ease, gap 0.3s ease;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(184, 146, 74, 0.10);
  width: 100%;
  text-align: center;
}

.brand-card--logo:hover .brand-card__hint {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   BRAND-MODAL (Detail-Sicht bei Klick)
═══════════════════════════════════════════════════════════════ */
.brand-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-modal[hidden] { display: none; }
.brand-modal.is-open { opacity: 1; }

.brand-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.brand-modal__inner {
  position: relative;
  background: var(--bg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem 3rem 2.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-modal.is-open .brand-modal__inner {
  transform: translateY(0) scale(1);
}

.brand-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(184, 146, 74, 0.25);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  font-family: var(--font-ui);
  line-height: 1;
}

.brand-modal__close:hover,
.brand-modal__close:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: rotate(90deg);
}

.brand-modal__header {
  margin-bottom: 1.8rem;
  padding-right: 3rem;
}

.brand-modal__tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.brand-modal__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.brand-modal__line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.brand-modal__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.brand-modal__logo-box {
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(184, 146, 74, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.brand-modal__logo-box[hidden] { display: none; }

.brand-modal__body:has(.brand-modal__logo-box[hidden]) {
  grid-template-columns: 1fr;
}

.brand-modal__logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-modal__desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  margin: 0;
}

.brand-modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.brand-modal__gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface);
}

.brand-modal__placeholder {
  grid-column: 1 / -1;
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border: 1px dashed rgba(184, 146, 74, 0.30);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.03em;
}

.brand-modal__footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 146, 74, 0.12);
}

@media (max-width: 768px) {
  .brand-modal {
    padding: 0;
    align-items: stretch;
  }
  .brand-modal__inner {
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    padding: 2.5rem 1.5rem 2rem;
  }
  .brand-modal__close {
    top: 0.8rem;
    right: 0.8rem;
  }
  .brand-modal__header {
    padding-right: 2.5rem;
    margin-bottom: 1.4rem;
  }
  .brand-modal__body {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .brand-modal__logo-box {
    max-width: 160px;
    margin: 0 auto;
  }
  .brand-modal__gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-modal,
  .brand-modal__inner {
    transition: opacity 0.2s ease;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PHONE-FAB — Floating Anruf-Button (Desktop)
═══════════════════════════════════════════════════════════════ */
.phone-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 56px;
  padding: 0 14px 0 17px;
  border-radius: 28px;
  background: var(--gold);
  color: var(--dark-bg);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 8px 24px rgba(184, 146, 74, 0.32),
    0 0 0 0 rgba(184, 146, 74, 0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-out, ease-out),
    transform 0.4s var(--ease-out, ease-out),
    box-shadow 0.3s ease,
    background 0.3s ease;
  animation: phoneFabPulse 3s ease-in-out infinite;
  overflow: hidden;
  white-space: nowrap;
}

.phone-fab--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.phone-fab svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--dark-bg);
}

.phone-fab__label {
  max-width: 0;
  opacity: 0;
  transition: max-width 0.45s var(--ease-out, ease-out), opacity 0.3s ease, margin 0.45s var(--ease-out, ease-out);
  overflow: hidden;
}

.phone-fab:hover,
.phone-fab:focus-visible {
  background: #c9a35a;
  box-shadow:
    0 12px 32px rgba(184, 146, 74, 0.45),
    0 0 0 6px rgba(184, 146, 74, 0.12);
  outline: none;
}

.phone-fab:hover .phone-fab__label,
.phone-fab:focus-visible .phone-fab__label {
  max-width: 200px;
  opacity: 1;
  margin-right: 4px;
}

@keyframes phoneFabPulse {
  0%, 100% {
    box-shadow:
      0 8px 24px rgba(184, 146, 74, 0.32),
      0 0 0 0 rgba(184, 146, 74, 0.5);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(184, 146, 74, 0.32),
      0 0 0 14px rgba(184, 146, 74, 0);
  }
}

/* phone-fab erscheint auf allen Größen — auch auf Mobil (runder Anruf-Button wie Desktop) */

@media (prefers-reduced-motion: reduce) {
  .phone-fab {
    animation: none;
    transition: opacity 0.2s ease;
  }
}

/* ── Hero: dezenter Telefon-Hinweis unter den CTAs (nur index.html) ── */
.hero__phone {
  margin: 1.2rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.7);
  letter-spacing: 0.02em;
}

.hero__phone a {
  color: var(--gold);
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  margin-left: 0.3rem;
  padding-bottom: 1px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.hero__phone a:hover,
.hero__phone a:focus-visible {
  color: #d6a85a;
  border-bottom-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   100 JAHRE BRADLER — Countdown-Section
═══════════════════════════════════════════════════════════════ */
.jubilaeum {
  position: relative;
  background: var(--surface);
  color: var(--text);
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

/* Faint Hintergrund-Typo: 1928 / 2028 */
.jubilaeum__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 5vw, 6rem);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.jubilaeum__bg-line {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--gold);
  opacity: 0.08;
  white-space: nowrap;
}
.jubilaeum__bg-line:first-child { margin-top: -1.5rem; }
.jubilaeum__bg-line:last-child  { margin-top: 1.5rem; }

.jubilaeum__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.jubilaeum__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--text);
  margin: 0.6rem 0 0;
  letter-spacing: -0.01em;
}
.jubilaeum__title em {
  font-style: italic;
  color: var(--gold);
}

.jubilaeum .gold-line {
  margin: 1.6rem auto 0;
}

/* Countdown-Tiles: 4-Spalter Desktop, 2x2 Mobile */
.jubilaeum__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1.2rem);
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 720px;
}

.cd-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(0.5rem, 1.5vw, 1rem);
  background: #fff;
  border: 1px solid rgba(184, 146, 74, 0.3);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 6px 22px rgba(28, 26, 22, 0.05);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cd-tile:hover {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.08);
}

.cd-tile__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: block;
}

.cd-tile__label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.jubilaeum__date {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(28, 26, 22, 0.65);
  margin: 1.8rem 0 0;
}
.jubilaeum__date strong {
  color: var(--text);
  font-weight: 500;
}

.jubilaeum__claim {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin: 2.5rem 0 0;
  letter-spacing: 0.01em;
}
.jubilaeum__claim em {
  font-style: italic;
  color: var(--gold);
}

/* Mobile: 2x2 Grid */
@media (max-width: 640px) {
  .jubilaeum__countdown {
    grid-template-columns: repeat(2, 1fr);
    max-width: 380px;
  }
  .jubilaeum__bg-line {
    font-size: clamp(5rem, 28vw, 9rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANFRAGE-FUNNEL
   Liegt im dunklen CTA-Abschnitt, deshalb helle Schrift auf Gold.
   Markup wird von js/funnel.js erzeugt.
   ═══════════════════════════════════════════════════════════════ */

.funnel {
  /* --dark-muted (#7a7068) kommt auf dem dunklen Grund nur auf 4.07:1.
     Formularbeschriftungen brauchen 4.5:1, deshalb hier eine hellere Stufe. */
  --funnel-muted: #a09689;

  width: 100%;
  max-width: 680px;
  margin: 0.5rem auto 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

/* Honeypot – für Menschen unsichtbar, für Bots verlockend */
.funnel__pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Fortschritt ─────────────────────────────────────────────── */
.funnel__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 5vw, 2.5rem);
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.funnel__progress-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--funnel-muted);
  transition: color 0.4s var(--ease-out);
}

.funnel__progress-step span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(184, 146, 74, 0.3);
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0;
  transition: all 0.4s var(--ease-out);
}

.funnel__progress-step.is-active { color: var(--dark-text); }

.funnel__progress-step.is-active span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark-bg);
}

/* ── Frage-Überschrift ───────────────────────────────────────── */
.funnel__question {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--dark-text);
  text-align: center;
  margin: 0 0 2rem;
}

/* ── Schritt 1: Kacheln ──────────────────────────────────────── */
.funnel__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.funnel__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1.6rem 1.4rem;
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(184, 146, 74, 0.22);
  border-radius: 2px;
  color: var(--dark-text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.funnel__tile:hover,
.funnel__tile:focus-visible {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.08);
  transform: translateY(-2px);
}

.funnel__tile.is-selected {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.12);
}

.funnel__tile-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.funnel__tile-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.funnel__tile-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--funnel-muted);
  line-height: 1.5;
}

/* ── Felder ──────────────────────────────────────────────────── */
.funnel__details { border: 0; margin: 0; padding: 0; }

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

.funnel__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.funnel__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--funnel-muted);
}

.funnel__label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.funnel__input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(184, 146, 74, 0.22);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.funnel__input::placeholder { color: #8e857a; }

.funnel__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.07);
}

.funnel__input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.funnel__textarea { resize: vertical; min-height: 110px; line-height: 1.7; }

select.funnel__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23b8924a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.funnel__input option { background: var(--dark-surface); color: var(--dark-text); }

.funnel__file {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  cursor: pointer;
}

/* Native Datei-Auswahl unsichtbar, aber fokussierbar */
.funnel__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.funnel__file-btn {
  padding: 0.7rem 1.3rem;
  border: 1px solid rgba(184, 146, 74, 0.4);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.funnel__file:hover .funnel__file-btn {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.1);
}

.funnel__file-input:focus-visible + .funnel__file-btn {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.funnel__file-name {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--funnel-muted);
  word-break: break-all;
}

.funnel__file-name.is-set { color: var(--dark-text); }

.funnel__hint {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--funnel-muted);
  line-height: 1.5;
}

/* ── Einwilligung ────────────────────────────────────────────── */
.funnel__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--funnel-muted);
  cursor: pointer;
}

.funnel__consent input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.funnel__consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── Navigation & Meldungen ──────────────────────────────────── */
.funnel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
}

.funnel__back {
  background: none;
  border: 0;
  padding: 0.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--funnel-muted);
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
}

.funnel__back:hover { color: var(--gold); }

.funnel__error {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 2px solid #c0562f;
  background: rgba(192, 86, 47, 0.1);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #e8b9a5;
}

.funnel__smallprint {
  margin: 1.25rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--funnel-muted);
  text-align: center;
}

.funnel__noscript {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--funnel-muted);
  text-align: center;
}

.funnel__noscript a { color: var(--gold); }

/* ── Danke-Zustand ───────────────────────────────────────────── */
.funnel__done {
  text-align: center;
  padding: 2.5rem 1rem;
  animation: funnelDone 0.7s var(--ease-soft) both;
}

.funnel__done-icon { width: 56px; height: 56px; color: var(--gold); }

.funnel__done-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--dark-text);
  margin: 1.25rem 0 0.75rem;
}

.funnel__done-text {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--funnel-muted);
  max-width: 42ch;
  margin: 0 auto;
}

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

@media (prefers-reduced-motion: reduce) {
  .funnel__done { animation: none; }
  .funnel__tile { transition: border-color 0.3s, background 0.3s; }
  .funnel__tile:hover { transform: none; }
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .funnel__tiles,
  .funnel__row { grid-template-columns: 1fr; }

  .funnel__tile { padding: 1.25rem 1.1rem; }

  .funnel__progress { gap: 0.9rem; }

  .funnel__progress-step {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.6rem;
    text-align: center;
  }

  .funnel__nav { flex-direction: column-reverse; align-items: stretch; }
  .funnel__nav .btn { justify-content: center; }
  .funnel__back { text-align: center; }
}
