/* =========================================================
   Besparen met Sydney — One-page (agency-level)
   Updated: background gradient now clearly visible.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }
:focus { outline: none; }
:focus-visible { outline: 3px solid rgba(44, 119, 79, .45); outline-offset: 3px; border-radius: 10px; }

/* ---------- Theme ---------- */
:root{
  --beige-1: #f7f3ea;
  --beige-2: #f2ece0;

  --green-700: #1f6d47;
  --green-600: #2c774f;
  --green-500: #3a8a5b;

  --purple-600: #6a57c7;

  --text: #121514;
  --muted: rgba(18,21,20,.70);
  --muted-2: rgba(18,21,20,.55);

  --border: rgba(18,21,20,.12);
  --border-2: rgba(18,21,20,.08);

  --shadow: 0 18px 50px rgba(18,21,20,.12);
  --shadow-soft: 0 10px 30px rgba(18,21,20,.10);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1120px;
  --pad: 20px;

  --header-h: 74px;
  --marquee-h: 44px;

  --ease: cubic-bezier(.2,.85,.2,1);
}

/* ---------- Background: clearly visible soft gradient ---------- */
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;

  /* More visible, still soft + premium */
  background:
    radial-gradient(1100px 680px at 12% -8%, rgba(58,138,91,.34), transparent 60%),
    radial-gradient(1000px 640px at 92% 6%, rgba(106,87,199,.22), transparent 58%),
    radial-gradient(1100px 700px at 50% 112%, rgba(58,138,91,.22), transparent 62%),
    linear-gradient(180deg, var(--beige-1) 0%, var(--beige-2) 100%);
}

/* Subtle texture overlay so the gradient reads better */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 22% 22%, rgba(255,255,255,.30), transparent 70%),
    radial-gradient(900px 520px at 78% 36%, rgba(255,255,255,.22), transparent 72%);
  mix-blend-mode: overlay;
  opacity: .55;
  z-index: -2;
}

/* Section “wash” panels so background is ALWAYS visible */
.section{
  position: relative;
  padding: 68px 0;
}
.section::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255,255,255,.16);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(18,21,20,.05);
  backdrop-filter: blur(2px);
  opacity: .9;
}
.section > .container{ position: relative; z-index: 1; }

@media (min-width: 900px){
  .section{ padding: 92px 0; }
}

/* ---------- Layout ---------- */
.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.section-head{ max-width: 820px; }
.section-title{
  font-size: clamp(24px, 2.3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-subtitle{
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
}

/* ---------- Skip link ---------- */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 12px;
}
.skip-link:focus{ left: 12px; }

/* ---------- Eyebrow / Pills ---------- */
.eyebrow{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--border-2);
  box-shadow: 0 8px 22px rgba(18,21,20,.06);
  color: var(--green-700);
  font-weight: 650;
  font-size: 13px;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(18,21,20,.06);
  color: rgba(18,21,20,.82);
  font-weight: 650;
  font-size: 13px;
}
.pill-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(44,119,79,.9);
  box-shadow: 0 0 0 6px rgba(44,119,79,.14);
}
.pill-icon{ color: var(--purple-600); display: inline-flex; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247,243,234,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18,21,20,.06);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.brand:hover{ transform: translateY(-1px); background: rgba(255,255,255,.55); }
.brand-logo{ width: 100px; height: 100px; object-fit: contain; }
.brand-text{ font-weight: 760; letter-spacing: -0.02em; }

