/* ==========================================================================
   IN SCHÄFER GMBH — DESIGN SYSTEM & STYLESHEET
   Aesthetics: Sexy, Minimalist, Premium Dark Neon Red Vibe
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-obsidian: #fdf2f3; /* Ultra-light, premium soft rose-red editorial background */ /* Elegant, ultra-premium soft warm Cashmere Clay instead of harsh black or pure white */
  --bg-card: rgba(255, 255, 255, 0.85); /* High-end translucent white glass cards */
  --bg-header: rgba(253, 242, 243, 0.85); /* Matching translucent soft rose header */ /* Translucent Cashmere header */
  --border-glass: rgba(0, 0, 0, 0.04); /* Subtly elegant dark outline instead of white lines */
  --border-glow-hover: rgba(236, 0, 12, 0.45); /* Vibrant glowing red on hover */
  
  --brand-red: #ec000c;
  --brand-red-glow: rgba(236, 0, 12, 0.15); /* Soft, beautiful glow */
  --brand-red-glow-strong: rgba(236, 0, 12, 0.35); /* Elegant glow */
  --brand-red-dim: rgba(236, 0, 12, 0.06); /* Rosy ambient light aura */
  
  --text-primary: #18181b; /* Rich deep charcoal zinc for perfect readability and premium editorial look */
  --text-secondary: #52525b; /* Soft warm gray description text */
  --text-muted: #8c8c96;
  
  --neon-green: #059669; /* Soft forest green instead of toxic green */
  --neon-green-glow: rgba(5, 150, 105, 0.2);
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  
  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. GLOBAL & RESET
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #1c1c22;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-red);
}

/* Selection */
::selection {
  background-color: var(--brand-red);
  color: #fff;
}

/* --------------------------------------------------------------------------
   3. BACKGROUND EFFECTS (CINEMATIC FILM GRAIN & GLOWS)
   -------------------------------------------------------------------------- */
/* Analog Film Grain Overlay */
.grain-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E') repeat;
  opacity: 0.045; /* Ultra subtle, highly premium */
  pointer-events: none;
  z-index: 9999;
  animation: grain-animation 8s steps(10) infinite;
}

@keyframes grain-animation {
  0%, 100% { transform:translate(0, 0); }
  10% { transform:translate(-5%, -10%); }
  20% { transform:translate(-15%, 5%); }
  30% { transform:translate(7%, -25%); }
  40% { transform:translate(-5%, 25%); }
  50% { transform:translate(-15%, 10%); }
  60% { transform:translate(15%, 0%); }
  70% { transform:translate(0%, 15%); }
  80% { transform:translate(3%, 35%); }
  90% { transform:translate(-10%, 10%); }
}

/* Pulsing status indicators (live-status dot, hero badge dot) */
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236, 0, 12, 0.45); }
  50%      { box-shadow: 0 0 0 5px rgba(236, 0, 12, 0); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45); }
  50%      { box-shadow: 0 0 0 5px rgba(5, 150, 105, 0); }
}

/* Ambient pointer-follower glow */
#ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(236, 0, 12, 0.12) 0%, rgba(236, 0, 12, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.85;
  mix-blend-mode: multiply; /* beautiful color-multiply on light clay background */
  transition: transform 0.1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Scroll reveal transition properties */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Grid lines for architectural structure */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 4%;
  opacity: 0.05; /* highly subtle on light background */
}
.grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(236, 0, 12, 0) 0%, 
    rgba(236, 0, 12, 0.2) 30%, 
    rgba(236, 0, 12, 0.2) 70%, 
    rgba(236, 0, 12, 0) 100%
  );
}

