:root {
  --red: #DC413D;
  --red-dark: #B8322F;
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --brown: #4A3728;
  --brown-light: #6B5344;
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --pink: #F2D5D0;
  --pink-light: #FAE8E5;
  --grey: #8A7E76;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-links a {
  color: var(--brown);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav.scrolled .nav-links a:hover {
  color: var(--red);
}

.nav-jubilee {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-jubilee:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--red);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(220,65,61,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(190,50,48,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(160,40,38,0.6) 0%, transparent 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 6px 30px rgba(0,0,0,0.15);
  opacity: 0;
  animation: scaleIn 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
}

.hero-since {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 2rem;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}

.hero-logo {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.5s ease forwards;
}

.hero-logo img {
  max-width: min(85vw, 420px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
  border-radius: 8px;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 2s ease forwards;
}

.scroll-hint span {
  display: block;
  width: 2px; height: 40px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-hint span::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── About Section ── */
.about-section {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--warm-white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey);
  text-align: center;
  margin-bottom: 3rem;
}

.about-text {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--brown-light);
  text-align: center;
}

.about-text p + p {
  margin-top: 1.5rem;
}

.about-text a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
}

.about-highlight {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--red);
  position: relative;
}

.about-highlight::before,
.about-highlight::after {
  content: '\2014';
  margin: 0 0.5rem;
  color: var(--gold);
}

/* ── Values Section ── */
.values-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.values-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,55,40,0.08);
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── Filialen Section ── */
.filialen-section {
  padding: 6rem 2rem;
  background: var(--warm-white);
}

.filialen-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.filiale-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gold-light);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.filiale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,55,40,0.08);
}

.filiale-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.filiale-badge-hidden {
  visibility: hidden;
}

.filiale-card .pin { font-size: 2rem; margin-bottom: 1rem; display: block; }

.filiale-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.filiale-card .filiale-address {
  font-family: 'Lora', serif;
  color: var(--grey);
  line-height: 1.8;
  font-size: 0.95rem;
}

.filiale-card .filiale-hours {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-light);
}

.filiale-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--red);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.filiale-link:hover { background: var(--red); color: #fff; }

/* ── Jubilee Banner ── */
.jubilee-banner {
  padding: 5rem 2rem;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jubilee-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.jubilee-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.jubilee-year {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.jubilee-text {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
  line-height: 1.6;
}

.jubilee-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: #fff;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jubilee-link:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ── Footer ── */
.footer {
  padding: 3rem 2rem;
  background: var(--brown);
  text-align: center;
  color: rgba(255,255,255,0.7);
  position: relative;
}

.footer p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.footer .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
}

.footer .copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
}

.footer .copyright a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* ── Password Gate ── */
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.pw-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(220,65,61,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(190,50,48,0.8) 0%, transparent 50%);
  z-index: 0;
}

.pw-gate-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.pw-gate-logo img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
  border-radius: 8px;
  margin-bottom: 2rem;
}

.pw-gate-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pw-gate-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.pw-gate-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.pw-gate-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  width: 100%;
  max-width: 260px;
  transition: border-color 0.3s ease;
}

.pw-gate-input::placeholder { color: rgba(255,255,255,0.4); }
.pw-gate-input:focus { border-color: var(--gold-light); }

.pw-gate-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: #fff;
  color: var(--red);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.pw-gate-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.pw-gate-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 1rem;
  min-height: 1.2em;
}

.pw-gate.hidden { display: none; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .filialen-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pw-gate-form { flex-direction: column; align-items: center; }
}
