/* ============================================
   Gesangverein Frohsinn Langen — design tokens
   ============================================ */

:root {
  /* Palette — from logo */
  --paper:     #F4EFE3;   /* warm off-white background */
  --paper-2:   #EBE5D6;   /* slightly darker tone */
  --ink:       #1B1B1A;   /* near-black text */
  --ink-2:     #4A4843;   /* secondary text */
  --ink-3:     #8A8579;   /* muted text */
  --turquoise: #5DC4CC;   /* logo cyan */
  --turquoise-deep: #2E8A92;
  --gold:      #C9A45F;   /* logo gold */
  --gold-deep: #9C7C3F;
  --line:      rgba(27, 27, 26, 0.12);
  --line-2:    rgba(27, 27, 26, 0.06);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* paper grain — extremely subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(27,27,26,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
}

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

a { color: inherit; }

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  font-size: clamp(40px, 6vw, 76px);
}

.section-head .lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
}

@media (max-width: 720px) {
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* ============================================
   Nav
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(244, 239, 227, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}

.nav-brand img { width: 36px; height: 36px; border-radius: 50%; }
.nav-brand .est { color: var(--ink-3); font-size: 13px; margin-left: 4px; font-family: var(--font-body); letter-spacing: 0.05em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--turquoise-deep);
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.nav-cta:hover { background: var(--turquoise-deep); }
.nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 16px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line-2); }
}

/* ============================================
   Hero
   ============================================ */

section.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  width: 100%;
}

.hero-text .est-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 32px;
}

.hero-text .est-line .line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  max-width: 80px;
}

.hero-text h1 {
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-text h1 .italic {
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}

.hero-text .tagline {
  font-size: 20px;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, transform 0.1s, border-color 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--turquoise-deep); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn:active { transform: translateY(1px); }

.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

.hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(27,27,26,0.12));
  animation: drift 18s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

.hero-meta {
  grid-column: 1 / -1;
  display: flex;
  gap: clamp(20px, 5vw, 80px);
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong { color: var(--ink); font-weight: 500; font-size: 20px; font-family: var(--font-display); letter-spacing: -0.01em; }

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  section.hero { padding-top: 110px; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 240px; }
  .hero-meta { margin-top: 32px; }
}

/* ============================================
   Über / About
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about-grid p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 20px;
}

.about-grid p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--ink);
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}

.about-stat {
  background: var(--paper);
  padding: 24px;
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.about-stat .num .unit { color: var(--turquoise-deep); }
.about-stat .label { font-size: 13px; color: var(--ink-3); margin-top: 8px; letter-spacing: 0.02em; }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Geschichte / Timeline
   ============================================ */

.timeline-wrap {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 64px);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: calc(140px + (clamp(24px, 4vw, 64px) / 2));
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-row {
  display: contents;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  color: var(--ink);
  text-align: right;
  padding: 32px 0 64px;
  letter-spacing: -0.01em;
  position: relative;
}

.timeline-content {
  padding: 32px 0 64px;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: calc((clamp(24px, 4vw, 64px) / -2) - 5px);
  top: 44px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.timeline-row.accent .timeline-content::before {
  background: var(--turquoise);
  border-color: var(--turquoise-deep);
}

.timeline-row.gold .timeline-content::before {
  background: var(--gold);
  border-color: var(--gold-deep);
}

.timeline-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 500;
}

.timeline-content p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
  line-height: 1.6;
}

.timeline-content .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 6px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .timeline { grid-template-columns: 80px 1fr; }
  .timeline::before { left: calc(80px + (clamp(24px, 4vw, 64px) / 2)); }
  .timeline-year { font-size: 24px; padding-top: 24px; padding-bottom: 40px; }
  .timeline-content { padding-top: 24px; padding-bottom: 40px; }
  .timeline-content::before { top: 30px; }
  .timeline-content h3 { font-size: 20px; }
}

/* ============================================
   Termine
   ============================================ */

.events {
  display: flex;
  flex-direction: column;
}

.event {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: background 0.2s, padding 0.2s;
  cursor: pointer;
}

.event:last-child { border-bottom: 1px solid var(--line); }
.event:hover { background: var(--paper-2); padding-left: 16px; padding-right: 16px; }

.event-date {
  font-family: var(--font-display);
  line-height: 1;
}

.event-date .day {
  font-size: 48px;
  letter-spacing: -0.02em;
  display: block;
}

.event-date .month {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: var(--font-body);
}

.event-info h3 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 500;
}

.event-info .where {
  font-size: 14px;
  color: var(--ink-3);
}

.event-time {
  font-size: 15px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.event-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.event:hover .event-arrow {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(-45deg);
}

@media (max-width: 720px) {
  .event { grid-template-columns: 80px 1fr auto; gap: 16px; }
  .event-date .day { font-size: 36px; }
  .event-info h3 { font-size: 18px; }
  .event-time { display: none; }
}

/* ============================================
   Konzerte
   ============================================ */

.concerts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.concert {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.concert:hover { border-color: var(--ink); transform: translateY(-2px); }

.concert .year {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--turquoise-deep);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.concert h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}

.concert p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 28px;
  line-height: 1.55;
}

