/* ===================================================
   Super Shop Lommel - Demo Website Styles
   Brand colors from foundation JSON:
     primary: #126AA6
     secondary/accent: #C49A6C (light wooden brown)
     background: #FFFFFF
     text: #000000
     link: #0E76BC
   =================================================== */

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

:root {
  --primary: #C49A6C;
  --primary-dark: #A87D4F;
  --secondary: #126AA6;
  --secondary-dark: #0E588A;
  --accent: #126AA6;
  --bg: #FDFBF7;
  --bg-light: #F8F6F0;
  --bg-dark: #1A1A2E;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --text-white: #FFFFFF;
  --link: #126AA6;
  --border-radius: 16px;
  --radius-sm: 8px;
  --radius-full: 100px;
  --font-body: 'Outfit', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --h1-size: 36px;
  --h2-size: 26px;
  --body-size: 15px;
  --max-width: 1100px;
  --header-height: 80px;
  --topbar-height: 40px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}


/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-content,
  .hero-actions .btn,
  .hero-badge {
    animation: none !important;
    opacity: 1 !important;
  }

  .cookie-banner {
    animation: none !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  z-index: 10000;
  padding: 24px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.cookie-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}

.cookie-btn-primary {
  background: var(--primary);
  color: #000;
}

.cookie-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 154, 108, 0.3);
}

.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* --- Leave Notice --- */
.leave-notice {
  background: var(--secondary);
  color: #fff;
  padding: 12px 0;
  position: relative;
}

.leave-notice-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.leave-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.leave-notice p {
  font-size: 14px;
  line-height: 1.4;
}

.leave-note {
  font-weight: 700;
}

.leave-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.leave-close:hover {
  opacity: 1;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.top-bar-link:hover {
  color: rgba(255,255,255,0.8);
}

.top-bar-separator {
  opacity: 0.4;
  margin: 0 4px;
}

/* --- Header --- */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  padding: 10px 20px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Page toggle --- */
.page {
  display: none;
}

.page.active-page {
  display: block;
}

/* --- Modern Reveal Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A4068 0%, #126AA6 40%, #1a8cd4 100%);
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 154, 108, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zm0-40V6h-4v4h-4v4h4v4h4v-4h4v-4h-4zM10 50v-4H6v4H2v4h4v4h4v-4h4v-4H10zM10 10V6H6v4H2v4h4v4h4v-4h4v-4H10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,64,104,0.7) 0%, rgba(18,106,166,0.3) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 20px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 600px;
}

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

.hero-actions .btn {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-actions .btn:last-child {
  animation-delay: 0.75s;
}

/* Hero badge — 7/7 open */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(196, 154, 108, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(196, 154, 108, 0.35);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  position: relative;
}

.hero-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-badge strong {
  font-weight: 700;
  color: #F0D9B0;
}

/* Hero decorative shape */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196, 154, 108, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(196, 154, 108, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.btn-large {
  padding: 18px 48px;
  font-size: 16px;
  border-radius: 14px;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-accent {
  background: linear-gradient(160deg, #B8895A 0%, var(--primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.section-brand {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-brand::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.section-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Cluster 1 — top-left */
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.22) 0%, transparent 22px),
    radial-gradient(circle at 28% 14%, rgba(255,245,248,0.16) 0%, transparent 12px),
    radial-gradient(circle at 16% 22%, rgba(255,255,255,0.18) 0%, transparent 8px),

    /* Cluster 2 — right side */
    radial-gradient(circle at 72% 35%, rgba(255,255,255,0.28) 0%, transparent 26px),
    radial-gradient(circle at 78% 32%, rgba(255,250,248,0.15) 0%, transparent 14px),
    radial-gradient(circle at 66% 40%, rgba(255,255,255,0.15) 0%, transparent 10px),

    /* Scattered singles */
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.22) 0%, transparent 18px),
    radial-gradient(circle at 82% 75%, rgba(255,248,245,0.18) 0%, transparent 22px),
    radial-gradient(circle at 12% 50%, rgba(255,255,255,0.15) 0%, transparent 16px),
    radial-gradient(circle at 45% 40%, rgba(255,250,248,0.28) 0%, transparent 28px),

    /* Tiny bubbles */
    radial-gradient(circle at 35% 85%, rgba(255,255,255,0.15) 0%, transparent 6px),
    radial-gradient(circle at 55% 10%, rgba(255,255,255,0.32) 0%, transparent 5px),
    radial-gradient(circle at 88% 55%, rgba(255,248,245,0.12) 0%, transparent 7px),
    radial-gradient(circle at 75% 90%, rgba(255,255,255,0.15) 0%, transparent 4px),
    radial-gradient(circle at 5% 40%, rgba(255,255,255,0.28) 0%, transparent 6px),
    radial-gradient(circle at 60% 60%, rgba(255,250,248,0.14) 0%, transparent 5px),

    /* Water streaks */
    radial-gradient(ellipse 6px 16px at 25% 50%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(ellipse 8px 18px at 75% 25%, rgba(255,248,245,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, var(--h2-size));
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.25;
}

.section-accent .section-title,
.section-brand .section-title {
  color: #fff;
}

.section-accent .section-title {
  margin-bottom: 30px;
}

.section-accent p {
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
  font-weight: 450;
}

/* --- Service Card --- */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-card-reverse {
  direction: rtl;
}

.service-card-reverse > * {
  direction: ltr;
}

.service-text p {
  margin-bottom: 18px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.service-text .btn {
  margin-top: 12px;
}

.service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.service-card:hover .service-image {
  box-shadow:
    0 16px 50px rgba(0,0,0,0.12),
    0 4px 12px rgba(0,0,0,0.06);
}

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

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.section-accent .service-image {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.section-accent .service-card:hover .service-image {
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

/* --- Location CTA --- */
/* --- Location CTA (full-width image background) --- */
.section-location-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.location-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 40%, #8B6C47 100%);
  background-size: cover;
  background-position: center 40%;
}

.location-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 108, 71, 0.75) 0%, rgba(196, 154, 108, 0.3) 100%);
  z-index: 1;
}

.location-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.location-cta-content .section-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
}

