/*
  LYAÉ design system - ported from the approved mock-up (docs/design/lyae-mockup-v1.html)
  and docs/branding/tokens.css. Keep in sync with brand-kit.md if either changes.
*/

:root {
  --bg: #F1E9DB;
  --surface: #FBF8F2;
  --surface-2: #EAE0CB;
  --ink: #211D18;
  --ink-soft: #6B6153;
  --line: rgba(33, 29, 24, 0.14);
  --line-strong: rgba(33, 29, 24, 0.26);
  --taupe: #B7A488;
  --taupe-deep: #8C7A5E;
  --taupe-pale: #E4D9C4;
  --on-taupe: #26201A;
  --shadow: 0 1px 2px rgba(33, 29, 24, 0.04), 0 12px 28px -18px rgba(33, 29, 24, 0.35);
  --radius-s: 2px;
  --radius-m: 3px;
  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  /* Status/severity colors (System status dashboard, /beheer/systeemstatus) - muted/desaturated to
     match the taupe/cream palette, not saturated Bootstrap-style red/amber/green. Badge/meter use
     only - see brand-kit.md §3. */
  --status-ok: #4B7A5B;
  --status-ok-fill: #E1EBE3;
  --status-warning: #A9762B;
  --status-warning-fill: #F3E6CC;
  --status-critical: #A5433A;
  --status-critical-fill: #F1DCD9;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1B1712;
    --surface: #241F18;
    --surface-2: #2C2519;
    --ink: #F1E9DB;
    --ink-soft: #C3B6A0;
    --line: rgba(241, 233, 220, 0.14);
    --line-strong: rgba(241, 233, 220, 0.26);
    --taupe: #C9B694;
    --taupe-deep: #DCC9A6;
    --taupe-pale: #362D20;
    --on-taupe: #1B1712;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 32px -18px rgba(0, 0, 0, 0.55);
    --status-ok: #7FB08E;
    --status-ok-fill: #23352A;
    --status-warning: #D6A85C;
    --status-warning-fill: #3A2E1B;
    --status-critical: #D98A80;
    --status-critical-fill: #3A241F;
  }
}

:root[data-theme="dark"] {
  --bg: #1B1712;
  --surface: #241F18;
  --surface-2: #2C2519;
  --ink: #F1E9DB;
  --ink-soft: #C3B6A0;
  --line: rgba(241, 233, 220, 0.14);
  --line-strong: rgba(241, 233, 220, 0.26);
  --taupe: #C9B694;
  --taupe-deep: #DCC9A6;
  --taupe-pale: #362D20;
  --on-taupe: #1B1712;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 32px -18px rgba(0, 0, 0, 0.55);
  --status-ok: #7FB08E;
  --status-ok-fill: #23352A;
  --status-warning: #D6A85C;
  --status-warning-fill: #3A2E1B;
  --status-critical: #D98A80;
  --status-critical-fill: #3A241F;
}

:root[data-theme="light"] {
  --bg: #F1E9DB;
  --surface: #FBF8F2;
  --surface-2: #EAE0CB;
  --ink: #211D18;
  --ink-soft: #6B6153;
  --line: rgba(33, 29, 24, 0.14);
  --line-strong: rgba(33, 29, 24, 0.26);
  --taupe: #B7A488;
  --taupe-deep: #8C7A5E;
  --taupe-pale: #E4D9C4;
  --on-taupe: #26201A;
  --shadow: 0 1px 2px rgba(33, 29, 24, 0.04), 0 12px 28px -18px rgba(33, 29, 24, 0.35);
  --status-ok: #4B7A5B;
  --status-ok-fill: #E1EBE3;
  --status-warning: #A9762B;
  --status-warning-fill: #F3E6CC;
  --status-critical: #A5433A;
  --status-critical-fill: #F1DCD9;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--taupe); color: var(--on-taupe); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, .display {
  font-family: 'Italiana', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); line-height: 1.04; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); line-height: 1.12; }
