/* Shared styles for Impressum / Datenschutz / AGB */
body { background: var(--green-deep); color: var(--cream); }

.lg-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--rule-cream);
}
.lg-hero .updated {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,222,189,0.55); display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.lg-hero .updated::before { content: ''; width: 22px; height: 1px; background: rgba(255,222,189,0.55); display: inline-block; }
.lg-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6vw, 84px); line-height: 1.0;
  letter-spacing: -0.018em; margin: 0; color: var(--cream); text-wrap: balance;
}
.lg-hero h1 em { font-style: italic; color: color-mix(in oklab, var(--cream) 80%, var(--green) 20%); }

.lg-toggle {
  display: inline-flex; gap: 2px; padding: 3px;
  background: rgba(255,222,189,0.06); border: 1px solid var(--rule-cream); border-radius: 999px;
}
.lg-toggle button,
.lg-toggle a {
  appearance: none; background: transparent; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,222,189,0.6); padding: 7px 14px; border-radius: 999px;
  transition: background .2s, color .2s;
  text-decoration: none; display: inline-block; line-height: 1;
}
.lg-toggle button.is-active,
.lg-toggle a.is-active { background: var(--cream); color: var(--green-deep); }
.lg-toggle button:hover:not(.is-active),
.lg-toggle a:hover:not(.is-active) { color: var(--cream); }

/* Body grid */
.lg-body { padding: clamp(48px, 6vw, 96px) 0 clamp(80px, 10vw, 140px); }
.lg-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 6vw, 96px); align-items: start;
}
.lg-side {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 18px;
}
.lg-side .eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,222,189,0.55); display: inline-flex; align-items: center; gap: 12px;
}
.lg-side .eyebrow::before { content: ''; width: 20px; height: 1px; background: rgba(255,222,189,0.55); }
.lg-side .lead {
  font-family: var(--serif); font-size: 22px; line-height: 1.3; letter-spacing: -0.005em;
  color: var(--cream); margin: 0; max-width: 28ch;
}
.lg-side .helper { color: rgba(255,222,189,0.7); font-size: 14px; line-height: 1.6; margin: 0; max-width: 32ch; }

.lg-content { color: rgba(255,222,189,0.85); font-size: 16px; line-height: 1.65; max-width: 68ch; }
.lg-content section { padding: 32px 0; border-bottom: 1px solid var(--rule-cream); }
.lg-content section:first-child { padding-top: 0; }
.lg-content section:last-child { border-bottom: none; padding-bottom: 0; }
.lg-content .sec-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,222,189,0.5); margin-bottom: 8px;
}
.lg-content h2 {
  margin: 0 0 18px; font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; letter-spacing: -0.005em;
  color: var(--cream);
}
.lg-content h3 {
  margin: 20px 0 8px; font-family: var(--serif); font-weight: 400; font-size: 19px;
  color: var(--cream); letter-spacing: -0.005em;
}
.lg-content p { margin: 0 0 14px; }
.lg-content p:last-child { margin-bottom: 0; }
.lg-content ul {
  margin: 8px 0 14px; padding: 0; list-style: none;
}
.lg-content ul li {
  position: relative; padding-left: 22px; margin-bottom: 6px;
}
.lg-content ul li::before {
  content: ''; position: absolute; left: 4px; top: 0.7em;
  width: 8px; height: 1px; background: rgba(255,222,189,0.5);
}
.lg-content .addr {
  font-family: var(--mono); font-size: 13.5px; letter-spacing: 0.02em; line-height: 1.7;
  color: rgba(255,222,189,0.85);
  white-space: pre-line; padding: 16px 18px;
  border: 1px solid var(--rule-cream); border-radius: 10px;
  background: rgba(255,222,189,0.04);
  margin: 8px 0 14px;
}
.lg-content .placeholder {
  display: inline-block;
  background: rgba(255,222,189,0.08);
  border: 1px dashed rgba(255,222,189,0.3);
  border-radius: 4px;
  padding: 1px 6px; margin: 0 1px;
  font-family: var(--mono); font-size: 0.88em; color: rgba(255,222,189,0.7);
}
.lg-content a { color: var(--cream); border-bottom: 1px solid rgba(255,222,189,0.4); }
.lg-content a:hover { border-bottom-color: var(--cream); }

/* Language section visibility */
.lg-lang { display: block; }

@media (max-width: 960px) {
  .lg-grid { grid-template-columns: 1fr; gap: 36px; }
  .lg-side { position: static; }
}
