/* Happy Yogi — flagship website styles (built on the design tokens) */

html { scroll-behavior: smooth; }
body { background: var(--cream); overflow-x: hidden; }
::selection { background: var(--leaf-100); color: var(--forest-900); }

/* subtle atmosphere: faint leaf-tint glows + paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 82% -8%, rgba(94,147,51,.10), transparent 60%),
    radial-gradient(46vw 46vh at -6% 38%, rgba(94,147,51,.06), transparent 60%);
}
.site { position: relative; z-index: 1; }

/* ============ Header ============ */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--cream) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hdr.scrolled { border-color: var(--border); background: color-mix(in oklab, var(--cream) 92%, transparent); }
.hdr__in { max-width: var(--container); margin-inline: auto; padding: 0 var(--sp-6);
  height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 52px; display: block; width: auto; transition: opacity var(--dur) var(--ease); }
.brand:hover img { opacity: .82; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-text); font-size: 15px; font-weight: 500; color: var(--ink-700);
  text-decoration: none; position: relative; padding: 6px 0; white-space: nowrap; }
.nav a:not(.hy-btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--accent); transition: right var(--dur) var(--ease); }
.nav a:not(.hy-btn):hover { color: var(--forest-800); }
.nav a:not(.hy-btn):hover::after { right: 0; }
.nav a.active { color: var(--forest-800); font-weight: 700; }
.nav a.active::after { right: 0; }
.nav .hy-btn { padding: 11px 20px; font-size: 13px; }
.brand__tag { font-family: var(--font-text); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--bg-tint); border-radius: 999px; padding: 4px 10px; margin-left: 10px; }
.ft__in--verhuur { grid-template-columns: 1.5fr 1fr 1fr; }

/* ============ Verhuur: zalen ============ */
.zgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.zcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.zcard__img { aspect-ratio: 4/3; background: var(--bg-tint); display: grid; place-items: center;
  font-family: var(--font-text); font-size: 13px; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }
.zcard__body { padding: 22px 24px 26px; }
.zcard__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--text-strong); margin: 10px 0 10px; }
.zcard__meta { display: flex; gap: 14px; font-size: 13px; color: var(--ink-500); margin-bottom: 12px; }
.zcard__body p { font-size: 14.5px; line-height: 1.6; color: var(--ink-500); margin: 0 0 20px; }

/* ============ Verhuur: prijstabel ============ */
.ptable { max-width: 900px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.ptable__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; padding: 16px 22px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--ink-700); }
.ptable__row:last-child { border-bottom: none; }
.ptable__row--head { background: var(--bg-tint); font-weight: 700; color: var(--forest-800); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.pnote { max-width: 900px; margin: 18px auto 0; font-size: 13.5px; color: var(--text-muted); text-align: center; }

/* ============ Verhuur: kalender ============ */
.calwrap { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px,4vw,56px); align-items: start; }
.cal { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.cal__head { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--text-strong); margin-bottom: 18px; }
.cal__nav { background: none; border: 1px solid var(--border-strong); border-radius: 50%; width: 32px; height: 32px; cursor: pointer; color: var(--forest-800); font-size: 15px; }
.cal__nav:hover { background: var(--bg-tint); }
.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal__grid--labels { margin-bottom: 6px; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; text-align: center; }
.cal__cell, .cal__cell--past, .cal__cell--soon, .cal__cell--open {
  aspect-ratio: 1; border-radius: var(--r-md); border: none; font-size: 14px; cursor: pointer; display: grid; place-items: center; }