h3 { font-size: 1.35rem; line-height: 1.2; }
p { margin: 0; }
.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 42ch; line-height: 1.65; }
.eyebrow {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
:focus-visible { outline: 2px solid var(--taupe-deep); outline-offset: 3px; }

/* ---------- measurement / brow-mapping motif ---------- */
.measure-line {
  position: relative;
  height: 1px;
  background: var(--line);
  background-image: repeating-linear-gradient(
    to right,
    var(--line-strong) 0, var(--line-strong) 1px,
    transparent 1px, transparent 28px
  );
}
.measure-line::after {
  content: "";
  position: absolute; top: -3px; left: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--taupe-deep);
  transform: translateX(-50%);
}
.measure-line[data-label]::before {
  content: attr(data-label);
  position: absolute; top: -1.9em; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.angle-gauge {
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  flex: none;
}
.angle-gauge::before {
  content: "";
  position: absolute; inset: 10px;
  border-radius: 50%;
  border-top: 1px solid var(--taupe-deep);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  transform: rotate(18deg);
}
.angle-gauge::after {
  content: "16°";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.03em;
}
.angle-gauge[data-angle]::after { content: attr(data-angle); }
.brow-icon { width: 34px; height: 16px; overflow: visible; }
.brow-icon path {
  fill: none; stroke: var(--taupe-deep); stroke-width: 1.6; stroke-linecap: round;
}

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
  height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo-btn {
  background: none; border: 0; cursor: pointer; padding: 0; text-decoration: none;
  font-family: 'Italiana', serif; font-size: 1.55rem; letter-spacing: 0.09em;
  color: var(--ink); line-height: 1; margin-left: -2rem;
}
/* The source PNGs (branding/LYAE logo *.png) are a near-square canvas with the wordmark padded
   well inside it, not a tight crop - sizing the <img> itself by height leaves the actual letters
   much smaller than the box. .logo-mark clips a fixed-height window; .logo-img is scaled up and
   centered inside it so the glyphs (not the surrounding padding) fill the visible height. */
.logo-mark { display: block; height: 4.9rem; width: 14rem; overflow: hidden; position: relative; }
.logo-img {
  display: block; position: absolute; top: 50%; left: 50%;
  height: 320%; width: auto; transform: translate(-50%, -50%);
}
/* beige lockup on light surfaces, wit/white lockup on dark - brand-kit.md §2 theming rule, same
   prefers-color-scheme/data-theme mechanism as .theme-toggle's sun/moon icon swap above. */
.logo-img-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .logo-img-light { display: none; }
  .logo-img-dark { display: block; }
}
:root[data-theme="dark"] .logo-img-light { display: none; }
:root[data-theme="dark"] .logo-img-dark { display: block; }
:root[data-theme="light"] .logo-img-light { display: block; }
:root[data-theme="light"] .logo-img-dark { display: none; }
nav.primary-nav { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
.nav-links { list-style: none; display: flex; gap: 1.8rem; margin: 0; padding: 0; }
.nav-links a {
  background: none; border: 0; cursor: pointer; text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.05em; color: var(--ink-soft);
  padding: 0.4rem 0; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--taupe-deep); transition: right 0.25s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { right: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem; border-radius: var(--radius-s);
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap; text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-primary:hover { background: var(--taupe-deep); border-color: var(--taupe-deep); color: var(--on-taupe); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

.menu-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius-s); width: 42px; height: 38px; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: var(--ink); margin: 4px auto; }

.lang-switch { display: flex; align-items: center; gap: 0.3rem; flex: none; }
.lang-link {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--ink-soft); text-decoration: none; padding: 0.2rem 0.4rem; border-radius: var(--radius-s);
  transition: color 0.18s ease, background 0.18s ease;
}
.lang-link:hover { color: var(--ink); }
.lang-link.is-active { color: var(--on-taupe); background: var(--taupe-deep); }

