/* ============================================================
   WYDEHOF — Hell & Frisch Redesign
   ============================================================ */

:root {
  --navy:        #22315b;
  --navy-dark:   #192649;
  --navy-light:  #2e4070;
  --gold:        #c8973a;
  --gold-light:  #e5b96d;
  --white:       #ffffff;
  --cream:       #f8f5ef;
  --cream-mid:   #f0e9dd;
  --bg-light:    #f8f5ef;
  --bg-gray:     #ede8e0;
  --text-dark:   #1d1611;
  --text-medium: #4a3d32;
  --text-muted:  #7a6e62;
  --border:      #e4d9cb;
  --border-light:#ede8df;
  --shadow-sm:   0 1px 4px rgba(34,20,8,.06), 0 1px 2px rgba(34,20,8,.04);
  --shadow-md:   0 4px 16px rgba(34,20,8,.08), 0 2px 6px rgba(34,20,8,.04);
  --shadow-lg:   0 12px 36px rgba(34,20,8,.11), 0 4px 10px rgba(34,20,8,.06);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --max-width:   1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
p { line-height: 1.8; }

/* ====================================================
   HEADER & NAVIGATION
   ==================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-transparent {
  background: transparent;
}
.site-header.is-scrolled {
  background: rgba(248,245,239,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo .logo-img {
  height: 30px;
  width: auto;
}
.site-logo .logo-white { display: block; }
.site-logo .logo-colored { display: none; }
.site-header.is-scrolled .site-logo .logo-white { display: none; }
.site-header.is-scrolled .site-logo .logo-colored { display: block; }

/* Header open badge */
.header-open-badge {
  display: none;
  align-items: center;
  gap: .45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.site-header.is-scrolled .header-open-badge { display: flex; }
.header-open-badge.is-open {
  background: rgba(34,160,80,.1);
  color: #1a7a40;
  border: 1.5px solid rgba(34,160,80,.25);
}
.header-open-badge.is-closing {
  background: rgba(200,151,58,.1);
  color: #9a6a1a;
  border: 1.5px solid rgba(200,151,58,.3);
}
.header-open-badge.is-closed {
  background: rgba(200,60,60,.08);
  color: #a02020;
  border: 1.5px solid rgba(200,60,60,.2);
}
.open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.header-open-badge.is-open .open-dot {
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 1px;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.site-header.is-scrolled .main-nav a { color: var(--text-medium); }
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active { color: var(--navy); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  width: 36px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: .5rem 0 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: .875rem 2rem;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--navy); background: var(--cream); }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 920px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  overflow: hidden;
}
.hero-sm {
  height: 58vh;
  min-height: 380px;
  max-height: 560px;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  inset: -60px 0 -60px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* ---- Hero background images ---- */
.hero-bg-home {
  background: url('../images/wydehof-home-1200.jpg') center/cover no-repeat;
}
@supports (background-image: url('x.avif')) {
  .hero-bg-home {
    background: url('../images/wydehof-home-1200.avif') center/cover no-repeat;
  }
}

.hero-bg-shops {
  background: url('../images/wydehof-geschaefte-1200.jpg') center/cover no-repeat;
}
@supports (background-image: url('x.avif')) {
  .hero-bg-shops {
    background: url('../images/wydehof-geschaefte-1200.avif') center/cover no-repeat;
  }
}

.hero-bg-shops-real {
  background: url('../images/wydehof-geschaefte-1200.jpg') center/cover no-repeat;
}
@supports (background-image: url('x.avif')) {
  .hero-bg-shops-real {
    background: url('../images/wydehof-geschaefte-1200.avif') center/cover no-repeat;
  }
}

.hero-bg-besucher {
  background: url('../images/wydehof-besucher-1200.jpg') center/cover no-repeat;
}
@supports (background-image: url('x.avif')) {
  .hero-bg-besucher {
    background: url('../images/wydehof-besucher-1200.avif') center/cover no-repeat;
  }
}

.hero-bg-center {
  background: url('../images/wydehof-luft-1200.avif') center/cover no-repeat;
  background-color: var(--navy);
}

.hero-bg-kontakt {
  background: url('../images/wydehof-kontakt-1200.jpg') center/cover no-repeat;
}
@supports (background-image: url('x.avif')) {
  .hero-bg-kontakt {
    background: url('../images/wydehof-kontakt-1200.avif') center/cover no-repeat;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,16,42,.90) 0%,
    rgba(8,16,42,.38) 45%,
    rgba(8,16,42,.14) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold-light);
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 2px 32px rgba(0,0,0,.3);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  font-weight: 400;
  line-height: 1.65;
}

/* ====================================================
   QUICK BAR
   ==================================================== */
.quick-bar {
  background: var(--navy);
  padding: 0;
}
.quick-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.quick-bar-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  color: rgba(255,255,255,.75);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.09);
  transition: background var(--transition), color var(--transition);
}
.quick-bar-item:last-child { border-right: none; }
.quick-bar-item:hover { background: rgba(255,255,255,.05); color: var(--white); }
.quick-bar-item svg { color: var(--gold); flex-shrink: 0; }
.quick-bar-item strong { color: var(--white); }