.concert .meta {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

@media (max-width: 880px) { .concerts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .concerts { grid-template-columns: 1fr; } }

/* ============================================
   Chor & Vorstand
   ============================================ */

.board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.board-card {
  display: flex;
  flex-direction: column;
}

.board-card image-slot,
.board-card .photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  background: var(--paper-2);
}

.board-card .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 6px;
}

.board-card .name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.board-card .note {
  font-size: 13px;
  color: var(--ink-3);
}

@media (max-width: 880px) { .board { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .board { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* ============================================
   Mitglied werden
   ============================================ */

.join {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.join::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--turquoise);
  opacity: 0.15;
  filter: blur(60px);
}

.join h2 {
  color: var(--paper);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
  position: relative;
}

.join h2 .italic {
  font-style: italic;
  color: var(--turquoise);
  font-weight: 400;
}

.join p {
  font-size: 17px;
  color: rgba(244, 239, 227, 0.7);
  margin: 0 0 32px;
  line-height: 1.6;
  position: relative;
}

.join-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.join-form input, .join-form select, .join-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 227, 0.25);
  color: var(--paper);
  padding: 12px 4px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 400;
}

.join-form input::placeholder, .join-form textarea::placeholder { color: rgba(244, 239, 227, 0.45); }
.join-form input:focus, .join-form select:focus, .join-form textarea:focus { border-bottom-color: var(--turquoise); }

.join-form select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4 L6 8 L10 4' fill='none' stroke='%23F4EFE3' stroke-width='1.2'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; }

.join-form button {
  align-self: flex-start;
  margin-top: 12px;
  background: var(--turquoise);
  color: var(--ink);
  border: 0;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.join-form button:hover { background: var(--paper); }
.join-form button:active { transform: translateY(1px); }

.join-success {
  background: rgba(93, 196, 204, 0.12);
  border: 1px solid rgba(93, 196, 204, 0.3);
  padding: 24px;
  border-radius: 4px;
  position: relative;
}

.join-success h3 { font-family: var(--font-display); color: var(--turquoise); margin-bottom: 8px; font-size: 24px; }
.join-success p { color: rgba(244,239,227,0.85); font-size: 15px; margin: 0; }

@media (max-width: 880px) {
  .join { grid-template-columns: 1fr; }
  .join-row { grid-template-columns: 1fr; }
}

/* ============================================
   Galerie
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery image-slot {
  width: 100%;
  height: 100%;
  background: var(--paper-2);
}

.gallery .g1 { grid-column: span 2; grid-row: span 2; }
.gallery .g4 { grid-row: span 2; }
.gallery .g6 { grid-column: span 2; }

@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g1, .gallery .g4, .gallery .g6 { grid-column: auto; grid-row: auto; }
  .gallery .g1 { grid-column: span 2; grid-row: span 2; }
}

/* ============================================
   Kontakt + Footer
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}

.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.contact-info dd {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-info dd a { text-decoration: none; transition: color 0.2s; }
.contact-info dd a:hover { color: var(--turquoise-deep); }

.rehearsal {
  background: var(--paper-2);
  padding: 32px;
  border-left: 3px solid var(--turquoise);
}
.rehearsal .eyebrow { color: var(--turquoise-deep); margin-bottom: 16px; }
.rehearsal h3 { font-size: 28px; margin-bottom: 8px; font-weight: 500; }
.rehearsal p { font-size: 16px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.6; }
.rehearsal .when { font-family: var(--font-display); font-size: 20px; color: var(--ink); }

.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  font-size: 13px;
  color: var(--ink-3);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-family: var(--font-display); font-size: 18px; }
.footer .brand img { width: 32px; height: 32px; border-radius: 50%; }
.footer nav { display: flex; gap: 24px; }
.footer nav a { text-decoration: none; color: var(--ink-3); transition: color 0.2s; }
.footer nav a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Utility
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}

/* Anker-Sprünge unter der fixierten Navigation freihalten */
section[id] { scroll-margin-top: 84px; }

/* Foto-Platzhalter (ersetzen das Prototyp-<image-slot>) */
.gallery .photo {
  width: 100%;
  height: 100%;
  background: var(--paper-2);
}
.board-card .photo { background: var(--paper-2); }

/* dezentes Punktraster, damit leere Platzhalter nicht „kaputt" wirken */
.photo {
  background-image: radial-gradient(circle at 50% 50%, rgba(27,27,26,0.05) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* Rechtstexte (Impressum / Datenschutz) */
.legal { padding-top: 140px; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 8px; }
.legal .eyebrow { margin-bottom: 24px; }
.legal h2 {
  font-size: 26px;
  margin: 40px 0 12px;
  font-weight: 500;
}
.legal p, .legal li { font-size: 16px; color: var(--ink-2); line-height: 1.7; }
.legal address { font-style: normal; }
.legal a { color: var(--turquoise-deep); }
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.legal .back:hover { color: var(--ink); }
.legal .todo {
  background: rgba(201, 164, 95, 0.12);
  border-left: 3px solid var(--gold);
  padding: 4px 10px;
  font-size: 14px;
  color: var(--gold-deep);
}
