/* =============================================
   sloepi.nl — Sloep Zephyr, Franeker
   ============================================= */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --blue-dark:  #1A4F8C;
  --blue:       #2C6FBF;
  --blue-light: #3A8DDE;
  --blue-pale:  #EBF4FF;
  --text:       #1A2332;
  --text-muted: #5A6A7E;
  --border:     #D8E4F0;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(26,79,140,.10);
  --shadow-lg:  0 8px 40px rgba(26,79,140,.14);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--blue-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-muted); margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
}

/* --- Layout utilities --- */
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--blue { background: var(--blue-dark); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.section--blue .section-label { color: #90C4F5; }

.section-intro { max-width: 600px; margin-bottom: 52px; }
.section-intro p { font-size: 1.05rem; margin-top: 12px; color: var(--text-muted); }
.section--blue .section-intro p { color: rgba(255,255,255,.75); }
.section--blue h2 { color: var(--white); }

/* --- Grid helpers --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-light);
  color: var(--white);
  border-color: var(--blue-light);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(58,141,222,.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-pale);
  color: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Nav --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 1.8; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--blue-pale);
  color: var(--blue-dark);
}
.nav-links .nav-cta a {
  background: var(--blue-light);
  color: white;
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover {
  background: var(--blue);
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: white;
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--blue-pale); color: var(--blue-dark); }
.mobile-nav .mobile-cta {
  margin-top: 12px;
  background: var(--blue-light);
  color: white;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
}
.mobile-nav .mobile-cta:hover { background: var(--blue); color: white; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D2E5A 0%, #1A4F8C 40%, #2C6FBF 100%);
}

/* Water ripple pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,.025) 48px,
      rgba(255,255,255,.025) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(255,255,255,.015) 98px,
      rgba(255,255,255,.015) 100px
    );
}

.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4FC3F7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #90C4F5; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Decorative wave at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* --- Intro / about --- */
.intro-text { padding-right: 32px; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { margin-bottom: 16px; }
.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image img { width: 100%; height: 420px; object-fit: cover; }

.img-placeholder {
  background: linear-gradient(135deg, var(--blue-pale), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--blue);
  border-radius: var(--radius-lg);
}
.img-placeholder svg { width: 48px; height: 48px; opacity: .4; }
.img-placeholder span { font-size: .8rem; color: var(--text-muted); }

/* --- Feature cards --- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { font-size: .9rem; }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.price-card:hover, .price-card.featured {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.price-card.featured { border-color: var(--blue); }
.price-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.price-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}
.price-amount sup { font-size: 1.4rem; vertical-align: super; }
.price-period { font-size: .85rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 20px; }
.price-note { font-size: .8rem; color: var(--text-muted); margin-top: 16px; }

/* --- Equipment list --- */
.equip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.equip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.equip-item svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 2; flex-shrink: 0; }
.equip-item span { font-size: .9rem; font-weight: 500; color: var(--text); }

/* --- Spec table --- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 0; font-size: .95rem; }
.spec-table td:first-child { color: var(--text-muted); width: 40%; }
.spec-table td:last-child { font-weight: 600; color: var(--text); }

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 200px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item { overflow: hidden; background: var(--blue-pale); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #D6E8F8 100%);
  color: var(--blue);
}
.gallery-placeholder svg { width: 36px; height: 36px; opacity: .35; }
.gallery-placeholder span { font-size: .75rem; color: var(--text-muted); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-banner h2 { color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 28px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Route cards --- */
.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.route-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.route-card-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.route-card-header h3 { color: white; font-size: 1.1rem; }
.route-pill {
  background: rgba(255,255,255,.15);
  color: white;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.route-card-body { padding: 24px; }
.route-card-body p { font-size: .9rem; margin-bottom: 16px; }
.route-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.route-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
}
.route-meta-item svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* --- Map section --- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; width: 100%; height: 400px; border: none; }

/* --- Instruction steps --- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  width: 44px;
  height: 44px;
  background: var(--blue-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step-content p { margin: 0; font-size: .9rem; }

/* --- Info box --- */
.info-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box h4 { color: var(--blue-dark); margin-bottom: 6px; }
.info-box p { font-size: .9rem; margin: 0; color: var(--text); }

.warning-box {
  background: #FFF8E7;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box h4 { color: #92400E; margin-bottom: 6px; }
.warning-box p { font-size: .9rem; margin: 0; color: #78350F; }

/* --- Tip cards --- */
.tip-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.tip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.tip-card h4 { margin-bottom: 4px; font-size: .95rem; }
.tip-card p { font-size: .875rem; margin: 0; }

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .9rem; margin-top: 12px; margin-bottom: 0; }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-instagram:hover { color: #e1306c; }
.footer-brand .nav-logo-text { color: white; }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,.45); }

.footer-col h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: white; }

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

/* --- Page header (inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 100px 0 60px;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.65); }
.page-header .breadcrumb a:hover { color: white; }

/* --- Checklist --- */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--blue-pale);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-7' stroke='%232C6FBF' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .grid-2, .grid-3, .grid-4, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-text { padding-right: 0; }

  .hero { min-height: 80vh; }
  .hero-stats { gap: 24px; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .cta-banner { padding: 40px 28px; }

  .page-header { padding: 88px 0 48px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child { grid-column: span 1; }
}

/* --- Cookie banner --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--blue-pale);
  box-shadow: 0 -4px 24px rgba(26,79,140,.12);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
#cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
#cookie-banner p a {
  color: var(--blue);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-actions button {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--blue);
  transition: background .2s, color .2s;
}
#cookie-accept {
  background: var(--blue);
  color: var(--white);
}
#cookie-accept:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
#cookie-decline {
  background: transparent;
  color: var(--blue);
}
#cookie-decline:hover { background: var(--blue-pale); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { width: 100%; text-align: center; }
}
