/* =========================================================
   ICONIQ HAIR — editorial luxe salon
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream:      #F6F2EB;
  --cream-2:    #EFE8DE;
  --sand:       #E4D9CB;
  --taupe:      #A89684;
  --taupe-dark: #8B7A69;
  --charcoal:   #262421;
  --ink:        #1C1B19;
  --text:       #33302B;
  --muted:      #7A7267;
  --line:       #E1D8CC;
  --white:      #FFFFFF;

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --header-h: 96px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; color: var(--ink); letter-spacing: .01em; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  display: inline-block;
  margin-bottom: 22px;
}
.display-xl { font-size: clamp(2.3rem, 4.4vw, 3.7rem); }
.display-l  { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.display-m  { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.lead { font-size: clamp(1rem, 1.4vw, 1.22rem); color: var(--muted); font-weight: 300; }
.serif-em { font-family: var(--font-display); font-style: italic; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 140px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.bg-cream2 { background: var(--cream-2); }
.bg-sand { background: var(--sand); }
.bg-dark { background: var(--charcoal); color: #E9E2D8; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #F4EEE5; }
.center { text-align: center; }
.mx-narrow { max-width: 760px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  padding: 17px 34px; border: 1px solid transparent; border-radius: var(--radius);
  transition: all .4s var(--ease); white-space: nowrap;
}
.btn--solid { background: var(--charcoal); color: #F4EEE5; }
.btn--solid:hover { background: var(--taupe-dark); }
.btn--taupe { background: var(--taupe); color: #fff; }
.btn--taupe:hover { background: var(--taupe-dark); }
.btn--ghost { border-color: var(--charcoal); color: var(--ink); }
.btn--ghost:hover { background: var(--charcoal); color: #F4EEE5; }
.btn--light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }

.link-underline {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 400;
  padding-bottom: 4px; border-bottom: 1px solid var(--taupe);
  transition: color .3s, border-color .3s;
}
.link-underline:hover { color: var(--taupe-dark); border-color: var(--taupe-dark); }

/* ========================================================= HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,235,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: clamp(18px, 1.8vw, 30px); }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-link {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  color: var(--text); position: relative; padding-block: 6px; white-space: nowrap;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--taupe-dark); transition: width .35s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--ink); }

.brand { display: flex; justify-content: center; padding-inline: clamp(40px, 6.5vw, 110px); }
.brand img { height: 30px; width: auto; }

.header-cta { display: inline-flex; margin-left: auto; padding-left: clamp(14px, 2vw, 30px); }
.header-cta .btn { padding: 12px 22px; font-size: 11px; }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: .3s; }

/* mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; padding: 30px var(--gutter);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav__top img { height: 38px; }
.mobile-nav__close { background: none; border: 0; font-size: 30px; line-height: 1; color: var(--ink); }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.8rem; padding: 14px 0;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-nav .btn { margin-top: 30px; justify-content: center; font-family: var(--font-sans); font-size: 12.5px; border-bottom: 0; color: #F4EEE5; padding: 18px 34px; }

/* ========================================================= HERO */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 380px;
  background:
    radial-gradient(65% 120% at 30% 22%, rgba(255,253,248,.95) 0%, rgba(255,253,248,0) 52%),
    linear-gradient(105deg, #FCF9F3 0%, var(--cream-2) 30%, var(--sand) 62%, var(--taupe) 108%);
}
.hero__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(18px,2.6vw,38px) var(--gutter); padding-left: clamp(96px, 16.7vw, 290px); }
.hero__text h1 { margin-bottom: 16px; white-space: nowrap; font-size: clamp(1.9rem, 3.1vw, 2.9rem); }
.hero__text .eyebrow { margin-bottom: 14px; }
.hero__text p { max-width: 480px; font-size: clamp(.92rem,1.15vw,1.02rem); line-height: 1.6; }
.hero__media { position: relative; overflow: hidden; background: transparent; }
.hero__media img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: contain; object-position: 50% bottom; }
.hero__links { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 34px; }
.hero__links a { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-dark); }
.hero__links a:hover { color: var(--ink); }

/* generic page hero (interior) */
.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: center;
  color: #fff; text-align: center; overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(22,19,16,.38) 0%, rgba(22,19,16,.55) 50%, rgba(22,19,16,.78) 100%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: rgba(255,255,255,.85); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 620px; margin: 18px auto 0; }
@media (max-width: 760px) {
  .page-hero { align-items: flex-end; min-height: 56vh; }
  .page-hero .wrap { padding-bottom: 8vh; }
}

