:root {
  --bg: #000000;
  --surface: #f4f1ec;
  --text: #14161a;
  --muted: #5b616b;
  --accent: #997b6c;
  --accent-hover: #b08e7d;
  --border: #e3e6ea;
  --radius: 12px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #997b6c;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1), visibility 0.7s ease;
}

.preloader.is-hidden {
  transform: translateY(-100%);
  visibility: hidden;
}

.preloader-text {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preloader-dots::after {
  content: "";
  animation: preloader-dots 1.2s steps(4, end) infinite;
}

@keyframes preloader-dots {
  0%   { content: ""; }
  25%  { content: "."; }
  50%  { content: ".."; }
  75%  { content: "..."; }
  100% { content: ""; }
}

/* Floating header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 41;
  display: inline-flex;
  align-items: center;
  transform-origin: center center;
  will-change: transform;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Soepele logo-animatie bij openen én sluiten van het menu */
.logo.is-anim {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease, visibility 0.3s ease;
}

/* Groot gerenderd zodat het scherp blijft; JS schaalt het omlaag */
.logo img {
  height: 180px;
  width: auto;
  display: block;
}

.nav {
  display: none;
}

/* Hamburger-toggle (op alle schermen) */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.3rem;
  background: #997b6c;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font: inherit;
  color: #fff;
  border-radius: 999px;
  margin-left: auto;    /* toggle rechts (logo staat fixed, buiten de flow) */
  z-index: 30;
}

.menu-label {
  display: inline-block;
  min-width: 4.5em;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.menu-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 42px;
}

.menu-bars span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Open: de 2 strepen worden 1 */
.menu-toggle.is-open .menu-bars span:first-child {
  transform: translateY(4px);
}

.menu-toggle.is-open .menu-bars span:last-child {
  transform: translateY(-4px);
  opacity: 0;
}

/* Curtain-menu dat van boven uitklapt */
.curtain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 20;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.curtain.is-open {
  transform: translateY(0);
}

.curtain-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.curtain-nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.25s ease,
              opacity 0.4s ease,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.curtain-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.curtain-nav a:hover {
  color: var(--accent);
}

.curtain-nav a:hover::after {
  width: 100%;
}

/* Items faden gestaffeld omhoog bij openen (zoals SS Beauty) */
.curtain.is-open .curtain-nav a {
  opacity: 1;
  transform: translateY(0);
}

.curtain.is-open .curtain-nav a:nth-child(1) { transition-delay: 0.15s; }
.curtain.is-open .curtain-nav a:nth-child(2) { transition-delay: 0.23s; }
.curtain.is-open .curtain-nav a:nth-child(3) { transition-delay: 0.31s; }
.curtain.is-open .curtain-nav a:nth-child(4) { transition-delay: 0.39s; }

.no-scroll {
  overflow: hidden;
}