.theme-toggle {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: 1px solid var(--line-strong); cursor: pointer;
  color: var(--ink); transition: border-color 0.18s ease, color 0.18s ease, transform 0.4s ease;
}
.theme-toggle:hover { border-color: var(--taupe-deep); color: var(--taupe-deep); }
.theme-toggle svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .icon-moon { fill: currentColor; stroke: none; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  .theme-toggle .icon-sun { display: block; }
  .theme-toggle .icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ---------- page sections ---------- */
main { min-height: 60vh; }
section.block { padding-block: clamp(3rem, 7vw, 6rem); }
section.block + section.block { border-top: 1px solid var(--line); }

/* ---------- hero ---------- */
.hero {
  padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4rem);
}
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 1.4rem; }
.hero-copy h1 { margin-top: 0.6rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 0.6rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 2.6rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat b { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; font-weight: 600; font-variant-numeric: tabular-nums lining-nums; letter-spacing: -0.01em; }
.hero-stat span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.hero-figure {
  aspect-ratio: 4/5; border: 1px solid var(--line-strong); border-radius: var(--radius-m);
  background:
    radial-gradient(120% 90% at 20% 15%, color-mix(in srgb, var(--taupe) 55%, transparent), transparent 60%),
    linear-gradient(155deg, var(--surface-2), var(--surface));
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.hero-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-figure .measure-line { position: absolute; left: 8%; right: 8%; }
.hero-figure .measure-line.m1 { top: 30%; }

/* ---------- generic section heads ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3rem); flex-wrap: wrap; }
.section-head .lede { margin-top: 0.6rem; }

/* ---------- treatment teaser / cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.t-card {
  border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--surface);
  padding: clamp(1.6rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow);
}
.t-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.t-price { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 1.9rem; white-space: nowrap; font-variant-numeric: tabular-nums lining-nums; letter-spacing: -0.01em; }
.t-price sub { font-family: 'Fraunces', serif; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); vertical-align: 0; }
.t-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.t-card p.desc { color: var(--ink-soft); line-height: 1.6; }
.t-card-link { font-size: 0.82rem; letter-spacing: 0.04em; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); background: none; border: 0; cursor: pointer; align-self: flex-start; padding: 0; }
.t-card-link:hover { text-decoration-color: var(--ink); }

.steps-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.steps-list li { display: flex; gap: 0.7rem; font-size: 0.92rem; color: var(--ink-soft); }
.steps-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--taupe-deep); margin-top: 0.55em; flex: none; }

.detail-card { border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--surface); box-shadow: var(--shadow); padding: clamp(1.8rem, 4vw, 3rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.detail-card + .detail-card { margin-top: 1.8rem; }
.detail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.detail-col h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-deep); margin-bottom: 0.8rem; }
.note-box { border-left: 2px solid var(--taupe-deep); padding: 0.2rem 0 0.2rem 0.9rem; font-size: 0.88rem; color: var(--ink-soft); margin-top: 1rem; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
.portrait-figure { aspect-ratio: 3/4; border: 1px solid var(--line-strong); border-radius: var(--radius-m); background: linear-gradient(160deg, var(--taupe-pale), var(--surface-2)); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.portrait-figure span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.portrait-figure img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.content-image-preview { display: block; max-width: 220px; max-height: 220px; object-fit: cover; border: 1px solid var(--line-strong); border-radius: var(--radius-m); margin-bottom: 0.6rem; }
.values-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.value-item { display: flex; flex-direction: column; gap: 0.3rem; }
.value-item b { font-family: 'Italiana', serif; font-weight: 400; font-size: 1.1rem; }
.value-item span { font-size: 0.8rem; color: var(--ink-soft); }
.pigment-note { margin-top: 2rem; padding: 1.1rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--surface); font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- portfolio ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tab-btn { background: none; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.8rem; letter-spacing: 0.04em; cursor: pointer; color: var(--ink-soft); }
.tab-btn[aria-selected="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-tile { display: flex; aspect-ratio: 4/5; border: 1px solid var(--line); border-radius: var(--radius-m); background: linear-gradient(150deg, var(--surface-2), var(--surface)); flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; overflow: hidden; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.gallery-tile span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.portfolio-note { border: 1px solid var(--line); background: var(--taupe-pale); border-radius: var(--radius-m); padding: 1rem 1.3rem; font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 2.4rem; }
.portfolio-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--surface);
  padding: clamp(1.4rem, 2.5vw, 1.8rem); display: flex; flex-direction: column; gap: 0.9rem;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--taupe-deep); letter-spacing: 0.1em; font-size: 0.95rem; }
.review-card .review-body { color: var(--ink-soft); line-height: 1.6; font-style: italic; }
.review-author { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ink-soft); }
.review-author span:first-child { color: var(--ink); font-weight: 600; font-style: normal; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); padding-block: 1.3rem; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Italiana', serif; font-size: 1.15rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--taupe-deep); flex: none; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 0.9rem; color: var(--ink-soft); max-width: 62ch; line-height: 1.65; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-list li span.label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe-deep); }
.contact-list li a, .contact-list li p { font-size: 1rem; }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.social-pill { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.78rem; letter-spacing: 0.03em; text-decoration: none; }
.social-pill:hover { border-color: var(--ink); }
.social-pill:hover .social-icon { background-color: var(--ink); }

/* Brand icons are pulled live from the Simple Icons CDN as single-color SVG masks (tinted via
   background-color, never a hardcoded brand color) so they track upstream logo redesigns
   automatically instead of going stale as bundled assets. */
.social-icon { display: inline-block; width: 0.95rem; height: 0.95rem; background-color: var(--ink-soft); mask-repeat: no-repeat; mask-position: center; mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain; }
.social-icon-instagram { mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/instagram.svg"); -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/instagram.svg"); }
.social-icon-tiktok { mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/tiktok.svg"); -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/tiktok.svg"); }
.social-icon-facebook { mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/facebook.svg"); -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/facebook.svg"); }
.social-icon-whatsapp { mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/whatsapp.svg"); -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/whatsapp.svg"); }
.map-embed { aspect-ratio: 5/4; border: 1px solid var(--line-strong); border-radius: var(--radius-m); overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-field label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input, .form-field textarea, .form-field select {
  font: inherit; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-s);
  padding: 0.75rem 0.9rem; color: var(--ink);
}
.form-field select {
  appearance: none; padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B6153' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 0.7rem;
}
select option {
  background: var(--surface); color: var(--ink);
}
select option:checked, select option:hover {
  background: var(--taupe-pale); color: var(--ink);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C3B6A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  }
}
:root[data-theme="dark"] .form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C3B6A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--taupe-deep); }
.currency-input { position: relative; display: flex; align-items: center; }
.currency-input::before {
  content: "€"; position: absolute; left: 0.9rem; color: var(--ink-soft);
  font-family: var(--font-body); font-weight: 600; font-variant-numeric: tabular-nums lining-nums;
}
.currency-input input { padding-left: 1.9rem; width: 100%; }
.form-field input[type="file"] {
  padding: 0.5rem; font-size: 0.85rem; color: var(--ink-soft);
}
.form-field input[type="file"]::file-selector-button {
  font: inherit; background: transparent; color: var(--ink); cursor: pointer;
  border: 1px solid var(--line-strong); border-radius: var(--radius-s);
  padding: 0.55rem 1.1rem; margin-inline-end: 0.9rem;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color 0.18s ease;
}
.form-field input[type="file"]::file-selector-button:hover { border-color: var(--ink); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Clickable star rating (reviews form) - radio inputs in reverse DOM order under a row-reverse
   flex container, so the CSS sibling combinator can highlight "this star and every lower one". */
.star-rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.15rem; width: fit-content; }
.star-rating-input input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.star-rating-input label {
  cursor: pointer; font-size: 1.7rem; line-height: 1; color: var(--line-strong);
  transition: color 0.15s ease; border-radius: var(--radius-s);
}
.star-rating-input label::before { content: "★"; }
.star-rating-input input:checked ~ label,
.star-rating-input:hover label:hover,
.star-rating-input:hover label:hover ~ label { color: var(--taupe-deep); }
.star-rating-input input:focus-visible + label { outline: 2px solid var(--taupe-deep); outline-offset: 2px; }

