/* Zentrale Rückkehrberatung (ZRB) Nord- und Westbayern.
   Palette: ZRB-Teal / Gold-Bronze (Markenfarben der Originalseite). Struktur portiert aus dem Muster-Theme. */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f4f6f5;
  --ink:       #33352f;
  --muted:     #5f6157;
  --line:      #dfe1dc;
  --accent:    #2da09c;   /* ZRB-Teal */
  --accent-dk: #0b807a;
  --accent-lt: #e3f1ef;
  --accent-2:  #c8aa59;   /* ZRB-Gold */
  --accent-2-dk:#83692a;  /* WCAG AA: 5.23:1 auf Weiß (statt #a68837 = 3.39:1) */
  --cta:       #0b807a;   /* WCAG AA: 4.79:1 Weiß-auf-CTA (statt #2da09c = 3.17:1) */
  --cta-ink:   #ffffff;
  --warn:      #f6eccf;
  --wrap:      1180px;
  --pad:       clamp(24px, 4vw, 48px);
  --sec:       clamp(56px, 9vw, 104px);
  --font:      -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 1.0625rem/1.65 var(--font); -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-dk); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.wrap.narrow { max-width: 820px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dk); }

h1, h2, h3 { letter-spacing: -0.02em; text-wrap: balance; }
h1 { font: 700 clamp(2rem, 1.3rem + 2.8vw, 3.4rem)/1.12 var(--font); margin: 0 0 22px; }
h2 { font: 700 clamp(1.5rem, 1.2rem + 1.6vw, 2.2rem)/1.18 var(--font); margin: 0 0 18px; }
h3 { font: 600 clamp(1.125rem, 1.1rem + 0.3vw, 1.3rem)/1.3 var(--font); margin: 0 0 10px; }
p  { margin: 0 0 16px; max-width: 68ch; }
.lede { font-size: clamp(1.0625rem, 1.05rem + 0.3vw, 1.2rem); color: var(--muted); max-width: 64ch; }
.eyebrow { font: 600 0.9375rem/1 var(--font); letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-dk); margin: 0 0 16px; }

.skip { position: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--cta); color: var(--cta-ink); padding: 12px 20px; border-radius: 4px; font: 600 1rem/1 var(--font); text-decoration: none; }
.skip:focus { top: 16px; }

/* Buttons */
.btn { display: inline-block; background: var(--cta); color: var(--cta-ink); font: 600 1.0625rem/1 var(--font); padding: 1.05rem 1.9rem; border: 1px solid var(--cta); border-radius: 6px; text-decoration: none; cursor: pointer; }
.btn:hover { filter: brightness(0.93); }
.btn-ghost { background: none; color: var(--ink); border-color: var(--line); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-block: 12px; }
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
@media (max-width: 480px) { .brand img { height: 44px; } }

.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav > a, .site-nav .has-sub > a { font: 500 1rem/1 var(--font); color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; padding: 6px 0; }
.site-nav a:hover { color: var(--accent-dk); }
.site-nav a[aria-current="page"] { color: var(--accent-dk); text-decoration: underline; text-underline-offset: 6px; }
.has-sub { position: relative; }
.caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; }
.subnav { position: absolute; left: -14px; top: calc(100% + 8px); background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 8px; min-width: 244px; box-shadow: 0 20px 50px rgba(20,40,38,0.16); display: none; flex-direction: column; z-index: 120; }
.subnav a { padding: 10px 12px; border-radius: 6px; color: var(--ink); text-decoration: none; font: 500 0.96rem/1.3 var(--font); }
.subnav a:hover { background: var(--accent-lt); color: var(--accent-dk); }
.has-sub:hover .subnav, .has-sub:focus-within .subnav, .has-sub[data-open] .subnav { display: flex; }
.header-cta { padding: 12px 20px; font-size: 0.9375rem; white-space: nowrap; }

