/* =========================================================
   APCZ — Luxe glass / geel / wit / zwart
   File: public/assets/css/style.css
   Final polished rebuild
   ========================================================= */

:root{
  --yellow:#F4C400;
  --yellow-soft:#FFE27A;
  --yellow-pale:#FFF6D6;
  --yellow-cream:#FFFBEF;

  --black:#0b0b0b;
  --black-2:#121212;
  --black-3:#1a1a1a;

  --white:#FFFFFC;
  --white-soft:#fffdf8;

  --text:#101010;
  --muted:rgba(16,16,16,.72);
  --muted-2:rgba(16,16,16,.58);
  --muted-on-dark:rgba(255,255,255,.80);

  --border:rgba(0,0,0,.10);
  --border-strong:rgba(0,0,0,.16);
  --border-on-dark:rgba(255,255,255,.14);

  --shadow:0 24px 70px rgba(0,0,0,.12);
  --shadow-lg:0 35px 110px rgba(0,0,0,.18);
  --shadow-strong:0 35px 110px rgba(0,0,0,.35);

  --radius:22px;
  --radius-md:18px;
  --radius-lg:30px;
  --radius-xl:34px;

  --container:1200px;

  --yellow-glow:0 18px 55px rgba(244,196,0,.22);
  --yellow-glow-strong:0 28px 90px rgba(244,196,0,.28);
}

/* =========================================
   RESET
   ========================================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  line-height:1.6;
  background:
    radial-gradient(1200px 540px at 10% -5%, rgba(244,196,0,.05), transparent 55%),
    radial-gradient(920px 420px at 100% 0%, rgba(244,196,0,.035), transparent 52%),
    linear-gradient(180deg, #fffdf9 0%, #fffefc 100%);
}

img,
svg,
video,
canvas,
iframe{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  cursor:pointer;
}

::selection{
  background:rgba(244,196,0,.35);
  color:#111;
}

/* =========================================
   LAYOUT
   ========================================= */
.container{
  width:min(var(--container), calc(100% - 36px));
  margin:0 auto;
}

.center{
  text-align:center;
}

.stack{
  display:grid;
  gap:14px;
}

.split{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:34px;
  align-items:center;
}

.action-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.action-row--center{
  justify-content:center;
}

.section-intro{
  max-width:980px;
  margin:0 auto;
}

.section-intro--dark{
  color:var(--muted-on-dark);
}

.section-cta{
  margin-top:24px;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.h1{
  margin:12px 0 10px;
  font-weight:950;
  line-height:1.06;
  letter-spacing:-.02em;
  font-size:clamp(2.1rem, 4.2vw, 3.7rem);
}

.h2{
  margin:0 0 12px;
  font-size:clamp(1.7rem, 2.3vw, 2.45rem);
  font-weight:950;
  line-height:1.12;
  letter-spacing:-.02em;
}

.p{
  margin:0;
  font-size:1.05rem;
  line-height:1.9;
  color:var(--muted);
}

.lead{
  color:rgba(255,255,255,.88);
  font-size:1.08rem;
  line-height:1.9;
  max-width:920px;
  margin:0 auto;
}

.cta-title{
  color:#fff;
}

/* =========================================
   SHARED TRANSITIONS
   ========================================= */
.card,
.btn,
.nav a,
.topbar__social a,
.gallery img,
.input,
.review-card,
.hero__card,
.usp,
.badge,
.review-nav,
.hamburger,
.mobile-menu a,
.cookie__inner{
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease,
    color .25s ease,
    opacity .25s ease,
    filter .25s ease;
}

/* =========================================
   TOPBAR
   ========================================= */
.topbar{
  position:relative;
  background:linear-gradient(90deg, #f4c400 0%, #ffd84d 34%, #fff1b5 100%);
  color:#151515;
  font-size:.95rem;
  border-bottom:1px solid rgba(0,0,0,.10);
  box-shadow:0 8px 26px rgba(244,196,0,.18);
  z-index:1100;
}

.topbar::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0)),
    radial-gradient(500px 140px at 12% 0%, rgba(255,255,255,.22), transparent 55%);
}

.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  position:relative;
  z-index:2;
}

.topbar__left,
.topbar__right{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  min-width:0;
}