/* Sleek glowing crimson divider */
.glow-divider {
  height: 1px;
  width: 80%;
  max-width: 1000px;
  background: linear-gradient(to right, rgba(236, 0, 12, 0) 0%, rgba(236, 0, 12, 0.65) 50%, rgba(236, 0, 12, 0) 100%);
  box-shadow: 0 0 15px rgba(236, 0, 12, 0.3);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* --------------------------------------------------------------------------
   4. LAYOUT CONTAINERS & HEADER
   -------------------------------------------------------------------------- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem;
  position: relative;
  z-index: 2;
}

/* Sticky glassmorphic Header */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  display: flex;
  align-items: center;
}
.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.logo-prefix {
  color: var(--text-primary);
}
.logo-divider {
  color: var(--brand-red);
  font-weight: 400;
}
.logo-suffix {
  color: var(--brand-red);
  letter-spacing: 0.05em;
}

/* Nav links */
.desktop-nav {
  display: flex;
  gap: 2.2rem;
}
.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}
.desktop-nav a:hover {
  color: var(--text-primary);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brand-red);
  transition: var(--transition-fast);
}
.desktop-nav a:hover::after {
  width: 100%;
}

/* Live Status Badge */
.live-status-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 0.9rem;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--text-muted);
}
.pulse-indicator.status-open {
  background-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green-glow);
  animation: pulse-green 2s infinite;
}
.pulse-indicator.status-closed {
  background-color: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red-glow);
  animation: pulse-red 2s infinite;
}
.status-loading {
  color: var(--text-secondary);
}
.status-open-text {
  color: var(--text-primary);
  font-weight: 600;
}
.status-closed-text {
  color: var(--text-secondary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
}
.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--bg-obsidian);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.mobile-nav-links a:hover {
  color: var(--brand-red);
}

/* --------------------------------------------------------------------------
   5. BUTTONS & UI COMPONENT BASE
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(236, 0, 12, 0.25);
  border: 1px solid var(--brand-red);
}
.btn-primary:hover {
  background-color: #ff1c2a;
  box-shadow: 0 6px 25px rgba(236, 0, 12, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(5px);
}
.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(236, 0, 12, 0.3);
  transform: translateY(-2px);
}
.btn-card {
  background-color: rgba(236, 0, 12, 0.06);
  color: var(--brand-red);
  border: 1px solid rgba(236, 0, 12, 0.15);
  width: 100%;
  padding: 0.7rem;
  font-size: 0.85rem;
  margin-top: 1rem;
  font-weight: 600;
}
.btn-card:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: #ffffff !important; /* perfectly readable white text on bright red background */
  box-shadow: 0 4px 15px rgba(236, 0, 12, 0.3);
}
.btn-full {
  width: 100%;
}
.svg-icon {
  margin-right: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (MODERN SPLIT-LAYOUT WITH PORTRAIT CARD)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  z-index: 2;
}

/* Ambient blurred backdrop using the night photo */
.hero-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-blur-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(100px) brightness(1.15) opacity(0.12); /* high-end light blur overlay */
  transform: scale(1.15);
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 40%, rgba(236, 0, 12, 0.03) 0%, var(--bg-obsidian) 80%);
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* Split layout columns */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  flex: 1.2;
  max-width: 620px;
  text-align: left;
}

/* Badge overlaying */
.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(236, 0, 12, 0.06);
  border: 1px solid rgba(236, 0, 12, 0.18);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-red);
  box-shadow: 0 0 8px var(--brand-red-glow-strong);
  animation: pulse-red 1.5s infinite;
}
.badge-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #ec000c;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.text-highlight {
  color: var(--brand-red);
  text-shadow: none;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-description strong {
  color: var(--text-primary);
}
.hero-ctas {
  display: flex;
  gap: 1.2rem;
}

/* Portrait Image Card Wrapper */
.hero-image-card-wrapper {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating, glassmorphic portrait card */
.hero-image-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  padding: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.08), 
    0 0 40px rgba(236, 0, 12, 0.02);
  transition: var(--transition-smooth);
  max-width: 380px;
  width: 100%;
}
.hero-image-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(236, 0, 12, 0.25);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.12), 
    0 0 50px rgba(236, 0, 12, 0.08);
}

