
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #0B4E9D;
  --blue-dark: #042852;
  --blue-light: #0B6BDA;
  --yellow: #FFC500;
  --off-white: #F7F8FA;
  --text: #1E1E1E;
  --muted: #5C6470;
  --border: #D0D4DA;
}
html { background: var(--off-white); color: var(--text); scroll-behavior: smooth; color-scheme: light; }
body { font-family: 'Nunito Sans', sans-serif; font-weight: 400; line-height: 1.65; overflow-x: hidden; background: var(--off-white); }

/* Papier millimétré */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(11,78,157,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,78,157,0.06) 1px, transparent 1px),
    linear-gradient(rgba(11,78,157,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,78,157,0.02) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
}

nav, header, .stats-bar, section, footer, .realisations-section { position: relative; z-index: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 66px;
  background: rgba(247,248,250,0.95);
  border-bottom: 1px solid rgba(11,78,157,0.1);
  backdrop-filter: blur(10px);
}
.nav-logo img { height: 42px; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: var(--blue);
  padding: 11px 24px; text-decoration: none; transition: background 0.2s;
  display: inline-block; border-radius: 2px;
}
.nav-cta:hover { background: var(--blue-light); }

/* NAV MOBILE TOGGLE */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; background: var(--blue-dark); transition: 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
  background: rgba(247,248,250,0.98); border-bottom: 1px solid var(--border);
  padding: 20px 24px; flex-direction: column; gap: 16px;
  backdrop-filter: blur(10px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.cta-mobile {
  color: #fff; background: var(--blue); padding: 12px 16px;
  text-align: center; border-radius: 2px; border: none; margin-top: 4px;
}

/* HERO */
.hero { margin-top: 66px; position: relative; height: calc(100vh - 66px); min-height: 480px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(4,40,82,0.65) 35%, rgba(4,40,82,0.88) 100%);
  padding: 72px 52px 52px;
}
.hero-tag {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--yellow); flex-shrink: 0; }
.hero-title {
  font-size: clamp(38px, 5.5vw, 66px); font-weight: 700;
  line-height: 1.05; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em;
}
.hero-title .acc { color: var(--yellow); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: rgba(247,248,250,0.7);
  max-width: 540px; line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-dark); background: var(--yellow);
  padding: 14px 30px; text-decoration: none; transition: background 0.2s;
  display: inline-block; border-radius: 2px;
}
.btn-primary:hover { background: #ffd233; }
.btn-outline {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(247,248,250,0.8); background: transparent;
  border: 1px solid rgba(247,248,250,0.28); padding: 14px 30px;
  text-decoration: none; transition: border-color 0.2s; display: inline-block; border-radius: 2px;
}
.btn-outline:hover { border-color: rgba(247,248,250,0.65); color: #fff; }

/* STATS */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--blue); border-bottom: 3px solid var(--yellow);
}
.stat-item { padding: 24px 36px; border-right: 1px solid rgba(247,248,250,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,248,250,0.6); }

/* SECTIONS */
.section-inner { max-width: 1160px; margin: 0 auto; padding: 84px 48px; }
.section-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--blue-dark); line-height: 1.1; margin-bottom: 12px; }
.section-intro { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.75; margin-bottom: 48px; font-weight: 300; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: rgba(247,248,250,0.9); padding: 30px 26px;
  transition: background 0.2s; border-top: 2px solid transparent;
}
.service-card:hover { background: #EEF3FB; border-top-color: var(--blue); }
.service-num { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--blue); margin-bottom: 14px; }
.service-title { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.service-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.service-tags { margin-top: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); background: #EEF3FB;
  border: 1px solid #C5D5ED; padding: 4px 9px; border-radius: 2px;
}