.topbar__item{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:700;
  min-width:0;
}

.topbar__icon{
  width:16px;
  height:16px;
  display:inline-block;
  opacity:.92;
  flex:0 0 auto;
}

.topbar__social{
  display:inline-flex;
  gap:8px;
  align-items:center;
}

.topbar__social a{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.44);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.42),
    0 6px 18px rgba(0,0,0,.08);
}

.topbar__social a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.62);
  border-color:rgba(0,0,0,.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 10px 24px rgba(0,0,0,.10);
}

.topbar__social a:active{
  transform:translateY(1px);
}

.topbar__social svg{
  width:18px;
  height:18px;
  fill:#111;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.92);
  backdrop-filter:blur(12px) saturate(140%);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header.is-scrolled{
  background:rgba(0,0,0,.95);
}

.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  min-width:0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:1 1 auto;
}

.brand__logo{
  width:92px;
  height:56px;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.brand__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 12px 30px rgba(0,0,0,.24));
}

.brand__text{
  min-width:0;
}

.brand__name{
  color:#fff;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.1;
  word-break:break-word;
}

.brand__tagline{
  color:rgba(255,255,255,.70);
  font-size:.92rem;
  margin-top:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}

.nav a{
  color:rgba(255,255,255,.82);
  font-weight:700;
  letter-spacing:.01em;
  padding:10px 10px;
  border-radius:12px;
  white-space:nowrap;
}

.nav a:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
}

.nav a.active{
  color:var(--yellow);
  background:rgba(244,196,0,.10);
}

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.01em;
  user-select:none;
  text-align:center;
}

.btn:active{
  transform:translateY(1px);
}

.btn--primary{
  background:linear-gradient(180deg, #ffd84d 0%, #f4c400 100%);
  color:#090909;
  border-color:rgba(0,0,0,.10);
  box-shadow:var(--yellow-glow);
}

.btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:var(--yellow-glow-strong);
}

.btn--outline{
  background:transparent;
  border-color:rgba(255,255,255,.20);
  color:rgba(255,255,255,.94);
}

.btn--outline:hover{
  transform:translateY(-2px);
  border-color:rgba(244,196,0,.75);
  color:#fff;
  background:rgba(255,255,255,.04);
}

.btn--dark{
  background:#0b0b0b;
  color:#fff;
  border-color:rgba(255,255,255,.12);
}

.btn--dark:hover{
  transform:translateY(-2px);
  border-color:rgba(244,196,0,.55);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}

.btn--whatsapp{
  background:#25D366;
  color:#07140c;
  border:1px solid #25D366;
  font-weight:850;
  box-shadow:0 14px 34px rgba(37,211,102,.22);
}

.btn--whatsapp:hover{
  background:#20bd5a;
  border-color:#20bd5a;
  color:#07140c;
  transform:translateY(-1px);
}

/* =========================================
   MOBILE NAV
   ========================================= */
.hamburger{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  position:relative;
  place-items:center;
  flex:0 0 auto;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  padding:0;
}

.hamburger:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(244,196,0,.30);
}

.hamburger__lines{
  width:20px;
  height:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hamburger__lines span{
  display:block;
  width:100%;
  height:2px;
  border-radius:999px;
  background:#fff;
  transform-origin:center;
  transition:transform .25s ease, opacity .2s ease, background .25s ease;
}

.hamburger.is-active .hamburger__lines span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

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

.hamburger.is-active .hamburger__lines span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.mobile-menu{
  display:none;
  border-top:1px solid rgba(255,255,255,.10);
  background:#000;
}

.mobile-menu.is-open{
  display:block;
}

.mobile-menu .container{
  padding:10px 0 16px;
  display:grid;
  gap:6px;
}

.mobile-menu a{
  color:rgba(255,255,255,.88);
  padding:12px 12px;
  border-radius:14px;
  font-weight:700;
}

.mobile-menu a:hover{
  background:rgba(255,255,255,.06);
}

.mobile-menu a.cta{
  background:rgba(244,196,0,.12);
  border:1px solid rgba(244,196,0,.35);
}

/* =========================================
   HERO
   ========================================= */
.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  background:
    radial-gradient(1200px 620px at 78% 18%, rgba(244,196,0,.22), transparent 58%),
    radial-gradient(880px 420px at 20% 0%, rgba(255,255,255,.04), transparent 55%),
    linear-gradient(180deg, #040404 0%, #0d0d0d 62%, #111111 100%);
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:180px;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(11,11,11,0) 0%, rgba(11,11,11,.42) 55%, rgba(11,11,11,.72) 100%);
  z-index:2;
}

