/* Design System - Jean-Sébastien Lefévère - Redesign 2026 */
/* Typography-first, asymmetric layouts, CSS scroll-driven animations */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --color-primary:       #1B5FAA;
  --color-primary-dark:  #114080;
  --color-primary-light: #2D7DD2;
  --color-teal:          #0E8C8C;
  --color-teal-light:    #E6F5F5;
  --color-ink:           #1A2535;
  --color-ink-muted:     #4A5568;
  --color-surface:       #FFFFFF;
  --color-surface-blue:  #EBF2FB;
  --color-bg-light:      #F7F9FC;
  --color-border:        #DDE5F0;
  --color-border-hover:  #1B5FAA;
  --color-success:       #28A745;
  --color-danger:        #DC3545;

  /* Gradients */
  --gradient-cta:    linear-gradient(135deg, #1B5FAA 0%, #0E8C8C 100%);
  --gradient-footer: linear-gradient(160deg, #1A2535 0%, #0F1B2D 100%);

  /* Typography — Inter variable font with fluid scale */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --text-hero: clamp(2.75rem, 1.5rem + 6vw, 5rem);
  --text-4xl:  clamp(2.25rem, 1rem + 4.5vw, 3.75rem);
  --text-3xl:  clamp(1.75rem, 0.8rem + 3vw, 2.5rem);
  --text-2xl:  clamp(1.375rem, 0.6rem + 2vw, 1.875rem);
  --text-xl:   clamp(1.125rem, 0.8rem + 0.8vw, 1.375rem);
  --text-body: 1rem;
  --text-sm:   0.875rem;
  --tracking-tight: -0.03em;
  --leading-tight:  1.15;
  --leading-normal: 1.6;

  /* Spacing */
  --spacing-xs:  4px;
  --spacing-sm:  8px;
  --spacing-md:  16px;
  --spacing-lg:  24px;
  --spacing-xl:  32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(27, 95, 170, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--color-ink);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); margin-bottom: var(--spacing-lg); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--spacing-md); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--spacing-md); }
h4 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
}

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

a:hover { color: var(--color-primary-dark); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section.bg-light {
  background-color: var(--color-bg-light);
}

/* Section label (eyebrow text) */
.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-md);
}

/* ============================================================
   SCROLL PROGRESS BAR (CSS scroll-driven)
   ============================================================ */
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 100%;
    background: var(--gradient-cta);
    transform-origin: left center;
    animation: scrollProgress linear;
    animation-timeline: scroll(root);
    z-index: 10000;
    pointer-events: none;
  }

  @keyframes scrollProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  gap: var(--spacing-lg);
}

.logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: var(--tracking-tight);
  flex-shrink: 0;
  transition: var(--transition);
}

.logo:hover {
  color: var(--color-primary-dark);
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-menu a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  width: 100%;
}

.nav-menu a[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle:hover { background: var(--color-surface-blue); }

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger open state */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION — Asymmetric 2026 style
   ============================================================ */
.hero {
  background: var(--color-surface-blue);
  padding: calc(var(--spacing-3xl) * 1.3) 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing-3xl);
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: var(--text-hero);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  font-weight: 800;
  color: var(--color-ink);
  /* override any global gradient text */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  margin-bottom: var(--spacing-lg);
}

.hero-title-accent {
  color: var(--color-primary);
  font-style: normal;
}

.hero-sub {
  font-size: var(--text-xl);
  color: var(--color-ink-muted);
  max-width: 480px;
  margin-bottom: var(--spacing-xl);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  height: 400px;
  pointer-events: none;
  user-select: none;
}

.hero-shape-large {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--color-primary);
  border-radius: 40% 60% 70% 30% / 30% 50% 60% 40%;
  opacity: 0.1;
  top: 10px;
  right: -20px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-small {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--color-teal);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.15;
  bottom: 30px;
  right: 60px;
  animation: floatShape 6s ease-in-out infinite reverse;
}

.hero-shape-dot {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.2;
  top: 80px;
  right: 260px;
}

.hero-stat {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin-top: 2px;
}

/* ============================================================
   CONSTELLATION ANIMÉE - Logos flottants
   ============================================================ */
