/* ==========================================================================
   Gärtnerei Röger – Design System
   Leitidee: „Wir gestalten und pflegen Erinnerungsorte persönlich,
   zuverlässig und dauerhaft."
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/inter-var-latin.woff2") format("woff2-variations"),
       url("../assets/fonts/inter-var-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-var-latin.woff2") format("woff2-variations"),
       url("../assets/fonts/fraunces-var-latin.woff2") format("woff2");
}

:root {
  /* Marke – Relaunch-Palette, aus den realen Bestandsfarben abgeleitet */
  --c-forest: #173C30;      /* Waldgrün dunkel – Header, Footer */
  --c-primary: #245B45;     /* Primärgrün – Vertrauen, Hauptbuttons */
  --c-sage: #A8B9A6;        /* Salbeigrün – ruhige Sektionen */
  --c-burgundy: #7A2935;    /* Burgunder – würdevoller Akzent, Floristik */
  --c-stone: #E8E2D7;       /* Warmes Steinbeige – Hintergrundfläche */
  --c-warmwhite: #F8F6F1;   /* Warmweiß – Grundfläche */
  --c-graphite: #28302D;    /* Text */
  --c-muted: #565f5b;

  --c-surface: #FFFFFF;
  --c-border: #DEDACD;

  /* Typografie */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-base: 1rem;
  --lh-base: 1.65;

  /* Layout */
  --container-w: 1240px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px rgba(23, 60, 48, 0.08), 0 1px 1px rgba(23, 60, 48, 0.05);
  --shadow-m: 0 10px 26px rgba(23, 60, 48, 0.12), 0 2px 8px rgba(23, 60, 48, 0.06);
  --shadow-l: 0 26px 64px rgba(23, 60, 48, 0.18), 0 8px 22px rgba(23, 60, 48, 0.09);
  --header-h: 78px;

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-graphite);
  background: var(--c-warmwhite);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--c-burgundy);
  outline-offset: 2px;
  border-radius: 4px;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; color: var(--c-forest); margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 1.4rem + 1.1vw, 2.4rem); }
h3 { font-size: 1.32rem; }
p { margin: 0 0 1em; color: var(--c-muted); }
ul, ol { padding-left: 1.2em; }
table { border-collapse: collapse; width: 100%; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 2vw, 2.5rem);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--c-forest); color: #fff; padding: 0.75em 1.25em;
  border-radius: var(--radius-s); z-index: 1000; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: inherit; font-weight: 600; font-size: 0.98rem;
  padding: 0.85em 1.6em; border-radius: var(--radius-s);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.16s ease; flex-shrink: 0; }
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: var(--shadow-s); }
.btn-primary:hover { background: var(--c-forest); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary { background: transparent; color: var(--c-forest); border-color: var(--c-primary); }
.btn-secondary:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-forest); }
.btn-ghost:hover { background: var(--c-border); }
.btn-on-dark { background: #fff; color: var(--c-forest); }
.btn-on-dark:hover { background: var(--c-stone); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  flex-shrink: 0; margin-right: auto;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-primary); color: #fff; flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--c-forest); line-height: 1.15; white-space: nowrap; }
.brand-name small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-muted); }

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.9rem);
}
.main-nav a {
  display: inline-block;
  color: var(--c-graphite); text-decoration: none; font-weight: 600;
  font-size: 0.95rem; white-space: nowrap; padding: 0.4em 0.1em;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--c-primary); border-bottom-color: var(--c-burgundy); }