.hero-featured-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  filter: brightness(0.92) contrast(1.02);
  transition: var(--transition-smooth);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.hero-image-card:hover .hero-featured-img {
  filter: brightness(1) contrast(1.05);
}


/* --------------------------------------------------------------------------
   7. SERVICES GRID SECTION
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  z-index: 2;
}

.section-header {
  margin-bottom: 4.5rem;
  max-width: 650px;
}
.section-header.center-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  display: block;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* Glassmorphic card base styling */
.service-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 3rem 2rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-hover);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
}

/* Internal radial glow that becomes intense on hover */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.015) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.service-card:hover .card-glow {
  background: radial-gradient(circle at 100% 0%, rgba(236, 0, 12, 0.08) 0%, rgba(0,0,0,0) 65%);
}
.service-card:hover .card-glow.red-glow {
  background: radial-gradient(circle at 100% 0%, rgba(236, 0, 12, 0.12) 0%, rgba(0,0,0,0) 70%);
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}
.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}

/* Interactive indicators on cards */
.clickable-card {
  cursor: pointer;
}
.card-action-hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-red);
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition-fast);
  display: block;
}
.clickable-card:hover .card-action-hint {
  transform: translateX(5px);
  color: #ff3a48;
}

/* Specially highlighted cards (eg carwash) */
.highlight-card {
  border: 1px solid rgba(236, 0, 12, 0.15);
  background: linear-gradient(135deg, rgba(20,20,24,0.75) 0%, rgba(236,0,12,0.02) 100%);
}
.highlight-card:hover {
  border-color: var(--brand-red);
}

/* --------------------------------------------------------------------------
   8. LEBERKÄSE-KULT SECTION
   -------------------------------------------------------------------------- */
.leberkaese-section {
  position: relative;
  z-index: 2;
  background-color: rgba(8, 8, 10, 0.3);
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}
.split-info {
  flex: 1;
  max-width: 550px;
}
.split-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.split-desc strong {
  color: var(--text-primary);
}

/* Cult weekday display cards */
.day-cards-row {
  display: flex;
  gap: 1.2rem;
}
.day-mini-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  padding: 1.2rem 1.8rem;
  flex: 1;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}
.day-mini-card.active-day {
  background: rgba(236, 0, 12, 0.1);
  border-color: rgba(236, 0, 12, 0.55);
  box-shadow: 0 0 18px rgba(236, 0, 12, 0.3), 0 5px 20px rgba(236, 0, 12, 0.15);
  animation: day-pulse 2s ease-in-out infinite;
}
@keyframes day-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(236, 0, 12, 0.3), 0 5px 20px rgba(236, 0, 12, 0.15); }
  50%       { box-shadow: 0 0 30px rgba(236, 0, 12, 0.5), 0 5px 25px rgba(236, 0, 12, 0.25); }
}
.day-mini-card .day-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.day-mini-card .day-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.day-mini-card.active-day .day-name {
  color: var(--brand-red);
}
.day-mini-card.active-day .day-status {
  color: var(--brand-red);
  font-weight: 600;
}

