/* Gemeinsames Seitensystem für die Fusion-Unterseiten */
:root {
  --sp-ink: #1c2121;
  --sp-black: #161616;
  --sp-paper: #ffffff;
  --sp-soft: #f2f2f2;
  --sp-rule: #dedede;
  --sp-muted: #646969;
  --sp-radius: 16px;
  --sp-max: 1200px;
}

body.subpage { margin: 0; background: var(--sp-paper); color: var(--sp-ink); font-size: 14px; line-height: 1.5; }
.subpage *, .subpage *::before, .subpage *::after { box-sizing: border-box; }
.sp-shell { width: min(calc(100% - 40px), var(--sp-max)); margin-inline: auto; }
.sp-skip { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .8rem 1rem; background: #fff; color: #111; border-radius: 999px; }
.sp-skip:focus { top: 1rem; }
.sp-header { position: fixed; inset: 0 0 auto; z-index: 80; color: #fff; transition: background .2s ease, backdrop-filter .2s ease; }
.sp-header.is-scrolled, .sp-header.menu-open { background: rgba(22,22,22,.88); backdrop-filter: blur(12px); }
.sp-header-row { min-height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.sp-logo { justify-self: center; display: block; }
.sp-logo img { width: 150px; height: auto; }
.sp-menu-button { justify-self: start; display: inline-flex; align-items: center; gap: .7rem; min-height: 44px; color: #fff; cursor: pointer; font-weight: 600; }
.sp-menu-icon { width: 22px; display: grid; gap: 5px; }
.sp-menu-icon::before, .sp-menu-icon::after { content: ""; display: block; height: 2px; border-radius: 2px; background: currentColor; }
.sp-menu-icon::after { width: 14px; }
.sp-header-cta { justify-self: end; display: inline-flex; align-items: center; min-height: 44px; padding: 0 1.15rem; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font-size: .88rem; font-weight: 650; }
.sp-nav { position: fixed; inset: 72px 0 auto; max-height: calc(100vh - 72px); overflow: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .18s ease; }
.sp-header.menu-open .sp-nav { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.sp-nav-panel { width: min(calc(100% - 40px), 720px); margin: 12px auto 24px; padding: 2rem; background: #0c0c0c; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.sp-nav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem 2rem; }
.sp-nav a { display: flex; align-items: center; min-height: 44px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.sp-nav a:hover, .sp-nav a[aria-current="page"] { color: #fff; }
.sp-nav a[aria-current="page"]::before { content: ""; width: 7px; height: 7px; margin-right: .6rem; border-radius: 50%; background: #fff; }
.sp-nav-meta { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; color: rgba(255,255,255,.58); font-size: .88rem; }

.sp-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; border-radius: 0; background: var(--sp-black); color: #fff; }
.sp-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.2) 42%, rgba(0,0,0,.8)); }
.sp-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sp-hero-content { position: relative; z-index: 1; padding: 10rem 0 5rem; }
.sp-hero-minimal { min-height: 58vh; }
.sp-kicker { margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 650; }
.sp-hero h1 { max-width: 24ch; margin: 0; font-size: 2.8rem; line-height: 1.05; letter-spacing: -.01em; font-weight: 700; }
.sp-hero-lead { max-width: 60ch; margin: 1.75rem 0 0; color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.625; }
.sp-hero-actions, .sp-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.sp-button { display: inline-flex; justify-content: center; align-items: center; min-width: 220px; height: 48px; padding: .875rem 1.75rem; border: 1px solid var(--sp-ink); border-radius: 100px; background: var(--sp-ink); color: #fff; font-size: 14px; line-height: 20px; font-weight: 600; transition: transform .18s ease, background .18s ease; }
.sp-button:hover { transform: translateY(-2px); background: #050505; }
.sp-button.light { background: #fff; color: var(--sp-ink); border-color: #fff; }
.sp-button.outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.62); }
.sp-button.outline { background: transparent; color: var(--sp-ink); }

.sp-section { padding: clamp(3.5rem, 8vw, 8rem) 0; }
.sp-section.dark { background: var(--sp-black); color: #fff; }
.sp-section.soft { background: var(--sp-soft); }
.sp-section.compact { padding-block: 3.5rem; }
.sp-section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.sp-section-head h2, .sp-section-title { margin: 0; font-size: 1.875rem; line-height: 1.2; letter-spacing: -.01em; font-weight: 700; }
.sp-section-head p { max-width: 60ch; margin: .35rem 0 0 auto; color: var(--sp-muted); font-size: 15px; line-height: 1.625; }
.sp-section-head p + p { margin-top: 1rem; }
.dark .sp-section-head p { color: rgba(255,255,255,.62); }
.sp-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.14); border-radius: var(--sp-radius); overflow: hidden; }
.sp-fact { min-height: 180px; padding: 1.5rem; background: var(--sp-black); display: flex; flex-direction: column; justify-content: space-between; }
.sp-fact strong { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.04em; }
.sp-fact span { color: rgba(255,255,255,.58); font-size: .92rem; }
.sp-grid-2, .sp-grid-3 { display: grid; gap: 1.25rem; }
.sp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.sp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.sp-card { border: 1px solid var(--sp-rule); border-radius: var(--sp-radius); overflow: hidden; background: #fff; }
.sp-card-body { padding: 1.6rem; }
.sp-card h3 { margin: 0; font-size: 18px; line-height: 1.375; font-weight: 700; }
.sp-card p { margin: .8rem 0 0; color: var(--sp-muted); font-size: 13px; line-height: 1.625; }
.sp-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sp-spec-list { margin: 1.4rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--sp-rule); }
.sp-spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--sp-rule); }
.sp-spec-list span { color: var(--sp-muted); }
.sp-feature { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; border-radius: var(--sp-radius); overflow: hidden; background: var(--sp-black); color: #fff; }
.sp-feature img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.sp-feature-copy { padding: clamp(2rem, 6vw, 5rem); align-self: center; }
.sp-feature-copy h2 { margin: 0; font-size: 1.875rem; line-height: 1.2; letter-spacing: -.01em; font-weight: 700; }
.sp-feature-copy p { margin: 1.2rem 0 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.625; }
.sp-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.sp-checks li { padding: 1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; }
.sp-downloads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.sp-download { display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; padding: 1.4rem; border: 1px solid var(--sp-rule); border-radius: var(--sp-radius); }
.sp-download strong { display: block; }
.sp-download small { color: var(--sp-muted); }
.sp-downloads-3 { grid-template-columns: repeat(3, 1fr); }
.sp-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.2rem; font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }
.sp-partner-intro { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.sp-partner-intro h2 { margin: 0; font-size: 1.875rem; line-height: 1.2; letter-spacing: -.01em; }
.sp-partner-intro p:not(.sp-kicker) { max-width: 64ch; margin: 1rem 0 0; color: var(--sp-muted); font-size: 15px; line-height: 1.625; }
.sp-partner-logo-panel { min-height: 300px; padding: 2rem; border-radius: var(--sp-radius); background: var(--sp-soft); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.sp-partner-logo-panel img { display: block; width: min(100%, 320px); max-height: 150px; object-fit: contain; }
.sp-partner-logo-panel img.sp-logo-square { width: min(100%, 170px); max-height: 170px; }
.sp-button-compact { min-width: 0; height: auto; margin-top: 1.5rem; padding: .8rem 1.25rem; }
.sp-feature-light { background: var(--sp-soft); color: var(--sp-ink); }
.sp-feature-light .sp-feature-copy p { color: var(--sp-muted); }
.sp-feature-logo { display: block; width: auto !important; height: auto !important; min-height: 0 !important; max-height: 80px; margin: 0 0 2rem; object-fit: contain !important; object-position: left center; }
.sp-feature-logo-wide { max-width: 220px; }
.sp-image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.sp-image-strip img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--sp-radius); object-fit: cover; }
.sp-partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sp-partner-card { overflow: hidden; border: 1px solid var(--sp-rule); border-radius: var(--sp-radius); background: #fff; display: flex; flex-direction: column; }
.sp-partner-card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sp-partner-card-body { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; align-items: flex-start; }
.sp-partner-card-logo { width: auto; max-width: 150px; height: 64px; margin-bottom: 1.3rem; object-fit: contain; object-position: left center; }
.sp-partner-card h3 { margin: 0; font-size: 20px; line-height: 1.3; }
.sp-partner-card p { margin: .9rem 0 0; color: var(--sp-muted); font-size: 14px; line-height: 1.625; }
.sp-partner-card .sp-link { margin-top: auto; padding-top: 1.4rem; }
.sp-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sp-value-card { min-height: 270px; padding: 1.75rem; border-radius: var(--sp-radius); background: var(--sp-black); color: #fff; display: flex; flex-direction: column; }
.sp-value-card > span { color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .14em; }
.sp-value-card h3 { max-width: 14ch; margin: auto 0 0; font-size: 20px; line-height: 1.25; }
.sp-value-card p { margin: .9rem 0 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.625; }
.sp-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.sp-service-card { overflow: hidden; border: 1px solid var(--sp-black); border-radius: var(--sp-radius); background: var(--sp-black); color: #fff; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease; }
.sp-service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(0,0,0,.18); }
.sp-service-image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.sp-service-card:hover .sp-service-image { transform: scale(1.025); }
.sp-service-card-body { min-height: 245px; padding: 1.6rem 1.75rem 1.75rem; display: flex; flex-direction: column; }
.sp-service-number { margin-bottom: .8rem; color: rgba(255,255,255,.45); font-size: .75rem; letter-spacing: .12em; }
.sp-service-card h3 { margin: 0; font-size: 22px; line-height: 1.25; font-weight: 800; }
.sp-service-card p { max-width: 46ch; margin: .8rem 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.625; }
.sp-service-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; padding-top: 2rem; color: #fff; font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }
.sp-tour { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; border-radius: var(--sp-radius); background: #0b0b0b; color: #fff; }
.sp-tour > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.sp-tour::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.78)); }
.sp-tour-consent { position: relative; z-index: 2; width: min(calc(100% - 2rem), 560px); padding: 2rem; text-align: center; border: 1px solid rgba(255,255,255,.18); border-radius: var(--sp-radius); background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.sp-tour-consent h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.05; }
.sp-tour-consent p { margin: 1rem 0 0; color: rgba(255,255,255,.68); line-height: 1.65; }
.sp-tour iframe { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; border: 0; }
.sp-filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.sp-filter { min-height: 42px; padding: .6rem 1rem; border: 1px solid var(--sp-rule); border-radius: 999px; color: var(--sp-ink); cursor: pointer; font-weight: 600; }
.sp-filter[aria-pressed="true"] { background: var(--sp-ink); color: #fff; border-color: var(--sp-ink); }
/* Match paired event-format cards by row. The exhibition card already uses the
   homepage's flexible image treatment, so the enlarged card height flows into
   the slider instead of leaving an empty gap below it. */
#eventformate .mt-12.grid { align-items: stretch; }
.sp-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.sp-gallery-item { grid-column: span 4; position: relative; overflow: hidden; border-radius: var(--sp-radius); cursor: zoom-in; background: #ddd; }
.sp-gallery-item:nth-child(5n+1), .sp-gallery-item:nth-child(5n+4) { grid-column: span 8; }
.sp-gallery-item[hidden] { display: none; }
.sp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.sp-gallery-item:hover img { transform: scale(1.035); }
.sp-impressions-video { position: relative; min-height: 100svh; overflow: hidden; background: #050505; }
.sp-impressions-video iframe { position: absolute; top: 50%; left: 50%; width: 177.78vh; min-width: 100%; height: 56.25vw; min-height: 100%; border: 0; transform: translate(-50%, -50%); pointer-events: none; }
.sp-impressions-video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3), transparent 24%, transparent 70%, rgba(0,0,0,.52)); pointer-events: none; }
.sp-impressions-gallery-section { padding-top: clamp(4.5rem, 9vw, 8.5rem); background: #fff; }
.sp-impressions-gallery-section .sp-section-head h1 { max-width: 12ch; margin: 0; font-size: 1.875rem; line-height: 1.2; letter-spacing: -.01em; font-weight: 700; }
.sp-impressions-gallery-section .sp-gallery { grid-auto-flow: dense; grid-auto-rows: 140px; gap: clamp(.6rem, 1.2vw, 1rem); }
.sp-impressions-gallery-section .sp-gallery-item { grid-column: span 4; grid-row: span 2; min-height: 0; border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,.06); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+1),
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+4),
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+5),
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+8) { grid-column: span 8; }
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+3),
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+6) { grid-row: span 4; }
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+4),
.sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+5) { grid-row: span 4; }
.sp-impressions-gallery-section .sp-gallery-item:last-child { grid-column: span 12; grid-row: span 4; }
.sp-impressions-gallery-section .sp-gallery-item:hover { box-shadow: 0 22px 52px rgba(0,0,0,.14); }
.sp-impressions-gallery-section .sp-gallery.is-reveal-ready .sp-gallery-item { opacity: 0; transform: translateY(26px); }
.sp-impressions-gallery-section .sp-gallery.is-reveal-ready .sp-gallery-item.is-visible { opacity: 1; transform: translateY(0); }
.sp-impressions-tour { padding-top: 0; }
.sp-lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 4rem; background: rgba(0,0,0,.92); }
.sp-lightbox.is-open { display: flex; }
.sp-lightbox img { max-width: 100%; max-height: 86vh; border-radius: var(--sp-radius); }
.sp-lightbox button { position: absolute; top: 1.2rem; right: 1.2rem; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; cursor: pointer; font-size: 1.5rem; }
.sp-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.25rem; }
.sp-contact-card { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--sp-rule); border-radius: var(--sp-radius); }
.sp-contact-card h2 { margin: 0 0 1.2rem; font-size: clamp(1.7rem, 3vw, 2.8rem); }
.sp-contact-card address { font-style: normal; line-height: 1.7; }
.sp-contact-card p { color: var(--sp-muted); line-height: 1.65; }
.contact-hero { min-height: 72vh; }
.contact-details { max-width: 1200px; }
.contact-details h2 { max-width: 16ch; margin: 0; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.03em; }
.contact-details address { margin-top: 2rem; font-style: normal; font-size: 17px; line-height: 1.65; color: var(--sp-muted); }
.contact-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2rem; }
.contact-links > a:first-child { color: var(--sp-ink); font-size: 17px; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; }
.sp-note { padding: 1.3rem; border-left: 3px solid var(--sp-ink); background: var(--sp-soft); color: var(--sp-muted); line-height: 1.65; }
.sp-cta { display: grid !important; grid-template-columns: 1fr auto; column-gap: clamp(3rem, 7vw, 6rem); row-gap: 3rem; align-items: end; padding: clamp(2rem, 6vw, 4.5rem); border-radius: var(--sp-radius); background: #fff; color: var(--sp-ink); }
.sp-cta h2 { max-width: 18ch; margin: 0; font-size: 1.875rem; line-height: 1.2; letter-spacing: -.01em; font-weight: 700; }
.sp-cta p { max-width: 60ch; margin: 1rem 0 0; color: var(--sp-muted); font-size: 15px; line-height: 1.625; }
.sp-cta > :last-child { margin-top: 0; }

.sp-footer { background: #080808; color: #fff; }
.sp-footer-grid { padding: 5rem 0; display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.15fr; gap: 2rem; }
.sp-footer h2 { max-width: 13ch; margin: 0; font-size: 1.35rem; line-height: 1.25; }
.sp-footer h3 { margin: 0 0 1rem; color: rgba(255,255,255,.42); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.sp-footer ul { margin: 0; padding: 0; list-style: none; }
.sp-footer li + li { margin-top: .7rem; }
.sp-footer a, .sp-footer address { color: rgba(255,255,255,.76); font-size: .9rem; font-style: normal; }
.sp-footer a:hover { color: #fff; }
.sp-footer-bottom { padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.45); font-size: .78rem; }
:focus-visible { outline: 3px solid #ffb52e; outline-offset: 3px; }

@media (max-width: 820px) {
  .sp-shell { width: min(calc(100% - 32px), var(--sp-max)); }
  .sp-header-row { min-height: 64px; }
  .sp-logo img { width: 128px; }
  .sp-header-cta { padding-inline: .85rem; font-size: .8rem; }
  .sp-nav { inset-block-start: 64px; max-height: calc(100vh - 64px); }
  .sp-nav-grid, .sp-section-head, .sp-grid-3, .sp-feature, .sp-footer-grid, .sp-contact-grid, .sp-value-grid, .sp-partner-intro { grid-template-columns: 1fr; }
  .sp-section-head { gap: 1rem; }
  .sp-section-head p { margin-left: 0; }
  .sp-facts { grid-template-columns: repeat(2, 1fr); }
  .sp-feature img { min-height: 320px; }
  .sp-partner-logo-panel { min-height: 230px; }
  .sp-partner-grid { grid-template-columns: 1fr; }
  .sp-footer-grid { padding: 4rem 0; }
  .sp-gallery-item, .sp-gallery-item:nth-child(5n+1), .sp-gallery-item:nth-child(5n+4) { grid-column: span 6; }
}

@media (min-width: 768px) {
  .sp-hero h1 { font-size: 4.6rem; }
  .sp-hero-lead { font-size: 15px; }
  .sp-section-head h2, .sp-section-title, .sp-feature-copy h2, .sp-cta h2, .sp-impressions-gallery-section .sp-section-head h1 { font-size: 2.6rem; line-height: 1.25; }
  .sp-card h3 { font-size: 20px; }
}

@media (max-width: 560px) {
  .sp-header-cta { display: none; }
  .sp-header-row { grid-template-columns: 1fr auto 1fr; }
  .sp-nav-grid, .sp-grid-2, .sp-downloads, .sp-checks, .sp-cta, .sp-service-grid, .sp-image-strip { grid-template-columns: 1fr; }
  .sp-hero { min-height: 78vh; }
  .sp-hero-minimal { min-height: 62vh; }
  .sp-hero-content { padding-bottom: 3.5rem; }
  .sp-fact { min-height: 140px; padding: 1.1rem; }
  .sp-tour { min-height: 520px; }
  .sp-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .sp-gallery-item, .sp-gallery-item:nth-child(5n+1), .sp-gallery-item:nth-child(5n+4) { grid-column: 1; }
  .sp-impressions-video { min-height: 72svh; }
  .sp-impressions-gallery-section .sp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; gap: .65rem; }
  .sp-impressions-gallery-section .sp-gallery-item,
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+1),
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+3),
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+4),
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+5),
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+6),
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(8n+8) { grid-column: span 1; grid-row: span 2; }
  .sp-impressions-gallery-section .sp-gallery-item:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }
  .sp-impressions-gallery-section .sp-gallery-item:last-child { grid-column: span 2; grid-row: span 2; }
  .sp-lightbox { padding: 1rem; }
  .sp-cta { align-items: start; }
  .sp-footer-bottom { flex-direction: column; }
  .contact-links { align-items: stretch; flex-direction: column; }
  .contact-links .sp-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Lesbare Fliesstexte und fingerfreundliche Filter auf allen Unterseiten. */
