:root {
  /* Kolory marki - Biuro Marzeń */
  --c-primary: #0a4d68;
  --c-primary-rgb: 10, 77, 104;
  
  --c-secondary: #006877;
  --c-secondary-rgb: 0, 104, 119;
  
  --c-accent: #E5BA73;
  --c-accent-rgb: 229, 186, 115;
  
  --c-bg: #f8faf9;
  --c-bg-rgb: 248, 250, 249;
  
  --c-ink: #191c1c;
  --c-ink-rgb: 25, 28, 28;
  
  --c-navy-deep: #052C3C;
  
  /* Typografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Wzorce wizualne z designu */
.shadow-ambient {
  box-shadow: 0 10px 40px -10px rgba(10, 77, 104, 0.08);
}
.btn-gold {
  transition: all 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 186, 115, 0.4);
}
.input-focus-glow:focus {
  outline: none;
  border-color: #8debff;
  box-shadow: 0 0 0 3px rgba(141, 235, 255, 0.3);
}