/* Intake/consent form step (afspraak.razor, treatment bookings only) */
.consent-box {
  max-height: 220px; overflow-y: auto; white-space: pre-line; font-size: 0.85rem; line-height: 1.6;
  color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-s); padding: 1rem 1.1rem; margin-bottom: 1.1rem;
}
.checkbox-field { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 1.1rem; font-size: 0.9rem; }
.checkbox-field input[type="checkbox"] { margin-top: 0.2rem; flex: none; width: 1.1rem; height: 1.1rem; accent-color: var(--taupe-deep); }

/* In-house consent e-signature capture (js/consent-signature.js + the vendored signature_pad
   library) - the canvas fills this box so its backing-store size (set in JS from offsetWidth/
   offsetHeight) matches what's visible. */
.signature-pad-box {
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-s);
  margin-bottom: 0.6rem; overflow: hidden;
}
.signature-pad-box canvas { display: block; width: 100%; height: 160px; touch-action: none; }
.signature-pad-actions { display: flex; justify-content: flex-end; margin-bottom: 1.1rem; }

/* Blazor EditForm validation messages - no dedicated "error" token exists in tokens.css yet, so
   this leans on weight/ink rather than inventing an unapproved color. */
.validation-message { display: block; color: var(--ink); font-weight: 600; font-size: 0.8rem; margin-top: 0.3rem; }
.validation-errors { color: var(--ink); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }

