/* IGS Bovenden – PoC Stylesheet */

:root {
  --ink: #2b2f33;
  --ink-soft: #5a6168;
  --paper: #ffffff;
  --paper-soft: #f5f4ef;
  --line: #e2e0d8;
  --brand: #3c4043;
  --accent: #2e7d3c;
  --accent-dark: #1f5c2b;
  --accent-soft: #e6f1e6;

  --jg-lila: #7d2a7e;
  --jg-blau: #0b4f8c;
  --jg-gelb: #f2bf1d;
  --jg-orange: #f08c00;
  --jg-rot: #c8102e;
  --jg-gruen: #2e8b3a;
  --jg-tuerkis: #1d8e93;

  --radius: 14px;
  --shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.06);
  --wrap: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; color: var(--brand); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--jg-gelb); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: .6em 1em; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Regenbogenleiste aus dem Logo */
.stripe { display: flex; height: 6px; }
.stripe span { flex: 1; }
.stripe span:nth-child(1) { background: var(--jg-lila); }
.stripe span:nth-child(2) { background: var(--jg-blau); }
.stripe span:nth-child(3) { background: var(--jg-gelb); }
.stripe span:nth-child(4) { background: var(--jg-orange); }
.stripe span:nth-child(5) { background: var(--jg-rot); }
.stripe span:nth-child(6) { background: var(--jg-gruen); }
.stripe span:nth-child(7) { background: var(--jg-tuerkis); }

/* Servicezeile */
.servicebar { background: var(--brand); color: #fff; font-size: .9rem; }
.servicebar .wrap { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; justify-content: flex-end; padding-top: .45rem; padding-bottom: .45rem; }
.servicebar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4em; }
.servicebar a:hover { text-decoration: underline; }
.servicebar strong { font-weight: 700; }

/* Kopfbereich */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--brand); }
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.2rem; }
.brand-text span { font-size: .8rem; color: var(--ink-soft); }

.header-tools { display: flex; align-items: center; gap: .5rem; order: 3; }
.search-link { display: inline-flex; align-items: center; gap: .4em; padding: .5rem .7rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; }
.search-link:hover { background: var(--paper-soft); color: var(--ink); }
.search-link .icon { width: 1.25rem; height: 1.25rem; }

.nav { margin-left: auto; }
.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; align-items: center; }
.nav a.top { display: inline-flex; align-items: center; gap: .35em; padding: .55rem .7rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem; }
.nav a.top:hover { background: var(--paper-soft); color: var(--ink); }
.nav a.top.is-active { background: var(--accent-soft); color: var(--accent-dark); }
.has-sub { position: relative; display: flex; align-items: center; }
.sub-toggle { background: none; border: 0; padding: .45rem .25rem; margin-left: -.35rem; cursor: pointer; color: var(--ink-soft); border-radius: 6px; }
.sub-toggle:hover { color: var(--ink); background: var(--paper-soft); }
.sub-toggle .icon { width: 1rem; height: 1rem; transition: transform .15s; }
.sub-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.sub { list-style: none; margin: 0; padding: .4rem; position: absolute; top: 100%; left: 0; min-width: 250px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); display: none; z-index: 60; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub, .has-sub.open > .sub { display: block; }
.sub a { display: block; padding: .5rem .75rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 500; }
.sub a:hover { background: var(--paper-soft); color: var(--ink); }
.sub a[aria-current="page"] { color: var(--accent-dark); font-weight: 700; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: .5rem .7rem; font: inherit; font-weight: 600; color: var(--ink); cursor: pointer; }

@media (min-width: 1041px) {
  .header-tools { order: 3; }
  .nav { order: 2; }
}
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: .4em; }
  .search-link span { display: none; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; max-height: calc(100vh - 110px); overflow-y: auto; margin: 0; }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; padding: .5rem 16px 1rem; }
  .nav a.top { padding: .8rem .75rem; font-size: 1.05rem; flex: 1; }
  .has-sub { flex-wrap: wrap; }
  .sub-toggle { padding: .7rem; margin: 0; }
  .sub { position: static; display: none; box-shadow: none; border: 0; border-left: 3px solid var(--accent-soft); border-radius: 0; margin: 0 0 .5rem 1rem; width: 100%; min-width: 0; padding: 0 0 0 .5rem; }
  .has-sub:hover > .sub, .has-sub:focus-within > .sub { display: none; }
  .has-sub.open > .sub { display: block; }
}