/* Live open status in quick bar */
.quick-bar-open {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.09);
  margin-left: auto;
  color: rgba(255,255,255,.75);
}
.qb-open-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.qb-open-dot.is-open { animation: pulse-dot 2s infinite; }
.qb-open-dot.is-closing { background: var(--gold-light); }
.qb-open-dot.is-closed { background: #f87171; animation: none; }
.qb-open-text { color: var(--white); }
.qb-open-sub { font-weight: 400; color: rgba(255,255,255,.55); font-size: .72rem; }

/* ====================================================
   SECTION BASE
   ==================================================== */
.section { padding: 5.5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-bg { background: var(--white); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header.left { text-align: left; }
.eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: .9rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.section-header.left p { margin: 0; }

/* ====================================================
   FEATURE BLOCKS
   ==================================================== */
.features-list { display: grid; gap: 5rem; }
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-gray);
  box-shadow: var(--shadow-lg);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e0d5 0%, #d8cec4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .875rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .05em;
}

.feature-text .eyebrow { margin-bottom: .75rem; }
.feature-text h2 { margin-bottom: 1rem; }
.feature-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.85; }

/* ====================================================
   CARDS GRID
   ==================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-gray);
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-image img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.75rem; }
.card-body h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.card-body p { color: var(--text-muted); font-size: .9rem; line-height: 1.75; }
.card-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.card-date {
  font-size: .825rem;
  color: var(--text-muted);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ====================================================
   DEALS / AKTIONEN
   ==================================================== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.deal-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.deal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.deal-header {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.deal-logo {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.deal-logo img { max-width: 36px; max-height: 36px; object-fit: contain; }
.deal-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}
.deal-shop-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.deal-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,.1);
  padding: .2rem .6rem;
  border-radius: 100px;
  display: inline-block;
  margin-left: auto;
}
.deal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.deal-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.deal-valid {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.deal-valid svg { color: var(--gold); }

/* ====================================================
   SHOPS GRID
   ==================================================== */
.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.shop-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  gap: .6rem;
  position: relative;
  overflow: hidden;
  min-height: 150px;
}
.shop-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.shop-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.shop-card:hover::after { transform: scaleX(1); }
.shop-card img { max-width: 85%; max-height: 52px; object-fit: contain; margin: 0 auto; }
.shop-card .shop-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}
.shop-card .shop-cat {
  font-size: .68rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
}
.shop-card .shop-floor {
  font-size: .65rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: .15rem .55rem;
  border-radius: 100px;
  display: inline-block;
}
.shop-card .shop-detail-hint {
  font-size: .68rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  opacity: 0;
  transition: opacity var(--transition);
  margin-top: .1rem;
}
.shop-card:hover .shop-detail-hint { opacity: 1; }

/* ====================================================
   SPECIAL HOURS
   ==================================================== */