.hero__slider{
  position:relative;
  height:clamp(520px, 72vh, 820px);
  border-bottom-left-radius:var(--radius-lg);
  border-bottom-right-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 40px 160px rgba(0,0,0,.55);
  background:#0c0c0c;
}

.hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .8s ease, transform 1.1s ease;
}

.hero__slide.is-active{
  opacity:1;
  transform:scale(1);
}

.hero__slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.46) 46%, rgba(0,0,0,.16) 100%),
    radial-gradient(900px 420px at 30% 40%, rgba(244,196,0,.14), transparent 60%);
}

.hero__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero__content{
  margin-top:-110px;
  position:relative;
  z-index:5;
  padding-bottom:30px;
}

.hero__card{
  position:relative;
  background:linear-gradient(180deg, rgba(28,28,28,.58), rgba(8,8,8,.78));
  border:1px solid rgba(255,255,255,.14);
  border-radius:32px;
  padding:38px 32px;
  text-align:center;
  box-shadow:
    0 30px 110px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);
  overflow:hidden;
}

.hero__card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 32%, transparent 68%, rgba(255,255,255,.04)),
    radial-gradient(260px 180px at 15% 0%, rgba(255,225,122,.10), transparent 70%);
}

.hero__card::after{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg, #f4c400, #ffe27a, #fff4c6);
  box-shadow:0 10px 35px rgba(244,196,0,.25);
}

.kicker{
  color:var(--yellow);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
  font-size:.9rem;
  text-shadow:0 0 18px rgba(244,196,0,.14);
}

.usps{
  margin:18px auto 0;
  max-width:980px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

.usps--light{
  max-width:none;
  margin:10px 0 0;
}

.usp{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px 14px;
  color:rgba(255,255,255,.90);
  font-weight:700;
  text-align:left;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.usp:hover{
  transform:translateY(-2px);
  border-color:rgba(244,196,0,.24);
  background:rgba(255,255,255,.08);
}

.usp b{
  color:var(--yellow);
  margin-right:10px;
}

.usp--light{
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.48);
  color:#141414;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.hero__cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.home-tip{
  opacity:.86;
  margin-top:12px;
  color:rgba(255,255,255,.84);
}

/* =========================================
   SECTION BASES
   ========================================= */
.section{
  padding:92px 0;
  position:relative;
}

.section--white{
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(244,196,0,.06), transparent 60%),
    linear-gradient(180deg, #f8f7f2 0%, #fffdfa 100%);
  color:var(--text);
}

.section--yellow{
  background:
    radial-gradient(1100px 420px at 50% 0%, rgba(255,255,255,.22), transparent 58%),
    linear-gradient(180deg, #f1c400 0%, #f3cb1f 42%, #f8e18a 76%, #fff7dc 100%);
  color:#0b0b0b;
}

.section--dark{
  background:
    radial-gradient(900px 340px at 50% 0%, rgba(244,196,0,.08), transparent 60%),
    linear-gradient(180deg, #080808 0%, #101010 100%);
  color:#fff;
}

.section--yellow .p{
  color:rgba(0,0,0,.74);
}

.section--dark .p{
  color:var(--muted-on-dark);
}

/* =========================================
   GRIDS / CARDS
   ========================================= */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
  margin-top:30px;
}

.route-grid{
  margin-top:16px;
}

.package-grid{
  margin-top:18px;
}

.card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  overflow:hidden;
  box-shadow:
    0 22px 60px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.44);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,255,255,.18), transparent 30%, transparent 72%, rgba(255,255,255,.06));
  opacity:.8;
}

.card::after{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, #f4c400, #ffe27a, rgba(255,255,255,.95));
  opacity:.95;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 34px 80px rgba(0,0,0,.14),
    0 0 0 1px rgba(244,196,0,.12);
  border-color:rgba(244,196,0,.20);
}