.nav-toggle{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 26px rgba(18,21,20,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-lines{ width: 18px; height: 12px; position: relative; }
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(18,21,20,.85);
  border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle-lines::before{ top: 2px; }
.nav-toggle-lines::after{ top: 8px; }

.site-nav{
  position: fixed;
  top: calc(var(--header-h) + var(--marquee-h));
  left: 0;
  right: 0;
  padding: 14px var(--pad) 18px;
  background: rgba(247,243,234,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18,21,20,.06);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.site-nav a{
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(18,21,20,.86);
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.site-nav a:hover{
  background: rgba(255,255,255,.72);
  border-color: rgba(18,21,20,.10);
  transform: translateY(-1px);
}
.site-nav .nav-cta{
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(44,119,79,.16), rgba(106,87,199,.12));
  border: 1px solid rgba(44,119,79,.20);
}
.site-nav.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-open .nav-toggle-lines::before{ top: 5px; transform: rotate(45deg); }
.nav-open .nav-toggle-lines::after{ top: 5px; transform: rotate(-45deg); }

@media (min-width: 980px){
  .nav-toggle{ display: none; }
  .site-nav{
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .site-nav a{
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 640;
  }
  .site-nav .nav-cta{ margin-left: 6px; margin-top: 0; padding: 10px 14px; }
}

/* ---------- Marquee ---------- */
.marquee{
  position: sticky;
  top: var(--header-h);
  z-index: 35;
  height: var(--marquee-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,21,20,.06);
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 14px;
  will-change: transform;
  animation: marquee 22s linear infinite;
}
.marquee-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(44,119,79,.16);
  background: linear-gradient(135deg, rgba(58,138,91,.10), rgba(106,87,199,.08));
  color: rgba(18,21,20,.88);
  font-weight: 650;
  white-space: nowrap;
}
.marquee-icon{ color: var(--green-600); display: inline-flex; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .marquee-track{ animation: none; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 720;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(44,119,79,.94), rgba(58,138,91,.94));
  color: #fff;
  box-shadow: 0 14px 34px rgba(31,109,71,.22);
  border-color: rgba(31,109,71,.22);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 18px 44px rgba(31,109,71,.26); }
.btn-ghost{
  background: rgba(255,255,255,.72);
  border-color: rgba(18,21,20,.08);
  color: rgba(18,21,20,.90);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.86);
  border-color: rgba(18,21,20,.12);
}
.btn-full{ width: 100%; }
.btn-icon{ display: inline-flex; }

/* ---------- Hero ---------- */
.hero{ padding-top: 44px; }
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
.hero-title{
  margin-top: 12px;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.hero-title-accent{
  display: inline-block;
  background: linear-gradient(90deg, rgba(44,119,79,.98), rgba(106,87,199,.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle{
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 56ch;
}
.hero-actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-meta{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-mini{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.mini-card{
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(255,255,255,.74);
  box-shadow: 0 12px 30px rgba(18,21,20,.08);
}
.mini-label{ font-size: 12px; color: var(--muted-2); font-weight: 780; }
.mini-value{ margin-top: 6px; font-weight: 860; letter-spacing: -0.03em; }
.mini-sub{ margin-top: 6px; font-size: 12.5px; color: var(--muted); }

.hero-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow);
}
.hero-image{
  width: 100%;
  height: 380px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s var(--ease);
}
.hero-photo:hover .hero-image{ transform: scale(1.06); }

@media (min-width: 900px){
  .hero{ padding-top: 58px; }
  .hero-grid{ grid-template-columns: 1.05fr .95fr; gap: 34px; }
  .hero-image{ height: 520px; }
  .hero-mini{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Cards ---------- */
.cards-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.card{
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18,21,20,.08);
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 28px rgba(18,21,20,.08);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover{ transform: translateY(-2px); box-shadow: 0 16px 40px rgba(18,21,20,.12); border-color: rgba(18,21,20,.12); }
.card-icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(44,119,79,.16), rgba(106,87,199,.12));
  border: 1px solid rgba(44,119,79,.18);
  color: rgba(18,21,20,.86);
  box-shadow: 0 10px 24px rgba(18,21,20,.08);
}
.card-title{ margin-top: 12px; font-size: 18px; letter-spacing: -0.02em; }
.card-text{ margin-top: 8px; color: var(--muted); font-size: 14.5px; }
@media (min-width: 900px){
  .cards-grid{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* ---------- About ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
.image-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow-soft);
}
.image-frame img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.image-frame:hover img{ transform: scale(1.05); }

.about-text{ margin-top: 12px; color: rgba(18,21,20,.82); font-size: 15.5px; max-width: 72ch; }
.about-list{ margin-top: 14px; display: grid; gap: 10px; }
.about-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,21,20,.08);
  background: rgba(255,255,255,.72);
  color: rgba(18,21,20,.84);
  font-weight: 620;
}
.about-check{ color: var(--green-600); margin-top: 2px; }
.about-cta{ margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }

@media (min-width: 900px){
  .about-grid{ grid-template-columns: .95fr 1.05fr; gap: 30px; }
  .image-frame img{ height: 600px; }
}

/* ---------- Services ---------- */
.services-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.services-grid--two{ grid-template-columns: 1fr; }
.service-card{
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18,21,20,.08);
  background: rgba(255,255,255,.74);
  box-shadow: 0 12px 30px rgba(18,21,20,.08);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.service-card:hover{ transform: translateY(-2px) scale(1.01); box-shadow: 0 18px 46px rgba(18,21,20,.12); border-color: rgba(18,21,20,.12); }
.service-top{ display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-title{ font-size: 18px; letter-spacing: -0.02em; line-height: 1.2; }
.service-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  color: rgba(18,21,20,.85);
  background: linear-gradient(135deg, rgba(58,138,91,.12), rgba(106,87,199,.10));
  border: 1px solid rgba(44,119,79,.16);
  white-space: nowrap;
}
.service-text{ margin-top: 10px; color: var(--muted); font-size: 14.5px; max-width: 76ch; }
.service-price{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(247,243,234,.80);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price-label{ color: var(--muted-2); font-weight: 760; font-size: 12px; }
.price-value{ font-weight: 850; letter-spacing: -0.02em; }
@media (min-width: 900px){
  .services-grid--two{ grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* CTA box */
.services-cta{ margin-top: 14px; }
.cta-box{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18,21,20,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(247,243,234,.92));
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
  display: grid;
  gap: 12px;
}
.cta-title{ font-size: 18px; letter-spacing: -0.02em; }
.cta-text{ margin-top: 6px; color: var(--muted); font-size: 14.5px; }
.cta-actions{ display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 900px){
  .cta-box{ grid-template-columns: 1.2fr .8fr; align-items: center; padding: 18px 18px; }
  .cta-actions{ justify-content: flex-end; }
}

/* ---------- Gallery ---------- */
.gallery-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery-item{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(18,21,20,.10);
  box-shadow: 0 12px 30px rgba(18,21,20,.10);
}
.gallery-item img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
  transform: scale(1.02);
}
.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.18));
  opacity: .9;
  pointer-events: none;
}
.gallery-item:hover img{ transform: scale(1.07); filter: saturate(1.04); }
@media (min-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gallery-item img{ height: 240px; }
}

/* ---------- Contact ---------- */
.contact-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.contact-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
}
.contact-title{ font-size: 18px; letter-spacing: -0.02em; }
.form{ margin-top: 12px; display: grid; gap: 12px; }
.field label{
  display: inline-block;
  font-weight: 720;
  font-size: 13px;
  color: rgba(18,21,20,.86);
  margin-bottom: 6px;
}
.field input,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,21,20,.12);
  background: rgba(247,243,234,.74);
  color: rgba(18,21,20,.92);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus{
  border-color: rgba(44,119,79,.35);
  box-shadow: 0 0 0 6px rgba(44,119,79,.12);
  background: rgba(255,255,255,.86);
}
.form-note{ color: var(--muted-2); font-size: 12.5px; margin-top: 2px; }