/* GALERIE */
.gallery-section { background: var(--blue-dark); }
.gallery-section .section-label { color: var(--yellow); }
.gallery-section .section-title { color: #fff; }
.gallery-section .section-intro { color: rgba(247,248,250,0.45); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #0a1520; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(4,40,82,0.88));
  padding: 24px 12px 10px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.g-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; line-height: 1.3; }
.g-sub { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.08em; color: var(--yellow); text-transform: uppercase; }
.gallery-note {
  margin-top: 24px; text-align: center;
  font-size: 13px; color: rgba(247,248,250,0.4);
}
.gallery-note a { color: var(--yellow); text-decoration: none; }
.gallery-note a:hover { text-decoration: underline; }

/* REALISATIONS */
.realisations-section { background: var(--off-white); padding: 84px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.realisations-section .section-label { color: var(--blue); }
.realisations-section .section-title { color: var(--blue-dark); }
.realisations-section .section-intro { color: var(--muted); }
.real-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  margin-bottom: 48px;
}
.real-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: #0a1520; cursor: pointer;
}
.real-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%); transition: transform 0.4s;
}
.real-item:hover img { transform: scale(1.04); }
.real-stamp {
  margin-top: 40px;
  display: flex; justify-content: flex-end;
}
.real-stamp-inner {
  border: 1px solid rgba(11,78,157,0.2); padding: 20px 24px;
  max-width: 300px; position: relative;
}
.real-stamp-inner::before {
  content: ''; position: absolute; top: -8px; left: -8px;
  width: 16px; height: 16px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue);
}
.real-stamp-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.real-stamp-text {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* METHODE */
.methode-section { background: var(--blue-dark); }
.methode-section .section-label { color: var(--yellow); }
.methode-section .section-title { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(247,248,250,0.06); border: 1px solid rgba(247,248,250,0.06); }
.process-item { background: rgba(4,40,82,0.55); padding: 32px 24px; }
.process-step { font-family: 'DM Mono', monospace; font-size: 32px; font-weight: 500; color: rgba(255,197,0,0.18); margin-bottom: 14px; line-height: 1; }
.process-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.process-desc { font-size: 13px; color: rgba(247,248,250,0.48); line-height: 1.65; }
.process-badge {
  display: inline-block; margin-top: 12px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-dark); background: var(--yellow);
  padding: 4px 9px; border-radius: 2px;
}

/* TEASER */
.teaser-bar {
  background: var(--yellow); padding: 14px 52px;
  display: flex; align-items: center; gap: 16px;
}
.teaser-bar span { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.08em; color: var(--blue-dark); }
.teaser-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-dark); flex-shrink: 0; }

