/* ================================================
   URBAN ALPINE — Design System & UI Mockup
   "Gallery meets Urban Industry meets Premium Experience"
   ================================================ */

/* ── Design Tokens ── */
:root {
  /* Background hierarchy */
  --bg-primary:    #0A0A0A;
  --bg-surface:    #141414;
  --bg-card:       #1E1E1E;
  --bg-elevated:   #252525;
  
  /* Text hierarchy */
  --text-primary:  #F5F0EB;
  --text-secondary:#B0AAA0;
  --text-muted:    #8A8579;
  --text-faint:    #555048;
  
  /* Accent — warm sand (very reduced) */
  --accent:        #C4A46C;
  --accent-dim:    #8B7750;
  --accent-glow:   rgba(196, 164, 108, 0.12);
  
  /* Semantic */
  --border:        #2A2A2A;
  --border-subtle: #1E1E1E;
  --emergency:     #D94F3B;
  --success:       #5A8A3C;
  
  /* Typography */
  --font-display:  'Clash Grotesk', 'Helvetica Neue', sans-serif;
  --font-body:     'Switzer', 'Helvetica Neue', sans-serif;
  
  /* Spacing (4px base) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px;  --sp-10: 40px;
  
  /* Radius */
  --r-none: 0;  --r-sm: 4px;  --r-md: 8px;  --r-lg: 12px;  --r-pill: 20px;
  
  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  /* Safe area für iPhone Notch/Dynamic Island */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  background: #0a0a0a;
  color: var(--text-primary);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ── Prototype Wrapper ── */
.prototype-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px;
  max-height: 100dvh;
}

/* ── Design System Panel ── */
.design-panel {
  width: 320px;
  max-height: 90vh;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: none;
  flex-shrink: 0;
  flex-direction: column;
}
.design-panel.open { display: flex; }
.design-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.design-panel-header h2 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.02em;
}
.panel-close {
  color: var(--text-muted);
  padding: var(--sp-1);
  transition: color 0.2s;
}
.panel-close:hover { color: var(--text-primary); }
.design-panel-content {
  overflow-y: auto;
  padding: var(--sp-4) var(--sp-5);
  flex: 1;
}
.ds-section { margin-bottom: var(--sp-6); }
.ds-section h3 {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.ds-colors { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.ds-color-item { display: flex; align-items: center; gap: var(--sp-2); width: calc(50% - 4px); margin-bottom: var(--sp-1); }
.ds-swatch { width: 28px; height: 28px; border-radius: var(--r-sm); flex-shrink: 0; }
.ds-color-item span { font-size: 11px; line-height: 1.3; color: var(--text-secondary); }
.ds-color-item code { font-size: 10px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.ds-type-sample { margin-bottom: var(--sp-3); }
.ds-type-display { font-family: var(--font-display); font-size: 22px; font-weight: 600; display: block; }
.ds-type-body { font-family: var(--font-body); font-size: 18px; font-weight: 400; display: block; }
.ds-type-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.ds-type-scale { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); padding: var(--sp-3); background: var(--bg-primary); border-radius: var(--r-md); }
.ds-spacing { display: flex; flex-direction: column; gap: var(--sp-2); }
.ds-space-item { display: flex; align-items: center; gap: var(--sp-3); }
.ds-space-block { background: var(--accent); border-radius: 2px; opacity: 0.6; }
.ds-space-item span { font-size: 11px; color: var(--text-muted); }
.ds-component-note {
  font-size: 12px; line-height: 1.6; color: var(--text-secondary);
  padding: var(--sp-3); background: var(--bg-primary); border-radius: var(--r-md);
}
.ds-component-note strong { color: var(--text-primary); font-weight: 500; }

/* ── Controls Bar ── */
.controls-bar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: var(--sp-3);
  z-index: 100;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-3);
}
.ctrl-btn {
  display: flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  font-size: 12px; color: var(--text-muted);
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.ctrl-btn:hover { color: var(--text-primary); background: var(--bg-card); }
.screen-indicator {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding: var(--sp-1) var(--sp-3);
}

/* ── Phone Frame ── */
.phone-frame {
  width: 375px;
  height: min(812px, 90vh);
  background: var(--bg-primary);
  border-radius: 44px;
  border: 3px solid #2A2A2A;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px #111, 0 20px 60px rgba(0,0,0,0.6);
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 34px;
  background: var(--bg-primary);
  border-radius: 0 0 20px 20px;
  z-index: 50;
}
.phone-screen {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
}
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 134px; height: 5px;
  background: #444;
  border-radius: 3px;
  z-index: 50;
}