.contact-aside{ display: grid; gap: 12px; }
.contact-details{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
}
.detail{ padding: 12px 0; border-bottom: 1px solid rgba(18,21,20,.06); }
.detail:last-child{ border-bottom: 0; }
.detail-label{ color: var(--muted-2); font-weight: 760; font-size: 12px; }
.detail-value{ margin-top: 6px; font-weight: 720; color: rgba(18,21,20,.90); }
.detail-value a{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.detail-value a:hover{ color: var(--green-700); }
.detail-actions{ margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px; }

.map-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18,21,20,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.map-head{ padding: 18px 16px 12px; }
.map-title{ font-size: 18px; letter-spacing: -0.02em; }
.map-sub{ margin-top: 6px; color: var(--muted); font-size: 14px; }
.map-embed{
  position: relative;
  width: 100%;
  height: 300px;
  border-top: 1px solid rgba(18,21,20,.06);
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; filter: saturate(.9) contrast(.98); }

@media (min-width: 980px){
  .contact-grid{ grid-template-columns: 1.05fr .95fr; gap: 14px; align-items: start; }
  .map-embed{ height: 320px; }
}

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid rgba(18,21,20,.06);
  background: rgba(255,255,255,.56);
  backdrop-filter: blur(16px);
}
.footer-inner{
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; }
.footer-logo{
  width: 120px; height: 100px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(18,21,20,.08);
  background: rgba(255,255,255,.66);
  padding: 2px;
}
.footer-name{ font-weight: 820; letter-spacing: -0.02em; }
.footer-tagline{ color: var(--muted); font-size: 13px; font-weight: 650; }
.footer-note{ margin-top: 12px; color: var(--muted); font-size: 13px; max-width: 78ch; }
.footer-right{ display: flex; align-items: center; justify-content: flex-start; }
.to-top{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,21,20,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(18,21,20,.06);
  font-weight: 720;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}