.split-widget {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Glassmorphic Countdown Widget styling */
.countdown-widget {
  width: 100%;
  max-width: 440px;
  background-color: #18181b; /* quiet, deep anthracite background */
  border: 1px solid rgba(236, 0, 12, 0.15); /* glowing red border contour */
  border-radius: 12px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 35px rgba(236, 0, 12, 0.12);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1.2rem;
}
.widget-icon {
  font-size: 1.6rem;
}
.widget-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.status-primary {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  min-height: 2.2rem;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03); /* dark translucent glass */
  border: 1px solid rgba(236, 0, 12, 0.15);
  padding: 1rem;
  border-radius: 6px;
  min-width: 75px;
}
.time-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.countdown-timer.active-today-pulse .time-num {
  color: #ff3a48;
  text-shadow: 0 0 20px var(--brand-red-glow);
}
.time-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}
.time-separator {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 700;
}
.status-secondary {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Background gradient inside widget */
.widget-bg-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(236, 0, 12, 0.06) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   9. CAR WASH SECTION WITH ANIMATIONS
   -------------------------------------------------------------------------- */
.carwash-section {
  position: relative;
  z-index: 2;
}

.wash-selector-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Wash selector tabs */
.wash-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.5rem;
  overflow-x: auto;
}
.wash-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  transition: var(--transition-smooth);
  min-width: 180px;
}
.wash-tab:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
.wash-tab.active {
  background-color: rgba(236, 0, 12, 0.06);
  border-color: rgba(236, 0, 12, 0.35);
  box-shadow: 0 4px 15px rgba(236, 0, 12, 0.08);
}
.wash-tab--top {
  position: relative;
}
.tab-top-label {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 0.3rem;
}
.tab-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.wash-tab.active .tab-num {
  color: var(--brand-red);
}
.tab-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.wash-tab.active .tab-name {
  color: var(--brand-red);
}

/* Main display card */
.wash-display-card {
  display: flex;
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wash-info {
  flex: 1.2;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border-glass);
}
/* When the wash card has no image, the info column spans the full width */
.wash-display-card--full .wash-info {
  border-right: none;
}
.wash-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background-color: rgba(236, 0, 12, 0.1);
  border: 1px solid rgba(236, 0, 12, 0.2);
  color: #ff3a48;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.wash-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.wash-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 4.5rem;
}

.wash-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.wash-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.check-icon {
  color: var(--brand-red);
  font-weight: bold;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.price-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 0.3rem;
}
.price-value {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
}


/* --------------------------------------------------------------------------
   10. TCHIBO COFFEE MODAL OVERLAY
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 22, 0.55); /* elegant dark blur backdrop */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  width: 100%;
  max-width: 580px;
  background-color: #ffffff; /* pure white glass */
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 3.5rem;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-smooth);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}
.modal-overlay.active .modal-card {
  transform: scale(1);
  border-color: rgba(236,0,12,0.2);
  box-shadow: 0 30px 70px rgba(236,0,12,0.06);
}

.close-modal-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--text-secondary);
  line-height: 1;
  transition: var(--transition-fast);
}
.close-modal-btn:hover {
  color: var(--brand-red);
}

.modal-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1.5rem;
}
.modal-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.modal-body p {
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
}

.coffee-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.coffee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255,255,255,0.01);
  border: 1px solid var(--border-glass);
  padding: 1.2rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}
.coffee-item:hover {
  border-color: rgba(236,0,12,0.2);
  background-color: rgba(236,0,12,0.02);
  transform: translateY(-2px);
}
.coffee-emoji {
  font-size: 1.8rem;
}
.coffee-details h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.coffee-details span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   11. CONTACT, GLASS-FORM & GOOGLE MAPS
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  z-index: 2;
}