/* Content schuift omhoog zodra de preloader weg is */
main {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

body.loaded main {
  opacity: 1;
  transform: translateY(0);
}

/* Legal-pagina heeft geen preloader: content direct zichtbaar */
body.legal-page main {
  opacity: 1;
  transform: none;
}

/* Floating social links */
/* Floating WhatsApp-knop */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.socials {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 58px;
  gap: 10px;
  padding: 10px 0;
  background: #997b6c;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  background: #fff;
  color: #997b6c;
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Algemene voorwaarden-pagina */
body.legal-page {
  background: var(--surface);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.legal-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.legal-back {
  color: var(--accent);
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--accent-hover);
}

.legal-inner {
  max-width: 760px;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.legal h1 {
  margin: 0 0 1rem;
  color: #2b2320;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
}

.legal-intro {
  margin: 0 0 3rem;
  color: #4a4a4a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 0 3rem;
}

.legal-block {
  margin-bottom: 2.2rem;
}

.legal-block h2 {
  margin: 0 0 0.6rem;
  color: #2b2320;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.legal-block p {
  margin: 0;
  color: #4a4a4a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-block ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-block li {
  margin-bottom: 0.55rem;
  color: #4a4a4a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-block li strong {
  color: #2b2320;
  font-weight: 600;
}

/* CTA met blur-achtergrond */
.legal-cta {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  margin-top: 3.5rem;
  padding: 3.5rem 2rem;
  text-align: center;
  background: #2b2320;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  margin: 3rem 0;
}

.legal-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/image.jpg") center / cover no-repeat;
  filter: blur(9px) brightness(0.5);
  border-radius: 26px;
  transform: scale(1.06);
  z-index: 0;
}

.legal-cta-content {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin: 0 auto;
}

.legal-cta-content h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 500;
}

.legal-cta-content p {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.legal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  background: #2b2320;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.legal-cta-btn:hover {
  transform: translateY(-2px);
}

.legal-cta-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer - warm & elegant */
.footer {
  position: relative;
  z-index: 1;
  margin-top: -30px;
  background: #2b2320;
  color: #f4ece0;
  border-radius: 30px 30px 0 0;
}

.footer-inner {
  padding-top: 4rem;
  padding-bottom: 1.8rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 46ch;
}

.footer-cols {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col h4 {
  margin: 0 0 0.7rem;
  color: #f4ece0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-col a {
  color: rgba(244, 236, 224, 0.6);
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-title {
  margin: 0;
  color: #f4ece0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
}

.footer-tag {
  margin: 0;
  max-width: 44ch;
  color: rgba(244, 236, 224, 0.6);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-phone {
  color: #f4ece0;
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 236, 224, 0.12);
  color: rgba(244, 236, 224, 0.45);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

.footer-copy a {
  color: rgba(244, 236, 224, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 2rem 3rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Tagline onder het logo in de hero */
.hero-tagline {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 40ch;
  margin: 0;
  padding: 0 1.5rem;
  text-align: center;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}


/* Doorlopende off-white achtergrond met linnen-texture */
.cream {
  position: relative;
  background: var(--surface);
  padding-bottom: 3.5rem;
}

.cream::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(90, 70, 55, 0.06) 0, rgba(90, 70, 55, 0.06) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(90, 70, 55, 0.06) 0, rgba(90, 70, 55, 0.06) 1px, transparent 1px, transparent 3px);
  background-size: 3px 3px;
}

.cream > * {
  position: relative;
  z-index: 1;
}

/* Intro-sectie */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0;
}

.intro {
  position: relative;
  top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-media {
  order: 2;            /* rechts */
  display: flex;
  justify-content: flex-end;
}

/* Feature-kaart */
.feature-card {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.8rem 2.4rem;
  background: #997b6c;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.feature-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-top: 3px;
  color: #fff;
}

.feature-text h3 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.feature-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Gestapelde foto's */
.photo-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
}

.photo-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.5s ease;
}

/* Achterste foto's krijgen een donkere overlay; alleen de bovenste is helder */
.photo-stack img:nth-child(1) {
  transform: rotate(-8deg) translate(-8%, 3%);
  filter: brightness(0.5);
}

.photo-stack img:nth-child(2) {
  transform: rotate(7deg) translate(8%, -2%);
  filter: brightness(0.5);
}

.photo-stack img:nth-child(3) {
  transform: rotate(-1deg);
  filter: brightness(1);
}

/* Bij hover waaieren de foto's iets verder uit */
.photo-stack:hover img:nth-child(1) {
  transform: rotate(-12deg) translate(-14%, 4%);
}

.photo-stack:hover img:nth-child(2) {
  transform: rotate(11deg) translate(14%, -3%);
}

.photo-stack:hover img:nth-child(3) {
  transform: rotate(0deg) scale(1.02);
}

.intro-title {
  margin: 0 0 1.5rem;
  color: #2b2320;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
}

/* Scroll-reveal (zoals SS Beauty) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.intro-body .reveal:nth-child(1).in-view { transition-delay: 0.05s; }
.intro-body .reveal:nth-child(2).in-view { transition-delay: 0.18s; }
.intro-body .reveal:nth-child(3).in-view { transition-delay: 0.31s; }

.intro-spark {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4em;
  vertical-align: -0.05em;
}

.intro-spark svg {
  width: 0.8em;
  height: 0.8em;
  fill: var(--accent);
  transform-origin: center;
  animation: spark-twinkle 2.6s ease-in-out infinite;
}

@keyframes spark-twinkle {
  0%, 100% { transform: rotate(0deg) scale(0.85); opacity: 0.7; }
  50%      { transform: rotate(180deg) scale(1.1); opacity: 1; }
}

.intro-text {
  margin: 0 0 2.5rem;
  color: #4a4a4a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 400;
  line-height: 1.75;
}

.intro-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: #2b2320;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

.intro-btn span {
  position: relative;
  z-index: 1;
}

/* Fill schuift bij hover van links in */
.intro-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-btn:hover::before {
  transform: scaleX(1);
}

/* Marquee - doorlopend schuivende fotoband */
.marquee {
  overflow: hidden;
  width: 100%;
  margin: 3rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 175s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee img {
  flex: 0 0 auto;
  width: 380px;
  height: 520px;
  margin-right: 22px;
  object-fit: cover;
  border-radius: 14px;
  filter: brightness(0.82);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  display: block;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee {
    margin: 3rem 0 1.5rem;
  }
  .marquee img {
    width: 250px;
    height: 340px;
    margin-right: 14px;
  }
}

/* Sierlijke scheiding (flourish) - full width */
.flourish {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 3.5rem 0 0;
  color: var(--accent);
}

.flourish-line {
  flex: 1;
  height: 1px;
  background: rgba(153, 123, 108, 0.45);
}

.flourish-orn {
  flex: 0 0 auto;
  width: 80px;
  height: auto;
}

/* Dienstensectie */
.services {
  padding: 5.5rem 0 6.5rem;
}

.services-title {
  margin: 0;
  text-align: center;
  color: #2b2320;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
}

.services-intro {
  max-width: 50ch;
  margin: 1rem auto 3.5rem;
  text-align: center;
  color: #5a5a5a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(120deg, #f6efe6 0%, #e9d8c5 35%, #dcc6ac 55%, #f6efe6 100%);
  background-size: 300% 300%;
  animation: card-gradient 9s ease infinite;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease, opacity 0.8s ease;
}

@keyframes card-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-card:nth-child(2) { animation-delay: -2s; }
.service-card:nth-child(3) { animation-delay: -4s; }
.service-card:nth-child(4) { animation-delay: -6s; }

.service-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 1.3rem;
  color: var(--accent);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background-color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Eerste dienst: kaart met afbeelding + overlay */
.service-card--img {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background-size: cover;
  background-position: center;
}

.service-card--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.8));
  transition: background 0.3s ease;
}