.location-cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
}

.location-cta-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.location-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}


/* --- Page Header --- */
.page-header {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, #8B6C47 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Soft glow */
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 60%),
    /* Soap bubbles — natural clusters with varied sizes, opacities, and overlaps */

    /* Cluster 1 — large overlapping bubbles */
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.22) 0%, transparent 28px),
    radial-gradient(circle at 28% 15%, rgba(255,240,245,0.18) 0%, transparent 18px),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.15) 0%, transparent 14px),

    /* Cluster 2 — mid-right area */
    radial-gradient(circle at 68% 32%, rgba(255,255,255,0.28) 0%, transparent 24px),
    radial-gradient(circle at 62% 28%, rgba(255,245,250,0.15) 0%, transparent 12px),
    radial-gradient(circle at 73% 36%, rgba(255,255,255,0.18) 0%, transparent 16px),

    /* Cluster 3 — bottom spread */
    radial-gradient(circle at 42% 68%, rgba(255,255,255,0.32) 0%, transparent 20px),
    radial-gradient(circle at 38% 72%, rgba(255,250,248,0.15) 0%, transparent 10px),
    radial-gradient(circle at 48% 62%, rgba(255,255,255,0.15) 0%, transparent 14px),

    /* Scattered singles — varied sizes */
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.26) 0%, transparent 26px),
    radial-gradient(circle at 12% 55%, rgba(255,248,245,0.22) 0%, transparent 16px),
    radial-gradient(circle at 55% 48%, rgba(255,255,255,0.18) 0%, transparent 30px),
    radial-gradient(circle at 90% 88%, rgba(255,245,248,0.18) 0%, transparent 18px),
    radial-gradient(circle at 5% 88%, rgba(255,255,255,0.15) 0%, transparent 22px),
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.22) 0%, transparent 15px),
    radial-gradient(circle at 35% 48%, rgba(255,250,245,0.15) 0%, transparent 10px),
    radial-gradient(circle at 75% 55%, rgba(255,255,255,0.12) 0%, transparent 32px),

    /* Tiny scattered bubbles — the small ones look most natural */
    radial-gradient(circle at 10% 35%, rgba(255,255,255,0.15) 0%, transparent 6px),
    radial-gradient(circle at 33% 22%, rgba(255,255,255,0.32) 0%, transparent 5px),
    radial-gradient(circle at 60% 45%, rgba(255,250,248,0.28) 0%, transparent 7px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 4px),
    radial-gradient(circle at 70% 78%, rgba(255,248,245,0.12) 0%, transparent 6px),
    radial-gradient(circle at 40% 90%, rgba(255,255,255,0.15) 0%, transparent 5px),
    radial-gradient(circle at 20% 75%, rgba(255,255,255,0.28) 0%, transparent 7px),
    radial-gradient(circle at 65% 8%, rgba(255,250,248,0.14) 0%, transparent 5px),
    radial-gradient(circle at 92% 42%, rgba(255,255,255,0.15) 0%, transparent 4px),
    radial-gradient(circle at 48% 82%, rgba(255,255,255,0.28) 0%, transparent 6px),

    /* A few water streaks / drip trails to break up the perfect circles */
    radial-gradient(ellipse 8px 20px at 30% 35%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(ellipse 6px 14px at 70% 60%, rgba(255,250,248,0.1) 0%, transparent 100%),
    radial-gradient(ellipse 10px 22px at 15% 70%, rgba(255,255,255,0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg-light);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 1;
}

.page-header-small {
  padding: 80px 0 60px;
}

.page-header-small::after {
  height: 40px;
}

/* Page header with background image */
.page-header-diensten {
  background: none;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, #8B6C47 100%);
  background-size: cover;
  background-position: center 40%;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 108, 71, 0.75) 0%, rgba(196, 154, 108, 0.35) 60%, rgba(168, 125, 79, 0.15) 100%);
  z-index: 1;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.page-header-subtitle {
  font-size: 18px;
  opacity: 0.85;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  background: #fff;
  border-radius: 20px;
  padding: 44px 30px 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(196, 154, 108, 0.08) 0%, rgba(196, 154, 108, 0.02) 100%);
  transition: all 0.4s ease;
}