.cal__cell--empty { background: transparent; cursor: default; }
.cal__cell--past { background: transparent; color: var(--text-muted); opacity: .35; cursor: not-allowed; }
.cal__cell--soon { background: var(--sand-100); color: var(--forest-800); }
.cal__cell--soon:hover { background: var(--sand-200); }
.cal__cell--open { background: var(--leaf-50); color: var(--forest-800); font-weight: 600; }
.cal__cell--open:hover { background: var(--leaf-100); }
.cal__cell--selected { outline: 2px solid var(--accent); outline-offset: 1px; }
.cal__legend { display: flex; gap: 22px; margin-top: 18px; font-size: 12.5px; color: var(--ink-500); flex-wrap: wrap; }
.cal__legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.cal__legend i.open { background: var(--leaf-100); }
.cal__legend i.soon { background: var(--sand-100); }
.calpanel { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px 28px; box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
.calpanel h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--text-strong); margin: 0 0 10px; }
.calpanel__hint { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin: 0 0 18px; }
.calpanel .hy-field { margin-bottom: 14px; }
@media (max-width: 900px) {
  .zgrid { grid-template-columns: 1fr; }
  .calwrap { grid-template-columns: 1fr; }
  .calpanel { position: static; }
  .ptable__row { grid-template-columns: 1.2fr 1fr 1fr; font-size: 13px; }
  .ptable__row span:last-child { display: none; }
}
.nav .hy-btn--primary { color: #FFFFFF; }
.menu-btn { display: none; }

/* ============ Hero ============ */
.hero { max-width: var(--container); margin-inline: auto; padding: clamp(40px,6vw,84px) var(--sp-6) clamp(56px,7vw,96px);
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px,5vw,64px); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.hero__eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); display: block; }
.hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 1.02; letter-spacing: -.015em; color: var(--forest-900); margin: 20px 0 0; text-wrap: normal; }
.hero h1 em { font-style: italic; color: var(--accent); }
/* Lebanon logo-script accent word */
.hand, .hero h1 em.hand, .manifesto em.hand {
  font-family: var(--font-accent); font-style: italic; font-weight: 400; font-size: 1.14em; color: var(--accent); }
.hero__lead { font-size: clamp(1.05rem,1.4vw,1.3rem); line-height: 1.6; color: var(--ink-500); max-width: 460px; margin: 24px 0 0; }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__scroll { margin-top: 46px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-text); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); }
.hero__scroll i { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border-strong);
  display: inline-grid; place-items: center; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

.hero__media { position: relative; }
.hero__frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; }
.hero__frame img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.hero__arc { position: absolute; inset: auto -28px -28px auto; width: 168px; height: 168px;
  border: 1.5px solid var(--leaf-300); border-radius: 50%; z-index: -1; }
.chip { position: absolute; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.chip--rating { left: -26px; bottom: 40px; }
.chip--rating .n { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text-strong); line-height: 1; }
.chip--rating .s { font-family: var(--font-text); font-size: 12px; color: var(--text-muted); }
.chip--rating img { height: 38px; }
.chip--tea { right: 18px; top: 26px; font-family: var(--font-text); font-size: 13px; font-weight: 600; color: var(--forest-800); }
.chip--tea span { font-size: 18px; }

/* ============ Marquee ============ */
.marquee { border-block: 1px solid var(--border); background: var(--bg-subtle); overflow: hidden; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: slide 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 18px; padding: 18px 0;
  font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--forest-800); white-space: nowrap; }
.marquee__item::after { content: "✿"; font-style: normal; font-size: 14px; color: var(--leaf-300); margin: 0 36px; }

/* ============ FAQ ============ */
.faq { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px,5vw,70px); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__head h2 { margin-top: 10px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; cursor: pointer; padding: 26px 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--text-strong); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border-strong);
  display: grid; place-items: center; font-size: 18px; font-weight: 400; color: var(--forest-800);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--accent); color: var(--white); border-color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq__a p { margin: 0 0 24px; font-size: 16px; line-height: 1.7; color: var(--ink-700); max-width: 560px; }
