:root{
  --bg:#fdeee9;
  --text:#1f1a16;
  --muted:#5d5751;
  --line:rgba(31,26,22,.10);
  --card:rgba(255,255,255,.72);
  --shadow:0 14px 34px rgba(31,26,22,.08);

  --panel: rgba(253,238,233,.55);
  --panel-border: rgba(31,26,22,.08);
  --divider: rgba(31,26,22,.08);
}

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

body{
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  padding-bottom:0;
}

a{ color:inherit; }
a:visited{ color:inherit; }

.wrap{ max-width:1120px; margin:0 auto; padding:18px; }
.section{ padding:22px 18px; }

h1,h2,h3{
  font-family:"Playfair Display",Georgia,serif;
  letter-spacing:.2px;
}

h2{
  margin:0 0 14px;
  font-size:28px;
}

.small{ color:var(--text); font-size:14px; }
.lead{ font-size:16px; }

.link{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* HEADER */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
}

.brand{
  font-family:"Playfair Display",Georgia,serif;
  font-weight:700;
  font-size:22px;
  white-space:nowrap;
}

.brand-link{
  text-decoration:none;
  color:inherit;
}

.brand-link:hover{ color:inherit; }

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  text-decoration:none;
  font-size:15px;
  color:var(--muted);
}

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

/* small social icons in header (desktop) */
.header-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.header-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:10px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(31,26,22,.10);
  box-shadow:0 8px 18px rgba(31,26,22,.06);
  text-decoration:none;
}

.header-icon{
  width:20px;
  height:20px;
  border-radius:6px;
  display:block;
}

/* HERO */
.hero-split{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.40) 0%, rgba(255,255,255,0) 60%),
    url("photos/hero.jpg") center/cover no-repeat;
  min-height:460px;
  border:1px solid rgba(31,26,22,.10);
}

.hero-inner{
  position:relative;
  min-height:460px;
  padding:22px 22px;
}

.hero-content{
  position:absolute;
  top:26px;
  right:24px;
  max-width:560px;
  text-align:right;
}

.hero-title{
  margin:0;
  font-size:54px;
  line-height:1.05;
}

.hero-tagline{
  margin:10px 0 0;
  font-size:20px;
  color:rgba(31,26,22,.72);
}

#hero-servicesline{
  position:absolute;
  right:22px;
  bottom:18px;
  font-size:14px;
  color:rgba(31,26,22,.65);
  white-space:nowrap;
}

/* TICKER */
.ticker{
  background:rgba(31,26,22,.92);
  color:#fff;
  overflow:hidden;
}

.ticker .wrap{ padding:0 18px; }

.ticker-track{
  display:flex;
  gap:26px;
  padding:14px 0;
  white-space:nowrap;
  animation:ticker 26s linear infinite;
}

.ticker-item{
  font-weight:600;
  opacity:.92;
}

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

/* SERVICES */
.service-list{
  background:rgba(255,255,255,.55);
  border:1px solid rgba(31,26,22,.10);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
}

.service-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 18px;
  text-decoration:none;
  border-top:1px solid rgba(31,26,22,.08);
}

.service-row:first-child{ border-top:none; }

.service-title{
  font-weight:800;
  font-size:18px;
}

.service-sub{
  color:rgba(31,26,22,.60);
  margin-top:2px;
}

.service-arrow{
  font-size:20px;
  opacity:.75;
}

/* dual manicure row */
.service-row-dual{ padding:16px 18px; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.service-mainlink{
  text-decoration:none;
  display:inline-block;
}

.service-menlink{
  display:inline-block;
  font-size:14px;
  color:rgba(31,26,22,.70);
  text-decoration:underline;
  text-underline-offset:3px;
}

.service-arrowlink{ text-decoration:none; }

.service-menlink,
.service-menlink .service-title{
  text-decoration:none !important;
}

/* PAGE HELPERS */
.page-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.pill-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,26,22,.10);
  box-shadow:0 10px 22px rgba(31,26,22,.08);
  font-weight:700;
}

.price-subnote{
  color:rgba(31,26,22,.65);
  font-size:14px;
  margin-top:4px;
}