/* ---------- notices / status messages ---------- */
/* Same "no invented error color" rule as validation-message above: severity is signalled
   with the left-border accent + weight, not red/green. */
.notice { border: 1px solid var(--line); border-left: 3px solid var(--taupe-deep); border-radius: var(--radius-m); background: var(--surface); padding: 1rem 1.3rem; font-size: 0.88rem; color: var(--ink-soft); }
.notice strong { color: var(--ink); }
.notice p { margin-top: 0.5rem; }
.notice p:first-child { margin-top: 0; }
.notice + .notice { margin-top: 0.9rem; }
.notice-error { border-left-color: var(--ink); }

/* ---------- data tables (registered logins, passkeys, ...) ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table td, .data-table th { padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--line); text-align: left; }
.data-table td:last-child, .data-table th:last-child { text-align: right; }
.data-table th { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.data-table .sort-th {
  background: none; border: 0; padding: 0; margin: 0; font: inherit; color: inherit;
  cursor: pointer; letter-spacing: inherit; text-transform: inherit; white-space: nowrap;
  position: relative; padding-right: 0.9em;
}
.data-table .sort-th:hover { color: var(--ink); }
.data-table .sort-th[data-sort="asc"]::after,
.data-table .sort-th[data-sort="desc"]::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
}
.data-table .sort-th[data-sort="asc"]::after { border-bottom: 5px solid var(--taupe-deep); transform: translateY(-80%); }
.data-table .sort-th[data-sort="desc"]::after { border-top: 5px solid var(--taupe-deep); transform: translateY(-20%); }

/* Action buttons in a data-table's last column (e.g. Bewerken/Verwijderen) - consistent gap and
   right-alignment instead of relying on each RadzenButton's own default margin, and wraps onto a
   second line as a group (rather than an uneven mid-button break) when a row's confirm/cancel pair
   doesn't fit next to Bewerken. */
.data-table .row-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; }

/* ---------- recovery codes ---------- */
.recovery-codes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin: 1.4rem 0; }
.recovery-code { display: block; font-family: 'Fraunces', Georgia, serif; font-variant-numeric: tabular-nums lining-nums; background: var(--surface-2); border-radius: var(--radius-s); padding: 0.6rem 0.8rem; text-align: center; letter-spacing: 0.04em; }

.btn-danger { background: transparent; color: var(--ink); border-color: var(--ink); font-weight: 600; }
.btn-danger:hover { background: var(--ink); color: var(--bg); }

/* ---------- booking ---------- */
.steps-bar { display: flex; align-items: center; gap: 0; margin-bottom: 3rem; }
.step-node { display: flex; align-items: center; gap: 0.7rem; }
.step-num { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 0.95rem; font-variant-numeric: tabular-nums lining-nums; color: var(--ink-soft); flex: none; }
.step-node.is-active .step-num, .step-node.is-done .step-num { border-color: var(--taupe-deep); color: var(--ink); background: var(--taupe-pale); }
.step-node.is-done .step-num { background: var(--taupe-deep); color: var(--on-taupe); }
.step-label { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-soft); }
.step-node.is-active .step-label { color: var(--ink); }
.step-connector { flex: 1; height: 1px; background: var(--line-strong); margin-inline: 0.9rem; min-width: 20px; }

.selection-recap { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin: -1.8rem 0 2rem; }
.recap-chip { display: inline-flex; align-items: center; border: 1px solid var(--taupe-deep); box-shadow: 0 0 0 1px var(--taupe-deep); background: var(--taupe-pale); color: var(--ink); border-radius: 999px; padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 600; }

.booking-panel { display: none; }
.booking-panel.is-active { display: block; }

.offering-toggle { display: flex; gap: 0.6rem; margin-bottom: 1.4rem; }

.service-pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.service-pick {
  text-align: left; border: 1px solid var(--line-strong); border-radius: var(--radius-m); background: var(--surface);
  padding: 1.4rem; cursor: pointer; display: flex; flex-direction: column; gap: 0.6rem; font: inherit; color: inherit;
}
.service-pick[aria-pressed="true"] { border-color: var(--taupe-deep); box-shadow: 0 0 0 1px var(--taupe-deep); background: var(--taupe-pale); }
.service-pick .row { display: flex; justify-content: space-between; align-items: baseline; }
.service-pick-sub { margin-left: 1.6rem; border-left: 2px solid var(--line-strong); padding-left: 1.2rem; }
.service-pick-sub-label { font-style: italic; }