.faq__item.open .faq__a { max-height: 240px; }
@media (max-width: 820px) {
  .faq { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============ Section scaffold ============ */
.section { max-width: var(--container); margin-inline: auto; padding: clamp(64px,8vw,116px) var(--sp-6); }
.section--tint { background: var(--bg-tint); max-width: none; }
.section--tint > .inner { max-width: var(--container); margin-inline: auto; }
.section--sand { background: var(--bg-subtle); border-block: 1px solid var(--border); max-width: none; }
.section--sand > .inner { max-width: var(--container); margin-inline: auto; }
.shead { text-align: center; max-width: 620px; margin: 0 auto clamp(38px,5vw,56px); }
.shead h2 { margin: 14px 0 12px; font-size: clamp(1.9rem,3.2vw,2.7rem); }
.shead p { color: var(--ink-500); margin: 0; }

/* ============ Manifesto ============ */
.manifesto { max-width: 980px; margin-inline: auto; padding: clamp(64px,9vw,128px) var(--sp-6); text-align: center; }
.manifesto p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem,3.4vw,2.9rem);
  line-height: 1.32; letter-spacing: -.01em; color: var(--forest-900); margin: 0; }
.manifesto em { font-style: italic; color: var(--accent); }
.manifesto .small { font-family: var(--font-text); font-size: 15px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-400); margin-bottom: 26px; }

/* ============ Class grid ============ */
.cgrid { display: grid; grid-template-columns: var(--cgrid-cols, repeat(3,1fr)); gap: 22px; }
.ccard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ccard__band { padding: 20px 22px; display: flex; align-items: flex-start; justify-content: space-between; }
.ccard__band img { height: 34px; transition: transform var(--dur-slow) var(--ease); }
.ccard:hover .ccard__band img { transform: rotate(-6deg) scale(1.06); }
.ccard__lv { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-text); font-size: 12px; color: var(--ink-700); opacity: .85; }
.ccard__body { padding: 4px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.ccard__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--text-strong); margin: 0 0 6px; }
.ccard__body p { font-size: 14px; color: var(--ink-500); margin: 0 0 16px; }
.ccard__meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; }
.ccard__meta .when { font-family: var(--font-text); font-size: 13px; color: var(--text-muted); }
.ccard__meta .dur { font-family: var(--font-text); font-size: 13px; font-weight: 600; color: var(--accent); }
.ccard__go { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; gap: 6px; align-items: center; }
.ccard__go span { transition: transform var(--dur) var(--ease); }
.ccard:hover .ccard__go span { transform: translateX(4px); }

/* level dots */
.lv { display:inline-flex; gap:4px; }
.lv i { width:7px; height:7px; border-radius:50%; background: var(--border-strong); }
.lv i.on { background: var(--accent); }

/* ============ Benefits ============ */
.bgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit { padding: 30px 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
.benefit .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center;
  color: var(--accent); margin-bottom: 18px; }
.benefit h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: 0 0 8px; color: var(--text-strong); }
.benefit p { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.6; }

/* ============ About ============ */
.about { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px,5vw,60px); align-items: center; }
.about__img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
.about ul { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 12px; }
.about li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-700); }
.about li b { color: var(--accent); }

