/* =========================================================
   Stein + Schüttgut Zentrum Kaarst — Stylesheet
   Eine Datei, keine externen Abhängigkeiten, keine Web-Fonts.
   Farben zentral über die Variablen unter :root anpassbar.
   ========================================================= */

:root {
  --ink:        #1e2327;   /* Überschriften */
  --ink-2:      #333333;   /* Fließtext */
  --ink-soft:   #666666;   /* Sekundärtext */
  --paper:      #ffffff;   /* Grundfläche */
  --paper-2:    #f4f4f2;   /* abgesetzte Abschnitte */
  --paper-3:    #e9e9e5;
  --line:       #e2e2df;
  --accent:     #97c11f;   /* Markengrün (Flächen, Buttons) */
  --accent-dk:  #82a819;   /* Hover */
  --accent-tx:  #6f9114;   /* Grün für Text/Links — kontraststark */
  --accent-lt:  #eef6dc;
  --dark:       #1e2327;   /* dunkle Flächen */
  --dark-2:     #272d32;

  --wrap: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --sp-section: clamp(4rem, 9vw, 7.5rem);

  --font: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-tx); text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: #55700f; text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; text-decoration: none;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-tx); margin: 0 0 1rem;
}
.eyebrow--light { color: #b7dd5c; }
.display {
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: .98;
}
.h2 { font-size: clamp(1.85rem, 3.6vw, 2.8rem); text-transform: uppercase; letter-spacing: -0.01em; }
.h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ink-2); }
.muted { color: var(--ink-soft); }

.rule { width: 64px; height: 4px; background: var(--accent); border: 0; margin: 1.4rem 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 52px; padding: .85rem 1.6rem;
  font: inherit; font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--accent); background: var(--accent); color: #fff; border-radius: 3px;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--onDark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Bild-Platzhalter ----------
   Ersetzen: <div class="ph" data-ph="…"></div>  →  <img src="bilder/datei.jpg" alt="Beschreibung">
------------------------------------------ */
.ph {
  display: grid; place-items: center; width: 100%;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, transparent 0 10px, rgba(30,35,39,.06) 10px 20px);
  border: 1px solid var(--line);
}
.ph::after {
  content: attr(data-ph);
  font: 500 .68rem/1.5 var(--mono);
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  text-align: center; padding: 1rem; max-width: 26ch;
}
.ph--dark {
  background-color: #2b3035; border-color: #3a4046;
  background-image: repeating-linear-gradient(135deg, transparent 0 12px, rgba(255,255,255,.05) 12px 24px);
}
.ph--dark::after { color: #98a0a5; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(30,35,39,.10); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand__logo { height: 46px; width: auto; display: block; }
@media (max-width: 480px) { .brand__logo { height: 38px; } }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem; letter-spacing: -.03em;
}
.brand__name { font-weight: 700; font-size: 1.02rem; letter-spacing: .04em; text-transform: uppercase; line-height: 1.15; }
.brand__sub { display: block; font-size: .68rem; font-weight: 400; letter-spacing: .18em; color: var(--ink-soft); }

.nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: .6rem .8rem; white-space: nowrap;
  font-size: .86rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.nav__list a:hover { color: var(--accent); text-decoration: none; }
.nav__list a[aria-current="page"] { color: var(--accent); box-shadow: inset 0 -3px 0 var(--accent); }
.nav__cta { margin-left: .5rem; }
.nav__cta a {
  color: #fff !important; background: var(--ink); padding: .75rem 1.2rem !important;
}
.nav__cta a:hover { background: var(--accent); }