.price-subtitle{
  margin-top:16px;
  padding-top:10px;
  font-weight:700;
  color:rgba(31,26,22,.78);
}

.gallery-block{ margin-top:22px; }

.gallery-intro{
  color:rgba(31,26,22,.70);
  margin:0 0 10px;
}

.cta-box{
  background:rgba(255,255,255,.60);
  border:1px solid rgba(31,26,22,.10);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
}

.faq-item + .faq-item{ margin-top:16px; }

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
}

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

.footer{
  padding:22px 18px 28px;
  color:var(--muted);
  font-size:14px;
}

/* Soft panels / service pages */
.soft-panel{
  background:rgba(31,26,22,.03);
  border:1px solid rgba(31,26,22,.08);
  border-radius:18px;
  padding:22px 22px;
  margin:18px 0;
}

.bullets{
  margin:0;
  padding-left:18px;
}

.bullets li{ margin:8px 0; }

.price-table{
  border:1px solid rgba(31,26,22,.08);
  border-radius:18px;
  padding:12px 14px;
  background:transparent;
}

.price-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  border-top:1px solid rgba(31,26,22,.08);
}

.price-row:first-of-type{ border-top:none; }

.price-label{ flex:1; }

.price-value{
  min-width:100px;
  text-align:right;
  white-space:nowrap;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.gallery:empty{ display:none; }

.gallery img{
  width:100%;
  aspect-ratio:1 / 1;
  height:auto;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  cursor:zoom-in;
  transition:transform .18s ease, box-shadow .18s ease;
}

.gallery img:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 32px rgba(31,26,22,.12);
}

.gallery img.is-missing{
  display:none !important;
}

/* LIGHTBOX */
.no-scroll{ overflow:hidden; }

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(20,16,14,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:10000;
}

.lightbox.is-open{ display:flex; }

.lightbox-image{
  max-width:min(92vw, 980px);
  max-height:88vh;
  width:auto;
  height:auto;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.32);
  background:#fff;
}

.lightbox-close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#1f1a16;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#1f1a16;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-prev{ left:16px; }
.lightbox-next{ right:16px; }

/* VIDEO */
.video-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

.video-card{
  margin:0;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(31,26,22,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
}

.video{
  width:100%;
  aspect-ratio:4 / 5;
  height:auto;
  display:block;
  background:#000;
  object-fit:cover;
}

.video-cap{
  padding:10px 12px 12px;
  font-size:14px;
  color:rgba(31,26,22,.70);
}

.btn-inline{
  display:inline-block;
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,26,22,.10);
  box-shadow:0 10px 22px rgba(31,26,22,.08);
  text-decoration:none;
  font-weight:700;
}

.btn-inline:hover{ filter:brightness(0.98); }

/* STEP 3: service video sections */
.auto-video-section.is-hidden{ display:none; }

.media-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.media-card{
  margin:0;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(31,26,22,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
}

.media-card video{
  width:100%;
  display:block;
  aspect-ratio:4 / 5;
  height:auto;
  background:#000;
  object-fit:cover;
}

.media-cap{
  padding:10px 12px 12px;
  font-size:14px;
  color:rgba(31,26,22,.70);
}

.section-title{
  margin:0 0 10px;
  text-align:center;
}

.section-subtitle{
  max-width:760px;
  margin:0 auto 18px;
  text-align:center;
  color:rgba(31,26,22,.68);
  line-height:1.65;
}

.video-category + .video-category{ margin-top:26px; }

/* Mobile sticky bar */
.mobile-bar{ display:none; }

.mobile-bar-btn{
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,26,22,.10);
  box-shadow:0 12px 26px rgba(31,26,22,.10);
  font-weight:700;
}

.mobile-bar-icon{
  width:22px;
  height:22px;
  border-radius:6px;
  display:block;
}

