:root {
  --bg-primary: #f7faf5;
  --bg-secondary: #edf5ea;
  --surface-card: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --surface-dark: #182a15;
  --accent-yellow: #f0b400;
  --accent-yellow-light: #fff8d6;
  --accent-yellow-hover: #ffc41e;
  --accent-yellow-dark: #b88600;
  --accent-green: #347c27;
  --accent-green-light: #eaf5e6;
  --accent-green-hover: #265e1c;
  --accent-glow: rgba(240, 180, 0, 0.25);
  --text-dark: #152212;
  --text-body: #2f422b;
  --text-muted: #5a6e56;
  --border-light: #d8e8d2;
  --border-yellow: #f5d77f;
  --border-glass: rgba(52, 124, 39, 0.18);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); line-height: 1.12; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.3; }

p {
  color: var(--text-body);
  font-size: 1.02rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Header (Non-sticky slim) */
.site-header {
  height: 62px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(24, 42, 21, 0.04);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.brand-logo svg {
  color: var(--accent-green);
}

.brand-logo span.accent {
  color: var(--accent-yellow-dark);
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-green);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-cta {
  background: var(--accent-yellow);
  color: #172413;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-yellow);
}

.btn-header-cta:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-yellow);
  color: #172413;
  border-color: var(--border-yellow);
}

.btn-primary:hover {
  background: var(--accent-yellow-hover);
  box-shadow: 0 4px 16px rgba(240, 180, 0, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent-green);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--accent-green-light);
  border-color: var(--accent-green);
}

.btn-coral {
  background: var(--accent-green);
  color: #ffffff;
}

.btn-coral:hover {
  background: var(--accent-green-hover);
  box-shadow: 0 4px 16px rgba(52, 124, 39, 0.35);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-py {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-tag {
  color: var(--accent-green);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--accent-green);
}

/* Modular Data-Grid Card Architecture */
.market-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 16px rgba(24, 42, 21, 0.05);
}

.market-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 14px 28px rgba(24, 42, 21, 0.1), 0 0 16px var(--accent-glow);
}

.card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-card:hover .card-media img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(24, 42, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39b52a;
  box-shadow: 0 0 8px #39b52a;
}

.status-dot.amber {
  background: var(--accent-yellow);
  box-shadow: 0 0 8px var(--accent-yellow);
}

.card-city {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--accent-green);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Embedded Metrics Grid inside Card */
.card-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f3f8f0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.metric-cell {
  padding: 0.6rem 0.75rem;
  border-right: 1px solid var(--border-light);
  text-align: center;
}

.metric-cell:last-child {
  border-right: none;
}

.metric-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
  font-weight: 600;
}

.metric-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.pill-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--accent-yellow-light);
  color: var(--accent-yellow-dark);
  border: 1px solid var(--border-yellow);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* Grid Layouts */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  background: #ffffff;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

/* Hero Section with Light Green & Yellow Warm Night Ambience */
.hero-night {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background-image: 
    linear-gradient(180deg, rgba(247, 250, 245, 0.9) 0%, rgba(237, 245, 234, 0.96) 80%, var(--bg-primary) 100%),
    radial-gradient(circle at 85% 25%, rgba(240, 180, 0, 0.25) 0%, rgba(234, 245, 230, 0.7) 65%),
    url('images/bustling-indoor-night-food-market-markthalle-neun-in-berlin-.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-yellow-light);
  border: 1px solid var(--border-yellow);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-yellow-dark);
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin: 1.3rem 0 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats-panel {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: 0 16px 36px rgba(24, 42, 21, 0.08);
}

.hero-stats-panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
}

.live-clock-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.stat-clock-time {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-green);
  font-family: monospace;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: #f3f8f0;
  border: 1px solid var(--border-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.stat-box .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-yellow-dark);
  display: block;
}

.stat-box .lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

/* Filter Controls Bar */
.filter-bar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 3px 12px rgba(24, 42, 21, 0.04);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn {
  background: #f3f8f0;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-yellow);
  color: #172413;
  border-color: var(--border-yellow);
}

.search-input-wrap {
  position: relative;
  min-width: 260px;
}

.search-input-wrap input {
  width: 100%;
  background: #f7faf5;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  padding: 0.5rem 0.9rem 0.5rem 2.2rem;
  font-size: 0.88rem;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px var(--accent-green-light);
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* City Scroller */
.city-pill-rail {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.city-pill {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(24, 42, 21, 0.03);
}

.city-pill:hover,
.city-pill.active {
  border-color: var(--accent-green);
  background: var(--accent-green-light);
}

.city-pill .flag {
  font-size: 1.1rem;
}

.city-pill .c-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.city-pill .c-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Atmosphere Strip */
.atmosphere-strip {
  background: linear-gradient(180deg, #edf5ea 0%, #f7faf5 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.editorial-quote-box {
  border-left: 4px solid var(--accent-yellow);
  background: #fffde8;
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  border-top: 1px solid #faeab8;
  border-right: 1px solid #faeab8;
  border-bottom: 1px solid #faeab8;
}

/* Itinerary Timeline Cards */
.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(24, 42, 21, 0.05);
}

.timeline-card:hover {
  border-color: var(--accent-green);
}

.timeline-step-tag {
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Detail Page Elements */
.detail-hero-banner {
  min-height: 440px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--border-light);
  transition: background-image 0.4s ease-in-out;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 36, 18, 0.95) 0%, rgba(20, 36, 18, 0.5) 60%, rgba(20, 36, 18, 0.75) 100%);
}

.detail-content-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.detail-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(24, 42, 21, 0.04);
}

.quick-nav-pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: #f3f8f0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-body);
}

.quick-nav-pill:hover,
.quick-nav-pill.active {
  background: var(--accent-yellow);
  color: #172413;
  border-color: var(--border-yellow);
}

.guide-body h2 {
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}

.guide-body h3 {
  margin: 1.5rem 0 0.8rem;
  color: var(--text-dark);
}

.guide-body p {
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
}

.vendor-spotlight-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-yellow);
  box-shadow: 0 2px 8px rgba(24, 42, 21, 0.04);
}

.sidebar-sticky-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  position: sticky;
  top: 2rem;
  box-shadow: 0 6px 20px rgba(24, 42, 21, 0.06);
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  gap: 1rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span:first-child {
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 600;
}

.info-row span:last-child {
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
}

/* Legal Page Typography */
.legal-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.legal-section {
  margin-bottom: 2.8rem;
}

.legal-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.legal-section h3 {
  font-size: 1.2rem;
  margin: 1.2rem 0 0.5rem;
}

.legal-section p, .legal-section li {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  background: #ffffff;
}

.legal-table th, .legal-table td {
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  text-align: left;
}

.legal-table th {
  background: var(--bg-secondary);
  color: var(--accent-green);
  font-weight: 700;
}

/* Forms */
.form-group {
  margin-bottom: 1.3rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px var(--accent-green-light);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 640px;
  background: #182a15;
  border: 2px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 20px 45px rgba(24, 42, 21, 0.4);
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: #e5f0e3;
  margin-bottom: 1.1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #142212;
  border-top: 2px solid var(--accent-green);
  padding: 4.5rem 0 2rem;
  font-size: 0.92rem;
  color: #e0eee0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.92rem;
  color: #b8d2b5;
  margin-top: 0.8rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: #b8d2b5;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: #8da58a;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .detail-content-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { height: 56px; }
  .mobile-toggle { display: block; }
  
  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--text-dark);
  }

  .header-actions .btn-header-cta {
    display: none;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .search-input-wrap { width: 100%; }
}