/* ============ Reviews ============ */
.rgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.review .q { font-family: var(--font-display); font-size: 52px; line-height: .5; color: var(--leaf-300); height: 26px; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 21px; line-height: 1.45; color: var(--text-strong); margin: 12px 0 22px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who i { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; color: var(--accent); font-style: normal; }
.review .who b { font-family: var(--font-text); font-size: 14px; font-weight: 600; color: var(--ink-700); }
.review .who span { font-family: var(--font-text); font-size: 12px; color: var(--text-muted); display: block; }

/* ============ CTA band ============ */
.cta { background: var(--forest-800); position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(40vw 40vw at 84% 120%, rgba(155,194,116,.4), transparent 60%); }
.cta__in { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; text-align: center; padding: clamp(64px,8vw,104px) var(--sp-6); }
.cta img { height: 70px; margin-bottom: 6px; }
.cta h2 { color: var(--cream); font-size: clamp(2.2rem,4vw,3.2rem); margin: 8px 0 16px; }
.cta p { color: var(--leaf-100); font-size: 18px; margin: 0 auto 30px; max-width: 460px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.ft { background: var(--forest-900); color: var(--leaf-100); }
.ft__in { max-width: var(--container); margin-inline: auto; padding: 72px var(--sp-6) 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }
.ft img.logo { height: 56px; }
.ft p { font-size: 15px; line-height: 1.7; color: var(--leaf-200); max-width: 260px; margin: 16px 0 0; }
.ft h5 { font-family: var(--font-text); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--leaf-300); margin: 0 0 16px; }
.ft a.l { display: block; padding: 5px 0; color: var(--leaf-100); font-size: 15px; text-decoration: none; opacity: .85; transition: opacity var(--dur) var(--ease); }
.ft a.l:hover { opacity: 1; color: var(--cream); }
.ft__news { display: flex; gap: 8px; margin-top: 4px; }
.ft__news input { flex: 1; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  color: var(--cream); border-radius: var(--r-md); padding: 12px 14px; font-family: var(--font-text); font-size: 14px; }
.ft__news input::placeholder { color: rgba(255,255,255,.5); }
.ft__bottom { max-width: var(--container); margin-inline: auto; padding: 22px var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between;
  font-size: 13px; color: var(--leaf-300); }
.ft__bottom a { color: var(--leaf-200); margin-left: 20px; }

/* ============ Page hero (subpages) ============ */
.phero { max-width: var(--container); margin-inline: auto; text-align: center;
  padding: clamp(48px,6vw,84px) var(--sp-6) clamp(20px,3vw,36px); }
.phero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem,4.6vw,4rem);
  line-height: 1.05; letter-spacing: -.015em; color: var(--forest-900); margin: 18px 0 0; }
.phero p { font-size: clamp(1.02rem,1.3vw,1.2rem); line-height: 1.65; color: var(--ink-500); max-width: 560px; margin: 18px auto 0; }

/* ============ Les detail ============ */
.ldet { max-width: var(--container); margin-inline: auto; padding: 30px var(--sp-6) clamp(56px,7vw,90px);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px,4vw,56px); align-items: start; }
.ldet__back { font-size: 14px; color: var(--ink-500); text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }
.ldet__back:hover { color: var(--forest-800); }
.ldet h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem,4.4vw,3.6rem); color: var(--forest-900); margin: 14px 0 0; line-height: 1.04; }
.ldet .tagline { font-family: var(--font-display); font-style: italic; font-size: 23px; color: var(--ink-700); margin: 14px 0 0; }
.ldet .long { font-size: 16.5px; line-height: 1.75; color: var(--ink-700); margin: 22px 0 0; max-width: 560px; }
.ldet__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.lpanel { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 22px 24px 20px; box-shadow: var(--shadow-md); position: sticky; top: 96px; max-width: 380px; }
.lfull { max-width: var(--container); margin: 0 auto; padding: clamp(36px,5vw,60px) var(--sp-6); display: flex; justify-content: center; }
.lfull__in { max-width: 720px; }
.lfull .lsec { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--forest-900); margin: 0 0 18px; }
.lpanel h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--text-strong); margin: 0 0 4px; }
.lpanel .row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.lpanel .row span:first-child { font-size: 14px; color: var(--ink-700); }
.lpanel .row span:last-child { font-size: 12.5px; color: var(--text-muted); }
.lpanel .price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.lpanel .price b { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--text-strong); }
.lpanel .price span { font-size: 13px; color: var(--text-muted); }

/* ============ Rooster ============ */
.week { max-width: var(--container); margin-inline: auto; padding: 16px var(--sp-6) clamp(56px,7vw,90px);
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.day { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.day h3 { font-family: var(--font-text); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-800); background: var(--bg-tint); margin: 0; padding: 13px 18px; }
.day .slot { display: block; padding: 14px 18px; border-top: 1px solid var(--border); text-decoration: none;
  transition: background var(--dur) var(--ease); }
.day .slot:hover { background: var(--leaf-50); }
.day .slot .t { font-family: var(--font-text); font-size: 12.5px; font-weight: 700; color: var(--accent); }
.day .slot .n { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text-strong); margin: 3px 0 2px; }
.day .slot .d { font-size: 12.5px; color: var(--text-muted); }
.day .empty { padding: 18px; font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); font-style: italic; }

