:root {
  --pink-primary: #FF69B4;
  --pink-dark: #E91E63;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 35px rgba(233, 30, 99, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Video Background */
.video-bg__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-bg {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.video-bg__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(233, 30, 99, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* Header/Nav */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px; /* Je navbar + logo hoogte vastzetten */
  z-index: 1000;
  padding: 1.5rem 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.7);
  height: 72px;          /* voorbeeld vaste hoogte */
  box-sizing: border-box;
}

.nav__logo-img {
  height: 80px;           /* Bigger logo */
  width: auto;
  position: relative;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Logo groter maken zonder nav hoger te maken */
.nav__logo-link {
  position: relative;
  margin-right: auto;
}

/* Variante A: laten “overlopen” met negatieve margin */
.nav__logo-img--big {
  height: 175px;         /* groter dan navbar-hoogte */
  width: 125px;
}

.nav:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--pink-primary);
}

.nav__cta {
  font-weight: 600;
}

/* Standaard: mobile-CTA uit, desktop-CTA in navbar aan */
.cta-mobile { 
  display: none;
}

/* Burger icoon (verborgen op desktop) */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
}

.btn--large {
  padding: 1.25rem 3rem;
  font-size: 1rem;
}

.btn--pink {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  color: white;
  box-shadow: var(--shadow-light);
}

.btn--pink:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid var(--pink-primary);
}

.btn--outline:hover {
  background: var(--pink-primary);
}

/* Hero */
.hero-impact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 75px;     /* Navbar hoogte + spacing */
  padding: 60px 0 80px;  /* Minder top padding nu */
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle-small {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.hero-what-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--pink-primary);
}

.hero-what-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

* Vervang alle witte tekst in sections */
.section-title,
.section-subtitle,
.about__text,
.service-card,
.results-content,
.partner-card,
.contact-details, p {
  color: #F8F9FA !important; /* Zacht lichtgrijs - altijd leesbaar */
}

/* Buttons blijven wit op pink */
.btn--pink {
  color: #FFFFFF !important;
}

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

/* shared glass background per section */
.section .container {
  position: relative;
  z-index: 2;
}

.section::before {
  content: "";
  position: absolute;
  inset: 40px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  position: relative;
  display: inline-block;
}

.section-title__accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--pink-dark));
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  font-weight: 300;
}

/* ABOUT: maak typografie consistent met hero */
.about__text{
  line-height: var(--lh-body);
  letter-spacing: 0.1px;
}

.about__text p{
  font-size: 1.2rem;
  line-height: var(--lh-body);
  margin-bottom: 1.25rem;
  opacity: 0.95; /* vergelijkbaar “glow/soft” effect als hero */
  text-align: center;
}

.about__text h3{
  font-size: var(--text-h3);
  color: var(--pink-primary) !important;
  line-height: 1.2;
  margin: 2.25rem 0 1rem;
  text-align: center;
}

/* List items iets compacter en meer “hero-like” */
.balance-list{
  font-size: var(--text-body);
}

.balance-list li{
  padding: 0.9rem 0;
  padding-left: 1.75rem; /* iets minder dan je 2rem zodat het rustiger oogt */
}

/* About: section-cta centreren */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.balance-list {
  list-style: none;
  font-size: 1.2rem;
}

.balance-list li {
  padding: 1rem 0;
  border-left: 4px solid var(--pink-primary);
  padding-left: 2rem;
  margin-bottom: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 0 10px 10px 0;
}

/* Atmosphere section */
.atmosphere {
  padding-top: 80px;
  padding-bottom: 100px;
}

.atmosphere-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
  margin-top: 2.5rem;
}

.atmosphere-grid-about {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
    margin-top: 4.5rem;
}

.atmosphere-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.atmosphere-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

/* Subtle gradient overlay for mood */
.atmosphere-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(233, 30, 99, 0.35) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Hover effect */
.atmosphere-item:hover img {
  transform: scale(1.12);
  filter: saturate(1.2) contrast(1.1) brightness(1);
}

/* Layout variations */
.atmosphere-item--large {
  grid-row: span 2;
  grid-column: span 2;
}

.atmosphere-item--wide {
  grid-column: span 2;
}


.atmosphere-item--wide-about {
    grid-column: span 4;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: white;
  transition: all 0.4s;
  box-shadow: var(--shadow-light);
  /* Services: zorg dat knoppen onderin elke kaart op dezelfde lijn staan */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--pink-primary);
}

.service-card p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* De button (jij gebruikt <a class="btn ...">) naar de bodem duwen */
.service-card > .btn {
  margin-top: auto;
  align-self: center; /* behoud je huidige center look */
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding-left: 0;
}

.service-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2.5rem;
  opacity: 0.9;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--pink-primary);
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Results */
.results-content {
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.results-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--pink-primary);
}

.results-list {
  list-style: none;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  padding-left: 0;
}

.results-list li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: var(--glass-bg);
  margin-bottom: 1.5rem;
  border-radius: 16px;
  border-left: 5px solid var(--pink-primary);
}

.results-list li::before {
  content: '✅';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #4CAF50;
  text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  z-index: 1;
}

/* Partners sectie */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: left;
  color: white;
  transition: all 0.4s;
  box-shadow: var(--shadow-light);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.partner-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--pink-primary);
  font-weight: 600;
  text-align: center;
}

.partner-features {
  list-style: none;
  padding-left: 0;
}

.partner-features li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  opacity: 0.95;
  font-size: 1.1rem;
}