.service-card--img > * {
  position: relative;
  z-index: 1;
}

.service-card--img:hover {
  background-color: transparent;
}

.service-card--img:hover::before {
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.7));
}

.service-card--img .service-num {
  color: #fff;
}

.service-card--img h3 {
  color: #fff;
}

.service-card--img p {
  color: rgba(255, 255, 255, 0.85);
}

.service-num {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 0 0 0.7rem;
  color: #2b2320;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: #4a4a4a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Foto-kaart tekst extra leesbaar */
.service-card--img .service-num,
.service-card--img h3 {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.service-card--img p {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* Proces / zo werkt het */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
  padding-top: 2.2rem;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(153, 123, 108, 0.35);
}

.step::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.step-num {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 0 0 0.6rem;
  color: #2b2320;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: #4a4a4a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
}

.steps .step:nth-child(1).in-view { transition-delay: 0.05s; }
.steps .step:nth-child(2).in-view { transition-delay: 0.15s; }
.steps .step:nth-child(3).in-view { transition-delay: 0.25s; }
.steps .step:nth-child(4).in-view { transition-delay: 0.35s; }

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.services-grid .service-card:nth-child(1).in-view { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2).in-view { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3).in-view { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(4).in-view { transition-delay: 0.35s; }

/* Tablet */
@media (max-width: 1024px) {
  .intro {
    gap: 2.8rem;
  }

  .section {
    padding: 5rem 0;
  }

  .services {
    padding: 4rem 0 5rem;
  }

  .feature-card {
    max-width: 440px;
    padding: 2.3rem 2rem;
    gap: 1.6rem;
  }

  .marquee img {
    width: 300px;
    height: 410px;
    margin-right: 18px;
  }

  .curtain-nav a {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }
}

@media (max-width: 768px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .flourish {
    padding-top: 2rem;
  }

  .services {
    padding: 2.5rem 0 3.5rem;
  }

  .photo-stack {
    width: 68vw;
    max-width: 310px;
    margin: 1rem auto;
  }

  /* Minder uitspreiding op mobiel (voorkomt horizontale scroll) */
  .photo-stack img:nth-child(1),
  .photo-stack:hover img:nth-child(1) {
    transform: rotate(-6deg) translate(-5%, 3%);
  }

  .photo-stack img:nth-child(2),
  .photo-stack:hover img:nth-child(2) {
    transform: rotate(5deg) translate(5%, -2%);
  }

  .photo-stack img:nth-child(3),
  .photo-stack:hover img:nth-child(3) {
    transform: rotate(-1deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-tagline {
    font-size: clamp(1.05rem, 4.6vw, 1.45rem);
    max-width: 40ch;
  }
}