.nav-toggle { display: none; position: relative; }
.nav-toggle > summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 6px; }
.nav-toggle > summary::-webkit-details-marker { display: none; }
.hamburger { display: block; width: 20px; }
.hamburger span { display: block; height: 1.5px; background: var(--ink); margin: 4px 0; }
.mobile-nav-panel { position: absolute; right: 0; top: calc(100% + 10px); background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 12px; min-width: 260px; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(20,40,38,0.18); z-index: 100; }
.mobile-nav-panel a { padding: 12px 8px; color: var(--ink); text-decoration: none; font: 500 1.0625rem/1 var(--font); border-bottom: 1px solid var(--line); }
.mobile-nav-panel a.sub { padding-left: 24px; font-weight: 400; font-size: 1rem; color: var(--muted); }
.mobile-nav-panel a:last-child { border: none; margin-top: 10px; text-align: center; }
@media (max-width: 940px) { .site-nav, .header-cta { display: none; } .nav-toggle { display: block; } }

/* Sections */
section { padding-block: var(--sec); }
section.soft { background: var(--bg-soft); }
section.dark { background: var(--ink); color: var(--bg); }
section.dark h2, section.dark h3 { color: var(--bg); }
section.dark p { color: var(--line); }
section + section { border-top: 1px solid var(--line); }
section.soft + section, section + section.soft, section.dark + section, section + section.dark { border-top: none; }

/* Hero — Headerbild im Vordergrund (wie zrb-nordbayern.de) */
.hero-image { padding: 0; }
.hero-image .wrap { padding-top: 0; }
.hero-shot { margin: 0; }
.hero-shot img { width: 100%; height: clamp(240px, 34vw, 440px); object-fit: cover; object-position: center 38%; display: block; }
.hero-shot figcaption { text-align: right; font-size: 0.75rem; color: var(--muted); margin-top: 6px; }

.cta-bar { display: block; background: #b02b2c; color: #fff; text-decoration: none;
  text-align: center; font: 600 1.0625rem/1 var(--font); letter-spacing: 0.02em;
  padding: 20px 24px; }
.cta-bar:hover { background: #97292a; }

.hero-intro { padding-block: clamp(44px, 7vw, 84px); }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 26px; } .hero-logo { display: none; } }
.hero-copy .lede { max-width: 54ch; }
.hero-logo { justify-self: center; }
.hero-logo img { max-width: 260px; width: 100%; height: auto; }

.hero-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 24px 26px; }
.hero-card h2 { font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; }
.hero-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 0.9375rem; }
.hero-card dt { color: var(--muted); }
.hero-card dd { margin: 0; color: var(--ink); font-weight: 600; }

/* Info-Karten */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card { border: 1px solid var(--line); border-radius: 10px; padding: 26px; background: var(--bg); }
.card p:last-child { margin-bottom: 0; }
.card-tag { font: 600 0.8125rem/1 var(--font); letter-spacing: 0.03em; text-transform: uppercase; color: var(--accent-2-dk); margin: 0 0 12px; }
.card.linkcard a { font-weight: 600; text-decoration: none; }
.card.linkcard a::after { content: " \2192"; }

/* Listen */
.checks { list-style: none; margin: 0 0 8px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 4px 36px; }
.checks li { padding: 9px 0 9px 28px; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: 15px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); }
.checks strong { color: var(--ink); }

/* Tabellen */
.table-scroll { overflow-x: auto; margin-bottom: 20px; }
table { width: 100%; border-collapse: collapse; font-size: 1rem; }
caption { text-align: left; font-size: 0.875rem; color: var(--muted); padding-bottom: 10px; }
th, td { text-align: left; padding: 12px 16px 12px 0; border-bottom: 1px solid var(--line); }
th { font-weight: 600; }

/* Team */
.team-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 8px; }
.person { border: 1px solid var(--line); border-radius: 10px; padding: 22px; background: var(--bg); }
.person .avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-lt); color: var(--accent-dk); display: grid; place-items: center; font: 700 1.15rem/1 var(--font); margin-bottom: 14px; }
.person h3 { margin-bottom: 4px; font-size: 1.15rem; }
.person .role { color: var(--muted); font-size: 0.9375rem; margin: 0; }

/* Steps */
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; }
.steps li { counter-increment: s; border-top: 1px solid var(--line); padding: 18px 0 18px 46px; position: relative; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: 19px; font: 600 0.9375rem/1.4 var(--font); color: var(--accent-2-dk); }
.steps strong { display: block; margin-bottom: 3px; }
.steps p { margin: 0; color: var(--muted); font-size: 1rem; }