/* ============ Prijzen ============ */
.pgrid { max-width: 1020px; margin-inline: auto; padding: 16px var(--sp-6) 30px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 34px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; }
.plan--hero { border-color: var(--leaf-300); box-shadow: var(--shadow-md); }
.plan .flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white);
  font-family: var(--font-text); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.plan .hand { display: block; margin-bottom: 10px; }
.plan h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--text-strong); margin: 0 0 22px; }
.plan .sub { font-size: 14px; color: var(--ink-500); margin: 6px 0 18px; }
.plan .amt { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; margin-bottom: 24px; }
.plan .amt b { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--forest-900); line-height: 1; }
.plan .amt span { font-size: 14px; color: var(--text-muted); }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-700); }
.plan li b { color: var(--accent); }
.plan .hy-btn { margin-top: auto; }
.pnote { max-width: 1020px; margin-inline: auto; padding: 0 var(--sp-6) clamp(48px,6vw,72px);
  font-size: 14px; color: var(--text-muted); text-align: center; }

/* ============ Over ons / team ============ */
.tgrid { max-width: var(--container); margin-inline: auto; padding: 10px var(--sp-6) clamp(56px,7vw,90px);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.teach { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; text-align: center; }
.teach .av { width: 96px; height: 96px; border-radius: 50%; background: var(--bg-tint); margin: 0 auto 16px;
  object-fit: cover; display: block; }
.teach h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--text-strong); margin: 0; }
.teach p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ============ Contact ============ */
.cwrap { max-width: var(--container); margin-inline: auto; padding: 20px var(--sp-6) clamp(56px,7vw,90px);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,4vw,56px); align-items: start; }
.cinfo .block { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 26px; margin-bottom: 16px; }
.cinfo h4 { font-family: var(--font-text); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--forest-800); margin: 0 0 10px; }
.cinfo p { font-size: 15.5px; line-height: 1.7; color: var(--ink-700); margin: 0; }
.cform { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 34px 32px; box-shadow: var(--shadow-sm); }
.cform .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform .hy-field { margin-bottom: 16px; }
.cform__status { margin: 14px 0 0; font-size: 14px; min-height: 1.4em; }
.cform__status.is-ok { color: var(--forest-800); }
.cform__status.is-error { color: #A95130; }

@media (max-width: 900px) {
  .week { grid-template-columns: 1fr 1fr; }
  .pgrid { grid-template-columns: 1fr; max-width: 480px; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .ldet, .cwrap { grid-template-columns: 1fr; }
  .lpanel { position: static; }
}
@media (max-width: 620px) {
  .week, .tgrid { grid-template-columns: 1fr; }
  .cform .frow { grid-template-columns: 1fr; }
}

/* ============ Scroll reveal ============
   Visible by DEFAULT. The hidden start-state is applied only when JS is
   active (html.has-js) and motion is allowed — so content can never get
   stuck invisible for no-JS, reduced-motion, or frozen-tab visitors. */
.has-js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.has-js .reveal.in { opacity: 1; transform: none; }
.has-js .reveal.d1 { transition-delay: .08s; } .has-js .reveal.d2 { transition-delay: .16s; }
.has-js .reveal.d3 { transition-delay: .24s; } .has-js .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero__scroll i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .cgrid, .rgrid { grid-template-columns: 1fr 1fr; }
  .bgrid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .ft__in { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  .hdr__in { position: relative; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 10px var(--sp-6) 22px; box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 13px 0; }
  .nav.open a:not(.hy-btn)::after { display: none; }
  .nav.open .hy-btn { margin-top: 8px; text-align: center; }
  .menu-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-md);
    border: 1.5px solid var(--border); background: var(--white); }
  .cgrid, .rgrid, .bgrid, .ft__in { grid-template-columns: 1fr; }
  .chip--rating { left: 8px; } .chip--tea { display: none; }
}