.service-icon svg {
  stroke: var(--primary);
}

.service-item:hover .service-icon {
  background: linear-gradient(135deg, rgba(196, 154, 108, 0.12) 0%, rgba(196, 154, 108, 0.04) 100%);
  transform: scale(1.05);
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 14px;
}

/* --- Opening Hours --- */
.hours-card {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
}

.hours-row span:last-child {
  font-weight: 700;
}

.hours-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

.hours-note {
  font-size: 14px;
  opacity: 0.8;
  font-style: italic;
  margin-top: 12px;
}

.hours-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.hours-table {
  text-align: left;
}

.hours-closed {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.hours-highlight {
  color: #fff;
  font-size: 20px;
}

/* --- Info Cards (Diensten) --- */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.info-card-image {
  flex: 0 0 280px;
  overflow: hidden;
  min-height: 240px;
}

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

.info-card:hover .info-card-image img {
  transform: scale(1.05);
}

.info-card-content {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.info-card-content blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: rgba(18, 106, 166, 0.04);
  border-left: 3px solid var(--secondary);
  border-radius: 0 12px 12px 0;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-features li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.info-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.info-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 30px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 106, 166, 0.1) 0%, rgba(18, 106, 166, 0.03) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.contact-card-icon svg {
  stroke: var(--secondary);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(18, 106, 166, 0.15) 0%, rgba(18, 106, 166, 0.05) 100%);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  word-break: break-all;
  position: relative;
  display: inline-block;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-link:hover::after {
  transform: scaleX(1);
}

.contact-link:hover {
  color: var(--primary);
}

.contact-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Contact Form --- */
#scroll-target {
  scroll-margin-top: 80px;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-form-hours h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-hours-table {
  margin-bottom: 16px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.contact-hours-row span:last-child {
  font-weight: 600;
}

.contact-hours-row .closed {
  color: #999;
  font-style: italic;
  font-weight: 400;
}

.contact-hours-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-style: italic;
  margin-bottom: 4px !important;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid #ddd;
  border-radius: 12px;
  background: var(--bg-light);
  transition: all 0.3s ease;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(18, 106, 166, 0.1);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

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

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(18, 106, 166, 0.08);
  color: var(--secondary);
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

.form-success.visible {
  display: block;
}

/* --- Contact CTA --- */
.contact-cta {
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg-dark);
  clip-path: ellipse(55% 100% at 50% 0);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

.footer h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.6;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(18, 106, 166, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(18, 106, 166, 0.35);
}

/* --- Lazy Loading --- */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --h1-size: 28px;
    --h2-size: 22px;
    --header-height: 64px;
  }

  .top-bar {
    font-size: 12px;
    height: 36px;
  }

  .top-bar-separator {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
    gap: 16px;
  }

  .top-bar-link svg {
    width: 12px;
    height: 12px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    font-weight: 700;
  }

  .hero {
    min-height: 70vh;
  }

  .hero::after {
    height: 50px;
    clip-path: ellipse(70% 100% at 50% 100%);
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-content {
    padding: 50px 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card-reverse {
    direction: ltr;
  }

  .service-image {
    order: -1;
  }

  .section-location-cta {
    min-height: 350px;
    padding: 60px 0;
  }

  .location-cta-pill {
    padding: 8px 16px;
    font-size: 13px;
  }

  .section {
    padding: 60px 0;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .page-header {
    padding: 70px 0 50px;
  }

  .page-header::after {
    height: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    flex-direction: column;
  }

  .info-card-image {
    flex: 0 0 200px;
  }

  .info-card-content {
    padding: 28px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header-title {
    font-size: 28px;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 14px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .leave-notice-content {
    font-size: 13px;
    padding-right: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hours-card {
    padding: 24px 16px;
  }

  .service-item {
    padding: 30px 20px;
  }
}

/* Dark mode + mobile nav fix */