/* ── Screens ── */
.screen {
  position: absolute; inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  padding-bottom: 80px;
  scrollbar-width: none;
}
.screen::-webkit-scrollbar { display: none; }
.screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* ── Status Bar ── */
.status-bar {
  position: sticky; top: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px var(--sp-5) var(--sp-2);
  font-size: 13px; font-weight: 500;
}
.status-icons { display: flex; gap: var(--sp-1); color: var(--text-muted); }

/* ── HOME SCREEN ── */
.home-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.home-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.2) 100%);
}
.home-hero-content {
  position: absolute; bottom: var(--sp-5); left: var(--sp-5); right: var(--sp-5);
}
.home-event-badge {
  display: inline-block;
  padding: 2px var(--sp-2);
  background: var(--emergency);
  color: white;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-2);
}
.home-day-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--sp-1);
}
.home-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.home-route-status {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 12px; color: var(--text-secondary);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}
.status-dot.active {
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

/* Navigation Grid */
.home-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
}
.nav-tile {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: var(--sp-4) var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease);
  text-align: left;
  min-height: 88px;
}
.nav-tile:active {
  transform: scale(0.97);
  background: var(--bg-elevated);
}
.nav-tile-icon {
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.nav-tile-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.nav-tile-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* Home Alert */
.home-alert {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  margin: 0 var(--sp-4) var(--sp-3);
  padding: var(--sp-3);
  background: rgba(196, 164, 108, 0.08);
  border: 1px solid rgba(196, 164, 108, 0.15);
  border-radius: var(--r-md);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.home-alert i { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* Emergency Bar */
.emergency-bar {
  display: flex; align-items: center; gap: var(--sp-2);
  margin: 0 var(--sp-4) var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(217, 79, 59, 0.08);
  border: 1px solid rgba(217, 79, 59, 0.2);
  border-radius: var(--r-md);
  font-size: 12px; font-weight: 500;
  color: var(--emergency);
  width: calc(100% - 32px);
  transition: background 0.2s;
}
.emergency-bar:active { background: rgba(217, 79, 59, 0.15); }
.emergency-bar i:last-child { margin-left: auto; }

/* ── SCREEN HEADER ── */
.screen-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 44px var(--sp-4) var(--sp-3);
  background: var(--bg-primary);
}
.screen-header.transparent {
  background: transparent;
  position: absolute;
  width: 100%;
}
.screen-header h2 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
}
.screen-header .header-sub {
  font-size: 12px; color: var(--text-muted);
  margin-left: auto;
}
.back-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
  transition: background 0.2s;
}
.back-btn:active { background: var(--bg-card); }
.back-btn.light {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── ROADBOOK ── */
.roadbook-map {
  position: relative;
  margin: 0 var(--sp-4) var(--sp-4);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-svg { display: block; width: 100%; }
.map-distance-badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 500;
  color: var(--accent);
}

.roadbook-stops { padding: 0 var(--sp-4); }
.stop-item {
  display: flex; gap: var(--sp-3);
  padding-bottom: var(--sp-5);
}
.stop-timeline {
  display: flex; flex-direction: column; align-items: center;
  width: 20px; flex-shrink: 0;
  padding-top: 4px;
}
.stop-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-primary);
  flex-shrink: 0;
}
.stop-dot.completed { background: var(--text-muted); border-color: var(--text-muted); }
.stop-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.stop-line {
  width: 1px; flex: 1;
  background: var(--border);
  margin-top: var(--sp-1);
}
.stop-content { flex: 1; }
.stop-time {
  font-size: 11px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.stop-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.stop-item.completed .stop-name { color: var(--text-muted); }
.stop-desc {
  font-size: 12px; color: var(--text-secondary);
  line-height: 1.4;
}
.stop-item.completed .stop-desc { color: var(--text-faint); }
.stop-tag {
  display: inline-block;
  margin-top: var(--sp-1);
  padding: 1px var(--sp-2);
  font-size: 9px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.stop-actions { margin-top: var(--sp-2); }
.btn-navigate {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  background: var(--accent);
  color: #0A0A0A;
  font-size: 12px; font-weight: 600;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}
.btn-navigate:active { opacity: 0.85; transform: scale(0.97); }

/* ── AGENDA ── */
.day-selector {
  display: flex; gap: var(--sp-2);
  padding: 0 var(--sp-4) var(--sp-4);
  overflow-x: auto;
  scrollbar-width: none;
}
.day-selector::-webkit-scrollbar { display: none; }
.day-btn {
  padding: var(--sp-2) var(--sp-3);
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: all 0.2s;
}
.day-btn.active {
  background: var(--accent);
  color: #0A0A0A;
  border-color: var(--accent);
}

.agenda-timeline { padding: 0 var(--sp-4); }
.agenda-block {
  display: flex; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.agenda-time {
  width: 42px; flex-shrink: 0;
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  padding-top: var(--sp-3);
  font-variant-numeric: tabular-nums;
}
.agenda-block.past .agenda-time { color: var(--text-faint); }
.agenda-card {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
}
.agenda-card.highlight {
  border-color: var(--accent-dim);
  background: rgba(196, 164, 108, 0.06);
}
.agenda-block.past .agenda-card { opacity: 0.5; }
.agenda-card-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}
.agenda-card.highlight .agenda-card-label { color: var(--accent); }
.agenda-card-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  margin-bottom: 2px;
}
.agenda-card-detail {
  font-size: 12px;
  color: var(--text-secondary);
}
.agenda-now-badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  padding: 1px var(--sp-2);
  background: var(--accent);
  color: #0A0A0A;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--r-sm);
}