.section--dark .card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border-color:rgba(255,255,255,.14);
  box-shadow:0 25px 90px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.card__media{
  position:relative;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:
    radial-gradient(500px 200px at 70% 20%, rgba(244,196,0,.16), transparent 55%),
    rgba(0,0,0,.04);
}

.card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.card:hover .card__media img{
  transform:scale(1.04);
}

.card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.22)),
    radial-gradient(400px 180px at 70% 18%, rgba(244,196,0,.10), transparent 60%);
  pointer-events:none;
}

.card__body{
  position:relative;
  padding:20px 20px 22px;
  min-width:0;
}

.card__title{
  font-weight:950;
  font-size:1.22rem;
  margin:0 0 8px;
}

.card__text{
  margin:0 0 14px;
  color:rgba(0,0,0,.74);
  line-height:1.85;
}

.section--dark .card__title{
  color:#fff;
}

.section--dark .card__text{
  color:rgba(255,255,255,.78);
}

.card.package-card{
  position:relative;
  overflow:visible;
}

.card.package-card .package-corner-mini{
  position:absolute;
  top:14px;
  right:14px;
  z-index:8;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.01em;
  line-height:1;
  white-space:nowrap;
  box-shadow:
    0 10px 24px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.card.package-card .package-corner-mini svg{
  width:11px;
  height:11px;
  min-width:11px;
  min-height:11px;
  flex:none;
}

.card.package-card .package-corner-mini--gold{
  background:linear-gradient(180deg, #ffe58f 0%, #f4c400 100%);
  color:#111;
  border:1px solid rgba(0,0,0,.08);
}

.card.package-card .package-corner-mini--dark{
  background:linear-gradient(180deg, #181818 0%, #050505 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
}

.card.package-card.package-card--featured{
  transform:translateY(-4px);
  border-color:rgba(244,196,0,.28);
  box-shadow:
    0 34px 80px rgba(0,0,0,.14),
    0 0 0 1px rgba(244,196,0,.12);
}

.card.package-card.package-card--featured::after{
  height:5px;
  background:linear-gradient(90deg, #f4c400, #ffe27a, #fff4cb);
}
/* =========================================
   PRIJS VOORBEELDEN
   ========================================= */
/* ===== PRIJSVOORBEELDEN ===== */

.price-row {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.price-item {
  flex: 1;
  background: #0f0f0f;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease;
}

/* Hover effect (subtiel premium) */
.price-item:hover {
  border-color: rgba(199,155,22,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Titel */
.price-item h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Tekst */
.price-item p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #cfcfcf;
}

/* Laatste regel iets sterker */
.price-item p:last-child {
  margin-top: 6px;
  font-size: 15px;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .price-row {
    flex-direction: column;
  }
}


/* =========================================
   BADGES / STARS
   ========================================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  font-weight:800;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 12px 34px rgba(0,0,0,.08);
}

.section--dark .badge{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
  box-shadow:none;
}

.stars{
  font-size:2.2rem;
  letter-spacing:.24em;
  font-weight:950;
  margin:0 0 8px;
}

/* =========================================
   MEDIA BLOCKS
   ========================================= */
.media-card img,
.studio-preview img,
#over-home img,
#fotostudio img,
.gallery img{
  width:100%;
  border-radius:24px;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 24px 80px rgba(0,0,0,.12);
}

.studio-preview img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  object-position:center;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}

.gallery img{
  aspect-ratio:4 / 3;
  object-fit:cover;
}

.gallery img:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 80px rgba(0,0,0,.16);
}
#fotostudio .section-intro{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

#fotostudio .center.stack{
  justify-items:center;
}

/* =========================================
   FORMS
   ========================================= */
.input{
  width:100%;
  min-width:0;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.92);
  outline:none;
  font-size:1rem;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
}

.input:hover{
  border-color:rgba(244,196,0,.28);
}

.input:focus{
  border-color:rgba(244,196,0,.7);
  box-shadow:0 0 0 4px rgba(244,196,0,.18), inset 0 1px 0 rgba(255,255,255,.55);
}

textarea.input{
  min-height:140px;
  resize:vertical;
}

/* =========================================
   REVIEWS
   ========================================= */
.section#reviews{
  position:relative;
  overflow:hidden;
  padding-top:36px;
  margin-top:-8px;
}

.section#reviews.section--yellow{
  background:
    radial-gradient(1000px 280px at 50% 0%, rgba(255,250,220,.38), transparent 64%),
    linear-gradient(180deg, #f3c800 0%, #f5d347 38%, #f9e8a4 68%, #fffaf0 100%);
}

.section#reviews::before,
.section#reviews::after{
  display:none;
}