@media (max-width: 420px) { .brand-text span { display: none; } .brand img { width: 44px; height: 44px; } }

/* Icons */
.icon { width: 1.2em; height: 1.2em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; }

/* Hero Startseite */
.hero { position: relative; color: #fff; background: #1f2a22 url("../img/hero-schule.jpg") center 35% / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,30,24,.82) 0%, rgba(20,30,24,.55) 55%, rgba(20,30,24,.15) 100%); }
.hero .wrap { position: relative; padding-top: clamp(3rem, 9vw, 6.5rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero h1 { color: #fff; margin-bottom: .2em; }
.hero .lead { font-size: clamp(1.1rem, 2.2vw, 1.4rem); max-width: 34em; margin-bottom: 2rem; opacity: .95; }
.hero-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; max-width: 880px; }
@media (max-width: 800px) { .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.hero-btn { display: flex; flex-direction: column; gap: .35rem; padding: 1.1rem 1.1rem 1rem; border-radius: var(--radius); background: rgba(255,255,255,.96); color: var(--brand); text-decoration: none; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; border-top: 5px solid var(--c, var(--accent)); }
.hero-btn:hover { transform: translateY(-2px); color: var(--brand); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.hero-btn .icon { width: 1.8rem; height: 1.8rem; color: var(--c, var(--accent)); }
.hero-btn strong { font-size: 1.12rem; }
.hero-btn span { font-size: .88rem; color: var(--ink-soft); line-height: 1.35; }

/* Seitenkopf Unterseiten */
.page-head { background: var(--paper-soft); padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.page-head p { font-size: 1.15rem; color: var(--ink-soft); max-width: 40em; margin: 0; }
.page-head .kicker { display: inline-block; font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: .5rem; }

/* Abschnitte */
.section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section.soft { background: var(--paper-soft); }
.section-head { max-width: 42em; margin-bottom: 1.75rem; }
.section-head p { color: var(--ink-soft); }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; }
.card h3 { display: flex; align-items: center; gap: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card .icon-lg { width: 2.2rem; height: 2.2rem; color: var(--accent); margin-bottom: .6rem; }
a.card { text-decoration: none; color: inherit; display: block; transition: border-color .15s, box-shadow .15s; }
a.card:hover { border-color: var(--accent); box-shadow: var(--shadow); color: inherit; }
.card .more { font-weight: 600; color: var(--accent-dark); }

/* Service-Kacheln Startseite */
.quick { margin-top: -2.2rem; position: relative; z-index: 2; }
.quick .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 760px) { .quick { margin-top: 1.5rem; } .quick .grid { grid-template-columns: 1fr; } }
.quick a { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); }
.quick a:hover { border-color: var(--accent); color: var(--ink); }
.quick .icon { width: 2rem; height: 2rem; color: var(--accent); }
.quick strong { display: block; }
.quick span { font-size: .9rem; color: var(--ink-soft); }

/* Profil-Band */
.pillars .card { border: 0; background: transparent; padding: 0; }
.pillar-img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; margin-bottom: 1rem; }

/* Feature mit Bild */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.feature img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature.reverse > :first-child { order: 2; }
@media (max-width: 800px) { .feature { grid-template-columns: 1fr; } .feature.reverse > :first-child { order: 0; } }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; margin: 1rem 0 0; }
.tags li { background: var(--accent-soft); color: var(--accent-dark); border-radius: 999px; padding: .25rem .8rem; font-size: .9rem; font-weight: 600; }

/* Aufklappbare Elemente */
details { border: 1px solid var(--line); border-radius: 12px; background: var(--paper); margin-bottom: .6rem; }
details > summary { cursor: pointer; padding: .9rem 1.1rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
details > summary::-webkit-details-marker { display: none; }
details > summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--accent); }
details[open] > summary::after { content: "–"; }
details > div { padding: 0 1.1rem 1rem; }
details > div p:last-child { margin-bottom: 0; }

/* Jahrgänge */
.jg-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .8rem; }
@media (max-width: 900px) { .jg-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 480px) { .jg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.jg { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; background: var(--paper); position: relative; overflow: hidden; }
.jg::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--c); }
.jg .num { font-size: 2.4rem; font-weight: 800; color: var(--brand); line-height: 1; }
.jg .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.jg .farbe { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
.jg .farbe::before { content: ""; width: .7rem; height: .7rem; border-radius: 50%; background: var(--c); }
.jg .lead-name { font-size: .88rem; margin-top: .35rem; line-height: 1.3; }

/* Personen */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.person { display: flex; gap: .9rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.avatar { width: 64px; height: 64px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; background: var(--c, var(--brand)); font-size: 1.1rem; }
.person div > strong { display: block; line-height: 1.25; }
.person div > span { display: block; font-size: .9rem; color: var(--ink-soft); }
.person a { font-size: .9rem; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: .7rem; align-items: flex-start; padding: .45rem 0; }
.contact-list .icon { color: var(--accent); margin-top: .2em; }

.big-number { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: var(--brand); text-decoration: none; display: inline-block; }
.alert-card { border-left: 6px solid var(--jg-rot); }

table.hours { border-collapse: collapse; width: 100%; }
table.hours th, table.hours td { text-align: left; padding: .35rem .5rem .35rem 0; border-bottom: 1px solid var(--line); }
table.hours th { font-weight: 600; width: 40%; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; padding: .75rem 1.2rem; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 700; text-decoration: none; border: 0; font: inherit; font-weight: 700; cursor: pointer; }
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn.ghost { background: transparent; color: var(--accent-dark); border: 2px solid var(--accent); }
.btn.ghost:hover { background: var(--accent-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

/* Video (Zwei-Klick-Lösung) */
.video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #111; }
.video img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.video button { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: .8rem; width: 100%; border: 0; background: transparent; color: #fff; cursor: pointer; font: inherit; text-align: center; padding: 1rem; }
.video .play { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; box-shadow: 0 6px 30px rgba(0,0,0,.35); }
.video .play .icon { width: 36px; height: 36px; color: var(--accent); fill: var(--accent); margin-left: 5px; }
.video .consent { font-size: .85rem; max-width: 30em; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Downloads */
.dl-tools { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.dl-search { position: relative; max-width: 520px; }
.dl-search input { width: 100%; padding: .85rem 1rem .85rem 2.8rem; border: 2px solid var(--line); border-radius: 12px; font: inherit; }
.dl-search input:focus { border-color: var(--accent); outline: none; }
.dl-search .icon { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.chips .chips-label { font-weight: 600; font-size: .9rem; margin-right: .25rem; min-width: 5.5em; }
.chip { border: 2px solid var(--line); background: var(--paper); border-radius: 999px; padding: .35rem .9rem; font: inherit; font-size: .92rem; font-weight: 600; cursor: pointer; color: var(--ink); }
.chip:hover { border-color: var(--accent); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.dl-count { font-size: .95rem; color: var(--ink-soft); }
.dl-group { margin-bottom: 2rem; }
.dl-group h2 { font-size: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.dl-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dl-list li + li { border-top: 1px solid var(--line); }
.dl-list a { display: flex; align-items: center; gap: 1rem; padding: .85rem 1.1rem; text-decoration: none; color: var(--ink); }
.dl-list a:hover { background: var(--paper-soft); color: var(--ink); }
.dl-list .file { width: 42px; height: 42px; flex: none; border-radius: 8px; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; font-size: .7rem; font-weight: 800; }
.dl-list .title { font-weight: 600; display: block; }
.dl-list .meta { font-size: .85rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .3rem .8rem; }
.dl-list .meta .stand-alt { color: var(--jg-rot); }
.dl-list .dl-icon { margin-left: auto; color: var(--ink-soft); }
.dl-empty { padding: 2rem; text-align: center; background: var(--paper-soft); border-radius: var(--radius); }

/* Beiträge (nicht mehr genutzt) */
.news-list { display: grid; gap: 1rem; }
.news { display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem; padding: 1.1rem 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); }
.news time { font-weight: 700; color: var(--accent-dark); font-size: .95rem; }
.news h3 { margin-bottom: .3rem; }
.news p { margin: 0; color: var(--ink-soft); }
@media (max-width: 560px) { .news { grid-template-columns: 1fr; gap: .3rem; } }

.news-layout { grid-template-columns: 2fr 1fr; align-items: start; }
@media (max-width: 860px) { .news-layout { grid-template-columns: 1fr; } }

/* Partnerliste */
.partner-list { columns: 2 260px; column-gap: 2rem; padding-left: 1.1em; }
.partner-list li { break-inside: avoid; margin-bottom: .4rem; }

/* Fußbereich – klein, auch am Handy */
.site-footer { background: var(--brand); color: #d9dbdd; font-size: .85rem; line-height: 1.5; }
.site-footer a { color: #fff; }
.footer-main { padding-top: 1.1rem; padding-bottom: 1.1rem; }
.footer-main p { margin: 0 0 .4rem; }
.footer-main p:last-child { margin-bottom: 0; }
.footer-links a { display: inline-flex; align-items: center; gap: .3em; }
.footer-links .icon { width: 1em; height: 1em; }
.seals { margin-top: .9rem; }
.footer-main .seals-label { font-weight: 600; margin-bottom: .5rem; }
.seals ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.seals a { display: flex; align-items: center; justify-content: center; height: 52px; padding: 6px 10px; background: #fff; border-radius: 8px; text-decoration: none; transition: transform .15s; }
.seals a:hover, .seals a:focus-visible { transform: translateY(-2px); }
.seals img { display: block; height: 40px; width: auto; }
.seals .seal-text { color: var(--brand); font-weight: 700; font-size: .78rem; line-height: 1.2; max-width: 9em; text-align: center; }
.site-footer .note { color: #5c4400; }
@media (max-width: 600px) {
  .seals a { height: 42px; padding: 5px 8px; }
  .seals img { height: 32px; }
}

/* Suche */
.search-box { position: relative; max-width: 640px; }
.search-box input { width: 100%; padding: 1rem 1rem 1rem 3rem; border: 2px solid var(--line); border-radius: 12px; font: inherit; font-size: 1.1rem; }
.search-box input:focus { border-color: var(--accent); outline: none; }
.search-box .icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--ink-soft); width: 1.3rem; height: 1.3rem; }
.search-results { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; max-width: 760px; }
.search-results a { display: block; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); }
.search-results a:hover { border-color: var(--accent); color: var(--ink); }
.search-results .r-page { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-dark); font-weight: 700; }
.search-results .r-title { display: block; font-weight: 700; font-size: 1.05rem; margin: .1rem 0 .2rem; }
.search-results .r-text { display: block; font-size: .92rem; color: var(--ink-soft); }
.search-results mark { background: #fff1b8; color: inherit; padding: 0 .1em; }
.search-hints { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

/* Ablauf in Schritten */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: .9rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 2.4rem 1fr; gap: .9rem; align-items: start; }
.steps li::before { content: counter(step); width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; display: grid; place-items: center; }
.steps strong { display: block; }

/* Service-Kacheln */
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .service-grid { grid-template-columns: 1fr; } }
.service-grid a { display: flex; flex-direction: column; gap: .4rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; color: var(--ink); }
.service-grid a:hover { border-color: var(--accent); box-shadow: var(--shadow); color: var(--ink); }
.service-grid .icon { width: 2rem; height: 2rem; color: var(--accent); }
.service-grid strong { font-size: 1.05rem; }
.service-grid span { font-size: .9rem; color: var(--ink-soft); }

.insta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; border-radius: var(--radius); background: var(--accent-soft); }
.insta-band p { margin: 0; }

/* PoC-Notizen: offene Punkte sichtbar machen */
.note { border: 2px dashed #d99a00; background: #fff8e1; color: #5c4400; border-radius: 10px; padding: .6rem .9rem; font-size: .9rem; margin: 1rem 0; }
.note::before { content: "Offen · "; font-weight: 800; }
.hero .note { background: rgba(255,248,225,.95); max-width: 880px; }
body.hide-notes .note { display: none; }
.note-toggle { position: fixed; right: 16px; bottom: 16px; z-index: 90; background: #5c4400; color: #fff; border: 0; border-radius: 999px; padding: .6rem 1rem; font: inherit; font-size: .9rem; font-weight: 700; cursor: pointer; box-shadow: var(--shadow); }
.note-toggle:hover { background: #3f2f00; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-btn, a.card { transition: none; }
}