.to-top:hover{ transform: translateY(-1px); background: rgba(255,255,255,.86); border-color: rgba(18,21,20,.12); }
.to-top-icon{ color: var(--green-700); display: inline-flex; }

.footer-bottom{ border-top: 1px solid rgba(18,21,20,.06); }
.footer-bottom-inner{
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  color: var(--muted-2);
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-sep{ opacity: .6; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta{
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(18,21,20,.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(18,21,20,.16);
}
.mobile-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(247,243,234,.84);
  border: 1px solid rgba(18,21,20,.10);
  font-weight: 760;
  font-size: 13px;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}
.mobile-cta-btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.78); border-color: rgba(18,21,20,.14); }
.micon{ color: var(--green-700); display: inline-flex; }
@media (min-width: 900px){ .mobile-cta{ display: none; } }
@media (max-width: 899px){ body{ padding-bottom: 86px; } }

/* ---------- Lightbox ---------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}
.lightbox.is-open{ opacity: 1; pointer-events: auto; }
.lightbox-backdrop{ position: absolute; inset: 0; background: rgba(10,12,11,.72); }
.lightbox-dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(940px, calc(100% - 26px));
  transform: translate(-50%, -50%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.lightbox-img{
  width: 100%;
  height: min(78vh, 720px);
  object-fit: contain;
  background: rgba(0,0,0,.12);
}
.lightbox-close{
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}
.lightbox-close:hover{ transform: translateY(-1px); background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.28); }
.lightbox-close span{ font-size: 26px; line-height: 1; }

/* ---------- Scroll reveal ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
  .marquee-track{ animation: none; }
}

/* ---------- Anchor offset ---------- */
:target{ scroll-margin-top: calc(var(--header-h) + var(--marquee-h) + 14px); }
/* =========================================
   EXTRA: cards iets transparanter
   (meer gradient zichtbaar, blijft premium)
   ========================================= */

.card,
.service-card,
.contact-card,
.contact-details,
.map-card,
.mini-card{
  background: rgba(255,255,255,.62) !important;
}

.site-footer{
  background: rgba(255,255,255,.46) !important;
}

.mobile-cta{
  background: rgba(255,255,255,.70) !important;
}
/* ================================
   GRADIENT 3x ZICHTBAARDER (OVERRIDES)
   ================================ */

/* 1) Sterkere achtergrond (groter + hogere opacity) */
body{
  background:
    radial-gradient(1200px 760px at 10% -10%, rgba(58,138,91,.55), transparent 58%),
    radial-gradient(1100px 740px at 92% 4%, rgba(106,87,199,.38), transparent 56%),
    radial-gradient(1200px 780px at 50% 112%, rgba(58,138,91,.36), transparent 60%),
    linear-gradient(180deg, #faf6ee 0%, #f1eadc 100%) !important;
}

/* 2) Minder “wit wash” op elke sectie (die verbergt je gradient) */
.section::before{
  background: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(0px) !important;
  opacity: 1 !important;
}

/* 3) Cards transparanter zodat gradient doorschijnt */
.card,
.service-card,
.contact-card,
.contact-details,
.map-card,
.mini-card{
  background: rgba(255,255,255,.50) !important;
}

/* 4) Footer en CTA ook iets transparanter */
.site-footer{ background: rgba(255,255,255,.34) !important; }
.mobile-cta{ background: rgba(255,255,255,.58) !important; }
/* =========================================
   FULL-PAGE GRADIENT — OVERAL ZICHTBAAR
   ========================================= */

/* 1) Basis: continue gradient over de HELE pagina */
body{
  background:
    linear-gradient(
      135deg,
      rgba(58,138,91,.45) 0%,
      rgba(247,243,234,.95) 35%,
      rgba(106,87,199,.35) 65%,
      rgba(247,243,234,.95) 100%
    ) !important;
}

/* 2) Extra zachte diepte (maakt het “levend”) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(58,138,91,.22),
      rgba(106,87,199,.18)
    );
  opacity: .85;
  z-index: -1;
}

/* 3) Secties niet meer afvlakken */
.section::before{
  background: transparent !important;
  backdrop-filter: none !important;
}

/* 4) Cards voldoende transparant zodat gradient DOORKOMT */
.card,
.service-card,
.contact-card,
.contact-details,
.map-card,
.mini-card{
  background: rgba(255,255,255,.55) !important;
}

/* 5) Footer & CTA blijven premium maar transparant */
.site-footer{
  background: rgba(255,255,255,.40) !important;
}
.mobile-cta{
  background: rgba(255,255,255,.60) !important;
}