/* ── HOTEL ── */
.hotel-hero {
  position: relative;
  height: 260px;
}
.hotel-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}
.hotel-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-primary) 5%, transparent 50%);
}
.hotel-content { padding: 0 var(--sp-5); }
.hotel-badge {
  display: inline-block;
  padding: 2px var(--sp-2);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-2);
}
.hotel-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--sp-1);
}
.hotel-address {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.hotel-times {
  display: flex; align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}
.time-block { flex: 1; text-align: center; }
.time-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}
.time-value {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.time-note {
  font-size: 11px; color: var(--text-muted);
}
.time-divider {
  width: 1px; height: 48px;
  background: var(--border);
}
.hotel-room-info {
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
}
.room-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}
.room-number {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  margin-bottom: 2px;
}
.room-details {
  font-size: 12px; color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.hotel-actions {
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--accent);
  color: #0A0A0A;
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-md);
  min-height: 48px;
  transition: all 0.2s;
}
.btn-primary:active { opacity: 0.85; transform: scale(0.98); }
.btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: transparent;
  color: var(--text-primary);
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-height: 48px;
  transition: all 0.2s;
}
.btn-secondary:active { background: var(--bg-card); }

/* ── FOOD / MENU ── */
.food-hero {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.food-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.1);
}
.food-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-primary) 5%, transparent 60%);
}
.food-hero-text {
  position: absolute; bottom: var(--sp-4); left: var(--sp-4);
}
.food-venue {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
}
.food-time {
  font-size: 12px; color: var(--text-muted);
  margin-top: 2px;
}

.menu-content { padding: var(--sp-4); }
.menu-section { margin-bottom: var(--sp-6); }
.menu-section-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.menu-item {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  margin-bottom: 2px;
}
.menu-item-desc {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.5;
}
.menu-item-tag {
  display: inline-block;
  margin-top: var(--sp-1);
  padding: 1px var(--sp-2);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--success);
  border: 1px solid rgba(90, 138, 60, 0.3);
  border-radius: var(--r-sm);
}
.menu-note {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--bg-card);
  border-radius: var(--r-md);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: var(--sp-2);
}
.menu-note i { flex-shrink: 0; margin-top: 1px; }