.reviews-intro{
  max-width:980px;
  margin:0 auto;
}

.review-card{
  max-width:880px;
  margin:0 auto;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.40);
  background:rgba(255,255,255,.62);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 30px 110px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.34);
  overflow:hidden;
  position:relative;
}

.review-card--home{
  max-width:980px;
  margin:18px auto 0;
}

.review-card__top{
  height:2px;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.9), rgba(255,255,255,0));
  opacity:.65;
}

.review-stage{
  position:relative;
  padding:22px 22px 18px;
  min-height:170px;
}

.review-slide{
  position:absolute;
  inset:22px 22px 18px;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .55s ease, transform .55s ease;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  pointer-events:none;
}

.review-slide.is-active{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.review-quote{
  font-size:1.06rem;
  line-height:1.8;
  color:rgba(10,10,10,.86);
  margin:0;
}

.review-meta{
  color:rgba(10,10,10,.62);
  font-weight:700;
  font-size:.98rem;
}

.review-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  padding:0 22px 18px;
}

.review-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding-bottom:16px;
}

.review-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(0,0,0,.20);
}

.review-dot.is-active{
  background:rgba(0,0,0,.56);
  box-shadow:0 0 0 6px rgba(255,255,255,.14);
}

.review-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.48);
  background:rgba(255,255,255,.22);
  color:rgba(0,0,0,.72);
  display:grid;
  place-items:center;
  box-shadow:0 10px 30px rgba(0,0,0,.10);
  z-index:5;
}

.review-nav:hover{
  background:rgba(255,255,255,.32);
}

.review-nav--prev{
  left:14px;
}

.review-nav--next{
  right:14px;
}

/* =========================================
   PAGE HERO
   ========================================= */
.page-hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 78px;
  color:var(--text);
  background:
    radial-gradient(900px 360px at 12% 18%, rgba(244,196,0,.20), transparent 60%),
    radial-gradient(760px 320px at 88% 16%, rgba(255,230,150,.22), transparent 58%),
    radial-gradient(700px 260px at 50% 100%, rgba(244,196,0,.10), transparent 62%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf8 52%, #ffffff 100%);
  border-bottom:1px solid rgba(244,196,0,.12);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 22%, rgba(255,255,255,0) 44%),
    linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.20) 20%, rgba(255,255,255,0) 42%);
  opacity:.55;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:120px;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(11,11,11,0) 0%, rgba(11,11,11,.22) 58%, rgba(11,11,11,.46) 100%);
  z-index:2;
}

.page-hero__inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:980px;
  margin:0 auto;
  padding:34px 30px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58));
  border:1px solid rgba(244,196,0,.18);
  box-shadow:
    0 22px 70px rgba(0,0,0,.07),
    0 0 0 1px rgba(255,255,255,.45) inset,
    0 18px 55px rgba(244,196,0,.10);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
}

.page-hero__inner::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  border-radius:30px 30px 0 0;
  background:linear-gradient(90deg, #f4c400, #ffe27a, #fff4cb);
}

.page-hero__kicker{
  color:#b88600;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:900;
  font-size:.84rem;
}

.page-hero__title{
  margin:12px 0 10px;
  font-weight:950;
  line-height:1.06;
  letter-spacing:-.02em;
  color:#111;
  font-size:clamp(2.1rem, 4.4vw, 3.6rem);
}

.page-hero__lead{
  color:rgba(16,16,16,.68);
  font-size:1.06rem;
  line-height:1.95;
  margin:0 auto;
  max-width:760px;
}

.page-hero__cta{
  margin-top:20px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================================
   FAQ
   ========================================= */
.faq{
  display:grid;
  gap:12px;
}

.faq__item{
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow);
}