/* MAP / FAQ */
.map-card{
  border:1px solid rgba(31,26,22,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
  background:rgba(255,255,255,.55);
}

.faq h3{
  margin:0 0 6px;
  font-size:18px;
}

.faq p{ margin:0; }

/* SEO links */
.seo-links{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

.seo-link-card{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:78px;
  padding:14px;
  text-decoration:none;
  font-weight:700;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,26,22,.10);
  box-shadow:0 10px 22px rgba(31,26,22,.08);
}

.seo-link-card:hover{ filter:brightness(.98); }

/* DROPDOWN MENU */
.nav-dropdown{ position:relative; }

.nav-dropdown summary{
  list-style:none;
  cursor:pointer;
  font-size:15px;
  color:var(--muted);
  user-select:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-dropdown summary::-webkit-details-marker{ display:none; }

.nav-dropdown summary::after{
  content:"▾";
  font-size:12px;
  transform:translateY(1px);
  transition:transform .18s ease;
}

.nav-dropdown[open] summary::after{
  transform:translateY(1px) rotate(180deg);
}

.nav-dropdown[open] summary{ color:var(--text); }

.dropdown-menu{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:240px;
  padding:10px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(31,26,22,.10);
  border-radius:16px;
  box-shadow:0 18px 32px rgba(31,26,22,.12);
  display:grid;
  gap:2px;
  z-index:1000;
}

.dropdown-menu a{
  text-decoration:none;
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:rgba(253,238,233,.9);
}

/* NAGELBIJTEN PAGE */
.nb-steps-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}

.nb-step-card{
  background:rgba(255,255,255,.58);
  border:1px solid rgba(31,26,22,.10);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 26px rgba(31,26,22,.06);
}

.nb-step-card h3{
  margin:0 0 8px;
  font-size:20px;
}

.nb-step-card p{ margin:0; }

.nb-case-text::after{
  content:"";
  display:block;
  clear:both;
}

.nb-case-photo{
  padding:10px;
  margin:0;
}

.nb-case-photo-inline{
  float:right;
  width:min(100%, 290px);
  margin:6px 0 12px 18px;
}

.nb-case-photo img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--line);
  display:block;
  background:#fff;
}

.nb-photo-placeholder{
  width:100%;
  aspect-ratio:1 / 1;
  border-radius:14px;
  border:1px dashed rgba(31,26,22,.18);
  background:rgba(253,238,233,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:rgba(31,26,22,.58);
  padding:18px;
  line-height:1.6;
}

.nb-photo-placeholder span{
  display:block;
  margin-top:8px;
  font-size:13px;
}

/* FOTO PORTFOLIO PAGE */
.portfolio-hero-copy{
  max-width:760px;
  color:rgba(31,26,22,.72);
  margin:0 0 16px;
}

.portfolio-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.portfolio-card{
  position:relative;
  display:block;
  aspect-ratio:1 / 1;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none;
  border:1px solid rgba(31,26,22,.10);
  box-shadow:0 14px 30px rgba(31,26,22,.10);
  background:
    linear-gradient(to top, rgba(20,16,14,.70) 0%, rgba(20,16,14,.32) 42%, rgba(20,16,14,.08) 100%),
    var(--portfolio-card-image, linear-gradient(135deg, rgba(255,255,255,.55), rgba(253,238,233,.95)));
  background-size:cover;
  background-position:center;
}

.portfolio-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(31,26,22,.18);
}

.portfolio-card-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:18px;
  color:#fff;
}

.portfolio-card-title{
  font-family:"Playfair Display",Georgia,serif;
  font-size:24px;
  line-height:1.1;
  margin:0 0 6px;
}

.portfolio-card-subtitle{
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:14px;
  line-height:1.55;
}

.portfolio-section{ scroll-margin-top:90px; }

.portfolio-section + .portfolio-section{ margin-top:34px; }

.portfolio-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:0 0 10px;
  flex-wrap:wrap;
}

.portfolio-section-copy{
  color:rgba(31,26,22,.72);
  margin:0 0 14px;
}

.portfolio-section .gallery img{
  background:rgba(255,255,255,.65);
}

/* SERVICE PAGE LINK TO PORTFOLIO */
.portfolio-link-box{
  text-align:center;
  margin-top:28px;
}

.portfolio-link-box p{
  margin:0 0 8px;
  color:rgba(31,26,22,.72);
}

.portfolio-link{
  display:inline-block;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid currentColor;
  padding-bottom:1px;
}