.day-strip { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.4rem; margin-bottom: 1.8rem; }
.day-pill {
  flex: none; width: 76px; border: 1px solid var(--line-strong); border-radius: var(--radius-m); background: var(--surface);
  padding: 0.8rem 0.4rem; text-align: center; cursor: pointer; display: flex; flex-direction: column; gap: 0.3rem; font: inherit; color: inherit;
}
.day-pill span.dow { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.day-pill span.dom { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 1.3rem; font-variant-numeric: tabular-nums lining-nums; }
.day-pill span.moy { font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.day-pill[aria-pressed="true"] { border-color: var(--taupe-deep); background: var(--taupe-pale); }
.day-pill[disabled] { opacity: 0.35; cursor: not-allowed; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 0.6rem; }
.time-slot { border: 1px solid var(--line-strong); border-radius: var(--radius-s); background: var(--surface); padding: 0.65rem; cursor: pointer; font-variant-numeric: tabular-nums; font: inherit; color: inherit; }
.time-slot[aria-pressed="true"] { border-color: var(--taupe-deep); background: var(--taupe-pale); }

.artist-pick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.6rem; }
.artist-pick { border: 1px solid var(--line-strong); border-radius: var(--radius-s); background: var(--surface); padding: 0.65rem; cursor: pointer; font: inherit; color: inherit; text-align: left; }
.artist-pick[aria-pressed="true"] { border-color: var(--taupe-deep); background: var(--taupe-pale); }

.waitlist-offer { border: 1px solid var(--line); background: var(--taupe-pale); border-radius: var(--radius-m); padding: 1.1rem 1.3rem; margin-bottom: 1.8rem; }
.waitlist-offer p { margin: 0 0 0.8rem; font-size: 0.92rem; }
.waitlist-day-pick, .waitlist-part-pick { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.8rem; }
.waitlist-day-pick .artist-pick, .waitlist-part-pick .artist-pick { flex: none; padding: 0.5rem 0.9rem; }
.waitlist-contact-form { display: flex; flex-direction: column; gap: 0.6rem; max-width: 26rem; margin-top: 0.8rem; }
.waitlist-contact-form input { border: 1px solid var(--line-strong); border-radius: var(--radius-s); background: var(--surface); padding: 0.65rem 0.8rem; font: inherit; color: inherit; }

.session-pick-list { display: flex; flex-direction: column; gap: 0.8rem; }
.session-pick {
  text-align: left; border: 1px solid var(--line-strong); border-radius: var(--radius-m); background: var(--surface);
  padding: 1.1rem 1.3rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font: inherit; color: inherit;
}
.session-pick[aria-pressed="true"] { border-color: var(--taupe-deep); box-shadow: 0 0 0 1px var(--taupe-deep); background: var(--taupe-pale); }
.session-pick[disabled] { opacity: 0.45; cursor: not-allowed; }

.deposit-note { display: flex; gap: 0.9rem; border: 1px solid var(--line); background: var(--taupe-pale); border-radius: var(--radius-m); padding: 1.1rem 1.3rem; margin-top: 1.6rem; font-size: 0.88rem; color: var(--ink-soft); }

.summary-card { border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--surface); box-shadow: var(--shadow); padding: clamp(1.6rem, 3vw, 2.2rem); }
.summary-row { display: flex; justify-content: space-between; padding-block: 0.7rem; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.summary-row:last-of-type { border-bottom: 0; }
.summary-row span.k { color: var(--ink-soft); }

/* Status/severity pill (System status dashboard) - same shape language as .badge, colored via the
   --status-* tokens instead of the neutral taupe palette. */
.status-badge { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; border-radius: 999px; padding: 0.15rem 0.6rem; border: 1px solid transparent; }
.status-badge-ok { color: var(--status-ok); background: var(--status-ok-fill); border-color: var(--status-ok); }
.status-badge-warning { color: var(--status-warning); background: var(--status-warning-fill); border-color: var(--status-warning); }
.status-badge-critical { color: var(--status-critical); background: var(--status-critical-fill); border-color: var(--status-critical); }

/* Horizontal storage-usage meter (System status dashboard Opslag tab) - fill color driven by
   severity, same three --status-* tokens as .status-badge above. */
.storage-meter { height: 0.6rem; border-radius: 999px; background: var(--surface-2); overflow: hidden; margin: 0.6rem 0; }
.storage-meter-fill { height: 100%; border-radius: 999px; transition: width 0.3s ease; }
.storage-meter-fill-ok { background: var(--status-ok); }
.storage-meter-fill-warning { background: var(--status-warning); }
.storage-meter-fill-critical { background: var(--status-critical); }

/* Numerals rule (brand-kit.md §4, tokens.css): prices, times, and counters always use the body
   face at weight 600 with tabular numerals, never the display face. Apply to any figure shown
   outside the public-site `.t-price`/`.hero-stat b`/etc. rules above - backoffice tables and
   summary rows included. */
.amount { font-family: var(--font-body); font-weight: 600; font-variant-numeric: tabular-nums lining-nums; }

.booking-actions { display: flex; justify-content: space-between; margin-top: 2.2rem; gap: 1rem; }

.success-panel { display: none; text-align: center; padding-block: 2rem; }
.success-panel.is-active { display: block; }
.success-mark { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--taupe-deep); margin: 0 auto 1.4rem; display: flex; align-items: center; justify-content: center; }