.contact-info-row {
  margin-bottom: 3rem;
}
.info-blocks--row {
  flex-direction: row !important;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.contact-mail {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 500;
}
.contact-mail:hover {
  text-decoration: underline;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.info-block {
  display: flex;
  gap: 1.2rem;
}
.info-icon {
  font-size: 1.8rem;
  color: var(--brand-red);
}
.info-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.info-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* Styled Google Maps iframe wrapper */
.map-wrapper {
  position: relative;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: var(--bg-card);
}
.map-wrapper iframe {
  filter: grayscale(0.6) contrast(1.05) brightness(1.02); /* clean elegant grayscale for light-clay mode */
  transition: var(--transition-smooth);
}
.map-wrapper:hover iframe {
  filter: grayscale(0) contrast(1.05) brightness(1.02); /* interactive grayscale focus on hover */
}
.map-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 2;
}

/* Google Maps click-to-load consent placeholder */
.map-consent {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: rgba(236, 0, 12, 0.02);
  background-image:
    linear-gradient(rgba(236, 0, 12, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 0, 12, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-consent-inner {
  max-width: 420px;
  position: relative;
  z-index: 3;
}
.map-consent-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}
.map-consent h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.map-consent p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.map-consent a {
  color: var(--brand-red);
}
.map-consent a:hover {
  text-decoration: underline;
}
.map-wrapper iframe {
  display: block;
}

/* --------------------------------------------------------------------------
   12. FOOTER (MINIMALIST & PEACEFUL)
   -------------------------------------------------------------------------- */
footer {
  background-color: #18181b; /* quiet, deep anthracite zinc-black matching dashboard */
  border-top: 1px solid rgba(236, 0, 12, 0.15); /* very clean, thin red contour */
  position: relative;
  z-index: 2;
  color: #a1a1aa;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.footer-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.footer-logo .logo-divider {
  color: var(--brand-red);
}
.footer-tagline {
  font-size: 0.9rem;
  color: #71717a;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}
.footer-legal-links a {
  color: #a1a1aa;
  transition: var(--transition-fast);
}
.footer-legal-links a:hover {
  color: var(--brand-red);
}
.link-dot {
  color: #3f3f46;
  font-size: 0.6rem;
}
.copyright {
  font-size: 0.8rem;
  color: #71717a;
}
@media (max-width: 768px) {
  .footer-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-right {
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   14. PROMOTED SERVICE BADGE ACCENTS
   -------------------------------------------------------------------------- */
.service-badge-accent {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background-color: rgba(236, 0, 12, 0.08);
  border: 1px solid rgba(236, 0, 12, 0.2);
  color: var(--brand-red);
  z-index: 10;
}
.service-badge-accent.gold-badge {
  background-color: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: #b45309; /* warm bronze-gold */
}
.service-badge-accent.blue-badge {
  background-color: rgba(14, 116, 144, 0.08);
  border: 1px solid rgba(14, 116, 144, 0.25);
  color: #0369a1; /* royal blue */
}

.svg-check {
  margin-right: 0.2rem;
  color: var(--brand-red);
  flex-shrink: 0;
  vertical-align: middle;
}

/* Dashboard text overrides for deep dark wine-black background */
.countdown-widget h3, .widget-header h3 {
  color: #ffffff !important;
}
#countdown-status {
  color: #e4e4e7 !important;
}
.countdown-timer .time-num {
  color: #ffffff !important;
}
.countdown-timer .time-label {
  color: #a1a1aa !important;
}
#countdown-footer {
  color: #a1a1aa !important;
}




/* ==========================================================================
   WASH INFO TABS
   ========================================================================== */
.wash-info-tabs {
  margin-top: 2.5rem;
}

.wash-info-btns {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.wash-info-btn {
  flex: 1;
  min-width: 140px;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}
.wash-info-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
}
.wash-info-btn.active {
  background: rgba(236, 0, 12, 0.07);
  border-color: rgba(236, 0, 12, 0.3);
  border-bottom-color: transparent;
  color: var(--brand-red);
  font-weight: 600;
}

.wash-info-panel {
  display: none;
  padding: 1.5rem;
  background: rgba(236, 0, 12, 0.03);
  border: 1px solid rgba(236, 0, 12, 0.2);
  border-radius: 0 10px 10px 10px;
}
.wash-info-panel.active {
  display: block;
}

.wash-checklist {
  margin: 1rem 0 0;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.wash-checklist li {
  padding-left: 0.3rem;
}
.wash-checklist strong {
  color: var(--text-primary);
}

.wash-disclaimer {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(236, 0, 12, 0.07);
  border-left: 3px solid rgba(236, 0, 12, 0.5);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.agb-intro {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.agb-list {
  margin-top: 0.75rem;
}
.agb-sublist {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: disc;
}
.agb-version {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   17. RESPONSIVE DESIGN — SMARTPHONE & TABLET OPTIMIZATION
   ========================================================================== */

/* Offset anchor scrolling so sections don't hide behind the fixed header */
#home, #services, #carwash, #leberkaese, #contact {
  scroll-margin-top: 90px;
}

/* Hamburger → X animation when menu is open */
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ----- TABLET (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .section-container {
    padding: 6rem 2rem;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-split {
    gap: 2.5rem;
  }
  .split-layout {
    gap: 2.5rem;
  }
  .wash-info {
    padding: 2.75rem;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* ----- NAV SWITCH (≤ 900px) ----- */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .live-status-container {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* ----- MOBILE (≤ 768px) ----- */
@media (max-width: 768px) {
  .section-container {
    padding: 4.5rem 1.25rem;
  }

  /* Hero stacks vertically */
  .hero-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 4rem;
  }
  .hero-split {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 3rem;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .badge-accent {
    margin-bottom: 1.5rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-image-card {
    max-width: 320px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-desc {
    font-size: 1rem;
  }

  /* Services: single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    padding: 2.5rem 1.75rem;
  }

  /* Car wash card stacks */
  .wash-display-card {
    flex-direction: column;
  }
  .wash-info {
    padding: 2.5rem 1.75rem;
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }

  /* Leberkäse split stacks */
  .split-layout {
    flex-direction: column;
  }
  .split-info,
  .split-widget {
    max-width: 100%;
    width: 100%;
  }
  .split-widget {
    justify-content: center;
  }
  .countdown-widget {
    max-width: 100%;
    padding: 2.5rem 2rem;
  }

  /* Contact info stacks */
  .info-blocks--row {
    flex-direction: column !important;
    gap: 2rem;
  }

  /* Coffee modal scrolls and single column */
  .modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 5rem 1rem 2rem;
  }
  .modal-card {
    padding: 2.5rem 1.75rem;
  }
  .modal-header h2 {
    font-size: 1.6rem;
  }
  .close-modal-btn {
    top: 1.5rem;
    right: 1.5rem;
  }
  .coffee-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Map shorter on mobile */
  .map-wrapper iframe {
    height: 360px;
  }
  .map-consent {
    min-height: 360px;
  }
}

/* ----- SMALL PHONE (≤ 480px) ----- */
@media (max-width: 480px) {
  .section-container {
    padding: 4rem 1rem;
  }
  .header-container {
    padding: 0 1.25rem;
  }
  .logo {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.7rem;
  }

  /* Wash features single column */
  .wash-features {
    grid-template-columns: 1fr;
  }
  .wash-info {
    padding: 2rem 1.25rem;
  }
  .wash-info-btn {
    min-width: 0;
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
  }

  /* Leberkäse day cards stack */
  .day-cards-row {
    flex-direction: column;
  }

  /* Countdown timer fits narrow screens */
  .countdown-widget {
    padding: 2rem 1.25rem;
  }
  .countdown-timer {
    gap: 0.3rem;
  }
  .time-block {
    min-width: 0;
    flex: 1;
    padding: 0.8rem 0.4rem;
  }
  .time-num {
    font-size: 1.8rem;
  }

  .modal-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   18. LEGAL PAGES (IMPRESSUM / DATENSCHUTZ)
   ========================================================================== */
.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  position: relative;
  z-index: 2;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.legal-back:hover {
  color: var(--brand-red);
}
.legal-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}
.legal-main h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 0.8rem;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.legal-content strong {
  color: var(--text-primary);
}
.legal-content a {
  color: var(--brand-red);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-content ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.legal-card p {
  margin-bottom: 0.3rem;
}
.legal-updated {
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}
@media (max-width: 480px) {
  .legal-main {
    padding: 7rem 1.25rem 4rem;
  }
  .legal-main h1 {
    font-size: 1.9rem;
  }
}