/* ========================================================= PHOTO ROW (home tiles) */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.tile { position: relative; aspect-ratio: 3/5; overflow: hidden; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,18,16,.62)); }
.tile:hover img { transform: scale(1.06); }
.tile__label {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 2; text-align: center;
  color: #fff; font-family: var(--font-display); font-size: 1.35rem;
}
.tile__label small { display:block; font-family: var(--font-sans); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; opacity: .85; margin-top: 8px; }

/* ========================================================= BENTO (behandelingen preview) */
.bento-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas: "a text" "b c";
  gap: clamp(18px, 2.4vw, 34px); align-items: start;
}
.bento-card { position: relative; display: block; overflow: hidden; border-radius: 16px; }
.bento-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.bento-card:hover img { transform: scale(1.05); }
.bento-card::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(22,20,17,.42), rgba(22,20,17,.05) 42%, transparent 60%); }
.bento-label {
  position: absolute; left: clamp(14px, 1.6vw, 24px); top: 50%; z-index: 2;
  transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  color: #fff; font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.2rem); letter-spacing: .02em;
}
.bento-a { grid-area: a; aspect-ratio: 4/3; }
.bento-b { grid-area: b; aspect-ratio: 5/6; }
.bento-c { grid-area: c; aspect-ratio: 3/4; margin-top: clamp(-90px, -6vw, -36px); }
.bento-text { grid-area: text; align-self: center; padding-left: clamp(8px, 2vw, 40px); position: relative; z-index: 3; }
.bento-text h2 { margin-bottom: 30px; }

@media (max-width: 760px) {
  .bento-grid { grid-template-columns: 1fr; grid-template-areas: "text" "a" "b" "c"; }
  .bento-c { margin-top: 0; aspect-ratio: 4/5; }
  .bento-a { aspect-ratio: 4/3; }
  .bento-text { padding-left: 0; text-align: center; }
  .bento-text .btn { margin-inline: auto; }
}

/* ========================================================= SPLIT (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 6vw, 90px); }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3/4; }
.split__body h2 { margin-bottom: 22px; }
.split__body p + p { margin-top: 18px; }
.split__body .btn, .split__body .link-underline { margin-top: 30px; }

/* ========================================================= FEATURE CARDS / SERVICE LISTS */
.svc-block + .svc-block { margin-top: clamp(48px, 7vw, 96px); }
.svc-head { max-width: 720px; margin-bottom: 40px; }
.svc-head h2 { margin-bottom: 18px; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.svc-item { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 30px clamp(24px,3vw,40px); }
.svc-item h3 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-item p { font-size: 15.5px; color: var(--muted); }
.bg-cream2 .svc-item { background: var(--white); }

/* ---- behandeling categorie-kaarten ---- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.cat-card { display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s, border-color .4s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(40,32,24,.12); border-color: var(--taupe); }
.cat-card__media { display: block; overflow: hidden; aspect-ratio: 16/10; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.05); }
.cat-card__body { padding: 30px clamp(24px,3vw,40px) 34px; display: flex; flex-direction: column; }
.cat-card__body .ico-badge { margin-bottom: 16px; }
.cat-card__body h3 { font-size: 1.6rem; margin-bottom: 10px; }
.cat-card__body p { font-size: 15.5px; color: var(--muted); margin-bottom: 20px; }
.cat-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-dark); transition: gap .3s, color .3s; }
.cat-card:hover .cat-card__link { gap: 15px; color: var(--ink); }
@media (max-width: 760px) { .cat-grid { grid-template-columns: 1fr; } }

/* ========================================================= MERKEN */
.brand-logos { display: flex; flex-wrap: wrap; gap: clamp(30px,6vw,80px); align-items: center; justify-content: center; }
.brand-logos img { height: clamp(46px, 6vw, 74px); width: auto; object-fit: contain; opacity: .9; }

/* ========================================================= GALLERY (inspiratie) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; grid-auto-flow: dense; gap: 14px; }
.gallery span { display: block; overflow: hidden; border-radius: var(--img-radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform 1.1s var(--ease); }
.gallery span:hover img { transform: scale(1.06); }
.g-tall { grid-row: span 2; }
.g-big { grid-row: span 2; grid-column: span 2; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 680px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; } .g-big { grid-column: span 2; } }

/* ========================================================= REVIEWS */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review {
  background: var(--cream); border: 1px solid var(--line); padding: 34px 32px; border-radius: 16px;
}
.review { position: relative; }
.review::before { content: "\201C"; position: absolute; top: 6px; right: 24px; font-family: var(--font-display); font-size: 3.6rem; line-height: 1; color: var(--taupe); opacity: .3; }
.review__stars { color: var(--taupe); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--text); line-height: 1.6; }
.review__name { margin-top: 20px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* ========================================================= SOCIAL STRIP */
.social-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.social-strip img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: opacity .4s; }
.social-strip a:hover img { opacity: .82; }