/* ---------- footer ---------- */
footer.site-footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.4rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-deep); margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { background: none; border: 0; padding: 0; cursor: pointer; font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; text-align: left; }
.footer-col ul a:hover { color: var(--ink); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.76rem; color: var(--ink-soft); }
.footer-bottom strong { color: var(--ink); }
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--ink); }

/* Cookie consent banner (SiteLayout, public site only). Hidden by default; CookieConsentBanner.razor
   adds `is-visible` from its own _visible field once OnAfterRenderAsync has checked localStorage via
   JS interop - see CookieConsentBanner.razor.cs for why that check can't happen client-side only
   (prerendering + InteractiveServer attach discards any out-of-band DOM mutation made before the
   circuit connects). */
.cookie-consent-banner { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--surface); border-top: 1px solid var(--line-strong); box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12); }
.cookie-consent-banner.is-visible { display: block; }
.cookie-consent-inner { max-width: 1100px; margin: 0 auto; padding: 1.2rem var(--pad, 1.5rem); display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
.cookie-consent-text { flex: 1 1 320px; font-size: 0.85rem; color: var(--ink-soft); }
.cookie-consent-text p { margin: 0 0 0.3rem; }
.cookie-consent-text p:last-child { margin-bottom: 0; }
.cookie-consent-text strong { color: var(--ink); }
.cookie-consent-categories { display: flex; flex-direction: column; gap: 0.4rem; flex: 0 0 auto; }
.cookie-consent-categories .checkbox-field { margin-bottom: 0; font-size: 0.85rem; }
.cookie-consent-actions { display: flex; gap: 0.8rem; flex: 0 0 auto; flex-wrap: wrap; }

@media (max-width: 860px) {
  nav.primary-nav .nav-links { display: none; }
  nav.primary-nav .nav-links.is-open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 92px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad); gap: 1rem; z-index: 39;
  }
  .menu-toggle { display: block; }
  .hero-grid, .about-grid, .detail-card, .contact-grid, .card-grid, .form-row-2 { grid-template-columns: 1fr; }
  .gallery-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* Backoffice bookings calendar (Components/Pages/Backoffice/Bookings.razor) - RadzenScheduler
   appointment content, RadzenTooltip popup content. Both are rendered by Radzen outside
   Bookings.razor's own markup tree (RadzenScheduler's internal Appointment component; the
   tooltip via TooltipService.Open into <RadzenTooltip /> in BackofficeLayout.razor), so these
   rules must be global, not Bookings.razor.css scoped CSS - Blazor's ::deep combinator still
   requires a [b-xxxx]-tagged ancestor somewhere in the DOM, which neither of these has (verified
   via DevTools: .rz-event-content carries no scoping attribute, only Bookings.razor's own
   <Template> content inside it does). */

/* Status is shown by icon shape (BookingDisplay.StatusIcon), not color - the brand palette has no
   red/green/amber tokens (docs/branding/tokens.css). These add a secondary, subtle style cue on
   top of the icon so status is still scannable at a glance in month view where icons are tiny. */
.rz-event-content.booking-status-cancelledbyclient,
.rz-event-content.booking-status-cancelledbyartist {
  opacity: 0.55;
  text-decoration: line-through;
}