.header-cta { display: flex; align-items: center; gap: 0.7rem; margin-left: 1.5rem; flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--c-border);
  border-radius: var(--radius-s); width: 44px; height: 44px;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .header-cta .btn-secondary { display: none; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--c-surface);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 0; }
  .main-nav a { display: block; padding: 0.95em 1.5rem; border-bottom: 1px solid var(--c-border); border-radius: 0; }
  .main-nav a:hover { border-bottom-color: var(--c-border); background: var(--c-warmwhite); }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero (2.5D, siehe docs/hero-implementation.md) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  background: var(--c-forest);
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
  transform-origin: center;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% 45%;
  transform: scale(1.06);
  will-change: transform;
  animation: heroSceneIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroSceneIn {
  from { transform: scale(1.09); opacity: 0.001; }
  to { transform: scale(1.06); opacity: 1; }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,26,21,0.86) 0%, rgba(15,26,21,0.62) 32%, rgba(15,26,21,0.18) 58%, rgba(15,26,21,0.05) 75%),
              linear-gradient(0deg, rgba(10,18,15,0.55) 0%, transparent 30%);
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 2;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.hero-content { max-width: 40rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: #f1e8d8; background: rgba(255,255,255,0.12);
  padding: 0.45em 0.95em; border-radius: 999px; margin-bottom: 1.2em;
  opacity: 0; transform: translateY(12px);
  animation: heroFadeUp 0.7s ease 0.35s forwards;
}
.hero h1 {
  color: #fff; margin-bottom: 0.5em; text-shadow: 0 2px 18px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(12px);
  animation: heroFadeUp 0.8s ease 0.5s forwards;
}
.hero .lede {
  color: #e7ebe6; font-size: 1.16rem; max-width: 42ch;
  opacity: 0; transform: translateY(12px);
  animation: heroFadeUp 0.8s ease 0.68s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.7rem;
  opacity: 0; transform: translateY(12px);
  animation: heroFadeUp 0.8s ease 0.85s forwards;
}
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero .lede, .hero-actions { opacity: 1; transform: none; animation: none; }
  .hero-media img { animation: none; transform: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.2rem, 6vw, 6.2rem); }
.section-alt { background: var(--c-surface); border-block: 1px solid var(--c-border); }
.section-sage { background: linear-gradient(180deg, var(--c-stone), var(--c-warmwhite)); }
.section-dark { background: var(--c-forest); color: #dfe6e0; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #c4d0c8; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.8rem, 3vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-burgundy); margin-bottom: 0.6em;
}
.section-dark .eyebrow { color: #d9a9ac; }

/* Grids & Cards */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-m); padding: 1.8rem;
  box-shadow: var(--shadow-s);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: #c9d2c5; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-s);
  background: var(--c-stone); color: var(--c-primary); margin-bottom: 1rem;
}
.card-icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 0.4em; font-size: 1.18rem; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 600; margin-top: 0.9em; color: var(--c-primary); text-decoration: none; }
.card-link svg { width: 1em; height: 1em; transition: transform 0.16s ease; }
.card-link:hover svg { transform: translateX(4px); }

.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--c-stone); color: var(--c-forest); padding: 0.3em 0.7em; border-radius: 999px; margin-bottom: 0.7em; }

/* Media + text split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split, .split.reverse .split-media { grid-template-columns: 1fr; order: initial; } }
.split-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-m); width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }

/* Leistungswege (Nutzerpfade) */
.pathways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .pathways { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pathways { grid-template-columns: 1fr; } }
.pathway-card {
  display: flex; flex-direction: column; gap: 0.9rem;
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-m);
  padding: 1.7rem; text-decoration: none; color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pathway-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--c-primary); }
.pathway-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-sage); }
.pathway-card h3 { margin-bottom: 0.2em; }
.pathway-card p { margin-bottom: 0; font-size: 0.95rem; }
.pathway-card .card-link { margin-top: auto; }

/* Prozess-/Ablaufschritte */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; counter-reset: step; }
.steps li { display: flex; gap: 1rem; align-items: flex-start; counter-increment: step; }
.steps li::before {
  content: counter(step); flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.92rem;
}
.steps strong { display: block; color: var(--c-forest); margin-bottom: 0.15em; }

/* FAQ */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700; color: var(--c-forest); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--c-primary); border-radius: 2px; transition: transform 0.2s ease;
}
.faq-item summary .plus::before { top: 50%; left: 0; width: 100%; height: 2.5px; transform: translateY(-50%); }
.faq-item summary .plus::after { left: 50%; top: 0; height: 100%; width: 2.5px; transform: translateX(-50%); }
.faq-item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item .faq-a { padding: 0 0.2rem 1.4rem; color: var(--c-muted); max-width: 68ch; }