/* Hinweiskästen */
.note-inline, .note { background: var(--bg-soft); border-left: 3px solid var(--accent); border-radius: 4px; padding: 16px 18px; font-size: 0.9375rem; line-height: 1.6; margin: 0 0 20px; max-width: 68ch; }
.note-inline strong { color: var(--ink); }

.fineprint { font-size: 0.8125rem; color: var(--muted); max-width: 62ch; }
.contact-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin: 8px 0 0; }
.contact-cols h3 { font-size: 1.05rem; }

/* Download-Liste */
.dl-group { margin: 0 0 34px; }
.dl-group h3 { margin-bottom: 12px; }
.dl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; max-width: 70ch; }
.dl-list a { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 500; }
.dl-list a:hover { border-color: var(--accent); background: var(--accent-lt); }
.dl-list a::before { content: "PDF"; font: 700 0.68rem/1 var(--font); letter-spacing: 0.04em; color: #fff; background: var(--accent-2-dk); padding: 5px 6px; border-radius: 4px; flex-shrink: 0; }

/* Form-Plugin an das Design angleichen */
.form-wrapper { max-width: 640px; }
.form-field { margin-bottom: 18px; }
.form-field .form-label, .form-field .form-label label { display: block; font: 500 0.9375rem/1.3 var(--font); margin-bottom: 6px; }
.form-data input[type=text], .form-data input[type=email], .form-data input[type=tel], .form-data input[type=number],
.form-data input:not([type]), .form-data textarea, .form-data select {
  width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px;
  font: 400 1rem/1.4 var(--font); background: var(--bg); color: var(--ink); }
.form-data textarea { min-height: 130px; resize: vertical; }
.form-field:has(.form-consent-note) > .form-label { display: none; }
.form-consent-note { font-size: 0.875rem; line-height: 1.5; color: var(--muted); max-width: 62ch; margin: 4px 0 8px; }
.form-consent-note a { color: var(--accent-dk); }
form .buttons { margin-top: 8px; }
form button.button, form .button { display: inline-block; background: var(--cta); color: var(--cta-ink); font: 600 1.0625rem/1 var(--font); padding: 16px 30px; border: 1px solid var(--cta); border-radius: 6px; cursor: pointer; }
form button.button:hover { filter: brightness(0.93); }
.form-errors, .form-messages { max-width: 62ch; font-size: 0.9375rem; }
.form-wrapper .notices { max-width: none; margin: 0 0 18px; padding: 18px 20px; border-radius: 8px; border: 1px solid var(--line); font-size: 1rem; line-height: 1.55; }
.form-wrapper .notices p { margin: 0; }
.form-wrapper .notices.success, .form-wrapper .notices.green { background: #e3f1ef; border-color: #0b807a; color: #0a5c58; }
.form-wrapper .notices.success p::before { content: "\2713 "; font-weight: 700; }
.form-wrapper .notices.error, .form-wrapper .notices.red { background: #FDECEC; border-color: #a11; color: #8a1111; }
.form-wrapper:has(.notices.success) form, .form-wrapper:has(.notices.green) form { display: none; }
section:has(.form-wrapper .notices.success) .note-inline, section:has(.form-wrapper .notices.green) .note-inline { display: none; }

/* Bilder / Figuren */
figure { margin: 0 0 24px; }
figure img { border-radius: 10px; width: 100%; }
figure.float-r { max-width: 380px; }
figcaption { font-size: 0.8125rem; color: var(--muted); margin-top: 8px; }
.media-band { padding: 0; }
.media-band img { width: 100%; height: clamp(220px, 34vw, 440px); object-fit: cover; object-position: center 42%; border-radius: 0; display: block; }
.hero-figure img { border-radius: 12px; }

/* Video (self-hosted, kein externer Dienst, kein Cookie) */
.video-embed { position: relative; margin: 0 0 24px; border-radius: 12px; overflow: hidden; background: #000; }
.video-embed video { display: block; width: 100%; height: auto; }
.video-embed .video-caption { font-size: 0.8125rem; color: var(--muted); }
figure.video-figure { margin-bottom: 28px; }

/* Steps mit Icons */
.steps.with-icons li { padding-left: 68px; min-height: 44px; }
.steps.with-icons li .step-ico { position: absolute; left: 0; top: 16px; width: 40px; height: 40px; }
.steps.with-icons li::before { left: 52px; top: 19px; }

/* Material-/Download-Kacheln mit Cover */
.material-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 22px; margin: 8px 0 0; }
.material-grid a { text-decoration: none; color: var(--ink); font: 600 0.9rem/1.35 var(--font); display: block; }
.material-grid img { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 8px; box-shadow: 0 8px 24px rgba(20,40,38,0.10); }
.material-grid a:hover img { border-color: var(--accent); }
.material-grid .lang-flag img { box-shadow: none; }

/* Flag-Kacheln (Elternflyer nach Sprache) */
.flag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 18px; margin: 8px 0 0; }
.flag-grid a { text-decoration: none; color: var(--ink); font: 600 0.9rem/1.3 var(--font); text-align: center; display: block; }
.flag-grid img { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 6px; }

/* Rechtsseiten */
.legal-hero { background: var(--ink); color: var(--bg); padding: 46px 0; }
.legal-hero h1 { color: var(--bg); font-size: clamp(1.75rem, 1.6rem + 1vw, 2.4rem); margin: 0 0 8px; }
.legal-hero p { color: var(--line); margin: 0; max-width: none; }
.legal-content h2 { margin-top: 38px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul, .legal-content ol { padding-left: 22px; max-width: 72ch; }
.legal-content li { margin-bottom: 6px; color: var(--muted); }

/* Partner-Logo-Band über dem Footer */
.partner-band { background: var(--bg-soft); padding: 40px 0; border-top: 1px solid var(--line); }
.partner-label { text-align: center; font: 600 0.8125rem/1 var(--font); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; max-width: none; }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px 44px; }
.partner-logos img { height: 56px; width: auto; }
.partner-logos img[alt*="Europäischen"] { height: 74px; }
.partner-note { text-align: center; font-size: 0.8125rem; color: var(--muted); margin: 22px auto 0; max-width: 60ch; }

/* Footer */
.site-footer { background: var(--ink); color: var(--bg); padding: 60px 0 26px; }
.site-footer a { color: var(--bg); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-bottom: 34px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { font: 600 0.8125rem/1 var(--font); text-transform: uppercase; letter-spacing: 0.03em; color: var(--accent-2); margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer p { color: var(--line); font-size: 0.9375rem; }
.updated { border-top: 1px solid var(--muted); padding-top: 22px; font-size: 0.8125rem; color: var(--muted); max-width: none; }

/* A11y-Toolbar */
html[data-fontsize="1"] { font-size: 112.5%; }
html[data-fontsize="2"] { font-size: 125%; }
html[data-fontsize="3"] { font-size: 140%; }
html[data-contrast="1"] { --muted: #2c2e27; --line: #6a6c62; }
html[data-contrast="1"] body { background: #fff; color: #111; }
html[data-contrast="1"] a { text-decoration: underline; }
html[data-contrast="1"] .hero .lede, html[data-contrast="1"] section.dark p,
html[data-contrast="1"] .legal-hero p, html[data-contrast="1"] .site-footer p { color: #fff; }
html[data-motion="0"] *, html[data-motion="0"] *::before, html[data-motion="0"] *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

.a11y-toggle { position: fixed; left: 16px; bottom: 16px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; border: 2px solid #fff; background: var(--accent-dk); color: #fff; cursor: pointer; box-shadow: 0 6px 20px rgba(20,40,38,0.35); display: flex; align-items: center; justify-content: center; }
.a11y-toggle svg { width: 26px; height: 26px; display: block; pointer-events: none; }
.a11y-toggle:hover { filter: brightness(1.12); }
.a11y-panel { position: fixed; left: 16px; bottom: 76px; z-index: 900; background: var(--bg); color: var(--ink); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 16px 48px rgba(20,40,38,0.28); padding: 16px; width: min(280px, calc(100vw - 32px)); display: none; }
.a11y-panel[data-open] { display: block; }
.a11y-panel h2 { font: 600 0.9375rem/1 var(--font); margin: 0 0 12px; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.a11y-row:last-child { margin-bottom: 0; }
.a11y-row > span { font-size: 0.9375rem; }
.a11y-btns { display: flex; gap: 6px; }
.a11y-btns button, .a11y-panel .a11y-act { border: 1px solid var(--line); background: var(--bg-soft); border-radius: 6px; padding: 8px 12px; font: 400 0.9375rem/1 var(--font); cursor: pointer; color: var(--ink); min-width: 40px; }
.a11y-btns button[aria-pressed="true"] { background: var(--accent-dk); color: #fff; border-color: var(--accent-dk); }
.a11y-panel .a11y-act { width: 100%; margin-top: 4px; font-weight: 600; }

@media (max-width: 700px) {
  h1, h2, h3 { max-width: none; }
}

/* Barrierefreiheits-Leiste: Link zu Leichter Sprache */
.a11y-ls { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 12px; }
.a11y-ls-link { border: 1px solid var(--accent-dk); background: var(--accent-lt); color: var(--accent-dk); border-radius: 6px; padding: 8px 12px; font: 600 0.9375rem/1 var(--font); text-decoration: none; }
.a11y-ls-link:hover { background: var(--accent-dk); color: #fff; }

/* ===== Leichte Sprache ===== */
html.ls[data-fontsize="1"] { font-size: 118.75%; }
html.ls[data-fontsize="2"] { font-size: 131.25%; }
html.ls[data-fontsize="3"] { font-size: 150%; }

.ls-wrap { max-width: 42rem; margin: 0 auto; padding-inline: var(--pad); }
.ls-header .wrap { flex-wrap: wrap; gap: 14px; align-items: center; }
.ls-header .brand img { width: 220px; height: auto; }
.ls-header-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.ls-header-nav a { color: var(--ink); text-decoration: underline; font-weight: 600; font-size: 1rem; padding: 8px 10px; border-radius: 6px; }
.ls-header-nav a:hover { background: var(--bg-soft); }

.ls-hero { background: var(--ink); color: #fff; padding: 34px 0 38px; }
.ls-hero h1 { color: #fff; font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.2rem); line-height: 1.25; margin: 0; max-width: none; }
.ls-back { margin: 0 0 14px; }
.ls-back a { color: #fff; text-decoration: underline; font-weight: 600; font-size: 1rem; }

.ls-hero + section { padding-block: 40px; }
.ls-content { font-size: 1.1875rem; line-height: 1.85; }
.ls-content p { max-width: 38rem; margin: 0 0 1.1em; }
.ls-content h2 { font-size: 1.4rem; line-height: 1.3; color: var(--ink); margin: 1.9em 0 .5em; letter-spacing: normal; max-width: none; }
.ls-content h2:first-child { margin-top: 0; }
.ls-content ul { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: .7em; }
.ls-content ul li { padding-left: 1.6em; position: relative; max-width: 38rem; font-size: inherit; }
.ls-content ul li::before { content: "\203a"; position: absolute; left: 0; top: 0; color: var(--accent-dk); font-weight: 700; }
.ls-content a { color: var(--accent-dk); font-weight: 600; }
.ls-content strong { color: var(--ink); }

.ls-words { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; margin: 0 0 1.2em; }
.ls-words h2 { margin-top: 0 !important; }
.ls-words dl { margin: 0; }
.ls-words dt { font-weight: 700; color: var(--ink); margin-top: .8em; }
.ls-words dt:first-child { margin-top: 0; }
.ls-words dd { margin: .2em 0 0; }

.ls-contact { background: var(--bg); border: 2px solid var(--accent); border-radius: 8px; padding: 18px 20px; margin: 0 0 1.2em; }
.ls-contact h2 { margin-top: 0 !important; }

.ls-switch { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 32px 0; }
.ls-switch p { margin: 0 0 12px; font-size: 1.05rem; }
.ls-btn { display: inline-block; background: var(--cta); color: var(--cta-ink); font-weight: 700; padding: 14px 22px; border-radius: 6px; text-decoration: none; font-size: 1rem; border: 1px solid var(--cta); }
.ls-btn:hover { filter: brightness(0.94); }

@media (max-width: 700px) {
  .ls-content { font-size: 1.0625rem; line-height: 1.8; }
}