.rz-event-content.booking-status-noshow {
  border-style: dashed;
}

.rz-event-content.booking-status-pendingpayment {
  opacity: 0.8;
  border-style: dotted;
}

/* Per-employee accent: a solid background fill, orthogonal to the status cues above (shape/icon
   still carries status - this only groups appointments by who's doing them). Six swatches rotate
   deterministically per staff id (see Bookings/StaffAccentColor.cs). tokens.css/app.css's
   :root palette above is strictly neutral taupe/ink (no hue palette), and a same-hue lightness
   ramp alone doesn't stay distinguishable past 3-4 steps at calendar-box size - so this
   introduces a small set of muted accent hues, calendar-only (not used elsewhere in the UI, not
   part of the brand token set), kept at brand-consistent low saturation/warm undertone so they
   read as "the same family" rather than a generic bright palette. Each pairs with an explicit
   on-color text token for contrast; light and dark variants keep equivalent lightness/contrast
   against --surface in each theme. */
:root {
  --staff-accent-1: #9C6B54;
  --staff-accent-1-ink: #FBF8F2;
  --staff-accent-2: #6E7F5C;
  --staff-accent-2-ink: #FBF8F2;
  --staff-accent-3: #5B7A8C;
  --staff-accent-3-ink: #FBF8F2;
  --staff-accent-4: #8C6A96;
  --staff-accent-4-ink: #FBF8F2;
  --staff-accent-5: #B08A3E;
  --staff-accent-5-ink: #241F18;
  --staff-accent-6: var(--ink);
  --staff-accent-6-ink: var(--bg);
}

@media (prefers-color-scheme: dark) {
  :root {
    --staff-accent-1: #C99177;
    --staff-accent-2: #93A87E;
    --staff-accent-3: #82A6BA;
    --staff-accent-4: #B190BC;
    --staff-accent-5: #D6AE5E;
  }
}

:root[data-theme="dark"] {
  --staff-accent-1: #C99177;
  --staff-accent-2: #93A87E;
  --staff-accent-3: #82A6BA;
  --staff-accent-4: #B190BC;
  --staff-accent-5: #D6AE5E;
}

:root[data-theme="light"] {
  --staff-accent-1: #9C6B54;
  --staff-accent-2: #6E7F5C;
  --staff-accent-3: #5B7A8C;
  --staff-accent-4: #8C6A96;
  --staff-accent-5: #B08A3E;
}

.rz-event-content.staff-accent-1,
.staff-swatch.staff-accent-1 { background-color: var(--staff-accent-1); color: var(--staff-accent-1-ink); }
.rz-event-content.staff-accent-2,
.staff-swatch.staff-accent-2 { background-color: var(--staff-accent-2); color: var(--staff-accent-2-ink); }
.rz-event-content.staff-accent-3,
.staff-swatch.staff-accent-3 { background-color: var(--staff-accent-3); color: var(--staff-accent-3-ink); }
.rz-event-content.staff-accent-4,
.staff-swatch.staff-accent-4 { background-color: var(--staff-accent-4); color: var(--staff-accent-4-ink); }
.rz-event-content.staff-accent-5,
.staff-swatch.staff-accent-5 { background-color: var(--staff-accent-5); color: var(--staff-accent-5-ink); }
.rz-event-content.staff-accent-6,
.staff-swatch.staff-accent-6 { background-color: var(--staff-accent-6); color: var(--staff-accent-6-ink); }

.rz-event-content[class*="staff-accent-"] {
  border-color: transparent;
}

/* Hover tooltip content (Radzen TooltipService.Open, wired from Bookings.razor.cs's
   AppointmentMouseEnter handler) - a compact card matching .summary-card's tone
   (BookingDetail.razor) but sized for a hover popup. Radzen's own .rz-tooltip-content wrapper
   defaults to a dark background with white text (--rz-tooltip-background-color/-color, unset by
   radzen-theme.css) - overriding both here rather than just text color, since setting only
   `color` on top of that dark wrapper produced dark-on-dark (illegible) text. */
.rz-tooltip-content:has(.appt-tooltip) {
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-strong);
}

.appt-tooltip {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.2rem 0.1rem;
  font-size: 0.82rem;
  color: var(--ink);
  min-width: 12rem;
}

.appt-tooltip-name {
  font-weight: 600;
}

.appt-tooltip-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