.faq__item > summary::-webkit-details-marker{
  display:none;
}

.faq__q{
  position:relative;
  list-style:none;
  padding:16px 52px 16px 16px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.faq__q::after{
  content:"+";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  line-height:1;
  color:#111;
  background:linear-gradient(90deg, #f4c400 0%, #ffd84d 34%, #fff1b5 100%);
  box-shadow:0 10px 30px rgba(244,196,0,.18);
  border:1px solid rgba(0,0,0,.08);
}

.faq__item[open] > .faq__q::after{
  content:"–";
}

.faq__a{
  padding:0 16px 16px;
  color:rgba(0,0,0,.78);
  line-height:1.9;
}

details .faq__a{
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .25s ease, transform .25s ease;
}

details[open] .faq__a{
  opacity:1;
  transform:translateY(0);
}

.faq-search{
  display:flex;
  gap:12px;
  align-items:center;
  padding:14px 0 22px;
}

.faq-search__input{
  width:100%;
  min-width:0;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  color:#111;
  font-weight:650;
  outline:none;
}

.faq-search__input:focus{
  border-color:rgba(244,196,0,.55);
  box-shadow:0 0 0 4px rgba(244,196,0,.16);
}

.faq-search__clear{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  color:#111;
  font-weight:850;
  white-space:nowrap;
}

.faq-search__clear:hover{
  border-color:rgba(0,0,0,.18);
}

.faq__item.is-hidden{
  display:none !important;
}

/* =========================================
   FOOTER
   ========================================= */
.footer{
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(244,196,0,.08), transparent 60%),
    #060606;
  color:rgba(255,255,255,.80);
}

.footer__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(180px, 240px));
  justify-content:center;
  gap:28px;
  padding:55px 0 28px;
}

.footer__col{
  min-width:0;
  text-align:center;
}

.footer h3{
  color:#fff;
  margin:0 0 12px;
  font-weight:900;
}

.footer__text{
  margin:0;
  line-height:1.9;
  color:rgba(255,255,255,.80);
}

.footer a{
  color:rgba(255,255,255,.82);
}

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

.footer__buttons{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
  justify-items:center;
}

.footer__bar{
  position:relative;
  background:linear-gradient(90deg, #f4c400 0%, #ffd84d 34%, #fff1b5 100%);
  color:#151515;
  border-top:1px solid rgba(0,0,0,.10);
  box-shadow:0 -8px 26px rgba(244,196,0,.18);
  overflow:hidden;
}

.footer__bar::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0)),
    radial-gradient(500px 140px at 12% 0%, rgba(255,255,255,.22), transparent 55%);
}

.footer__bar-inner{
  border-top:1px solid rgba(0,0,0,.08);
  min-height:58px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  font-size:.95rem;
  font-weight:700;
}

.footer__bar a{
  color:#151515;
}

.footer__bar a:hover{
  color:#000;
}

.footer__bar-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

/* verwijderd: floating whatsapp button */
.whatsapp{
  display:none !important;
}

/* =========================================
   REVEAL
   ========================================= */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .7s ease, transform .7s ease;
}

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

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:99999;
  display:flex;
  justify-content:center;
  pointer-events:none;
}

.cookie__inner{
  width:100%;
  max-width:1120px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
  color:#fff;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(24,24,24,.72), rgba(6,6,6,.88));
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);
  box-shadow:
    0 24px 80px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.06);
  pointer-events:auto;
}

.cookie__inner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 30%, transparent 68%, rgba(255,255,255,.04)),
    radial-gradient(380px 160px at 12% 0%, rgba(255,226,122,.10), transparent 72%);
}

.cookie__inner::after{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, #f4c400, #ffe27a, #fff4cb);
  box-shadow:0 10px 28px rgba(244,196,0,.22);
  pointer-events:none;
}

.cookie__text,
.cookie__actions,
.cookie__btn{
  position:relative;
  z-index:2;
}

.cookie__text{
  max-width:760px;
}

.cookie__text strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  font-weight:900;
  color:#fff;
}

.cookie__text p{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,.82);
}

.cookie__text a{
  color:var(--yellow);
  font-weight:800;
}