/* ── MEDIA ── */
.media-filter {
  display: flex; gap: var(--sp-2);
  padding: 0 var(--sp-4) var(--sp-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.media-filter::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: var(--sp-1) var(--sp-3);
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: all 0.2s;
}
.filter-btn.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 var(--sp-4);
}
.media-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
}
.media-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.media-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.media-placeholder {
  width: 100%; height: 100%;
}
.media-item-badge {
  position: absolute; bottom: var(--sp-2); right: var(--sp-2);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: white;
}

/* ── PARTNER ── */
.partner-content { padding: var(--sp-4); }
.partner-tier { margin-bottom: var(--sp-6); }
.partner-tier-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}
.partner-logos.main { grid-template-columns: 1fr; }
.partner-logos.small { grid-template-columns: repeat(2, 1fr); }
.partner-logo-card {
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-5) var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.partner-logo-card.main {
  padding: var(--sp-8) var(--sp-4);
  border-color: var(--accent-dim);
}
.partner-logo-card.small { padding: var(--sp-3); }
.partner-note {
  font-size: 11px; color: var(--text-faint);
  line-height: 1.5;
  font-style: italic;
  margin-top: var(--sp-4);
  padding: var(--sp-3);
  border-left: 2px solid var(--border);
}

/* ── EMERGENCY ── */
.emergency-content { padding: var(--sp-4); }
.emergency-card {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
}
.emergency-card.urgent {
  border-color: rgba(217, 79, 59, 0.3);
  background: rgba(217, 79, 59, 0.06);
}
.emergency-card.urgent i { color: var(--emergency); }
.emergency-card i { color: var(--text-muted); flex-shrink: 0; }
.emergency-card-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
}
.emergency-card-sub {
  font-size: 12px; color: var(--text-muted);
}
.emergency-number {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--emergency);
  white-space: nowrap;
}
.emergency-info {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.emergency-info h3 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  margin-bottom: var(--sp-2);
}
.emergency-info p {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.6;
}

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: var(--sp-2) 0 26px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  z-index: 45;
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: var(--sp-1);
  color: var(--text-faint);
  font-size: 10px;
  transition: color 0.2s;
  min-width: 52px;
}
.nav-item.active { color: var(--accent); }
.nav-item span { font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .design-panel { display: none !important; }
  .prototype-wrapper { padding: 0; justify-content: center; }
  .phone-frame {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .phone-notch { display: none; }
  .phone-home-indicator { display: none; }
  .controls-bar { top: 4px; }
}

/* ── Reiseunterlagen Screen ──────────────────────────────────────── */
.docs-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.docs-day-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.docs-day-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2px;
}

.docs-day-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.docs-day-route {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

.docs-hotel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.docs-hotel-card.active {
  border-color: rgba(196,164,108,.35);
  background: rgba(196,164,108,.04);
}

.docs-hotel-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.docs-hotel-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 2px 8px;
  flex-shrink: 0;
}

.docs-hotel-badge.today {
  color: var(--accent);
  background: rgba(196,164,108,.1);
  border-color: rgba(196,164,108,.25);
}

.docs-hotel-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.docs-hotel-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.docs-hotel-address i,
.docs-room-row i,
.docs-note i {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-dim);
}

.docs-hotel-times {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.docs-time-item {
  flex: 1;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.docs-time-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.docs-time-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.docs-time-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.docs-time-val.accent { color: var(--accent); }

.docs-room-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-secondary);
}

.docs-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text-muted);
  background: rgba(196,164,108,.05);
  border: 1px solid rgba(196,164,108,.12);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  line-height: 1.5;
}

.docs-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 2px 0;
  margin-top: 4px;
}

.docs-doc-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.docs-doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.docs-doc-item:last-child { border-bottom: none; }

.docs-doc-item > i:first-child {
  color: var(--accent-dim);
  flex-shrink: 0;
}

.docs-doc-info {
  flex: 1;
  min-width: 0;
}

.docs-doc-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.docs-doc-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.docs-doc-dl {
  color: var(--text-faint);
  flex-shrink: 0;
}