.portfolio-link:hover{ opacity:.75; }

/* SPECIAL SHAPE / SIDE PHOTO BLOCKS */
.special-shape-block{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:18px;
  align-items:start;
}

.special-shape-text p{
  margin:0 0 12px;
}

.special-shape-photo{
  margin:0;
}

.special-shape-photo img{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.special-shape-photo img:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

/* GELLAK SPECIFIC */
.gellak-side-photo{
  margin:0;
  width:min(100%, 280px);
}

.gellak-side-photo img{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.gellak-side-photo-top{
  margin-top:0;
}

.gellak-float-photo{
  float:right;
  width:min(100%, 280px);
  margin:0 0 18px 22px;
}

.gellak-float-photo img{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

/* REMOVAL BLOCK */
.removal-panel{ overflow:hidden; }

.removal-stack{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.removal-text h2{ margin-top:0; }

.removal-text p{ margin:0 0 12px; }

.removal-photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.removal-photo-card{ margin:0; }

.removal-photo-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.removal-photo-card img:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.removal-photos-small{
  max-width:578px;
  margin:0 auto;
  gap:18px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .gallery{ grid-template-columns:repeat(2,1fr); }
  .brand{ font-size:20px; }
  .contact{ grid-template-columns:1fr; }
  .portfolio-card-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

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

@media (max-width: 720px){
  .header{
    flex-wrap:wrap;
    gap:10px;
    align-items:flex-start;
  }

  .brand{
    width:100%;
    font-size:20px;
  }

  .nav{
    width:100%;
    justify-content:flex-start;
  }

  .header-actions{ display:none; }

  .hero-split{
    min-height:420px;
    background-position:14% center;
  }

  .hero-inner{
    padding:14px 16px;
    min-height:420px;
  }

  .hero-content{
    top:18px;
    right:16px;
    max-width:76%;
    text-align:right;
  }

  .hero-title{
    font-size:38px;
    line-height:1.05;
    margin:0;
  }

  .hero-tagline{
    font-size:18px;
    line-height:1.25;
  }

  #hero-servicesline{
    left:50%;
    right:auto;
    transform:translateX(-50%);
    bottom:18px;
    max-width:92%;
    font-size:clamp(12px, 3.4vw, 14px);
    white-space:nowrap;
  }

  .mobile-bar{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:9999;
  }

  body{ padding-bottom:90px; }

  .video-grid{ grid-template-columns:1fr; }
  .video{ aspect-ratio:4 / 5; }

  .lightbox{ padding:14px; }
  .lightbox-image{
    max-width:94vw;
    max-height:82vh;
  }

  .lightbox-nav{
    width:42px;
    height:42px;
    font-size:30px;
  }

  .lightbox-prev{ left:10px; }
  .lightbox-next{ right:10px; }

  .page-title-row{ align-items:flex-start; }
  .seo-links{ grid-template-columns:1fr 1fr; }

  .nav-dropdown{ width:100%; }
  .nav-dropdown summary{ width:100%; }

  .dropdown-menu{
    position:static;
    margin-top:8px;
    min-width:0;
    width:100%;
  }

  .media-grid{ grid-template-columns:1fr; }
  .section-subtitle{ font-size:14px; }

  .nb-case-photo-inline{
    float:none;
    width:100%;
    max-width:320px;
    margin:10px auto 16px;
  }

  .portfolio-card-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .portfolio-card-title{ font-size:18px; }

  .portfolio-card-subtitle{
    font-size:12px;
    line-height:1.4;
  }

  .special-shape-block{ grid-template-columns:1fr; }

  .gellak-side-photo{
    width:min(100%, 280px);
    margin:12px auto 0;
  }

  .gellak-side-photo-top{
    margin-top:0;
  }

  .gellak-float-photo{
    float:none;
    width:min(100%, 280px);
    margin:12px auto 16px;
  }

  .removal-photos{
    grid-template-columns:1fr;
  }

  .removal-photos-small{ max-width:100%; }
}

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

@media (max-width: 420px){
  .hero-title{ font-size:34px; }
  #hero-servicesline{ font-size:12px; }
  .hero-split{ background-position:12% center; }
}