.special-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.special-hour-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: center;
  transition: box-shadow var(--transition);
}
.special-hour-card:hover { box-shadow: var(--shadow-md); }
.sh-date {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.sh-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.sh-time { font-size: .875rem; color: var(--text-muted); }
.sh-time.closed { color: #d64040; font-weight: 600; }
.sh-note { font-size: .75rem; color: var(--text-muted); margin-top: .35rem; }

.hours-alert {
  background: rgba(200,151,58,.07);
  border: 1.5px solid rgba(200,151,58,.28);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.hours-alert-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hours-alert strong { display: block; color: var(--navy); margin-bottom: .25rem; }
.hours-alert p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ====================================================
   STATS BAR
   ==================================================== */
.stats-bar { background: var(--navy); padding: 4.5rem 2rem; }
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ====================================================
   FLOOR SERVICES
   ==================================================== */
.floor-grid { display: grid; gap: 1rem; max-width: 860px; margin: 0 auto; }
.floor-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.floor-row:hover { box-shadow: var(--shadow-md); }
.floor-badge {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.floor-badge.ug { background: var(--navy-dark); }
.floor-badge.eg { background: var(--navy); }
.floor-badge.og { background: var(--navy-light); }
.floor-content h3 { font-size: 1rem; margin-bottom: .6rem; }
.floor-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.pill {
  font-size: .78rem;
  color: var(--text-medium);
  padding: .22rem .75rem;
  background: var(--cream);
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ====================================================
   TRANSPORT / INFO CARDS
   ==================================================== */
.info-feature { display: grid; gap: 1.25rem; }
.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon {
  width: 52px; height: 52px;
  background: rgba(34,49,91,.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.info-text h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.info-text p { color: var(--text-muted); font-size: .925rem; line-height: 1.8; }
.bus-stops { margin-top: .6rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.bus-stop-badge {
  font-size: .78rem;
  color: var(--navy);
  background: rgba(34,49,91,.07);
  padding: .22rem .75rem;
  border-radius: 100px;
  font-weight: 500;
}

/* ====================================================
   CTA BAND
   ==================================================== */
.cta-band {
  background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 5.5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 2.25rem; line-height: 1.8; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,49,91,.32);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8872a;
  border-color: #b8872a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,58,.35);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ====================================================
   SIDE WIDGETS (sticky)
   ==================================================== */
.side-widgets {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
}
.side-widget {
  display: flex;
  align-items: center;
  gap: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-right: 3px solid var(--gold);
  overflow: hidden;
  transition: width var(--transition), background var(--transition);
  text-decoration: none;
}
.side-widget:hover { width: 170px; background: var(--gold); }
.side-widget svg { flex-shrink: 0; margin: 0 10px; }
.side-widget-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
}
.side-widget:hover .side-widget-label { opacity: 1; }

/* ====================================================
   CONTACT
   ==================================================== */
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrap h2 { margin-bottom: 1rem; }
.contact-wrap p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.025rem; line-height: 1.85; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1rem 2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  margin-bottom: 2.5rem;
  background: var(--white);
}
.contact-email:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 380px;
  background: var(--bg-gray);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  background: linear-gradient(135deg, #ede8e0 0%, #e0d8ce 100%);
}
.map-placeholder svg { color: var(--navy); opacity: .3; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 5rem 2rem 2.5rem; }
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col p,
.footer-col address { font-size: .875rem; line-height: 1.9; font-style: normal; color: rgba(255,255,255,.62); }
.footer-links-list { display: grid; gap: .35rem; }
.footer-links-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  transition: color var(--transition);
}
.footer-links-list a:hover { color: var(--gold); }

.hours-table { display: grid; gap: .3rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.hours-row .day { color: rgba(255,255,255,.5); }
.hours-row .time { color: rgba(255,255,255,.85); font-weight: 500; }
.hours-row.highlight .time { color: var(--gold); }
.hours-row.closed .time { color: rgba(255,255,255,.35); font-style: italic; }

.footer-amenities { display: grid; gap: .5rem; }
.amenity {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.62);
}
.amenity svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-credit a { color: var(--gold); }

/* ====================================================
   GEWERBEFLÄCHE
   ==================================================== */
.gewerbe-highlight {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
.gewerbe-image {
  background: var(--bg-gray);
  min-height: 320px;
  overflow: hidden;
}
.gewerbe-image img { width: 100%; height: 100%; object-fit: cover; }
.gewerbe-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gewerbe-body h2 { margin-bottom: 1rem; }
.gewerbe-body p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.85; }

/* ====================================================
   MODAL
   ==================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 36, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 2.5rem 2rem 2rem;
  border-radius: 24px 24px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.modal-logo-wrap {
  width: 100px; height: 60px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.modal-logo-wrap img { max-width: 100%; max-height: 42px; object-fit: contain; }
.modal-logo-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.3;
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.1;
}
.modal-badges { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.modal-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}
.modal-badge.floor { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.modal-badge.cat   { background: rgba(200,151,58,.2);  border-color: rgba(200,151,58,.4); color: var(--gold-light); }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.3); }

.modal-body { padding: 1.75rem 2rem; }

.modal-info-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.modal-info-row:last-of-type { border-bottom: none; }
.modal-info-icon {
  width: 36px; height: 36px;
  background: rgba(34,49,91,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.modal-info-content { flex: 1; min-width: 0; }
.modal-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.modal-info-value {
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.modal-info-value a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(34,49,91,.3);
  transition: color var(--transition);
  word-break: break-all;
}
.modal-info-value a:hover { color: var(--gold); }

.modal-hours { display: grid; gap: .3rem; margin-top: .4rem; }
.modal-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.modal-hours-row .mh-day { color: var(--text-muted); }
.modal-hours-row .mh-time { font-weight: 600; color: var(--text-dark); }
.modal-hours-row.highlight .mh-time { color: var(--gold); }
.modal-hours-row.closed-row .mh-time { color: #d64040; font-weight: 500; }

.modal-social { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .4rem; }
.modal-social-link {
  width: 36px; height: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}
.modal-social-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.modal-description {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: .75rem 0 .25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: .25rem;
}

/* ====================================================
   LOADING SKELETON
   ==================================================== */
.skeleton {
  background: linear-gradient(90deg, #ede8e0 25%, #e4ddd4 50%, #ede8e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ====================================================
   UTILITIES
   ==================================================== */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .feature-block { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .gewerbe-highlight { grid-template-columns: 1fr; }
  .gewerbe-image { min-height: 240px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  .mobile-nav { display: block; }
  .header-open-badge { display: none !important; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .feature-block { grid-template-columns: 1fr; gap: 2rem; }
  .feature-block.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 1.5rem; }
  .quick-bar-inner { flex-direction: column; }
  .quick-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .quick-bar-item:last-child { border-bottom: none; }
  .quick-bar-open { margin-left: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .side-widgets { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .shops-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 50px; }
  .hero-sub { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .special-hours-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
}