.cookie__text a:hover{
  text-decoration:underline;
}

.cookie__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.cookie__btn{
  min-width:136px;
  pointer-events:auto;
}

.cookie .btn--outline{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
}

.cookie .btn--outline:hover{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.07);
}

.cookie .btn--primary{
  box-shadow:
    0 14px 34px rgba(244,196,0,.20),
    inset 0 1px 0 rgba(255,255,255,.22);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width:1100px){
  .nav{
    gap:8px;
  }
}

@media (max-width:980px){
  .grid-3,
  .package-grid,
  .route-grid,
  .gallery,
  .usps,
  .split{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .grid-3 > *,
  .package-grid > *,
  .route-grid > *,
  .gallery > *,
  .usps > *,
  .split > *{
    min-width:0;
    max-width:100%;
  }

  .card,
  .package-card,
  .review-card,
  .hero__card,
  .page-hero__inner{
    width:100%;
    min-width:0;
    max-width:100%;
  }

  .nav,
  .header__actions .btn{
    display:none !important;
  }

  .hamburger{
    display:inline-grid !important;
    place-items:center;
  }

  .header .container{
    gap:10px;
    padding:12px 0;
  }

  .brand{
    gap:10px;
  }

  .brand__name{
    font-size:.92rem;
    line-height:1.05;
  }

  .brand__tagline{
    font-size:.76rem;
    line-height:1.2;
  }

  .footer__grid{
    grid-template-columns:1fr 1fr;
    justify-content:center;
  }

  .footer__col{
    text-align:center;
  }

  .footer__buttons{
    justify-content:center;
  }

  .footer__links{
    justify-items:center;
  }
}

@media (max-width:760px){
  .cookie{
    left:12px;
    right:12px;
    bottom:12px;
  }

  .cookie__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:16px;
    border-radius:20px;
  }

  .cookie__text{
    max-width:none;
  }

  .cookie__actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .cookie__actions .cookie__btn{
    width:100%;
    min-width:0;
  }
}

@media (max-width:720px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .section{
    padding:64px 0;
  }

  .topbar .container{
    flex-direction:column;
    align-items:flex-start;
  }

  .topbar__left,
  .topbar__right{
    width:100%;
    gap:10px;
  }

  .topbar__right{
    justify-content:space-between;
  }

  .topbar__social{
    margin-left:auto;
  }

  .brand__logo{
    width:64px;
    height:40px;
  }

  .brand__name{
    font-size:.84rem;
  }

  .brand__tagline{
    font-size:.72rem;
  }

  .hero__content{
    margin-top:-56px;
  }

  .hero__card{
    padding:26px 18px;
    border-radius:24px;
  }

  .hero__slider{
    height:clamp(420px, 58vh, 620px);
    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;
  }

  .card__body{
    padding:18px 16px 20px;
  }

  .card__title,
  .card__text,
  .p,
  .lead,
  .section-intro{
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .review-stage{
    padding:18px 16px 16px;
    min-height:220px;
  }

  .review-slide{
    inset:18px 16px 16px;
  }

  .review-nav{
    display:none;
  }

  .action-row,
  .action-row--center{
    flex-direction:column;
    align-items:stretch;
  }

  .action-row .btn,
  .action-row--center .btn{
    width:100%;
  }

  .faq-search{
    flex-direction:column;
    align-items:stretch;
  }
}

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

  .footer__bar-inner{
    padding:14px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .footer__bar-links{
    gap:10px;
  }

  .topbar{
    font-size:.88rem;
  }

  .topbar__item{
    gap:8px;
  }
}

@media (max-width:520px){
  .brand{
    gap:8px;
  }

  .brand__logo{
    width:58px;
    height:36px;
  }

  .brand__name{
    font-size:.80rem;
  }

  .brand__tagline{
    font-size:.68rem;
  }

  .hamburger{
    width:42px;
    height:42px;
  }

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

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *{
    animation:none !important;
    transition:none !important;
  }
}

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

#projecten .section-intro{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

/* =========================================
   SEO / TEKSTBLOKKEN
      ========================================= */
   /* SEO / tekstblokken */
.seo-block,
#seo-lokaal,
#diensten-seo,
#lokale-seo-auto,
#lokale-seo-zakelijk,
#lokale-seo-dealers,
#lokale-seo-fotostudio {
  text-align: center;
}