/* Trust / Vertrauen */
.trust-badge { display: inline-flex; align-items: center; gap: 0.7em; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-m); padding: 0.9em 1.3em; box-shadow: var(--shadow-s); }
.trust-badge svg { width: 1.4em; height: 1.4em; color: var(--c-burgundy); flex-shrink: 0; }
.trust-badge strong { color: var(--c-forest); display: block; }
.trust-badge small { color: var(--c-muted); }

/* Forms */
.form-grid { display: grid; gap: 1.1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form-row-2 { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4em; color: var(--c-forest); }
.field .hint { font-weight: 400; color: var(--c-muted); font-size: 0.82rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.8em 0.95em; border-radius: var(--radius-s);
  border: 1.5px solid var(--c-border); font-family: inherit; font-size: 0.98rem; background: #fff; color: var(--c-graphite);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--c-primary); }
.field-checkbox { display: flex; align-items: flex-start; gap: 0.6em; font-size: 0.88rem; color: var(--c-muted); }
.field-checkbox input { width: auto; margin-top: 0.25em; }

/* Info list (contact/hours) */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: 0.9em; align-items: flex-start; }
.info-list svg { width: 1.3em; height: 1.3em; color: var(--c-primary); flex-shrink: 0; margin-top: 0.15em; }
.info-list strong { display: block; color: var(--c-forest); }

.hours-table td { padding: 0.4em 0.8em 0.4em 0; color: var(--c-muted); border: none; }
.hours-table td:first-child { color: var(--c-forest); font-weight: 600; width: 55%; }

.map-embed { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--c-border); background: var(--c-stone); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; text-align: center; padding: 1.5rem; color: var(--c-muted); font-size: 0.9rem; }
.map-placeholder svg { width: 34px; height: 34px; color: var(--c-primary); }

.notice-box {
  background: #fdf6ec; border: 1px solid #e6c98f; color: #6b4a12;
  border-radius: var(--radius-m); padding: 1.1rem 1.3rem; font-size: 0.92rem; margin-bottom: 1.6rem;
}
.notice-box strong { color: #6b4a12; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--c-forest), var(--c-primary));
  color: #fff; border-radius: var(--radius-l);
  padding: clamp(2rem, 4vw, 3.2rem);
  display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between;
}
.cta-band h2, .cta-band p { color: #fff; margin: 0; }
.cta-band p { color: #dfe6e0; max-width: 46ch; }

/* Footer */
.site-footer { background: var(--c-graphite); color: #b7c0ba; padding-block: clamp(2.5rem, 4vw, 4rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6em; }
.site-footer a { color: #b7c0ba; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand .brand-mark { background: var(--c-sage); color: var(--c-forest); }
.footer-brand strong { color: #fff; font-family: var(--font-display); font-size: 1.1rem; }
.footer-brand-desc { color: #8d968f; max-width: 34ch; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; justify-content: space-between; font-size: 0.85rem; color: #8d968f;
}
.footer-bottom a { color: #8d968f; }

/* Legal pages */
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 1.8em; }
.legal-content h3 { margin-top: 1.3em; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Breadcrumb-ish page header for subpages */
.page-hero { background: var(--c-forest); color: #fff; padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.page-hero .eyebrow { color: #d9a9ac; }
.page-hero h1 { color: #fff; margin-bottom: 0.4em; }
.page-hero p { color: #cfd8d1; max-width: 62ch; font-size: 1.08rem; margin: 0; }

.calendly-placeholder {
  border: 2px dashed var(--c-border); border-radius: var(--radius-m);
  padding: 2.2rem; text-align: center; background: var(--c-surface);
}
.calendly-placeholder svg { width: 40px; height: 40px; color: var(--c-primary); margin-bottom: 0.8rem; }

/* Anfrageart-Chips (Kontakt) */
.request-types { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.request-types label {
  display: inline-flex; align-items: center; gap: 0.5em; cursor: pointer;
  border: 1.5px solid var(--c-border); border-radius: 999px; padding: 0.55em 1.1em;
  font-size: 0.9rem; font-weight: 600; color: var(--c-forest); background: var(--c-surface);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.request-types input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.request-types input:checked + span { color: var(--c-primary); }
.request-types label:has(input:checked) { border-color: var(--c-primary); background: var(--c-stone); }