.sp-hero-lead,
.sp-section-head p,
.sp-partner-intro p:not(.sp-kicker),
.sp-service-card p,
.sp-cta p { font-size: 1rem; }
.sp-card p { font-size: .9rem; }
.sp-filter,
.ref-filter { min-height: 44px; }
.sp-kicker,
.ref-card-index { font-size: .75rem; }
.subpage small { font-size: .8125rem; }
@media (max-width: 560px) {
  .sp-hero h1 { font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .sp-hero-actions { width: 100%; }
  .sp-hero-actions .sp-button { width: 100%; }
}

/* Einheitliche ADS-Typografie fuer alle Unterseiten. */
.subpage {
  font-size: 1rem;
  line-height: 1.5;
}

.sp-hero h1 {
  font-size: clamp(2.111rem, calc(.535rem + 6.47vw), 4.5625rem);
  line-height: 1.2;
  letter-spacing: -.4px;
  font-weight: 700;
}

.sp-hero-lead {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -.4px;
}

.sp-section-head h2,
.sp-section-title,
.sp-feature-copy h2,
.sp-cta h2,
.sp-impressions-gallery-section .sp-section-head h1,
.ref-intro h2 {
  font-size: clamp(1.811rem, calc(.59375rem + 5vw), 3rem);
  line-height: 1.2792;
  letter-spacing: -.4px;
  font-weight: 700;
}

.sp-section-head p,
.sp-partner-intro p:not(.sp-kicker),
.sp-service-card p,
.sp-card p,
.sp-partner-card p,
.sp-value-card p,
.sp-cta p,
.ref-intro p,
.ref-card p,
.ref-summary p {
  font-size: 1rem;
  line-height: 1.5;
}

.sp-feature-copy p,
.contact-details address {
  font-size: 1.125rem;
  line-height: 1.5;
}

.sp-card h3,
.sp-service-card h3,
.sp-partner-card h3,
.sp-value-card h3,
.ref-card h3,
.ref-summary h3 {
  font-size: 1.5rem;
  line-height: 1.31;
  letter-spacing: -.4px;
  font-weight: 700;
}

.sp-button,
.sp-link,
.sp-service-link {
  font-size: .9375rem;
  line-height: 1.5;
  font-weight: 600;
}

.sp-card-body,
.sp-partner-card-body,
.sp-service-card-body,
.ref-card-head {
  height: auto;
  min-height: fit-content;
}

.sp-footer a,
.sp-footer address {
  font-size: .95rem;
  line-height: 1.5;
}

.sp-footer-bottom {
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .sp-section-head h2,
  .sp-section-title,
  .sp-feature-copy h2,
  .sp-cta h2,
  .sp-impressions-gallery-section .sp-section-head h1,
  .ref-intro h2 {
    font-size: 3rem;
  }
}

@media (max-width: 560px) {
  .sp-hero-lead {
    font-size: 1.25rem;
  }

  .subpage h1,
  .subpage h2,
  .subpage h3 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .sp-card,
  .sp-service-card,
  .sp-partner-card,
  .sp-value-card,
  .ref-card {
    min-height: 0;
  }
}
