/* Ballettschule On Point e.V. — Design-System "Editorial Atelier" (Konzept 02/03,
   Favoriten der Vorsitzenden): Logo-Indigo + Logo-Gold, Aqua und helles Türkis zum
   Aufhellen, Playfair Display für Headlines, Montserrat für alles andere. Kein Beige. */
:root {
	--navy: #231942;
	--navy-2: #2d204b;
	--turquoise: #6ec6c7;
	--turquoise-light: #bfe6e7;
	--aqua-tint: #eaf7f8;
	--sky: #ddf2f5;
	--gold: #e8b22c;
	--gold-light: #f8c05a;
	--gold-ink: #8a6410;
	--blush: #eaf7f8;
	--ink: #3e3a52;
	--paper: #ffffff;
	--soft: #eaf7f8;
	--line: #e1eef0;
	--wrap: 1160px;
	--font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-headline: "Playfair Display", Georgia, serif;
	--font-accent: "Playfair Display", Georgia, serif;
	--shadow-sm: 0 2px 12px rgba(35, 25, 66, .06);
	--shadow-md: 0 22px 48px -18px rgba(35, 25, 66, .22);
	--r: 28px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.65;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-ink); }
img { max-width: 100%; height: auto; }

/* Consistent, visible keyboard-focus ring everywhere (buttons, links,
   form controls, the block-builder's tab labels, etc.) — mouse/touch
   users never see it, :focus-visible only fires for keyboard/AT focus. */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
	outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px;
}

/* Preview */
.preview-bar { background: var(--gold); color: var(--navy); text-align: center; font-weight: 600; padding: 6px 12px; font-size: 14px; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; font-size: 18px; }
.brand__mark { width: 30px; height: 30px; display: inline-flex; }
.brand__mark svg { width: 100%; height: 100%; }
.brand:hover { color: var(--navy); }

.menu { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; flex-wrap: wrap; }
.menu__item a { display: inline-block; padding: 8px 12px; border-radius: 8px; font-weight: 600; font-size: 15px; color: var(--navy); transition: background .15s ease, color .15s ease; }
.menu__item a:hover { background: var(--soft); color: var(--gold-ink); }

/* Mobile nav toggle — CSS-only checkbox hack, no JS. Hidden on desktop;
   becomes a hamburger button that reveals the nav below the header on
   small screens (see the @media block near the bottom of this file). */
.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label { display: none; }

/* Language switcher — only rendered at all when more than one language is configured (see layout.html). */
.lang-switch { display: flex; gap: 2px; margin-left: 8px; }
.lang-switch__item { display: inline-block; padding: 6px 9px; border-radius: 6px; font-weight: 700; font-size: 12px; letter-spacing: .03em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--line); }
.lang-switch__item:hover { background: var(--soft); }
.lang-switch__item.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Main */
.site-main { padding: 40px 0 64px; }
.page__title, .post__title { color: var(--navy); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; margin: 0 0 20px; }
.content { font-size: 17px; }
.content p { margin: 0 0 1.1em; }
.content h2 { color: var(--navy); margin-top: 1.6em; }
.content h3 { color: var(--navy); }
.content .lead { font-size: 1.25em; color: var(--navy); }
.content a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 2px; }
.content ul, .content ol { padding-left: 1.3em; }
.content blockquote { border-left: 3px solid var(--gold); margin: 1.2em 0; padding: .4em 0 .4em 1em; color: var(--navy); background: var(--soft); }