.constellation {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.constellation-item {
  position: absolute;
  opacity: 0.7;
}

.constellation-item svg {
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Meta - top right, bleu */
.constellation-item:nth-child(1) {
  top: 12%;
  right: 8%;
  animation: drift1 10s ease-in-out infinite;
}
.constellation-item:nth-child(1) svg { fill: #1877F2; }

/* LinkedIn - 2nd position, bleu */
.constellation-item:nth-child(2) {
  top: 28%;
  right: 32%;
  animation: drift2 11s ease-in-out 2s infinite;
}
.constellation-item:nth-child(2) svg { fill: #0A66C2; }

/* TikTok - bottom right, noir */
.constellation-item:nth-child(3) {
  top: 62%;
  right: 12%;
  animation: drift3 12s ease-in-out 4s infinite;
}
.constellation-item:nth-child(3) svg { fill: #000000; }

/* Claude - middle, bleu site */
.constellation-item:nth-child(4) {
  top: 42%;
  right: 58%;
  animation: drift4 10.5s ease-in-out 1s infinite;
}
.constellation-item:nth-child(4) svg { fill: #1B5FAA; }

/* n8n - bottom left, orange */
.constellation-item:nth-child(5) {
  top: 72%;
  right: 52%;
  animation: drift5 11.5s ease-in-out 3s infinite;
}
.constellation-item:nth-child(5) svg { fill: #FF6B35; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -12px); }
  50% { transform: translate(-6px, 15px); }
  75% { transform: translate(12px, -8px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-10px, 8px); }
  50% { transform: translate(15px, -6px); }
  75% { transform: translate(-8px, 12px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, 10px); }
  50% { transform: translate(-8px, -12px); }
  75% { transform: translate(-10px, 6px); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-6px, -10px); }
  50% { transform: translate(10px, 12px); }
  75% { transform: translate(8px, -6px); }
}

@keyframes drift5 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, 6px); }
  50% { transform: translate(-12px, -8px); }
  75% { transform: translate(6px, 10px); }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(3deg); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 12px var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-surface);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 95, 170, 0.28);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-ghost:hover {
  background: var(--color-surface-blue);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-surface);
  color: var(--color-primary);
  border-color: var(--color-surface);
}

.btn-white:hover {
  background: var(--color-surface-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px var(--spacing-md);
  font-size: var(--text-sm);
}

/* ============================================================
   CARDS — Clean border, accent bar on hover
   ============================================================ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: var(--gradient-cta);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card:hover::before {
  transform: scaleY(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-blue);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--color-teal-light);
  color: var(--color-teal);
}

.card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-xl);
}

/* ============================================================
   GRID
   ============================================================ */
.grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  background: var(--gradient-cta);
  color: var(--color-surface);
  text-align: center;
}

.section-cta h2 {
  color: var(--color-surface);
}

.section-cta p {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: var(--spacing-lg); }

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-ink);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px var(--spacing-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--color-ink);
  background: var(--color-surface);
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 95, 170, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gradient-footer);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

footer h4 {
  color: var(--color-surface);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: var(--transition);
  display: inline-block;
}

footer a:hover {
  color: var(--color-surface);
  transform: translateX(3px);
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   COOKIES BANNER
   ============================================================ */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 37, 53, 0.98);
  backdrop-filter: blur(8px);
  color: var(--color-surface);
  padding: var(--spacing-lg);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookies-banner.hidden { display: none; }

.cookies-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
}

.cookies-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.cookies-actions .btn {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--text-sm);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
/* CSS scroll-driven (Chrome 115+, Firefox 110+) */
@supports (animation-timeline: view()) {
  .animate-fade {
    animation: fadeSlideUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  .animate-stagger:nth-child(1) { animation-delay: 0ms; }
  .animate-stagger:nth-child(2) { animation-delay: 80ms; }
  .animate-stagger:nth-child(3) { animation-delay: 160ms; }
  .animate-stagger:nth-child(4) { animation-delay: 240ms; }
}

/* Fallback pour Safari / anciens navigateurs */
@supports not (animation-timeline: view()) {
  .animate-fade {
    opacity: 0;
    transform: translateY(20px);
  }
  .animate-fade.is-visible {
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}

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

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

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-shape-large,
  .hero-shape-small { animation: none; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-lg  { margin-top: var(--spacing-lg); }
.mb-lg  { margin-bottom: var(--spacing-lg); }
.py-lg  { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.hidden { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .header-content {
    padding: var(--spacing-md);
  }

  .nav-toggle {
    display: flex;
    order: 1;
  }

  nav {
    position: relative;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + var(--spacing-md));
    right: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    flex-direction: column;
    gap: var(--spacing-sm);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
  }

  .nav-menu a:hover {
    background: var(--color-surface-blue);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .btn {
    width: 100%;
  }

  .grid.grid-2,
  .grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookies-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookies-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  h1 { font-size: clamp(2rem, 1.5rem + 4vw, 2.75rem); }
  h2 { font-size: clamp(1.5rem, 1.2rem + 2vw, 2rem); }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  header, footer, .cookies-banner, .scroll-progress { display: none; }
}