.partner-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: var(--pink-primary);
  font-weight: bold;
  font-size: 1rem;
}

/* Contact */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto 4rem;
}

.gentle-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-light);
}

.form-field {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  height: 60px;
  padding: 1.5rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-field textarea {
  height: 140px;
  resize: vertical;
  padding-top: 1.25rem;
}

.form-field label {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  color: #666;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s;
  font-weight: 500;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
  background: white;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 0.5rem;
  left: 1rem;
  font-size: 0.85rem;
  color: var(--pink-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  text-align: center;
  margin-top: 1rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  padding: 1.5rem;
  border-radius: 16px;
}

.contact-icon {
  font-size: 1.8rem;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

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

.footer h3 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1rem;
  color: var(--pink-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  visibility: hidden;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-icon-full {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0;
  border-radius: 0 !important; /* Geen ronding meer */
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  width: fit-content;
  height: fit-content;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s;
  background: var(--glass-bg);
}

.footer-social a:hover {
  background: var(--pink-primary);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* Section Arrows - Echte pijl icoon */
.section-arrow,
.footer-arrow {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  z-index: 10;
  font-size: 16px; /* Perfecte pijl grootte */
  font-weight: bold;
}

/* Echte omhoog pijl → */
.section-arrow::before,
.footer-arrow::before {
  content: '↑';
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Hover: pijl pulse + lift */
.section-arrow:hover,
.footer-arrow:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-hover);
}

.footer-arrow {
  bottom: 6rem;
  right: 2rem;
}

/* === Readability fix over video === */
:root{
  --text-on-video: #E9EDF2;         /* i.p.v. hard #fff */
  --text-on-video-muted: rgba(233, 237, 242, 0.88);
  --text-shadow-strong: 0 2px 10px rgba(0,0,0,0.75);
}

/* Basis: alle tekst in sections net iets donkerder-wit + schaduw */
.section,
.footer {
  color: var(--text-on-video);
  text-shadow: var(--text-shadow-strong);
}

/* Overschrijf jouw specifieke white rules */
.hero-content,
.about__text,
.results-content,
.contact-details,
.service-card,
.partner-card,
.footer {
  color: var(--text-on-video);
}

/* Titels/subtitels */
.section-title,
.hero-title {
  color: var(--text-on-video);
}

.section-subtitle,
.hero-subtitle,
.hero-subtitle-small,
.hero-what-text,
.about__text p,
.service-card p,
.results-list li,
.partner-features li {
  color: var(--text-on-video-muted);
}

/* Links in content (niet je knoppen) */
.section a:not(.btn),
.footer a:not(.btn) {
  color: var(--text-on-video);
}

/* Nav blijft zoals hij is (wit is daar prima) */
.site-header,
.nav,
.nav__links a {
  text-shadow: none;
}

.form-message {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-message--success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.6);
  color: #C8E6C9;
}

.form-message--error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.7);
  color: #FFCDD2;
}

.form-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #FFCDD2;
}


/* Mobile/tablet */
@media (max-width: 900px) {
  .atmosphere-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .atmosphere-item--large,
  .atmosphere-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav {
    position: relative;
  }

  .nav__links {
    position: absolute;
    top: 100%;        /* direct onder navbar */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-out;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
  
  .nav__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__links li {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

   /* CTA verbergen op mobile */
  .nav__cta {
    display: none !important;
  }

  /* CTA boven hero aan */
  .cta-mobile {
    display: flex;
    justify-content: center;
    padding: 0px 20px;
    margin-top: 140px; /* zorgt dat hij onder de fixed navbar valt; eventueel tunen */
  }
  
  /* Burger animatie bij open */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* CTA knop naar mobile links verplaatsen */
  .nav__cta {
    order: 1;
    margin-top: 1rem;

    border-radius: 12px !important; /* Rechthoekig i.p.v. rond */
    padding: 12px 24px !important;  /* Navbar-hoogte */
    margin-top: 4px;                /* Past in navbar */
    font-size: 0.85rem !important;
    min-height: 44px;               /* Exact navbar hoogte */
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-content {
    padding: 0 10px;
  }

  /* Hero */
  .hero-impact {
    margin-top: 0px;     /* Navbar hoogte + spacing */
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-arrow,
  .footer-arrow {
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
  }
  
  .section-arrow::before,
  .footer-arrow::before {
    font-size: 16px;
  }

  /* Maak de glass achtergrond minder “krap” aan de randen */
  .section::before {
    inset: 24px 14px;      /* was 40px 20px */
    border-radius: 22px;   /* iets kleiner op mobile */
  }

  /* Container wat meer padding aan de zijkanten */
  .container {
    padding: 0 16px;       /* was 0 20px, iets strakker maar constanter */
  }

  /* About tekst: iets minder groot, meer leesbaar */
  .about__text p {
    font-size: 1.2rem;    /* was 1.2rem */
    margin-bottom: 1.1rem;
  }

  .about__text h3 {
    font-size: 1.5rem;     /* was 1.8rem */
  }

  /* Cards compacter op mobile */
  .service-card {
    padding: 1.75rem 1.35rem;  /* was 3rem 2.5rem */
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 1.5rem;         /* was 1.8rem */
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 1.05rem;        /* was 1.1rem */
    margin-bottom: 1rem;
  }

  .service-features li {
    padding: 0.4rem 0 0.4rem 2.1rem; /* iets compacter */
  }
}

@media (max-width: 600px) {
  .atmosphere-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }
}