/* ========================================================= VACATURES */
.vac-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.vac-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; }
.vac-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.vac-card .vac-meta { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 22px; }
.vac-card p { font-size: 15.5px; color: var(--muted); margin-bottom: 26px; }
.vac-card .btn { margin-top: auto; align-self: flex-start; }
.vac-detail { border-top: 1px solid var(--line); padding-top: 40px; }
.vac-detail h4 { font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-dark); margin: 28px 0 12px; }
.vac-detail ul { padding-left: 20px; color: var(--muted); }
.vac-detail li { margin-bottom: 6px; }

/* ========================================================= FORMS */
.form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 16px; font-weight: 300; color: var(--text);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--taupe); }
.field textarea { min-height: 140px; resize: vertical; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.check input { margin-top: 4px; accent-color: var(--taupe-dark); }

/* ========================================================= CONTACT / INFO */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.info-block h3 { font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 14px; }
.info-block p, .info-block a { color: var(--text); font-size: 16px; }
.info-block a:hover { color: var(--taupe-dark); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.map-embed { width: 100%; aspect-ratio: 16/8; border: 0; border-radius: 16px; filter: grayscale(.25) contrast(.95); }

/* ========================================================= LEGAL */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal h3 { font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem; margin: 26px 0 8px; color: var(--ink); }
.legal p, .legal li { color: var(--muted); font-size: 16px; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal .updated { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe-dark); margin-top: 40px; }

/* ========================================================= FOOTER */
.site-footer { background: var(--charcoal); color: #CFC7BB; padding-block: clamp(56px, 8vw, 96px) 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 46px; margin-bottom: 24px; }
.footer-brand p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: #EDE6DB; max-width: 320px; }
.footer-col h4 { font-family: var(--font-sans); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #EDE6DB; margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: #B9B0A4; font-size: 15px; margin-bottom: 12px; transition: color .3s; }
.footer-contact a, .footer-contact p { display: flex; align-items: flex-start; gap: 10px; }
.f-ico { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; opacity: .75; }
.footer-contact a:hover { color: #fff; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; letter-spacing: .04em; color: #8E867B; }
.footer-bottom a { color: #8E867B; }
.footer-bottom a:hover { color: #fff; }

/* ========================================================= FLOATING BOOK BTN */
.book-fab {
  position: fixed; right: clamp(16px,3vw,32px); bottom: clamp(16px,3vw,32px); z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--charcoal); color: #F4EEE5;
  padding: 15px 24px; border-radius: 40px; box-shadow: 0 14px 34px rgba(30,25,20,.28);
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  transition: background .35s, transform .35s;
}
.book-fab:hover { background: var(--taupe-dark); transform: translateY(-2px); }
.book-fab svg { width: 17px; height: 17px; }

/* ========================================================= COOKIE BANNER */
.cookie {
  position: fixed; left: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index: 300;
  max-width: 420px; background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(30,25,20,.22); border-radius: 4px; padding: 28px 28px 24px;
  transform: translateY(140%); transition: transform .6s var(--ease); opacity: 0;
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie img { height: 30px; margin-bottom: 16px; }
.cookie h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.cookie p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.cookie p a { color: var(--taupe-dark); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__actions .btn { padding: 12px 20px; font-size: 11px; }
.cookie__settings { margin-top: 14px; }
.cookie__settings label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); padding: 6px 0; }
.cookie__settings input { accent-color: var(--taupe-dark); }
.cookie__settings [disabled] { opacity: .5; }
.is-hidden { display: none !important; }

/* ========================================================= ROUNDED PHOTOS */
:root { --img-radius: 14px; }
.hero__media img,
.split__media img,
.tile,
.social-strip img,
.gallery img { border-radius: var(--img-radius); overflow: hidden; }
@media (max-width: 760px) { :root { --img-radius: 10px; } }

/* ========================================================= REVEAL ANIM */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ========================================================= ICONS */
.ico { width: 22px; height: 22px; display: inline-block; vertical-align: middle; }
.ico-sm { width: 17px; height: 17px; }
.ico-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 20px;
  background: var(--white); border: 1px solid var(--line); color: var(--taupe-dark);
  transition: transform .5s var(--ease), background .4s, color .4s, box-shadow .4s;
}
.bg-cream2 .ico-badge { background: var(--cream); }
.split__body:hover .ico-badge,
.svc-block:hover .ico-badge { transform: rotate(-8deg) scale(1.06); }
.info-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 16px;
  background: var(--sand); color: var(--taupe-dark); transition: transform .45s var(--ease), background .4s, color .4s;
}
.info-block { transition: transform .4s var(--ease); }
.info-block:hover { transform: translateY(-4px); }
.info-block:hover .info-ico { background: var(--charcoal); color: #F4EEE5; transform: scale(1.08); }

/* ========================================================= HOVER POLISH */
.split__media { overflow: hidden; }
.split__media img { transition: transform 1.2s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.svc-item, .review { transition: transform .45s var(--ease), box-shadow .45s, border-color .4s; }
.svc-item:hover, .review:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(40,32,24,.12); border-color: var(--taupe); }
.hours-table tr { transition: color .3s; }
.hours-table td { transition: background .3s; }
.hours-table tr:hover td { color: var(--ink); }
.hero__links a { position: relative; }
.hero__links a::after { content:""; position:absolute; left:0; bottom:-3px; height:1px; width:0; background: var(--taupe-dark); transition: width .35s var(--ease); }
.hero__links a:hover::after { width: 100%; }
.footer-col a { position: relative; display: block; width: fit-content; }
.footer-col a::after { content:""; position:absolute; left:0; bottom:1px; height:1px; width:0; background:#fff; transition: width .3s var(--ease); }
.footer-col a:hover::after { width: 100%; }
.footer-contact a { display: flex; width: auto; }
.footer-contact a::after { display: none; }
.btn { position: relative; overflow: hidden; }
.btn--solid:hover, .btn--taupe:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(40,32,24,.22); }
.link-underline { transition: color .3s, border-color .3s, letter-spacing .3s; }
.link-underline:hover { letter-spacing: .22em; }
html { scroll-padding-top: 110px; }
[id] { scroll-margin-top: 110px; }

/* ========================================================= FORM CONTROLS */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B7A69' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.field input[type="file"] { padding: 11px 14px; font-size: 14px; color: var(--muted); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--charcoal); color: #F4EEE5; border: 0; border-radius: 8px; padding: 9px 16px; margin-right: 14px; cursor: pointer; transition: background .3s; }
.field input[type="file"]::file-selector-button:hover { background: var(--taupe-dark); }
.field input[type="date"] { color: var(--text); }

/* ========================================================= VACANCY PAGE */
.vac-band { background: var(--cream-2); padding-block: clamp(40px, 6vw, 78px); }
.vac-back { display: flex; width: fit-content; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; transition: gap .3s, color .3s; }
.vac-back:hover { gap: 14px; color: var(--ink); }
.vac-band h1 { margin: 12px 0 18px; }
.vac-hours { display: flex; width: fit-content; align-items: center; gap: 10px; color: var(--taupe-dark); font-size: 15px; letter-spacing: .04em; margin-bottom: 26px; }
.vac-hours .ico { width: 19px; height: 19px; }
.vac-article { max-width: 900px; }
.vac-article > h2 { margin-bottom: 20px; }
.vac-article > .lead { margin-bottom: 44px; }
.vac-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 48px; }
.vac-col h3 { font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.vac-check { list-style: none; padding: 0; display: grid; gap: 14px; }
.vac-check li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--text); }
.ico-check { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; color: #fff; background: var(--taupe); border-radius: 50%; padding: 4px; box-sizing: border-box; transition: transform .3s, background .3s; }
.vac-check li:hover .ico-check { transform: scale(1.15); background: var(--taupe-dark); }
.vac-story { max-width: 760px; }
.vac-story h3 { font-size: 1.5rem; margin: 34px 0 12px; }
.vac-story p { color: var(--muted); }
/* vacancy cards as links */
a.vac-card { text-decoration: none; }
.vac-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-dark); transition: gap .3s, color .3s; }
.vac-card { transition: transform .45s var(--ease), box-shadow .45s, border-color .4s; }
.vac-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(40,32,24,.12); border-color: var(--taupe); }
.vac-card:hover .vac-card__link { gap: 15px; color: var(--ink); }

/* ========================================================= VACANCY HEADER MEDIA */
.vac-band__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.vac-band__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; transition: transform 1.2s var(--ease); }
.vac-band__media { overflow: hidden; border-radius: 16px; }
.vac-band__media:hover img { transform: scale(1.04); }

