:root {
  --crebist-dark: #3d3d3d;
  --crebist-blue-light: #a0cbed;
  --crebist-blue: #70adde;
  --crebist-ink: #273236;
  --crebist-card: rgba(255,255,255,.76);
  --crebist-border: rgba(61,61,61,.08);
  --crebist-shadow: 0 20px 60px rgba(37,54,70,.10);
  --crebist-radius: 24px;
}


/* =========================================================
   BASIS
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--crebist-dark);
  background:
    radial-gradient(circle at 8% 15%, rgba(160,203,237,.38), transparent 20%),
    radial-gradient(circle at 92% 18%, rgba(112,173,222,.18), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: .55;
  animation: drift 16s ease-in-out infinite;
}

body::before {
  top: -10rem;
  left: -8rem;
  background:
    radial-gradient(
      circle,
      rgba(160,203,237,.38),
      rgba(160,203,237,0) 65%
    );
}

body::after {
  right: -10rem;
  top: 18rem;
  background:
    radial-gradient(
      circle,
      rgba(112,173,222,.22),
      rgba(112,173,222,0) 68%
    );
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0,0,0) scale(1);
  }

  25% {
    transform: translate3d(2rem,1rem,0) scale(1.04);
  }

  50% {
    transform: translate3d(-1rem,2rem,0) scale(.98);
  }

  75% {
    transform: translate3d(1.5rem,-1rem,0) scale(1.03);
  }
}


/* =========================================================
   TYPOGRAFIE
   ========================================================= */

.display-hero,
.section-heading,
.page-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
}

.display-hero {
  max-width: 11ch;
  margin-top: 1.25rem;
  margin-bottom: 1.4rem;
  color: #293438;
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.035em;
}

.section-heading {
  margin-bottom: 1rem;
  color: #2a3539;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
}

.page-title {
  margin-bottom: 1.25rem;
  color: #293438;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
}

.lead {
  max-width: 44rem;
  color: rgba(39,50,54,.84);
  font-size: 1.15rem;
}

.section-subtitle {
  max-width: 46rem;
  margin-bottom: 0;
  color: rgba(39,50,54,.75);
  font-size: 1.05rem;
}

.text-muted-strong {
  color: rgba(39,50,54,.76) !important;
}


/* =========================================================
   NAVIGATIE
   ========================================================= */

.navbar {
  background: rgba(255,255,255,.70);
  border-bottom: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(18px);
}

.navbar .container {
  min-height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
}

.navbar-brand img {
  display: block;
  width: auto;
  height: 38px;
}

.nav-link {
  color: var(--crebist-dark);
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--crebist-blue);
}

.nav-link-mobile {
  padding: .65rem .5rem;
  white-space: nowrap;
}

.nav-contact {
  padding: .7rem 1.15rem;
  white-space: nowrap;
}


/* =========================================================
   KNOPPEN
   ========================================================= */

.btn-primary {
  --bs-btn-bg: var(--crebist-blue);
  --bs-btn-border-color: var(--crebist-blue);
  --bs-btn-hover-bg: #5e9fd4;
  --bs-btn-hover-border-color: #5e9fd4;
  --bs-btn-active-bg: #5e9fd4;
  --bs-btn-active-border-color: #5e9fd4;
  --bs-btn-color: #fff;

  border-radius: 999px;
  padding: .9rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(112,173,222,.25);
}

.btn-outline-dark {
  border-color: rgba(61,61,61,.16);
  border-radius: 999px;
  padding: .9rem 1.4rem;
  font-weight: 600;
}


/* =========================================================
   ALGEMENE LAYOUT
   ========================================================= */

section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.glass-card,
.service-card,
.contact-card,
.hero-side,
.content-card {
  background: var(--crebist-card);
  border: 1px solid var(--crebist-border);
  border-radius: var(--crebist-radius);
  box-shadow: var(--crebist-shadow);
  backdrop-filter: blur(16px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: 9rem 0 5rem;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .85rem;
  color: var(--crebist-ink);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(61,61,61,.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(39,50,54,.05);
  font-size: .92rem;
  font-weight: 600;
}

.eyebrow-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--crebist-blue-light),
      var(--crebist-blue)
    );
  box-shadow: 0 0 0 .25rem rgba(112,173,222,.14);
}