/* FAQ */
.faq-section { background: rgba(247,248,250,0.5); border-top: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; }
.faq-q { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.faq-a { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* CONTACT */
.contact-section { background: var(--off-white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.contact-info { background: rgba(247,248,250,0.9); padding: 56px 48px; }
.contact-title { font-size: 38px; font-weight: 700; color: var(--blue-dark); line-height: 1.1; margin-bottom: 30px; }
.contact-title .acc { color: var(--blue); }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-details li { display: flex; gap: 16px; }
.contact-details .lbl { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); min-width: 72px; margin-top: 2px; }
.contact-details .val { font-size: 14px; color: var(--text); }
.contact-details a { color: var(--blue); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-form-panel { background: #EEF3FB; padding: 56px 48px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  background: rgba(247,248,250,0.9); border: 1px solid var(--border);
  color: var(--text); font-family: 'Nunito Sans', sans-serif;
  font-size: 14px; font-weight: 300; padding: 10px 13px;
  outline: none; transition: border-color 0.2s; width: 100%; border-radius: 2px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--blue); }
.form-row textarea { resize: vertical; min-height: 84px; }
.btn-submit {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: var(--blue);
  padding: 13px 24px; cursor: pointer; transition: background 0.2s;
  text-align: center; border-radius: 2px; text-decoration: none; display: inline-block; border: none; margin-top: 4px;
}
.btn-submit:hover { background: var(--blue-light); }

/* FOOTER */
footer {
  background: var(--blue-dark); border-top: 3px solid var(--yellow);
  padding: 24px 52px; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 28px; filter: brightness(0) invert(1) opacity(0.65); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.09em; color: rgba(247,248,250,0.28); }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-overlay { padding: 40px 24px 36px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .section-inner { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .real-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info, .contact-form-panel { padding: 36px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .teaser-bar { padding: 14px 24px; flex-wrap: wrap; }
  footer { flex-direction: column; gap: 10px; padding: 20px 24px; text-align: center; }
  .real-stamp { justify-content: flex-start; }
  .lb-btn { width: 40px; height: 48px; font-size: 18px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .real-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px; }
  .nav-cta { display: none; }
  .lb-img { max-width: 96vw; max-height: 80vh; }
}

.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(2,16,34,0.96); align-items: center; justify-content: center;
}
.lb-overlay.active { display: flex; }
.lb-inner {
  position: relative; max-width: 92vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 88vw; max-height: 86vh; object-fit: contain;
  display: block; border: 1px solid rgba(255,197,0,0.15);
}
.lb-caption {
  position: absolute; bottom: -32px; left: 0; right: 0;
  text-align: center;
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(247,248,250,0.4);
}
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,197,0,0.12); border: 1px solid rgba(255,197,0,0.25);
  color: var(--yellow); font-size: 22px; width: 48px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; user-select: none;
  border-radius: 2px;
}
.lb-btn:hover { background: rgba(255,197,0,0.22); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close {
  position: fixed; top: 20px; right: 20px;
  background: none; border: none; color: rgba(247,248,250,0.5);
  font-size: 28px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: #fff; }
.lb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em;
  color: rgba(247,248,250,0.3);
}
/* LIGHTBOX - ajouté */

/* LIGHTBOX */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(2,16,34,0.96); align-items: center; justify-content: center;
}
.lb-overlay.active { display: flex; }
.lb-inner {
  position: relative; max-width: 92vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img { max-width: 88vw; max-height: 86vh; object-fit: contain; display: block; border: 1px solid rgba(255,197,0,0.12); }
.lb-caption {
  position: absolute; bottom: -30px; left: 0; right: 0; text-align: center;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(247,248,250,0.35);
}
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,197,0,0.1); border: 1px solid rgba(255,197,0,0.22);
  color: var(--yellow); font-size: 20px; width: 46px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; user-select: none; border-radius: 2px;
}
.lb-btn:hover { background: rgba(255,197,0,0.2); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close {
  position: fixed; top: 18px; right: 20px; background: none; border: none;
  color: rgba(247,248,250,0.45); font-size: 26px; cursor: pointer;
  line-height: 1; transition: color 0.2s; z-index: 1001;
}
.lb-close:hover { color: #fff; }
.lb-counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em;
  color: rgba(247,248,250,0.28);
}

@media (prefers-color-scheme: dark) {
  html, body { background: #F7F8FA !important; color: #1E1E1E !important; }
  .faq-section { background: rgba(247,248,250,0.95) !important; }
  .contact-section { background: #F7F8FA !important; }
  .realisations-section { background: #F7F8FA !important; }
  .faq-a, .faq-q { color: inherit !important; }
  .form-row input, .form-row select, .form-row textarea {
    background: #fff !important; color: #1E1E1E !important; border-color: #D0D4DA !important;
  }
  .contact-info { background: #F7F8FA !important; }
  .contact-form-panel { background: #EEF3FB !important; }
  .service-card { background: rgba(247,248,250,0.95) !important; }
}

.real-item { position: relative; }
.real-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(4,40,82,0.82));
  padding: 20px 10px 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transition: opacity 0.3s;
}
.real-item:hover .real-caption { opacity: 1; }
.rc-fab {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow);
}
.rc-proj { font-size: 11px; font-weight: 600; color: #fff; line-height: 1.3; }

/* MENTIONS LÉGALES MODAL */
.ml-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(4,40,82,0.72); align-items: center; justify-content: center;
  padding: 24px;
}
.ml-overlay.active { display: flex; }
.ml-box {
  background: #F7F8FA; max-width: 560px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  border-top: 3px solid var(--yellow);
  padding: 36px 40px;
  position: relative;
}
.ml-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 22px; color: var(--muted);
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.ml-close:hover { color: var(--blue-dark); }
.ml-title {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 24px;
}
.ml-section { margin-bottom: 20px; }
.ml-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.ml-val { font-size: 13px; color: var(--text); line-height: 1.7; }
.ml-val a { color: var(--blue); text-decoration: none; }
.ml-sep { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
@media (prefers-color-scheme: dark) {
  .ml-box { background: #F7F8FA !important; color: #1E1E1E !important; }
}

/* COOKIE BANNER */
.cookie-banner {
  display: none; position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1500;
  max-width: 560px; margin: 0 auto; background: var(--blue-dark); color: #fff;
  border-radius: 6px; padding: 20px 24px; box-shadow: 0 8px 30px rgba(4,40,82,0.35);
  align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1 1 260px; font-size: 12.5px; line-height: 1.5; color: rgba(247,248,250,0.85); margin: 0; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner button {
  border: none; border-radius: 3px; padding: 9px 16px; font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
}
.cookie-banner button:not(.cookie-accept) { background: transparent; color: rgba(247,248,250,0.7); border: 1px solid rgba(247,248,250,0.3); }
.cookie-banner .cookie-accept { background: var(--yellow); color: var(--blue-dark); font-weight: 700; }