/* ========================================================= INSPIRATIE TEASER */
.insp-teaser { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.insp-teaser__text h2 { margin: 12px 0 22px; }
.insp-teaser__text .btn { margin-top: 30px; }
.insp-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.itg { display: block; overflow: hidden; border-radius: 14px; aspect-ratio: 3/4; }
.itg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.insp-teaser__grid:hover .itg img { transform: scale(1.05); }
.itg:nth-child(2), .itg:nth-child(4) { margin-top: 34px; }

/* ========================================================= FOOTER SOCIAL */
.footer-social { margin-top: 22px; display: flex; gap: 12px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); color: #CFC7BB; transition: background .35s, color .35s, transform .35s, border-color .35s; }
.social-btn:hover { background: #fff; color: var(--charcoal); border-color: #fff; transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; }

/* ========================================================= RESPONSIVE */
@media (max-width: 1024px) {
  .nav-left, .nav-right { gap: 22px; }
  .nav-left .nav-link:nth-child(n+3), .nav-right .nav-link { display: none; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-left, .nav-right, .header-cta { display: none; }
  .menu-toggle { display: block; grid-column: 3; justify-self: end; }
  .brand { grid-column: 2; justify-content: center; padding-inline: 0; }
  .tiles { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 30px; }
  .social-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { grid-template-columns: 1fr; }
  .hero__media { min-height: 52vh; order: -1; }
  .hero__text { padding-left: var(--gutter); }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split { gap: 30px; }
  .svc-grid { grid-template-columns: 1fr; }
  .vac-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .vac-cols { grid-template-columns: 1fr; gap: 30px; }
  .vac-band__inner { grid-template-columns: 1fr; gap: 26px; }
  .vac-band__media { order: -1; }
  .insp-teaser { grid-template-columns: 1fr; gap: 30px; }
  .gallery { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .book-fab span { display: none; }
  .book-fab { padding: 15px; }
  .cookie { left: 12px; right: 12px; max-width: none; }
}

/* ============================================================ ICONIQ BEAUTY additions */
.display-s { font-family: var(--font-display); font-weight: 500; line-height: 1.14; color: var(--ink); font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
.cat-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cat-grid--3 { grid-template-columns: 1fr; } }
.svc-note { font-size: .82rem; color: var(--taupe-dark); margin-top: 14px; line-height: 1.5; }
.info-grid--pillars { row-gap: clamp(30px, 4vw, 48px); }
.course-meta { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 22px; }
.course-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe-dark); border: 1px solid var(--line); border-radius: 100px; padding: 8px 15px; }
.course-badge .ico { width: 15px; height: 15px; }
.train-group-head { margin-bottom: 6px; }
.train-group-head .eyebrow { display: inline-block; }

/* ---------- Treatwell reviews badge ---------- */
.tw-badge { display:inline-flex; align-items:center; gap:10px; margin-top:20px; padding:9px 18px;
  border:1px solid var(--line); border-radius:100px; background:var(--white);
  font-size:13px; letter-spacing:.02em; color:var(--text); transition:border-color .3s, box-shadow .3s; }
.tw-badge:hover { border-color:var(--taupe); box-shadow:0 6px 20px rgba(0,0,0,.05); }
.tw-badge .tw-stars { color:var(--taupe); letter-spacing:2px; font-size:14px; }
.tw-badge .tw-score strong { font-weight:500; color:var(--ink); }

/* ---------- Instagram feed (uniform Instagram-post formaat) ---------- */
#ig-feed { gap: 10px; }
#ig-feed img { aspect-ratio: 4 / 5; border-radius: 10px; }
@media (max-width: 520px){ #ig-feed { grid-template-columns: repeat(2,1fr); } }

/* ---------- Instagram carrousel ---------- */
.ig-carousel { position: relative; }
.ig-track { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity; padding: 4px 2px; -ms-overflow-style: none; scrollbar-width: none; }
.ig-track::-webkit-scrollbar { display: none; }
.ig-track > a { flex: 0 0 auto; width: clamp(170px, 20vw, 240px); scroll-snap-align: start; }
.ig-track img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; border-radius: 10px; display: block; transition: opacity .4s; }
.ig-track a:hover img { opacity: .9; }
.ig-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: var(--ink); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.10); cursor: pointer; transition: background .3s, transform .15s; }
.ig-nav:hover { background: var(--cream-2); }
.ig-nav:active { transform: translateY(-50%) scale(.94); }
.ig-nav svg { width: 20px; height: 20px; }
.ig-prev { left: -10px; }
.ig-next { right: -10px; }
@media (max-width: 760px){ .ig-nav { width: 40px; height: 40px; } .ig-prev{ left: -4px } .ig-next{ right: -4px } }