.navToggle {
  display: none; width: 48px; height: 48px; padding: 0;
  background: transparent; border: 1px solid var(--line); cursor: pointer;
}
.navToggle span, .navToggle span::before, .navToggle span::after {
  display: block; width: 22px; height: 2px; background: var(--ink); margin-inline: auto; content: "";
  transition: transform .2s, opacity .2s;
}
.navToggle span::before { transform: translateY(-7px); }
.navToggle span::after  { transform: translateY(5px); }
.navToggle[aria-expanded="true"] span { background: transparent; }
.navToggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.navToggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 1010px) {
  .navToggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    display: none; padding: .5rem var(--pad) 1.25rem;
    box-shadow: 0 18px 30px rgba(30,35,39,.13);
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { padding: .95rem .25rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__list a[aria-current="page"] { box-shadow: none; }
  .nav__cta { margin: 1rem 0 0; }
  .nav__cta a { text-align: center; border-bottom: 0 !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--dark); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.hero__media::after { align-self: end; justify-self: start; padding: 1.25rem; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(18,22,25,.86) 0%, rgba(18,22,25,.62) 48%, rgba(18,22,25,.25) 100%);
}
.hero__inner { padding-block: clamp(4.5rem, 12vw, 9rem); max-width: 860px; }
.hero .display { color: #fff; }
.hero__sub { margin-top: 1.5rem; font-size: clamp(1.08rem, 1.7vw, 1.32rem); line-height: 1.6; color: #dfe2e4; max-width: 46ch; }
.hero .btn-row { margin-top: 2.4rem; }
.hero__brandline {
  font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #b7dd5c; margin: 0 0 1.1rem;
}

/* Fakten-Leiste unter dem Hero */
.facts { background: var(--dark-2); color: #fff; border-top: 1px solid rgba(255,255,255,.1); }
.facts__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255,255,255,.1);
}
.facts__item { padding: 1.6rem var(--pad); border-right: 1px solid rgba(255,255,255,.1); }
.facts__k { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: #9aa0a4; margin-bottom: .35rem; }
.facts__v { font-size: 1.06rem; font-weight: 700; line-height: 1.4; color: #fff; }
.facts__v a { color: #fff; text-decoration: none; }
.facts__v a:hover { color: #b7dd5c; }
@media (max-width: 760px) {
  .facts__grid { grid-template-columns: 1fr; border-left: 0; }
  .facts__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-block: 1.15rem; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--sp-section); }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c3c8cb; }

.section__head { max-width: 62ch; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .rule { margin-inline: auto; }

/* ---------- Intro / Willkommen ---------- */
.intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .intro { grid-template-columns: 1fr; } }
.intro__media { aspect-ratio: 4 / 3; }
.intro__body p + p { margin-top: 0; }

.quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.45; color: var(--ink);
  border-left: 4px solid var(--accent); padding: .25rem 0 .25rem 1.5rem; margin: 0 0 1.75rem;
}

/* ---------- Kategorie-Kacheln ---------- */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cat {
  background: var(--paper); padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: background .18s;
}
.cat__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.cat__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.section--alt .cat { background: var(--paper-2); }
.cat:hover { background: var(--accent); color: #fff; text-decoration: none; }
.cat:hover .cat__num, .cat:hover .cat__items, .cat:hover .cat__more { color: rgba(255,255,255,.86); }
.cat__num { font: 700 .72rem/1 var(--mono); letter-spacing: .16em; color: var(--accent-tx); }
.cat__name { font-size: 1.28rem; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
.cat__items { font-size: .92rem; line-height: 1.6; color: var(--ink-soft); margin: 0; flex: 1; }
.cat__more { margin-top: .3rem; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-tx); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery > * { aspect-ratio: 4 / 3; }
.gallery__item { position: relative; padding: 0; cursor: zoom-in; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.04); }

/* ---------- Produktliste (Sortiment-Seite) ---------- */
.catblock { padding-block: clamp(2.5rem, 5vw, 3.75rem); border-top: 1px solid var(--line); }
.catblock:first-of-type { border-top: 0; padding-top: 0; }
.catblock__grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .catblock__grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.catblock__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); text-transform: uppercase; letter-spacing: -.01em; }
.catblock__note { margin-top: .8rem; font-size: .95rem; color: var(--ink-soft); }
.catblock__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; margin-top: 1.4rem; border: 1px solid var(--line); }

.prods { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.prods li { background: var(--paper); padding: .95rem 1.1rem; font-size: .98rem; font-weight: 500; display: flex; align-items: center; gap: .7rem; }
.prods li::before { content: ""; width: 7px; height: 7px; flex: none; background: var(--accent); }
.prods--group { grid-column: 1 / -1; background: var(--paper); font: 700 .72rem/1 var(--mono) !important; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-tx); }
.prods--group::before { display: none; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.bigcall { display: block; text-decoration: none; margin-bottom: 2rem; }
.bigcall span { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #9aa0a4; margin-bottom: .5rem; }
.bigcall strong {
  display: block; font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 700; letter-spacing: -.02em;
  color: #fff; line-height: 1.1;
}
.bigcall:hover strong { color: #b7dd5c; }

.dl { display: grid; grid-template-columns: max-content 1fr; gap: .55rem 1.6rem; margin: 0; font-size: 1.02rem; }
.dl dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); padding-top: .32rem; }
.section--dark .dl dt { color: #9aa0a4; }
.dl dd { margin: 0; }
.section--dark .dl dd, .section--dark .dl dd a { color: #fff; }
.section--dark .dl dd a:hover { color: #b7dd5c; }
@media (max-width: 560px) { .dl { grid-template-columns: 1fr; gap: .1rem 0; } .dl dd { margin-bottom: 1rem; } }

.hours { border: 1px solid rgba(255,255,255,.18); padding: 1.5rem 1.6rem; }
.hours h3 { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: #9aa0a4; margin-bottom: 1rem; font-weight: 700; }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 1.02rem; }
.hours__row:first-of-type { border-top: 0; }
.hours__row span:last-child { font-weight: 700; white-space: nowrap; }
.hours__note { margin-top: 1.1rem; font-size: .88rem; color: #9aa0a4; }

/* ---------- Fließtext-Seiten ---------- */
.page-head { background: var(--dark); color: #fff; padding-block: clamp(3rem, 8vw, 5.5rem); }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); text-transform: uppercase; color: #fff; }
.page-head p { margin-top: 1.1rem; color: #c3c8cb; max-width: 58ch; font-size: 1.1rem; }

.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin: 2.75rem 0 .9rem; text-transform: uppercase; letter-spacing: -.005em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.9rem 0 .6rem; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.15rem; }
.prose li { margin-bottom: .4em; }
.prose strong { color: var(--ink); }
.prose .box { background: var(--paper-2); border-left: 4px solid var(--accent); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.prose address { font-style: normal; }

/* ---------- Footer ---------- */
.footer { background: #1e2327; color: #9aa0a4; padding-block: clamp(3rem, 6vw, 4.5rem); font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer a { color: #c9ced1; text-decoration: none; }
.footer a:hover { color: #b7dd5c; text-decoration: underline; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: #7f868a; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #333a3f;
  display: flex; flex-wrap: wrap; gap: .6rem 1.75rem; align-items: center; justify-content: space-between;
  font-size: .85rem; color: #7f868a;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; }
.linkbtn { background: none; border: 0; padding: 0; font: inherit; color: #c9ced1; cursor: pointer; text-decoration: none; }
.linkbtn:hover { color: #b7dd5c; text-decoration: underline; }

/* ---------- Lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(16,19,21,.94); padding: clamp(1rem, 4vw, 3rem);
  place-items: center;
}
.lb.is-open { display: grid; }
.lb img, .lb .ph { max-width: min(1100px, 100%); max-height: 84vh; width: auto; }
.lb .ph { width: min(900px, 90vw); aspect-ratio: 4/3; }
.lb__close {
  position: absolute; top: 1rem; right: 1rem; width: 52px; height: 52px;
  background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.lb__close:hover { background: #fff; color: var(--ink); }

/* ---------- Cookie-Consent ---------- */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: #fff; border-top: 3px solid var(--accent);
  box-shadow: 0 -12px 40px rgba(30,35,39,.22);
  padding: clamp(1.25rem, 3vw, 1.9rem) 0;
  transform: translateY(110%); transition: transform .35s ease;
}
.cc-banner.is-visible { transform: translateY(0); }
.cc-banner__inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2.5rem; align-items: center; }
@media (max-width: 860px) { .cc-banner__inner { grid-template-columns: 1fr; } }
.cc-banner h2 { font-size: 1.1rem; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .02em; }
.cc-banner p { font-size: .94rem; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 68ch; }
.cc-banner p a { color: var(--accent-tx); }
.cc-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cc-actions .btn { min-height: 48px; padding: .7rem 1.25rem; font-size: .84rem; white-space: nowrap; }

.cc-modal { position: fixed; inset: 0; z-index: 500; display: none; }
.cc-modal.is-open { display: block; }
.cc-modal__scrim { position: absolute; inset: 0; background: rgba(16,19,21,.6); }
.cc-modal__panel {
  position: relative; margin: clamp(1rem, 6vh, 5rem) auto; max-width: 640px;
  background: #fff; max-height: min(86vh, 780px); overflow-y: auto;
  box-shadow: 0 30px 70px rgba(30,35,39,.35);
}
.cc-modal__head { padding: 1.75rem var(--pad) 1.25rem; border-bottom: 1px solid var(--line); }
.cc-modal__head h2 { font-size: 1.3rem; text-transform: uppercase; }
.cc-modal__head p { margin: .7rem 0 0; font-size: .93rem; color: var(--ink-soft); }
.cc-modal__body { padding: .5rem var(--pad) 1.25rem; }
.cc-modal__foot {
  padding: 1.25rem var(--pad); border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .7rem; position: sticky; bottom: 0; background: #fff;
}
.cc-modal__foot .btn { min-height: 48px; padding: .7rem 1.2rem; font-size: .84rem; }

.cc-group { border-bottom: 1px solid var(--line); padding: 1.25rem 0; }
.cc-group:last-child { border-bottom: 0; }
.cc-group__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cc-group__name { font-weight: 700; font-size: 1.02rem; }
.cc-group p { margin: .55rem 0 0; font-size: .9rem; line-height: 1.6; color: var(--ink-soft); }
.cc-group__meta { margin-top: .6rem; font: 500 .72rem/1.5 var(--mono); color: var(--ink-soft); letter-spacing: .04em; }

.switch { position: relative; display: inline-flex; align-items: center; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch__track {
  width: 54px; height: 30px; background: var(--paper-3); border: 1px solid var(--line);
  border-radius: 999px; transition: background .18s, border-color .18s; pointer-events: none;
}
.switch__track::after {
  content: ""; display: block; width: 22px; height: 22px; margin: 3px; background: #fff;
  border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.28); transition: transform .18s;
}
.switch input:checked + .switch__track { background: var(--accent); border-color: var(--accent); }
.switch input:checked + .switch__track::after { transform: translateX(24px); }
.switch input:disabled + .switch__track { background: var(--accent); border-color: var(--accent); opacity: .45; }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--accent); outline-offset: 3px; }

body.cc-locked { overflow: hidden; }