.seo-block .stack,
#seo-lokaal .stack,
#diensten-seo .stack,
#lokale-seo-auto .stack,
#lokale-seo-zakelijk .stack,
#lokale-seo-dealers .stack,
#lokale-seo-fotostudio .stack {
  max-width: 900px;
  margin: 0 auto;
}

.seo-block .p,
.seo-block .section-intro,
#seo-lokaal .p,
#seo-lokaal .section-intro,
#diensten-seo .p,
#diensten-seo .section-intro,
#lokale-seo-auto .p,
#lokale-seo-auto .section-intro,
#lokale-seo-zakelijk .p,
#lokale-seo-zakelijk .section-intro,
#lokale-seo-dealers .p,
#lokale-seo-dealers .section-intro,
#lokale-seo-fotostudio .p,
#lokale-seo-fotostudio .section-intro {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.seo-block .h2,
#seo-lokaal .h2,
#diensten-seo .h2,
#lokale-seo-auto .h2,
#lokale-seo-zakelijk .h2,
#lokale-seo-dealers .h2,
#lokale-seo-fotostudio .h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* SEO / tekstblokken */
.seo-block{
  text-align:center;
}

.seo-block .stack{
  max-width:900px;
  margin:0 auto;
}

.seo-block .p,
.seo-block .section-intro{
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.seo-block .h2{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

/* =========================================
   CONTACT PAGINA — formulier / afspraak / sidebar
   ========================================= */

.contact-layout{
  align-items:start;
}

.contact-main-card{
  grid-column:span 2;
}

.contact-side-card{
  width:100%;
}

.contact-form{
  width:100%;
}

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

.contact-span-2{
  grid-column:span 2;
}

.kenteken-block{
  min-width:0;
}

.kenteken-row{
  display:flex;
  gap:10px;
  align-items:center;
}

.kenteken-row .input{
  flex:1 1 auto;
  min-width:0;
}

.kenteken-row .btn{
  flex:0 0 auto;
  white-space:nowrap;
}

.rdw-status{
  margin-top:6px;
  opacity:.75;
}

.booking-fields{
  width:100%;
}

.booking-card{
  background:#faf8f4 !important;
  border:1px solid #ebe3d6 !important;
}

.booking-card__title{
  margin-bottom:12px;
}

.booking-grid{
  display:grid;
  gap:14px;
  grid-template-columns:1fr 1fr;
  align-items:start;
}

.booking-deposit-note{
  opacity:.85;
  margin-bottom:10px;
}

.booking-checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.booking-checkbox input[type="checkbox"]{
  margin-top:4px;
  flex:0 0 auto;
}

.contact-map-wrap{
  margin-top:16px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.12);
}

/* Zorg dat kaarten op contactpagina visueel gelijk ogen */
.contact-main-card,
.contact-side-card{
  width:100%;
  min-width:0;
  align-self:start;
}

.contact-main-card > .card__body,
.contact-side-card > .card__body{
  min-width:0;
}

/* =========================================
   CONTACT PAGINA — responsive
   ========================================= */

@media (max-width:980px){
  .contact-layout{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .contact-main-card{
    grid-column:span 1 !important;
  }

  .contact-side-card{
    grid-column:span 1 !important;
  }
}

@media (max-width:720px){
  .contact-form-grid{
    grid-template-columns:1fr;
  }

  .contact-span-2{
    grid-column:span 1;
  }

  .kenteken-row{
    flex-direction:column;
    align-items:stretch;
  }

  .kenteken-row .btn{
    width:100%;
  }

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

  .booking-checkbox{
    gap:8px;
  }

  .booking-checkbox span{
    min-width:0;
  }

  .rdw-status{
    font-size:13px;
    line-height:1.6;
  }

  .contact-map-wrap iframe{
    height:260px;
  }
}

@media (max-width:520px){
  .contact-main-card .card__body,
  .contact-side-card .card__body,
  .booking-card .card__body{
    padding:18px 14px 20px;
  }

  .contact-form-grid,
  .booking-grid{
    gap:12px;
  }
}