.btn, .content .btn {
	display: inline-block; background: var(--navy); color: #fff; text-decoration: none;
	padding: 11px 20px; border-radius: 10px; font-weight: 600;
	transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.btn:hover, .content .btn:hover { background: var(--gold); color: var(--navy); box-shadow: 0 6px 16px rgba(25,46,80,.18); }
.btn:active, .content .btn:active { transform: translateY(1px); box-shadow: none; }
/* .btn--ghost — used by the account templates (login/logout/reset), a
   plain outlined variant distinct from the page-builder's own
   .block__btn--ghost (kept separate since the builder's button widths/
   paddings are independently configurable). */
.btn--ghost, .content .btn--ghost {
	background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 9px 18px;
}
.btn--ghost:hover, .content .btn--ghost:hover { background: var(--navy); color: #fff; box-shadow: none; }

/* Account pages (login/register/forgot/reset/logout) */
.account-page { max-width: 460px; }
.account-form { margin-top: 8px; }
.hint { color: var(--ink); opacity: .85; font-size: 14px; margin-top: 18px; }
.hint a { font-weight: 600; }

/* Post meta + list */
.post__meta, .postcard__meta { color: var(--ink); font-size: 14px; }
.postlist { display: grid; gap: 22px; }
.postcard { border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; transition: box-shadow .15s ease, transform .15s ease; background: var(--paper); }
.postcard:hover { box-shadow: 0 10px 28px rgba(25, 46, 80, .10); transform: translateY(-2px); }
.postcard__title { margin: 4px 0 8px; font-size: 1.4rem; }
.postcard__title a { color: var(--navy); }
.postcard__title a:hover { color: var(--gold-ink); }
.postcard__excerpt { margin: 0 0 10px; }
.postcard__more { font-weight: 600; color: var(--gold-ink); }
.postcard__thumb { display: block; margin: 0 0 14px; border-radius: 10px; overflow: hidden; }
.postcard__thumb img { display: block; width: 100%; height: 220px; object-fit: cover; }

/* Featured image (single page/post) */
.post__image, .page > .post__image {
	width: 100%; max-height: 420px; object-fit: cover; border-radius: 14px; margin: 0 0 24px;
}

/* Category / tag chips */
.post__cats, .post__tags { margin: 0 0 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
	display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
	background: var(--soft); color: var(--navy); text-decoration: none;
}
.chip:hover { background: var(--gold); color: var(--navy); }
.chip--tag { background: transparent; border: 1px solid var(--line); color: var(--ink); font-weight: 500; }
.chip--tag:hover { border-color: var(--gold); color: var(--gold-ink); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.pagination__status { color: var(--ink); font-size: 14px; }
.pagination__prev, .pagination__next { font-weight: 600; color: var(--navy); }
.pagination__prev:hover, .pagination__next:hover { color: var(--gold-ink); }

/* 404 */
.notfound { text-align: center; padding: 60px 0; }
.notfound__code { font-size: 4rem; font-weight: 800; color: var(--gold); margin: 0; }
.notfound h1 { color: var(--navy); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--navy); color: #dfe6f1; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; }
.site-footer p { margin: 0; font-size: 14px; }
.site-footer__claim { color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }

@media (max-width: 620px) {
	.site-header .wrap { position: relative; flex-wrap: wrap; }
	.nav-toggle-label {
		display: flex; align-items: center; justify-content: center;
		width: 40px; height: 40px; margin-left: auto; border-radius: 8px; cursor: pointer;
	}
	.nav-toggle-label:hover { background: var(--soft); }
	.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
		content: ""; display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
		transition: transform .2s ease, opacity .2s ease;
	}
	.nav-toggle-label span { position: relative; }
	.nav-toggle-label span::before { position: absolute; top: -7px; }
	.nav-toggle-label span::after { position: absolute; top: 7px; }
	.nav-toggle-input:checked + .nav-toggle-label span { background: transparent; }
	.nav-toggle-input:checked + .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
	.nav-toggle-input:checked + .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }
	.nav-toggle-input:focus-visible + .nav-toggle-label { outline: 2px solid var(--gold); outline-offset: 2px; }

	.site-nav { display: none; width: 100%; order: 3; margin-top: 10px; }
	.nav-toggle-input:checked ~ .site-nav { display: block; }
	.site-nav .menu { flex-direction: column; gap: 2px; }
	.site-nav .menu__item a { display: block; padding: 12px 14px; }
	.lang-switch { order: 4; width: 100%; margin-left: 0; margin-top: 8px; }
}

/* Dark mode — respected only via the OS-level media query (no per-visitor
   toggle UI). Swaps only the structural neutrals; --navy/--gold stay as
   the site's configurable brand colours (same approach as the minimal/
   modern themes' dark-mode blocks) since those come from the customizer
   and aren't ours to repaint for contrast. */
/* Bewusst KEIN automatischer Dark Mode: Das gesamte "Editorial Atelier"-Design
   (Fotos, Farbverläufe, Freisteller) ist für einen hellen Hintergrund gebaut.
   Ein pauschal invertiertes --paper (dunkel) ließ Überschriftentext in
   --navy auf fast identisch dunklem Grund verschwinden — ein echter
   Kontrast-/Barrierefreiheits-Fehler. Statt einer zweiten, separat zu
   pflegenden Dunkel-Palette für jede neue Komponente bleibt die Seite
   bewusst immer hell (siehe color-scheme:light in layout.html). */

/* Comments */
.comments { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.comments__title { color: var(--navy); margin: 0 0 16px; }
.comments__empty { color: var(--ink); opacity: .8; }
.comments__hint { font-size: 13px; color: var(--ink); opacity: .75; margin: 8px 0 0; }
.comments__notice { padding: 10px 14px; border-radius: 10px; font-weight: 600; margin: 0 0 18px; }
.comments__notice--ok { background: #e3f3e8; color: #1c6b3a; }
.comments__notice--err { background: #fce4e2; color: #c0392b; }
.comments__list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 16px; }
.comment { border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; background: var(--soft); }
.comment__meta { margin: 0 0 6px; font-size: 13px; color: var(--ink); opacity: .8; }
.comment__body { margin: 0; white-space: pre-wrap; word-wrap: break-word; }

.comment-form { max-width: 560px; }
.comment-form label { display: block; font-weight: 600; color: var(--navy); font-size: 14px; margin: 14px 0 5px; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form textarea {
	width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px;
	font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.comment-form textarea { resize: vertical; line-height: 1.5; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,155,39,.18); }
.comment-form button { margin-top: 16px; border: none; cursor: pointer; }
/* Honeypot: present in the DOM (so a bot's naive "fill every field" scraper
   still finds it) but invisible and unreachable for a real visitor — off
   canvas rather than display:none/visibility:hidden, which some spam bots
   already know to skip. */
.comment-form__hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Forms-builder plugin (plugins/forms-builder/): a form rendered from the
   {{form:id}} content tag. Same honeypot technique/class name convention
   as .comment-form__hp above — off-canvas, not display:none. */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.yjar-form .form-field { margin: 14px 0; }
.yjar-form label { display: block; font-weight: 600; color: var(--navy); font-size: 14px; margin-bottom: 5px; }
.yjar-form input[type=text], .yjar-form input[type=email], .yjar-form textarea, .yjar-form select {
	width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px;
	font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.yjar-form textarea { resize: vertical; line-height: 1.5; min-height: 100px; }
.yjar-form .form-field--checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; }
.yjar-form button { margin-top: 10px; border: none; cursor: pointer; }

/* ===================================================================
   Page-builder blocks (plugins/page-builder/, model in lib/blocks.js).
   Covers the original heading/text/image/columns/button/spacer/html set
   plus the newer gallery/testimonial/pricing-table/accordion/tabs/
   video-embed/icon-list/divider types. A record without `blocks` (or with
   the rendering plugin disabled) uses none of this — see README.md's
   "Visueller Editor (Blöcke)" section.
   =================================================================== */
.block { margin: 0 0 24px; }
.block:last-child { margin-bottom: 0; }
.block--heading { color: var(--navy); }
.block--image img { display: block; }
.block--image figcaption { margin-top: 8px; font-size: 14px; color: var(--ink); opacity: .85; }
.block--spacer { margin: 0; }

.block__btn { display: inline-block; padding: 11px 22px; border-radius: 10px; font-weight: 600; text-decoration: none; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.block__btn--primary { background: var(--navy); color: #fff; }
.block__btn--primary:hover { background: var(--gold); color: var(--navy); }
.block__btn--secondary { background: var(--soft); color: var(--navy); }
.block__btn--secondary:hover { background: var(--gold); color: var(--navy); }
.block__btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 9px 20px; }
.block__btn--ghost:hover { border-color: var(--gold); color: var(--gold-ink); }

/* Columns — CSS grid on desktop; see the "Responsive block overrides"
   section below for the mobile-stacking breakpoint. `--cols` is a
   server-clamped integer (1-6), never user-controlled free text. */
.block--columns { display: grid; gap: 24px; grid-template-columns: repeat(var(--cols, 2), 1fr); align-items: start; }
.block__col > .block:last-child { margin-bottom: 0; }

/* Gallery */
.block--gallery { display: grid; gap: 14px; grid-template-columns: repeat(var(--gallery-cols, 3), 1fr); }
.gallery__item { margin: 0; }
.gallery__item img { display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; }

/* Testimonial */
.block--testimonial { margin: 0 0 24px; padding: 26px 28px; border-radius: 14px; background: var(--soft); border-left: 4px solid var(--gold); }
.testimonial__quote { margin: 0 0 16px; font-size: 1.15em; color: var(--navy); font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial__who { display: flex; flex-direction: column; }
.testimonial__name { font-weight: 700; color: var(--navy); }
.testimonial__role { font-size: 13px; color: var(--ink); opacity: .8; }

/* Pricing table */
.block--pricing-table { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; padding: 26px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.pricing-card--featured { border-color: var(--gold); box-shadow: 0 10px 28px rgba(213, 155, 39, .18); }
.pricing-card__title { margin: 0 0 6px; color: var(--navy); }
.pricing-card__price { margin: 0 0 16px; font-size: 1.6em; font-weight: 700; color: var(--navy); }
.pricing-card__features { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; display: grid; gap: 8px; }
.pricing-card__features li { padding-left: 22px; position: relative; }
.pricing-card__features li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-ink); font-weight: 700; }
.pricing-card__cta { text-align: center; }

/* Accordion — native <details>/<summary>, CSS-only toggle, no JS. */
.block--accordion { display: grid; gap: 10px; }
.accordion__item { border: 1px solid var(--line); border-radius: 10px; padding: 4px 18px; background: var(--paper); }
.accordion__summary { cursor: pointer; padding: 14px 0; font-weight: 600; color: var(--navy); list-style: none; }
.accordion__summary::-webkit-details-marker { display: none; }
.accordion__summary::before { content: "+"; display: inline-block; width: 1.2em; color: var(--gold-ink); font-weight: 700; }
.accordion__item[open] > .accordion__summary::before { content: "\2013"; }
.accordion__content { padding: 0 0 16px; }
.accordion__content p:last-child { margin-bottom: 0; }

/* Tabs — pure-CSS radio-button technique (see plugins/page-builder/
   index.js's `renderBlock()` for the markup), no JS. The nav row is
   pulled to the top purely via flex `order`, even though radios/labels/
   panels are interleaved in source order (one <input>+<label>+<panel>
   triplet per tab) — that interleaving is what lets a plain sibling
   selector show only the panel following a :checked radio. */
.block--tabs { display: flex; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.tabs__radio { position: absolute; opacity: 0; width: 1px; height: 1px; order: 0; }
.tabs__label { order: 1; padding: 13px 20px; cursor: pointer; font-weight: 600; color: var(--navy); background: var(--soft); border-bottom: 3px solid transparent; }
.tabs__label:hover { color: var(--gold-ink); }
.tabs__radio:checked + .tabs__label { background: var(--paper); border-bottom-color: var(--gold); }
.tabs__radio:focus-visible + .tabs__label { outline: 2px solid var(--gold); outline-offset: -2px; }
.tabs__panel { order: 9; display: none; width: 100%; padding: 22px; background: var(--paper); }
.tabs__radio:checked + .tabs__label + .tabs__panel { display: block; }

/* Icon list — SVG markup comes from a small hardcoded allowlist in
   plugins/page-builder/index.js (ICON_SVGS), never user-supplied. */
.block--icon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.icon-list__item { display: flex; align-items: flex-start; gap: 10px; }
.icon-list__icon { flex: none; color: var(--gold-ink); margin-top: 2px; }
.icon-list__icon svg { display: block; }

/* Divider — distinct from the plain spacer: an actual styled rule, not
   just blank space. `--divider-width`/`--divider-spacing` are server-
   clamped numbers (10-100 / 0-120), never free text. */
.block--divider { border: none; border-top-style: solid; border-top-width: 2px; border-top-color: var(--line); width: var(--divider-width, 100%); margin: var(--divider-spacing, 24px) auto; }
.block--divider-dashed { border-top-style: dashed; }
.block--divider-dotted { border-top-style: dotted; }

/* Video embed — the iframe `src` is always plugins/page-builder/
   index.js's buildVideoEmbedSrc() output (youtube-nocookie.com /
   player.vimeo.com only), never the pasted URL — see lib/blocks.js. */
.block--video-embed { margin: 0 0 24px; }
.video-embed__frame { position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: #000; }
.video-embed__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Responsive block overrides (lib/blocks.js's `responsive`/`stackOnMobile`
   fields) — plain utility classes generated onto the block wrapper by the
   renderer, one shared breakpoint, no JS, no per-block inline <style>
   blocks. `.block--columns-keep` is the opt-out for a columns block whose
   editor explicitly wants the side-by-side layout preserved on mobile. */
@media (max-width: 680px) {
  .u-hide-mobile { display: none !important; }
  .block--columns { grid-template-columns: 1fr; }
  .block--columns.block--columns-keep { grid-template-columns: repeat(var(--cols, 2), 1fr); }
}
@media (min-width: 681px) {
  .u-hide-desktop { display: none !important; }
}

/* Entrance animations (see /theme/block-animations.js and README.md's
   "Eingangsanimationen" section). The trigger script adds `can-animate` to
   <html> ONLY when JavaScript actually ran, IntersectionObserver exists,
   AND the visitor has not requested reduced motion — every rule below is
   scoped under that class, so with JS disabled (or an old browser, or
   reduced-motion active) [data-animate] blocks simply keep their normal,
   fully visible, non-offset default state. Content is never hidden by CSS
   alone; only JS-confirmed-safe browsers ever see the hidden/offset start
   state in the first place. */
html.can-animate [data-animate] { transition: opacity .6s ease, transform .6s ease; }
html.can-animate [data-animate="fade-in"] { opacity: 0; }
html.can-animate [data-animate="slide-up"] { opacity: 0; transform: translateY(28px); }
html.can-animate [data-animate].is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.can-animate [data-animate] { transition: none !important; opacity: 1 !important; transform: none !important; }
}


/* ===================================================================
   Eigenes Design-Layer der Ballettschule On Point e.V. — "Editorial Atelier"
   =================================================================== */

/* ---------- Header ---------- */
.site-header { background: rgba(255,255,255,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(35,25,66,.06); box-shadow: none; }
.site-header .wrap { gap: 16px; padding-top: 10px; padding-bottom: 10px; max-width: 1360px; }
.brand { order: 1; gap: 0; }
.site-nav { order: 2; margin-left: auto; }
.header-cta { order: 3; display: flex; gap: 8px; align-items: center; }
.nav-toggle-label { order: 4; }
.brand__mark { width: auto; height: 58px; display: inline-flex; border-radius: 0; overflow: visible; box-shadow: none; }
.brand__mark img { width: auto; height: 100%; object-fit: contain; background: transparent; }
.brand__name { display: none; }
.menu { gap: 2px; }
.menu__item a { border-radius: 999px; padding: 8px 11px; font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.menu { flex-wrap: nowrap; }
.menu__item a:hover { background: var(--aqua-tint); color: var(--navy); }
.btn--nav { padding: 10px 18px; font-size: 14px; margin-left: 0; border-radius: 999px; box-shadow: none; }
.btn--nav.btn--gold { background: var(--gold); color: var(--navy); }
.btn--nav.btn--gold:hover { background: var(--navy); color: #fff; }
.btn--nav.btn--ghost { background: transparent; border: 2px solid var(--navy); color: var(--navy); padding: 8px 16px; }
.btn--nav.btn--ghost:hover { background: var(--navy); color: #fff; }
@media (max-width: 1240px) { .btn--nav.btn--ghost { display: none; } }
@media (max-width: 1100px) and (min-width: 621px) { .menu__item a { padding: 8px 8px; font-size: 13px; } .brand__mark { height: 48px; } }
@media (max-width: 620px) {
	.brand__mark { height: 44px; }
	.header-cta { order: 2; margin-left: auto; }
	.nav-toggle-label { order: 3; }
	.site-nav { order: 4; }
	.btn--nav { padding: 9px 14px; font-size: 13px; }
}

/* ---------- Typografie ---------- */
.page__title, .post__title { font-family: var(--font-headline); font-weight: 700; letter-spacing: -.01em; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.content h1, .content h2, .content h3 { font-family: var(--font-headline); font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.content h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; }
.content h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.content .lead { font-size: 1.22em; color: var(--navy); line-height: 1.55; }
.content a { color: var(--gold-ink); }
.page:not(:has(.hero)) > .page__title,
.page:not(:has(.hero)) > .content { max-width: 800px; margin-left: auto; margin-right: auto; }
.page:not(:has(.hero)) > .content > p,
.page:not(:has(.hero)) > .content > ul,
.page:not(:has(.hero)) > .content > ol { max-width: none; }
.page:has(.hero) > .page__title { display: none; }
.content .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font); font-style: normal; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); font-weight: 700; margin-bottom: 14px; }
.content .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.content .credit { font-size: .78rem; color: var(--ink); opacity: .65; margin-top: 1em; }

/* ---------- Buttons ---------- */
.btn, .content .btn { border-radius: 999px; padding: 14px 28px; font-weight: 700; box-shadow: 0 10px 24px -12px rgba(35,25,66,.45); background: var(--navy); color: #fff; }
.btn:hover, .content .btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn--gold, .content .btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 12px 26px -12px rgba(232,178,44,.7); }
.btn--gold:hover, .content .btn--gold:hover { background: var(--navy); color: #fff; }
.btn-outline, .content .btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); box-shadow: none; padding: 12px 26px; }
.btn-outline:hover, .content .btn-outline:hover { background: var(--navy); color: #fff; }
.icon { width: 20px; height: 20px; display: block; }
.value__icon .icon, .card__icon .icon { width: 22px; height: 22px; }
.age__badge .icon { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; margin: 0 calc(50% - 50vw); padding: 56px 22px 72px; background: var(--paper); color: var(--navy); text-align: left; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -34%; right: -14%; width: 62vw; max-width: 900px; aspect-ratio: 1; background: radial-gradient(circle at 40% 40%, var(--sky) 0%, var(--aqua-tint) 55%, rgba(234,247,248,0) 72%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ""; position: absolute; right: 6%; bottom: 3%; width: 220px; height: 110px; background-image: radial-gradient(var(--turquoise-light) 1.6px, transparent 1.7px); background-size: 14px 14px; opacity: .8; pointer-events: none; }
.hero__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); font-weight: 700; margin-bottom: 22px; }
.hero__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.hero h1 { font-family: var(--font-headline); font-weight: 700; font-size: clamp(2.8rem, 6.4vw, 5rem); margin: 0 0 22px; color: var(--navy); letter-spacing: -.015em; line-height: 1.02; }
.hero h1 em { position: relative; font-style: italic; font-weight: 700; color: var(--navy); white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: .04em; height: .34em; z-index: -1; border-radius: 6px; background: linear-gradient(90deg, var(--gold-light), var(--gold)); transform: rotate(-1.2deg); opacity: .9; }
.hero .lead { max-width: 520px; margin: 0 0 30px; font-size: 1.18rem; color: var(--ink); line-height: 1.6; }
.hero__actions { margin: 0 0 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn:not(.btn-outline) { background: var(--gold); color: var(--navy); box-shadow: 0 14px 30px -14px rgba(232,178,44,.8); }
.hero .btn:not(.btn-outline):hover { background: var(--navy); color: #fff; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 34px; padding: 9px 16px 9px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: .86rem; color: var(--ink); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.trust-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ink); }
.trust-badge__stars { color: var(--gold); letter-spacing: 1px; font-size: .95rem; }
.trust-badge strong { color: var(--navy); }
.hero__stats { list-style: none; margin: 0; padding: 22px 0 0; display: grid; grid-template-columns: repeat(4, auto); gap: 14px 30px; border-top: 1px solid var(--line); max-width: 560px; }
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong { font-family: var(--font-headline); font-weight: 700; font-size: 1.8rem; line-height: 1; color: var(--navy); }
.hero__stats span { font-size: .78rem; color: var(--ink); letter-spacing: .02em; }
.hero__media { position: relative; aspect-ratio: 4 / 5; }
.hero__media::before { content: ""; position: absolute; top: 4%; left: 2%; width: 92%; padding-bottom: 92%; background: radial-gradient(circle at 35% 35%, var(--turquoise-light) 0%, var(--turquoise) 70%); border-radius: 50%; opacity: .95; pointer-events: none; }
.hero__media::after { content: ""; position: absolute; right: -4%; bottom: 10%; width: 46%; height: 46%; border: 2px solid var(--gold); border-color: transparent transparent var(--gold) transparent; border-radius: 50%; transform: rotate(-20deg); opacity: .8; pointer-events: none; }
.hero__media picture { position: absolute; inset: 0; display: block; }
.hero__media img { position: absolute; left: 50%; bottom: 0; transform: translateX(-46%); width: auto; height: 100%; max-width: none; object-fit: contain; border-radius: 0; box-shadow: none; filter: drop-shadow(0 30px 40px rgba(35,25,66,.28)); }
@media (prefers-reduced-motion: no-preference) {
	@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
	@keyframes heroPop { from { opacity: 0; transform: scale(.94) translateY(16px); } to { opacity: 1; transform: none; } }
	@keyframes heroFloat { 0%,100% { transform: translateX(-46%) translateY(0); } 50% { transform: translateX(-46%) translateY(-10px); } }
	@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6px, 10px) scale(1.03); } }
	.hero__text > * { animation: heroRise .7s cubic-bezier(.2,.7,.2,1) both; }
	.hero__text > :nth-child(2) { animation-delay: .08s; } .hero__text > :nth-child(3) { animation-delay: .16s; }
	.hero__text > :nth-child(4) { animation-delay: .24s; } .hero__text > :nth-child(5) { animation-delay: .3s; } .hero__text > :nth-child(6) { animation-delay: .36s; }
	.hero__media img { animation: heroPop 1s cubic-bezier(.2,.7,.2,1) .15s both, heroFloat 6s ease-in-out 1.2s infinite; }
	.hero__media::before { animation: heroPop 1.1s ease-out both, blobFloat 9s ease-in-out 1.1s infinite; }
	.btn, .content .btn { transition: background .2s ease, transform .15s ease, box-shadow .2s ease, color .2s ease; }
}
@media (max-width: 900px) {
	.hero { padding: 28px 0 56px; }
	.hero__inner { grid-template-columns: 1fr; padding: 0 18px; gap: 26px; }
	.hero__media { order: -1; aspect-ratio: auto; width: 320px; height: 330px; max-width: 100%; margin: 0 auto; }
	.hero::after { display: none; }
	.hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Ticker ---------- */
.ticker { margin: 0 calc(50% - 50vw); background: var(--navy); color: #fff; overflow: hidden; padding: 14px 0; border-top: 3px solid var(--gold); }
.ticker__track { display: flex; gap: 0; width: max-content; animation: ticker 38s linear infinite; }
.ticker span { font-family: var(--font-headline); font-style: italic; font-size: 1.05rem; padding: 0 22px; white-space: nowrap; display: inline-flex; align-items: center; gap: 22px; }
.ticker span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Sections ---------- */
.content section { padding: 84px 0; margin: 0 calc(50% - 50vw); position: relative; }
.content section > .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.content section:has(.cards), .content section:has(.block--accordion), .content section:has(.age-strip) { background: var(--aqua-tint); }
.content section:has(.age-strip) { background: var(--paper); }
.content section h2 { text-align: left; margin: 0 0 .5em; max-width: 720px; }
.content section > .wrap > .eyebrow + h2 { margin-top: 0; }
.content section > .wrap > p.section-lead { text-align: left; max-width: 640px; margin: 0 0 2.2em; font-size: 1.08em; color: var(--ink); }

/* Werte */
.values-band { background: var(--paper) !important; padding: 0 0 10px !important; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; transform: translateY(-34px); }
.value { display: flex; align-items: flex-start; gap: 14px; color: var(--navy); background: #fff; border-radius: 20px; padding: 20px 20px; box-shadow: var(--shadow-md); }
.value__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--aqua-tint); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.values-grid .value:nth-child(2) .value__icon { background: rgba(232,178,44,.18); } .values-grid .value:nth-child(3) .value__icon { background: var(--navy); color: var(--gold-light); } .values-grid .value:nth-child(4) .value__icon { background: var(--turquoise); color: var(--navy); }
.value strong { display: block; color: var(--navy); font-family: var(--font-headline); font-weight: 700; font-size: 1.08em; margin-bottom: 3px; }
.value p { margin: 0; font-size: .9em; color: var(--ink); }

/* Altersgruppen (Fotokarten) */
.age-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2em; }
.age-strip .age--photo { position: relative; display: block; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; text-decoration: none; background: var(--aqua-tint); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; text-align: left; }
.age-strip .age--photo:nth-child(2) { transform: translateY(26px); }
.age-strip .age--photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.age-strip .age--photo:nth-child(2):hover { transform: translateY(20px); }
.age--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.age--photo:hover img { transform: scale(1.05); }
.age--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,25,66,0) 45%, rgba(35,25,66,.86) 100%); }
.age__badge { position: absolute; left: 20px; bottom: 66px; z-index: 2; margin: 0; width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--navy); background: var(--gold); box-shadow: var(--shadow-sm); }
.age--photo strong { position: absolute; left: 20px; bottom: 32px; z-index: 2; color: #fff; font-family: var(--font-headline); font-size: 1.5rem; margin: 0; }
.age--photo p { position: absolute; left: 20px; bottom: 12px; z-index: 2; color: #d9ecef; margin: 0; font-size: .86rem; }
@media (max-width: 760px) { .age-strip { grid-template-columns: 1fr; } .age-strip .age--photo:nth-child(2), .age-strip .age--photo:nth-child(2):hover { transform: none; } .age--photo { aspect-ratio: 16 / 10; } }

/* Karten */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 2em; }
.cards--center { text-align: left; }
.card { background: #fff; border: none; border-radius: 24px; padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card p { margin: 0; font-size: .96em; color: var(--ink); }
.card__icon { width: 50px; height: 50px; border-radius: 16px; background: var(--aqua-tint); color: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 0 18px; }
.cards .card:nth-child(3n+1) .card__icon { background: var(--turquoise); color: var(--navy); }
.cards .card:nth-child(3n+2) .card__icon { background: var(--gold); color: var(--navy); }
.cards .card:nth-child(3n+3) .card__icon { background: var(--navy); color: var(--gold-light); }

/* Highlight-Band */
.highlight-band { position: relative; overflow: hidden; border-radius: var(--r); padding: 76px 48px; color: #fff; text-align: left; background: linear-gradient(120deg, #231942 0%, #2d204b 55%, #1a3a4a 100%); }
.highlight-band::before { content: ""; position: absolute; right: -6%; top: -30%; width: 46%; aspect-ratio: 1; background: radial-gradient(circle, rgba(110,198,199,.55), rgba(110,198,199,0) 70%); border-radius: 50%; }
.highlight-band::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; background: url('/media/buehne-danceworldcup.webp') right center / 46% auto no-repeat; opacity: .28; mask-image: linear-gradient(90deg, transparent 40%, #000 75%); -webkit-mask-image: linear-gradient(90deg, transparent 40%, #000 75%); }
.highlight-band > * { position: relative; z-index: 1; }
.highlight-band h2, .highlight-band p { color: #fff; }
.highlight-band h2 { max-width: 520px; }
.highlight-band p { max-width: 520px !important; margin: 0 0 28px !important; color: #d9e6ea; }
.highlight-band .eyebrow { color: var(--gold-light); } .highlight-band .eyebrow::before { background: var(--gold-light); }
.highlight-band .btn { background: var(--gold); color: var(--navy); }
.highlight-band .btn:hover { background: #fff; }
@media (max-width: 760px) { .highlight-band { padding: 48px 26px; } .highlight-band::after { display: none; } }

/* Erfolge */
.feature-photo { margin: 1.4em 0 1.2em; border-radius: var(--r); overflow: hidden; position: relative; box-shadow: var(--shadow-md); aspect-ratio: 16 / 7; max-height: 460px; }
.feature-photo img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; }
.feature-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 22px 14px; color: #fff; font-size: .9rem; font-weight: 600; background: linear-gradient(180deg, rgba(35,25,66,0), rgba(35,25,66,.8)); }
.achievements { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 16px; margin: 1.4em 0 0; }
.achievement { background: var(--aqua-tint); border: none; border-radius: 22px; padding: 22px 20px; display: flex; flex-direction: column; gap: 4px; transition: transform .2s ease, box-shadow .2s ease; }
.achievement:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fff; }
.achievement__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--navy); color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.achievement__icon .icon { width: 20px; height: 20px; }
.achievement strong { font-family: var(--font-headline); font-size: 1.4rem; color: var(--navy); line-height: 1.15; }
.achievement span:last-child { font-size: .86rem; color: var(--ink); }
.achievement span a { color: var(--gold-ink); }

/* FAQ */
.block--accordion .accordion__item { background: #fff; border: none; border-radius: 18px; box-shadow: var(--shadow-sm); margin-bottom: 10px; border-left: 4px solid var(--turquoise); }
.accordion__summary { font-family: var(--font-display); font-weight: 700; color: var(--navy); padding: 18px 20px; }
.accordion__summary::before, .accordion__summary::after { color: var(--gold-ink); }
.accordion__content { padding: 0 20px 18px; color: var(--ink); }

/* CTA-Band: Logo-Gold */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r); padding: 72px 48px; text-align: left; background: linear-gradient(120deg, var(--gold-light), var(--gold)); color: var(--navy); }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.28); }
.cta-band::after { content: ""; position: absolute; right: 8%; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; border: 2px solid rgba(35,25,66,.25); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--navy); max-width: 560px; }
.cta-band p { max-width: 560px !important; margin: 0 0 28px !important; color: #3b2f5c; }
.cta-band .btn { background: var(--navy); color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--navy); }
@media (max-width: 760px) { .cta-band { padding: 46px 26px; } }

/* Newsletter */
.newsletter-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; background: var(--navy); color: #fff; border-radius: var(--r); padding: 44px 48px; position: relative; overflow: hidden; }
.newsletter-band::before { content: ""; position: absolute; left: -60px; bottom: -120px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(110,198,199,.45), rgba(110,198,199,0) 70%); }
.newsletter-band > * { position: relative; }
.newsletter-band .eyebrow { color: var(--turquoise-light); } .newsletter-band .eyebrow::before { background: var(--turquoise-light); }
.newsletter-band h2 { color: #fff; margin: .2em 0 .4em; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.newsletter-band p { color: #cdd8e0; margin: 0; }
.newsletter-band .yjar-form { display: flex; gap: 10px; align-items: flex-start; flex-wrap: wrap; }
.newsletter-band .yjar-form .form-field { margin: 0; flex: 1 1 220px; }
.newsletter-band .yjar-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.newsletter-band .yjar-form input[type=email] { background: #fff; border: none; height: 50px; border-radius: 999px; padding: 0 18px; }
.newsletter-band .yjar-form button { background: var(--gold); color: var(--navy); height: 50px; padding: 0 24px; margin: 0; white-space: nowrap; border-radius: 999px; font-weight: 700; }
.newsletter-band .yjar-form button:hover { background: #fff; }
@media (max-width: 760px) { .newsletter-band { grid-template-columns: 1fr; padding: 30px 24px; } }

/* ---------- Kursangebot ---------- */
.notice-card { margin: 1.6em 0 2.2em; padding: 26px 28px; border-radius: 22px; background: var(--aqua-tint); border-left: 6px solid var(--gold); box-shadow: none; }
.notice-card .eyebrow { display: inline-flex; margin-bottom: 6px; }
.notice-card h2 { margin: 0 0 .5em; font-size: clamp(1.15rem, 2.4vw, 1.45rem); line-height: 1.25; }
.notice-card p { margin: 0 0 .8em; } .notice-card p:last-child { margin-bottom: 0; }
.genre-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 1.8em 0 2.6em; }
.genre-band__item { position: relative; display: block; overflow: hidden; border-radius: 24px; aspect-ratio: 3 / 4; text-decoration: none; box-shadow: var(--shadow-sm); background: var(--navy); transition: transform .3s ease, box-shadow .3s ease; }
.genre-band__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.genre-band__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transition: transform .6s ease; }
.genre-band__item:hover img { transform: scale(1.06); }
.genre-band__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,25,66,0) 45%, rgba(35,25,66,.92) 100%); }
.genre-band__caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.genre-band__eyebrow { font-family: var(--font); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }
.genre-band__title { color: #fff; font-family: var(--font-headline); font-weight: 700; font-size: clamp(1rem, 1.7vw, 1.3rem); line-height: 1.15; }
@media (max-width: 900px) { .genre-band { grid-template-columns: 1fr 1fr; } }
.course-group__title { display: flex; align-items: center; gap: 10px; margin-top: 2.2em; }
.course-list { display: grid; gap: 10px; margin: 1em 0 1.4em; }
.course-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: 18px; background: #fff; border: none; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.course-row:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.course-row__icon { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--aqua-tint); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.course-row__body { flex: 1; } .course-row__body strong { display: block; color: var(--navy); font-family: var(--font-display); font-weight: 700; } .course-row__body span { font-size: .88em; color: var(--ink); }
.course-row__cta { flex: none; padding: 9px 16px; border-radius: 999px; background: var(--navy); color: #fff !important; font-size: .82rem; font-weight: 700; text-decoration: none !important; }
.course-row__cta:hover { background: var(--gold); color: var(--navy) !important; }
.badge-callout { display: flex; align-items: center; justify-content: center; text-align: center; width: 116px; height: 116px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: .82em; line-height: 1.15; transform: rotate(-8deg); box-shadow: 0 12px 26px -12px rgba(232,178,44,.8); }

/* ---------- Team / Jobs / Partner / Kontakt ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 1.2em; }
.team-member { background: #fff; border: none; border-radius: 22px; padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: center; transition: transform .2s ease, box-shadow .2s ease; }
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-member__avatar { flex: none; width: 62px; height: 62px; border-radius: 18px; object-fit: cover; }
.team-member__initial { flex: none; width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-headline); font-weight: 700; font-size: 1.2rem; color: var(--navy); background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise)); }
.team-member h3 { margin: 0 0 2px; font-size: 1.05rem; } .team-member p { margin: 0; color: var(--ink); font-size: .9em; }
.team-member__avatar-wrap { position: relative; flex: none; }
.team-member__badge { position: absolute; right: -6px; bottom: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.team-member__badge svg { width: 13px; height: 13px; color: var(--navy); stroke-width: 2.2; }
.job-card { background: #fff; border: none; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }
.job-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.job-card > div { padding: 22px 24px; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 1.6em; }
.partner { background: #fff; border: none; border-radius: 20px; padding: 26px; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; min-height: 120px; }
.partner img { max-height: 70px; width: auto; }
.directions-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--aqua-tint); border-radius: 22px; padding: 24px 26px; margin-top: 1em; }
.directions-card strong { font-family: var(--font-headline); color: var(--navy); font-size: 1.1rem; }
.directions-card p { margin: 4px 0 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; margin: 1.6em 0 2.4em; }
.contact-layout .yjar-form { max-width: none; background: var(--aqua-tint); padding: 26px 28px; border-radius: 22px; }
.contact-layout h2 { margin-top: 0 !important; }
@media (max-width: 760px) { .contact-layout { grid-template-columns: 1fr; gap: 28px; } }
.yjar-form button { display: inline-block; background: var(--navy); color: #fff; padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 15px; font-family: inherit; transition: background .15s ease; }
.yjar-form button:hover { background: var(--gold); color: var(--navy); }
.yjar-form input[type=text], .yjar-form input[type=email], .yjar-form textarea, .yjar-form select { border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; margin: 2em 0; padding: 0; border-radius: 0; background: transparent; color: var(--navy); }
.about-stats div { text-align: left; background: var(--aqua-tint); border-radius: 20px; padding: 20px; }
.about-stats strong { display: block; font-family: var(--font-headline); font-weight: 700; font-size: 1.9rem; color: var(--navy); }
.about-stats span { font-size: .84rem; color: var(--ink); }

/* Presse / Räume / Tour / Kleidung / Galerie */
.press-list { list-style: none; padding: 0; margin: 1em 0 0; display: grid; gap: 10px; }
.press-list a { display: flex; flex-direction: column; gap: 2px; padding: 14px 18px; border-radius: 16px; background: #fff; border: none; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; border-left: 4px solid var(--gold); }
.press-list a:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.press-list strong { font-family: var(--font-headline); font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.press-list span { font-size: .74rem; color: var(--ink); opacity: .8; letter-spacing: .12em; text-transform: uppercase; }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 1.4em 0 2em; }
.rooms-grid figure { margin: 0; position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--aqua-tint); }
.rooms-grid img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); transition: transform .6s ease, filter .4s ease; }
.rooms-grid figure:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.rooms-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; color: #fff; font-size: .8rem; font-weight: 600; background: linear-gradient(180deg, rgba(35,25,66,0), rgba(35,25,66,.78)); }
.rooms-grid--color img, .rooms-grid--color figure:hover img { filter: none; }
.rooms-grid--2 { grid-template-columns: repeat(2, 1fr); } .rooms-grid--2 figure { aspect-ratio: 3 / 2; }
@media (max-width: 760px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
.tour-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; margin: 1.2em 0 2.2em; }
.tour-block figure { margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--aqua-tint); }
.tour-block img { width: 100%; height: auto; display: block; }
.tour-block figcaption { font-size: .8rem; color: var(--ink); padding: 8px 12px; background: #fff; }
.tour-block__selfie { max-width: 360px; margin-top: .6em !important; }
@media (max-width: 760px) { .tour-block { grid-template-columns: 1fr; } }
.dress { display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: start; margin: 1.6em 0; }
.dress figure { margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--aqua-tint); aspect-ratio: 4 / 3; position: relative; }
.dress img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dress figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; color: #fff; font-size: .8rem; font-weight: 600; background: linear-gradient(180deg, rgba(35,25,66,0), rgba(35,25,66,.8)); }
.dress h2 { margin-top: 0 !important; }
@media (max-width: 700px) { .dress { grid-template-columns: 1fr; } }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 1.6em; }
.gallery-grid--masonry { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; }
.gallery-grid__item { margin: 0; position: relative; border-radius: 18px; overflow: hidden; background: var(--aqua-tint); }
.gallery-grid__item--wide { grid-column: span 2; } .gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; color: #fff; font-size: .8rem; font-weight: 600; background: linear-gradient(180deg, rgba(35,25,66,0), rgba(35,25,66,.78)); opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.gallery-grid__item:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 900px) { .gallery-grid--masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .gallery-grid__item figcaption { opacity: 1; transform: none; } }
.post__image, .page > .post__image { border-radius: var(--r); box-shadow: var(--shadow-md); }
.postcard { border: none; border-radius: 22px; box-shadow: var(--shadow-sm); }
.chip { background: var(--aqua-tint); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cdd6e6; margin-top: 90px; border-top: none; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; right: -120px; top: -160px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(110,198,199,.28), rgba(110,198,199,0) 70%); }
.site-footer a { color: #cdd6e6; } .site-footer a:hover { color: var(--gold-light); }
.site-footer p { margin: 0 0 8px; font-size: 14.5px; line-height: 1.7; }
.site-footer h4 { color: var(--turquoise-light); font-family: var(--font); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer__claim { font-family: var(--font-headline); font-style: italic; color: #fff; font-weight: 600; font-size: 15px; margin-top: 14px; text-transform: none; letter-spacing: 0; }
.footer-logo { height: 64px; width: auto; margin-bottom: 4px; border-radius: 0; background: transparent; padding: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .8fr .9fr 1fr 1fr; gap: 26px; padding-top: 56px; padding-bottom: 40px; position: relative; }
.footer-col .menu { flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-col .menu__item a { padding: 2px 0; color: #cdd6e6; font-weight: 500; font-size: 14.5px; }
.footer-col .menu__item a:hover { background: none; color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 26px; border-top: 1px solid rgba(255,255,255,.12); position: relative; }
.footer-bottom p { margin: 0; font-size: 13px; opacity: .85; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .content section { padding: 56px 0; } .genre-band { gap: 12px; } }

/* ---------- Scroll-Reveal ---------- */
html.can-animate [data-animate] { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
html.can-animate [data-animate="fade-in"] { opacity: 0; }
html.can-animate [data-animate="slide-up"] { opacity: 0; transform: translateY(32px); }
html.can-animate [data-animate].is-inview { opacity: 1; transform: none; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