.hero-side {
  padding: 2rem;
}

.hero-side h2 {
  margin-bottom: 1rem;
  color: #2a3539;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hero-side p {
  margin-bottom: 1rem;
  color: rgba(39,50,54,.76);
}

.hero-side p:last-child {
  margin-bottom: 0;
}

.since-note {
  display: inline-block;
  margin-top: 1rem;
  color: rgba(39,50,54,.62);
  font-size: .94rem;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-band .glass-card {
  padding: 2rem;
}


/* =========================================================
   DIENSTEN
   ========================================================= */

.service-card,
.contact-card {
  height: 100%;
  padding: 1.5rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  color: var(--crebist-dark);
  background:
    linear-gradient(
      135deg,
      rgba(160,203,237,.65),
      rgba(112,173,222,.25)
    );
  border-radius: 18px;
  font-size: .9rem;
  font-weight: 800;
}

.service-card h3,
.contact-card h3 {
  margin-bottom: .7rem;
  color: #2a3539;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card p,
.contact-card p {
  color: rgba(39,50,54,.76);
}

.service-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .7rem;
  color: rgba(39,50,54,.84);
}

.service-list li::before {
  content: "";
  flex: 0 0 .7rem;
  width: .7rem;
  height: .7rem;
  margin-top: .4rem;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--crebist-blue-light),
      var(--crebist-blue)
    );
  box-shadow: 0 0 0 .25rem rgba(112,173,222,.12);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-link {
  display: block;
  color: #2a3539;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--crebist-blue);
}

address {
  margin-bottom: 0;
  color: rgba(39,50,54,.8);
  font-style: normal;
  line-height: 1.75;
}

.appointment-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  color: rgba(39,50,54,.7);
  border-top: 1px solid rgba(61,61,61,.08);
  font-size: .95rem;
}


/* =========================================================
   TEKSTPAGINA'S
   Algemene voorwaarden / privacy
   ========================================================= */

.page-header {
  position: relative;
  z-index: 1;
  padding: 9rem 0 2rem;
}

.content-section {
  padding-top: 1rem;
}

.content-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.content-card h2 {
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: #2a3539;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  margin-top: 1.75rem;
  margin-bottom: .75rem;
  color: #2a3539;
  font-size: 1.15rem;
  font-weight: 700;
}

.content-card p,
.content-card li {
  color: rgba(39,50,54,.82);
  line-height: 1.75;
}

.content-card ul,
.content-card ol {
  padding-left: 1.3rem;
}

.content-card a {
  color: #397daF;
  text-decoration: underline;
  text-decoration-color: rgba(57,125,175,.35);
  text-underline-offset: .15em;
}

.content-card a:hover {
  color: var(--crebist-blue);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.5rem;
  color: rgba(39,50,54,.72);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--crebist-blue);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  color: rgba(39,50,54,.72);
}

.footer-line {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(61,61,61,.08);
}

.footer-link {
  color: rgba(39,50,54,.72);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--crebist-blue);
}


/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2000;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(61,61,61,.10);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(37,54,70,.18);
  backdrop-filter: blur(18px);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  margin: 0;
  color: rgba(39,50,54,.78);
  font-size: .92rem;
  line-height: 1.5;
}

.cookie-text a {
  color: #397daf;
}

.cookie-button {
  flex: 0 0 auto;
  padding: .7rem 1.1rem;
  color: #fff;
  background: var(--crebist-blue);
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-button:hover {
  background: #5e9fd4;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .hero,
  .page-header {
    padding-top: 7rem;
  }

  .display-hero {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .navbar .container {
    min-height: 64px;
  }

  .navbar-brand img {
    height: 32px;
  }

  .nav-link-mobile {
    padding: .55rem .3rem;
    font-size: .95rem;
  }

  .nav-contact {
    padding: .65rem 1rem;
    font-size: .95rem;
  }
}