:root {
    --color-burgundy: #892a2e;
    --color-burgundy-dark: #641d22;
    --color-dark: #2f1a15;
    --color-olive: #555646;
    --color-taupe: #927766;
    --color-sand: #f6e2a6;
    --color-yellow: #fdda57;
    --color-cream: #fbebca;
    --color-blue: #d7e1f2;
    --color-mint: #def5f5;
    --color-paper: #fffdf7;
    --color-white: #ffffff;
    --color-line: rgba(47, 26, 21, 0.14);
    --shadow-soft: 0 24px 70px rgba(47, 26, 21, 0.16);
    --shadow-card: 0 14px 36px rgba(47, 26, 21, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1120px;
    --header-height: 74px;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-paper);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    padding: 10px 14px;
    background: var(--color-dark);
    color: var(--color-white);
    z-index: 999;
    border-radius: 999px;
}

.skip-link:focus {
    top: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 247, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(47, 26, 21, 0.08);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: cover;
    object-position: left center;
    /*border-radius: 14px;*/
    /*border: 2px solid rgba(255, 255, 255, 0.82);*/
    /*box-shadow: var(--shadow-card);*/
    /*background: var(--color-burgundy);*/
}

.brand-text {
    max-width: 150px;
    /*font-size: 0.9rem;*/
    font-size: 1.3rem;
    line-height: 1.08;
}

.menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-line);
    border-radius: 15px;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 999px;
    transition: transform 160ms ease, opacity 160ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

body.nav-open .site-nav {
    display: flex;
}

.site-nav a {
    text-decoration: none;
    font-weight: 720;
    padding: 10px 12px;
    border-radius: 13px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(137, 42, 46, 0.08);
}

.nav-cta {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 0px;
    padding-top: 8px;
    border-top: 1px solid var(--color-line);
}

.language-switch a {
    display: inline-grid;
    width: 36px;
    height: 26px;
    place-items: center;
    padding: 4px;
    /*border: 1px solid var(--color-line);*/
    /*border-radius: 13px;*/
    /*background: var(--color-white);*/
    overflow: hidden;
    /*box-shadow: 0 8px 18px rgba(47, 26, 21, 0.06);*/
}

.language-switch a:hover,
.language-switch a:focus-visible {
    background: rgba(137, 42, 46, 0.08);
}

.language-switch a.active {
    /*background: var(--color-burgundy);*/
    /*border-color: var(--color-burgundy-dark);*/
    /*box-shadow: 0 0 0 3px rgba(137, 42, 46, 0.14), 0 8px 18px rgba(47, 26, 21, 0.08);*/
}

.language-switch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.section,
.hero,
.quickfacts {
    padding: 72px 0;
}

.section-soft {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(253, 218, 87, 0.42), transparent 24rem),
        radial-gradient(circle at 88% 20%, rgba(215, 225, 242, 0.70), transparent 26rem),
        linear-gradient(180deg, var(--color-paper), #fff8e8);
}

.section-soft::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    background: rgba(137, 42, 46, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-burgundy);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 850;
    font-size: 0.98rem;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 920px;
    color: var(--color-burgundy-dark);
    text-transform: uppercase;
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 10vw, 5.0rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    font-weight: 750;
} 

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 6vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

h3 {
    margin-bottom: 6px;
    font-size: 1.18rem;
    line-height: 1.15;
}

.hero-lead {
    max-width: 680px;
    font-size: clamp(1.1rem, 3.5vw, 1.42rem);
    color: rgba(47, 26, 21, 0.78);
}

.hero-actions,
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--color-burgundy);
    color: var(--color-white);
    box-shadow: 0 14px 28px rgba(137, 42, 46, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--color-burgundy-dark);
}

.button-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1px solid var(--color-line);
}

.hero-note,
.privacy-note {
    color: rgba(47, 26, 21, 0.66);
    font-size: 0.86rem;
    padding: 10px;
}

.hero-card {
    justify-self: center;
    width: min(100%, 360px);
}

.poster-stack {
    position: relative;
    isolation: isolate;
}

.poster-stack::before,
.poster-stack::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: var(--radius-lg);
    transform: rotate(-7deg);
    background: var(--color-yellow);
    z-index: -2;
}

.poster-stack::after {
    transform: rotate(6deg);
    background: var(--color-blue);
    z-index: -1;
}

.poster-stack img,
.flyer-open img,
.flyer-preview img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 8px solid var(--color-white);
}

.youth-scene {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    width: min(100%, 320px);
    min-height: 122px;
    margin: -12px auto 0;
    padding: 24px 18px 18px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    opacity: 0.82;
    pointer-events: none;
}

.youth-scene::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 13px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(253, 218, 87, 0.38), rgba(222, 245, 245, 0.60), rgba(215, 225, 242, 0.48));
    filter: blur(0.2px);
}

.youth-scene::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 18px;
    width: 72px;
    height: 58px;
    border-radius: 26px 26px 10px 10px;
    border: 3px solid rgba(137, 42, 46, 0.13);
    border-bottom: 0;
    transform: rotate(5deg);
}

.youth-figure {
    --figure-color: rgba(47, 26, 21, 0.60);
    --figure-height: 72px;
    position: relative;
    width: 34px;
    height: var(--figure-height);
    z-index: 1;
    flex: 0 0 auto;
    border-radius: 17px 17px 13px 13px;
    background: linear-gradient(180deg, rgba(47, 26, 21, 0.18), var(--figure-color));
    box-shadow: 0 10px 24px rgba(47, 26, 21, 0.10);
}

.youth-figure::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -24px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--figure-color);
    transform: translateX(-50%);
    box-shadow: inset 0 -5px 0 rgba(255, 255, 255, 0.08);
}

.youth-figure::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 46px;
    height: 20px;
    border-radius: 999px;
    background: rgba(47, 26, 21, 0.10);
    transform: translateX(-50%);
}

.youth-figure-small {
    --figure-height: 54px;
    --figure-color: rgba(137, 42, 46, 0.50);
    width: 27px;
    transform: translateY(5px) rotate(-3deg);
}

.youth-figure-small::before {
    width: 22px;
    height: 22px;
    top: -20px;
}

.youth-figure-tall {
    --figure-height: 86px;
    --figure-color: rgba(85, 86, 70, 0.56);
    width: 38px;
    transform: rotate(2deg);
}

.youth-figure-child {
    --figure-height: 48px;
    --figure-color: rgba(146, 119, 102, 0.54);
    width: 26px;
    transform: translateY(10px) rotate(4deg);
}

.youth-figure-child::before {
    width: 21px;
    height: 21px;
    top: -19px;
}

.youth-figure-teen {
    --figure-height: 76px;
    --figure-color: rgba(100, 29, 34, 0.46);
    width: 34px;
    transform: translateY(2px) rotate(-2deg);
}

.quickfacts {
    padding-top: 34px;
    padding-bottom: 32px;
    background: var(--color-paper);
}

.quickfacts-grid {
    display: grid;
    gap: 16px;
}

.quick-card,
.quote-card,
.form-card,
.contact-box,
.timeline-item {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.quick-card {
    padding: 22px;
}

.quick-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-burgundy);
    font-weight: 900;
}

.quick-card h2 {
    font-size: 1.4rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.quick-card p,
.section-copy p,
.section-head p,
.timeline-item p,
.contact-panel p,
.apply-info p,
.apply-panel p {
    color: rgba(47, 26, 21, 0.72);
}

.split-grid,
.flyer-grid,
.apply-layout {
    display: grid;
    gap: 28px;
}

.section-tint {
    background:
        radial-gradient(circle at left top, rgba(253, 218, 87, 0.28), transparent 30rem),
        linear-gradient(180deg, #fff8e8, var(--color-cream));
}

.section-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.quote-card {
    padding: clamp(26px, 7vw, 36px);
    align-self: center;
    background: var(--color-dark);
    color: var(--color-yellow);
    font-size: clamp(1.45rem, 4.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-grid span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    font-weight: 820;
    box-shadow: 0 8px 22px rgba(47, 26, 21, 0.06);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
}

.timeline-item > span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: var(--color-blue);
    color: var(--color-dark);
    font-weight: 900;
}

.flyer-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(222, 245, 245, 0.8), transparent 24rem),
        var(--color-paper);
}

.flyer-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.flyer-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(137, 42, 46, 0.16);
    transition: transform 150ms ease, filter 150ms ease;
}

.flyer-open:hover,
.flyer-open:focus-visible {
    transform: translateY(-2px) scale(1.01);
    filter: saturate(1.04);
    outline: none;
}

.flyer-open:focus-visible img {
    box-shadow: 0 0 0 5px rgba(137, 42, 46, 0.18), var(--shadow-soft);
}

.flyer-open:nth-child(2) {
    margin-top: 32px;
}

.apply-section {
    scroll-margin-top: var(--header-height);
}

.apply-info,
.contact-panel,
.apply-panel {
    min-width: 0;
}

.contact-box {
    padding: 18px;
    margin-top: 20px;
}

.contact-box h3,
.contact-box p {
    margin-bottom: 4px;
}

.contact-links a,
.contact-links span {
    display: inline-flex;
    padding: 10px 12px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 760;
}

.contact-links-stacked {
    align-items: flex-start;
}

.contact-links-stacked a,
.contact-links-stacked span {
    word-break: break-word;
}

.privacy-check {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(137, 42, 46, 0.20);
    border-radius: 16px;
    background: rgba(253, 218, 87, 0.14);
    color: rgba(47, 26, 21, 0.82);
    font-size: 0.95rem;
    line-height: 1.35;
    cursor: pointer;
}

.privacy-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.privacy-box {
    position: relative;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-burgundy);
    border-radius: 9px;
    background: var(--color-white);
    box-shadow: inset 0 0 0 3px var(--color-white), 0 6px 14px rgba(47, 26, 21, 0.10);
    transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.privacy-box::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 8px;
    height: 14px;
    border: solid var(--color-white);
    border-width: 0 3px 3px 0;
    opacity: 0;
    transform: rotate(45deg) scale(0.75);
    transition: opacity 150ms ease, transform 150ms ease;
}

.privacy-input:checked + .privacy-box {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy-dark);
    box-shadow: inset 0 0 0 3px var(--color-burgundy), 0 8px 18px rgba(137, 42, 46, 0.22);
}

.privacy-input:checked + .privacy-box::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.privacy-input:focus-visible + .privacy-box {
    box-shadow: 0 0 0 4px rgba(137, 42, 46, 0.14), 0 8px 18px rgba(137, 42, 46, 0.18);
}

.privacy-check:hover .privacy-box {
    transform: translateY(-1px);
}

.radio-field {
    margin: 0;
    padding: 0;
    border: 0;
}

.radio-field legend {
    margin-bottom: 7px;
    padding: 0;
    font-weight: 820;
}

.radio-grid {
    display: grid;
    gap: 10px;
}

.choice-card {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 13px 14px;
    border: 1px solid rgba(47, 26, 21, 0.18);
    border-radius: 17px;
    background: var(--color-white);
    color: rgba(47, 26, 21, 0.86);
    font-weight: 820;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(47, 26, 21, 0.05);
    transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.choice-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.choice-dot {
    position: relative;
    width: 26px;
    height: 26px;
    border: 2px solid var(--color-burgundy);
    border-radius: 999px;
    background: var(--color-white);
    box-shadow: inset 0 0 0 5px var(--color-white), 0 6px 14px rgba(47, 26, 21, 0.10);
    transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.choice-input:checked + .choice-dot {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy-dark);
    box-shadow: inset 0 0 0 5px var(--color-white), 0 8px 18px rgba(137, 42, 46, 0.22);
}

.choice-input:checked ~ span:last-child {
    color: var(--color-burgundy-dark);
}

.choice-input:focus-visible + .choice-dot {
    box-shadow: 0 0 0 4px rgba(137, 42, 46, 0.14), inset 0 0 0 5px var(--color-white), 0 8px 18px rgba(137, 42, 46, 0.18);
}

.choice-card:hover {
    transform: translateY(-1px);
    border-color: rgba(137, 42, 46, 0.34);
    background: rgba(253, 218, 87, 0.10);
}

.choice-card:has(.choice-input:checked) {
    border-color: rgba(137, 42, 46, 0.52);
    background: rgba(253, 218, 87, 0.18);
}

.custom-select-field {
    position: relative;
}

.custom-select {
    position: relative;
}

.custom-select-button {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 44px 12px 13px;
    border: 1px solid rgba(47, 26, 21, 0.22);
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(47, 26, 21, 0.04);
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.custom-select-button:hover,
.custom-select-button:focus-visible,
.custom-select.is-open .custom-select-button {
    border-color: var(--color-burgundy);
    background: #fffaf0;
    box-shadow: 0 0 0 4px rgba(137, 42, 46, 0.10), 0 8px 18px rgba(47, 26, 21, 0.06);
    outline: none;
}

.custom-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--color-burgundy);
    border-bottom: 3px solid var(--color-burgundy);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 150ms ease;
    pointer-events: none;
}

.custom-select.is-open .custom-select-arrow {
    transform: translateY(-25%) rotate(-135deg);
}

.custom-select-options {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 40;
    max-height: min(320px, 52dvh);
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(137, 42, 46, 0.24);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    -webkit-overflow-scrolling: touch;
}

.custom-select-option {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(47, 26, 21, 0.86);
    text-align: left;
    font-weight: 780;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
    background: rgba(253, 218, 87, 0.20);
    outline: none;
}

.custom-select-option.is-selected {
    background: rgba(137, 42, 46, 0.10);
    color: var(--color-burgundy-dark);
}

body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(47, 26, 21, 0.64);
    backdrop-filter: blur(7px);
}

.modal-dialog {
    position: relative;
    width: min(100%, 760px);
    max-height: calc(100dvh - 32px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius-lg);
    background: var(--color-paper);
    box-shadow: 0 28px 90px rgba(47, 26, 21, 0.38);
    transform: translateY(18px) scale(0.98);
    transition: transform 180ms ease;
}

.modal.is-open .modal-dialog {
    transform: none;
}

.modal-content {
    padding: clamp(22px, 5vw, 38px);
}

.modal-content h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(137, 42, 46, 0.24);
}

.modal-close:hover,
.modal-close:focus-visible {
    background: var(--color-burgundy-dark);
}

.contact-modal-dialog .form-card {
    margin-top: 18px;
}

.flyer-modal {
    padding: 0;
}

.flyer-modal .modal-backdrop {
    background: rgba(47, 26, 21, 0.78);
}

.flyer-modal-dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: none;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(255, 253, 247, 0.98);
}

.flyer-modal-content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 12px;
}

.flyer-toolbar {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-right: 56px;
}

.flyer-zoom-button {
    display: inline-grid;
    min-width: 48px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(137, 42, 46, 0.22);
    appearance: none;
    -webkit-appearance: none;
    touch-action: manipulation;
}

.flyer-zoom-button:hover,
.flyer-zoom-button:focus-visible {
    background: var(--color-burgundy-dark);
}

.flyer-zoom-reset {
    min-width: 74px;
    padding-inline: 14px;
}

.flyer-zoom-stage {
    min-height: 0;
    overflow: auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(47, 26, 21, 0.10);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-x pan-y;
}

.flyer-modal-image {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 14px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    transform-origin: top center;
    user-select: none;
    -webkit-user-drag: none;
}

.flyer-modal-image.is-zoomed {
    cursor: move;
}

.form-card {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding: 18px;
}

.form-card.highlighted {
    border-color: rgba(137, 42, 46, 0.28);
    background: linear-gradient(180deg, #ffffff, #fff7e4);
}

.field {
    display: grid;
    gap: 7px;
}

label {
    font-weight: 820;
}

label small,
.radio-field legend small {
    color: var(--color-burgundy);
    font-size: 0.78rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(47, 26, 21, 0.22);
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-dark);
    padding: 12px 13px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 4px rgba(137, 42, 46, 0.10);
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(47, 26, 21, 0.52);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-status {
    min-height: 1.5em;
    margin: 0;
    font-weight: 780;
}

.form-status.ok {
    color: #235c3a;
}

.form-status.error {
    color: var(--color-burgundy);
}

.site-footer {
    padding: 26px 0;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
    display: grid;
    gap: 8px;
}

.footer-inner p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .button:hover,
    .button:focus-visible,
    .flyer-open:hover,
    .flyer-open:focus-visible,
    .choice-card:hover,
    .privacy-check:hover .privacy-box {
        transform: none;
    }
}


@media (min-width: 760px) {
    .flyer-modal {
        padding: 16px;
    }

    .flyer-modal .modal-close {
        z-index: 20;
        pointer-events: auto;
    }

    .flyer-modal-dialog {
        width: min(calc(100dvw - 32px), 1180px);
        height: min(calc(100dvh - 32px), 920px);
        border: 1px solid rgba(255, 255, 255, 0.48);
        border-radius: var(--radius-lg);
    }

    .flyer-modal-content {
        padding: 18px;
    }

    .flyer-zoom-stage {
        border-radius: 22px;
    }

    .flyer-modal-image {
        width: auto;
        min-width: 0;
        max-width: none;
        max-height: none;
    }
}

@media (min-width: 760px) {
    .container {
        width: min(100% - 56px, var(--container));
    }

    .quickfacts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split-grid,
    .flyer-grid,
    .apply-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-card {
        padding: 24px;
    }
}

@media (min-width: 980px) {
    .menu-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .language-switch {
        padding-top: 0;
        padding-left: 8px;
        border-top: 0;
        border-left: 1px solid var(--color-line);
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-text {
        max-width: none;
        font-size: 0.98rem;
    }

    .hero-grid {
        grid-template-columns: 1.18fr 0.82fr;
    }

    .hero-card {
        width: min(100%, 420px);
    }

    .youth-scene {
        width: min(100%, 360px);
        margin-top: -4px;
    }

    .section,
    .hero {
        padding: 104px 0;
    }
}

/* ------------------------------------------------------------
   Freundlicher Redesign-Layer: kindliche/jugendliche Elemente
   ------------------------------------------------------------ */
:root {
    --color-rose: #f5d9d8;
    --color-rose-soft: #fff0ee;
    --color-green: #dcefe5;
    --color-sky-soft: #eef6ff;
    --color-sun-soft: #fff4c8;
}

body {
    background:
        radial-gradient(circle at 8% 8%, rgba(253, 218, 87, 0.12), transparent 18rem),
        radial-gradient(circle at 92% 18%, rgba(215, 225, 242, 0.22), transparent 21rem),
        linear-gradient(180deg, #fffdf7 0%, #fffaf0 42%, #fff6ee 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.33;
    background-image:
        radial-gradient(circle, rgba(137, 42, 46, 0.10) 1.2px, transparent 1.3px),
        radial-gradient(circle, rgba(253, 218, 87, 0.24) 1.4px, transparent 1.5px);
    background-size: 44px 44px, 68px 68px;
    background-position: 0 0, 18px 22px;
}

.site-header {
    background: rgba(255, 253, 247, 0.93);
    box-shadow: 0 10px 30px rgba(47, 26, 21, 0.06);
}

.site-nav a {
    font-size: 0.94rem;
    letter-spacing: 0.005em;
}

.nav-cta,
.site-nav a[data-modal-open] {
    border-radius: 999px;
}

.site-nav a[data-modal-open] {
    background: var(--color-burgundy);
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(137, 42, 46, 0.16);
}

.site-nav a[data-modal-open]:hover,
.site-nav a[data-modal-open]:focus-visible {
    background: var(--color-burgundy-dark);
}

.nav-cta {
    background: rgba(253, 218, 87, 0.34);
    color: var(--color-burgundy-dark);
    border: 1px solid rgba(137, 42, 46, 0.15);
}

.language-switch a {
    border-radius: 999px;
}

.language-switch a.active {
    box-shadow: 0 0 0 3px rgba(253, 218, 87, 0.55);
}

.section,
.hero,
.quickfacts,
.site-footer {
    position: relative;
}

.section-soft {
    min-height: auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(253, 218, 87, 0.30), transparent 22rem),
        radial-gradient(circle at 85% 8%, rgba(215, 225, 242, 0.78), transparent 26rem),
        linear-gradient(180deg, #fffdf7 0%, #fff7dc 100%);
}

.section-soft::before {
    content: "";
    position: absolute;
    left: -5vw;
    right: -5vw;
    bottom: -62px;
    height: 148px;
    z-index: 0;
    background: #fffdf7;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: rotate(-1deg);
    pointer-events: none;
}

.section-soft::after {
    width: 560px;
    height: 560px;
    right: -240px;
    bottom: -240px;
    background: rgba(253, 218, 87, 0.20);
}

.hero-grid {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content::before,
.hero-content::after,
.section-head-centered::before,
.section-head-centered::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-content::before {
    width: 54px;
    height: 54px;
    right: 12%;
    top: 6%;
    border: 3px solid rgba(253, 190, 0, 0.62);
    clip-path: polygon(50% 0, 58% 34%, 94% 20%, 66% 50%, 96% 76%, 60% 65%, 50% 100%, 40% 65%, 4% 76%, 34% 50%, 6% 20%, 42% 34%);
    opacity: 0.65;
}

.hero-content::after {
    width: 118px;
    height: 52px;
    left: -28px;
    bottom: -22px;
    border-bottom: 3px dashed rgba(253, 190, 0, 0.58);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.hero-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration-plane {
    width: 96px;
    height: 58px;
    left: min(62vw, 720px);
    top: 110px;
    opacity: 0.58;
    background:
        linear-gradient(135deg, transparent 47%, rgba(112, 154, 193, 0.74) 48% 52%, transparent 53%),
        linear-gradient(25deg, transparent 46%, rgba(112, 154, 193, 0.74) 47% 51%, transparent 52%);
    clip-path: polygon(0 34%, 100% 0, 63% 100%, 45% 58%);
}

.hero-decoration-plane::after {
    content: "";
    position: absolute;
    left: -86px;
    top: 40px;
    width: 92px;
    height: 34px;
    border-bottom: 2px dashed rgba(112, 154, 193, 0.50);
    border-radius: 50%;
}

.hero-decoration-stars {
    right: 4vw;
    top: 38%;
    width: 150px;
    height: 140px;
    opacity: 0.78;
    background:
        radial-gradient(circle at 14% 78%, rgba(253, 190, 0, 0.80) 0 4px, transparent 5px),
        radial-gradient(circle at 84% 18%, rgba(137, 42, 46, 0.20) 0 7px, transparent 8px),
        radial-gradient(circle at 64% 68%, rgba(112, 154, 193, 0.36) 0 6px, transparent 7px);
}

.hero-lead {
    max-width: 620px;
    padding: 20px;
}

.button-arrow::after {
    content: "→";
    margin-left: 12px;
    font-weight: 900;
}

.button-down::after {
    content: "↓";
    margin-left: 12px;
    font-weight: 900;
}

.hero-card {
    width: min(100%, 470px);
}

.poster-stack,
.youth-scene {
    display: none !important;
}

.hero-visual {
    position: relative;
    isolation: isolate;
    min-height: 390px;
    display: grid;
    align-items: center;
}

.hero-photo-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 38% 0 0 38% / 50% 0 0 50%;
    border: 10px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 28px 90px rgba(47, 26, 21, 0.18);
    background: var(--color-white);
}

.hero-photo-frame img {
    width: 100%;
    height: min(58vw, 420px);
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.hero-sun {
    position: absolute;
    left: 18%;
    bottom: 8%;
    z-index: 2;
    width: 92px;
    height: 92px;
    border: 8px solid rgba(253, 190, 0, 0.85);
    border-radius: 999px;
    box-shadow: 0 0 0 18px rgba(253, 218, 87, 0.20);
}

.hero-sun::before,
.hero-sun::after {
    content: "";
    position: absolute;
    inset: -28px;
    background: repeating-conic-gradient(from 0deg, rgba(253, 190, 0, 0.75) 0 5deg, transparent 5deg 24deg);
    border-radius: inherit;
    z-index: -1;
}

.hero-sun::after {
    inset: -44px;
    opacity: 0.26;
}

.hero-child-silhouettes {
    position: absolute;
    right: 10px;
    bottom: 5px;
    z-index: 3;
    width: 150px;
    height: 138px;
    pointer-events: none;
}

.silhouette {
    position: absolute;
    bottom: 0;
    width: 42px;
    height: 82px;
    border-radius: 26px 26px 12px 12px;
    background: rgba(255, 253, 247, 0.96);
    filter: drop-shadow(0 10px 22px rgba(47, 26, 21, 0.10));
}

.silhouette::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -32px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: inherit;
    transform: translateX(-50%);
}

.silhouette::after {
    content: "";
    position: absolute;
    width: 74px;
    height: 11px;
    left: -16px;
    top: 24px;
    border-radius: 999px;
    background: inherit;
    transform: rotate(-18deg);
}

.silhouette-a {
    right: 20px;
    height: 76px;
    transform: rotate(-4deg);
}

.silhouette-b {
    right: 72px;
    height: 56px;
    width: 34px;
    opacity: 0.92;
    transform: rotate(3deg) translateY(9px);
}

.silhouette-b::before {
    width: 30px;
    height: 30px;
    top: -25px;
}

.silhouette-b::after {
    width: 56px;
    left: -11px;
    top: 18px;
    transform: rotate(24deg);
}

.quickfacts {
    padding-top: 18px;
    background: transparent;
    z-index: 2;
}

.quickfacts-grid {
    padding: 16px;
    border: 1px solid rgba(47, 26, 21, 0.09);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 58px rgba(47, 26, 21, 0.10);
    backdrop-filter: blur(12px);
}

.quick-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 14px 12px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
}

.quick-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(47, 26, 21, 0.11);
}

.quick-icon {
    grid-row: 1 / span 2;
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--color-sun-soft);
}

.quick-icon::before,
.quick-icon::after {
    content: "";
    position: absolute;
}

.quick-icon-heart::before {
    width: 22px;
    height: 22px;
    border-left: 3px solid var(--color-burgundy);
    border-bottom: 3px solid var(--color-burgundy);
    transform: rotate(-45deg);
    border-radius: 0 0 0 9px;
}

.quick-icon-team {
    background: var(--color-green);
}

.quick-icon-team::before {
    width: 12px;
    height: 12px;
    top: 15px;
    left: 14px;
    border-radius: 50%;
    background: var(--color-olive);
    box-shadow: 13px 0 0 var(--color-olive), 26px 0 0 var(--color-olive);
}

.quick-icon-team::after {
    left: 11px;
    right: 11px;
    bottom: 15px;
    height: 12px;
    border: 3px solid var(--color-olive);
    border-top: 0;
    border-radius: 0 0 20px 20px;
}

.quick-icon-home {
    background: var(--color-blue);
}

.quick-icon-home::before {
    width: 24px;
    height: 19px;
    bottom: 13px;
    left: 15px;
    border: 3px solid var(--color-olive);
    border-top: 0;
}

.quick-icon-home::after {
    width: 28px;
    height: 28px;
    left: 13px;
    top: 16px;
    border-top: 3px solid var(--color-olive);
    border-left: 3px solid var(--color-olive);
    transform: rotate(45deg);
}

.quick-icon-star {
    background: var(--color-rose);
}

.quick-icon-star::before {
    width: 30px;
    height: 30px;
    background: var(--color-burgundy);
    clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

.quick-card h2 {
    margin-bottom: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quick-card p {
    grid-column: 2;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.35;
}

.story-section,
.jobs-section,
.day-section,
.flyer-section,
.apply-section {
    overflow: hidden;
}

.info-card,
.jobs-panel,
.apply-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(47, 26, 21, 0.10);
    border-radius: 26px;
    box-shadow: 0 18px 54px rgba(47, 26, 21, 0.08);
}

.info-card {
    padding: clamp(26px, 5vw, 48px);
    background:
        radial-gradient(circle at 8% 12%, rgba(253, 218, 87, 0.34), transparent 14rem),
        linear-gradient(135deg, #fffaf0, #ffffff);
}

.info-card-warm::after,
.jobs-panel::after,
.flyer-section::after,
.apply-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.info-card-warm::after {
    right: 28px;
    top: 24px;
    width: 42px;
    height: 42px;
    border: 3px solid rgba(253, 190, 0, 0.70);
    clip-path: polygon(50% 0, 62% 35%, 100% 35%, 68% 57%, 80% 98%, 50% 73%, 20% 98%, 32% 57%, 0 35%, 38% 35%);
}

.quote-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: grid;
    align-content: center;
    background:
        radial-gradient(circle at 100% 0, rgba(253, 218, 87, 0.22), transparent 16rem),
        linear-gradient(135deg, var(--color-dark), var(--color-burgundy-dark));
}

.quote-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -6px;
    width: 162px;
    height: 118px;
    opacity: 0.20;
    background:
        radial-gradient(circle at 20% 50%, var(--color-white) 0 17px, transparent 18px),
        radial-gradient(circle at 55% 28%, var(--color-white) 0 23px, transparent 24px),
        linear-gradient(var(--color-white), var(--color-white));
    background-size: 100% 100%, 100% 100%, 118px 52px;
    background-repeat: no-repeat;
    background-position: 0 0, 0 0, 34px 66px;
    border-radius: 60px;
}

.quote-doodle {
    position: absolute;
    left: 22px;
    top: 20px;
    width: 88px;
    height: 46px;
    border-top: 2px dashed rgba(253, 218, 87, 0.50);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.jobs-section {
    background:
        radial-gradient(circle at 88% 18%, rgba(222, 245, 245, 0.92), transparent 24rem),
        radial-gradient(circle at 18% 14%, rgba(253, 218, 87, 0.26), transparent 22rem),
        linear-gradient(180deg, #fff8e8, #fdf1cd);
}

.jobs-panel {
    padding: clamp(28px, 5vw, 52px);
    background:
        radial-gradient(circle at 88% 82%, rgba(90, 150, 120, 0.10), transparent 20rem),
        linear-gradient(135deg, #ffffff, #effaf7);
}

.jobs-panel .section-head {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.speech-doodle {
    position: absolute;
    right: clamp(22px, 6vw, 86px);
    top: 36px;
    width: 150px;
    height: 88px;
    border: 4px solid rgba(54, 128, 105, 0.38);
    border-radius: 42px;
    opacity: 0.9;
}

.speech-doodle::before {
    content: "";
    position: absolute;
    left: 36px;
    bottom: -18px;
    width: 28px;
    height: 26px;
    border-left: 4px solid rgba(54, 128, 105, 0.38);
    border-bottom: 4px solid rgba(54, 128, 105, 0.38);
    transform: rotate(-25deg);
    background: transparent;
}

.speech-doodle::after {
    content: "";
    position: absolute;
    left: 40px;
    top: 38px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(54, 128, 105, 0.38);
    box-shadow: 28px 0 0 rgba(54, 128, 105, 0.38), 56px 0 0 rgba(54, 128, 105, 0.38);
}

.soft-silhouette {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
}

.soft-silhouette-left {
    left: -16px;
    bottom: -16px;
    width: 170px;
    height: 150px;
    background:
        radial-gradient(circle at 32% 30%, var(--color-burgundy) 0 20px, transparent 21px),
        radial-gradient(circle at 65% 45%, var(--color-burgundy) 0 18px, transparent 19px),
        linear-gradient(var(--color-burgundy), var(--color-burgundy));
    background-size: 90px 90px, 90px 90px, 120px 58px;
    background-repeat: no-repeat;
    background-position: 4px 4px, 72px 22px, 24px 84px;
    border-radius: 50px;
}

.soft-silhouette-right {
    right: 24px;
    bottom: 10px;
    width: 240px;
    height: 120px;
    background:
        radial-gradient(circle at 16% 42%, #27644d 0 14px, transparent 15px),
        radial-gradient(circle at 39% 28%, #27644d 0 18px, transparent 19px),
        radial-gradient(circle at 62% 40%, #27644d 0 13px, transparent 14px),
        radial-gradient(circle at 84% 30%, #27644d 0 16px, transparent 17px),
        linear-gradient(#27644d, #27644d);
    background-size: 70px 70px, 80px 80px, 70px 70px, 78px 78px, 210px 42px;
    background-repeat: no-repeat;
    background-position: 0 18px, 48px 0, 104px 24px, 156px 8px, 8px 82px;
}

.tag-grid {
    position: relative;
    z-index: 1;
}

.tag-grid span {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(54, 128, 105, 0.18);
}

.tag-grid span::before {
    content: "✓";
    display: inline-grid;
    width: 20px;
    height: 20px;
    place-items: center;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(54, 128, 105, 0.14);
    color: #27644d;
    font-size: 0.78rem;
}

.section-head-centered {
    position: relative;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-head-centered::before,
.section-head-centered::after {
    top: 30px;
    width: 42px;
    height: 2px;
    background: var(--color-yellow);
}

.section-head-centered::before {
    left: max(0px, calc(50% - 160px));
    transform: rotate(15deg);
}

.section-head-centered::after {
    right: max(0px, calc(50% - 160px));
    transform: rotate(-15deg);
}

.day-section {
    background:
        radial-gradient(circle at 5% 28%, rgba(253, 218, 87, 0.18), transparent 17rem),
        radial-gradient(circle at 94% 74%, rgba(215, 225, 242, 0.42), transparent 16rem),
        var(--color-paper);
}

.day-section::before,
.day-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0.16;
}

.day-section::before {
    left: 0;
    bottom: 14%;
    width: 110px;
    height: 170px;
    background: var(--color-burgundy);
    clip-path: polygon(40% 0, 58% 0, 62% 22%, 78% 24%, 86% 32%, 72% 38%, 63% 32%, 61% 60%, 78% 100%, 61% 100%, 50% 72%, 38% 100%, 22% 100%, 39% 60%, 36% 34%, 20% 44%, 12% 36%, 32% 22%);
}

.day-section::after {
    right: 28px;
    top: 18%;
    width: 92px;
    height: 64px;
    border: 3px solid rgba(112, 154, 193, 0.76);
    clip-path: polygon(0 36%, 100% 0, 68% 100%, 48% 58%);
}

.timeline {
    position: relative;
    gap: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-left: 3px dotted rgba(137, 42, 46, 0.20);
}

.timeline-item {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border: 0;
    box-shadow: 0 14px 36px rgba(47, 26, 21, 0.08);
}

.timeline-item:nth-child(1) .timeline-number { background: var(--color-yellow); }
.timeline-item:nth-child(2) .timeline-number { background: #c8eadb; }
.timeline-item:nth-child(3) .timeline-number { background: var(--color-blue); }
.timeline-item:nth-child(4) .timeline-number { background: var(--color-rose); }

.timeline-number {
    color: var(--color-dark);
}

.flyer-section {
    background:
        radial-gradient(circle at 14% 20%, rgba(215, 225, 242, 0.42), transparent 19rem),
        radial-gradient(circle at 80% 70%, rgba(253, 218, 87, 0.30), transparent 20rem),
        linear-gradient(180deg, var(--color-paper), #fff7e6 92%);
}

.flyer-section::before {
    content: "";
    position: absolute;
    left: -6vw;
    right: -6vw;
    bottom: -56px;
    height: 150px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #fff1ef;
    background: transparent;
    transform: rotate(3deg);
    pointer-events: none;
}

.flyer-doodle-plane {
    position: absolute;
    right: 12vw;
    top: 26%;
    width: 92px;
    height: 62px;
    opacity: 0.58;
    clip-path: polygon(0 40%, 100% 0, 66% 100%, 48% 58%);
    background: linear-gradient(135deg, transparent 47%, rgba(253, 190, 0, 0.82) 48% 52%, transparent 53%);
}

.flyer-grid {
    position: relative;
    z-index: 1;
}

.flyer-grid .section-copy {
    grid-column: 1 / -1;
}

.flyer-preview {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 560px);
}

.flyer-open img {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.flyer-open:hover img,
.flyer-open:focus-visible img {
    transform: rotate(-1deg) translateY(-3px);
}

.flyer-open:nth-child(2):hover img,
.flyer-open:nth-child(2):focus-visible img {
    transform: rotate(1deg) translateY(-3px);
}

.apply-section {
    background: linear-gradient(180deg, #fff1ef, #fff7ee);
    padding-top: 58px;
}

.apply-shell {
    padding: clamp(22px, 4vw, 46px);
    background:
        radial-gradient(circle at 8% 18%, rgba(137, 42, 46, 0.07), transparent 16rem),
        radial-gradient(circle at 86% 82%, rgba(137, 42, 46, 0.08), transparent 15rem),
        linear-gradient(135deg, #fff4f2, #fffdf9);
}

.apply-shell::after {
    right: -12px;
    bottom: -10px;
    width: 178px;
    height: 144px;
    opacity: 0.18;
    background:
        radial-gradient(circle at 25% 40%, var(--color-burgundy) 0 20px, transparent 21px),
        radial-gradient(circle at 62% 24%, var(--color-burgundy) 0 24px, transparent 25px),
        linear-gradient(var(--color-burgundy), var(--color-burgundy));
    background-size: 92px 92px, 104px 104px, 140px 58px;
    background-repeat: no-repeat;
    background-position: 0 34px, 64px 0, 20px 92px;
}

.apply-hearts {
    position: absolute;
    left: 26px;
    top: 30px;
    width: 82px;
    height: 70px;
    pointer-events: none;
    opacity: 0.52;
}

.apply-hearts::before,
.apply-hearts::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-left: 3px solid var(--color-burgundy);
    border-bottom: 3px solid var(--color-burgundy);
    border-radius: 0 0 0 10px;
    transform: rotate(-45deg);
}

.apply-hearts::after {
    left: 42px;
    top: 14px;
    transform: rotate(-45deg) scale(1.35);
}

.apply-layout {
    position: relative;
    z-index: 1;
}

.apply-info .eyebrow,
.apply-info h2,
.apply-info > p,
.apply-info .contact-box,
.apply-info .contact-links {
    position: relative;
    z-index: 1;
}

.apply-info h2 {
    color: var(--color-burgundy-dark);
}

.apply-panel .form-card.highlighted {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(137, 42, 46, 0.14);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(47, 26, 21, 0.10);
}

.contact-box,
.contact-links a,
.contact-links span {
    background: rgba(255, 255, 255, 0.80);
}

.site-footer {
    overflow: hidden;
    padding: 68px 0 22px;
    background: linear-gradient(135deg, #8d222e, #5e141d);
    color: rgba(255, 255, 255, 0.90);
}

.footer-wave {
    position: absolute;
    left: -8vw;
    right: 16vw;
    top: -82px;
    height: 128px;
    background: #fffdf7;
    /*background: #fff7ee;*/
    /*background: #fff1ef;*/
    /*background: radial-gradient(circle at 12% 18%, rgba(253, 218, 87, 0.30), transparent 22rem), radial-gradient(circle at 85% 8%, rgba(215, 225, 242, 1), transparent 26rem), linear-gradient(180deg, #fff1ef 0%, #fff1ef 100%);*/
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: rotate(-2deg);
}

.site-footer::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 18px;
    width: 170px;
    height: 120px;
    opacity: 0.12;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(5% 100%, 5% 54%, 20% 54%, 20% 36%, 32% 36%, 32% 20%, 44% 20%, 44% 36%, 56% 36%, 56% 18%, 68% 18%, 68% 36%, 82% 36%, 82% 54%, 96% 54%, 96% 100%);
}

.footer-inner {
    position: relative;
    z-index: 1;
    gap: 28px;
}

.footer-brand {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.footer-brand strong,
.footer-column h2 {
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-column h2 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.footer-column p {
    margin-bottom: 5px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 759px) {
    h1 {
        font-size: clamp(2.25rem, 14vw, 4.2rem);
    }

    .section,
    .hero {
        padding: 64px 0;
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-photo-frame {
        border-radius: 32px;
    }

    .hero-photo-frame img {
        height: auto;
        max-height: 460px;
        object-fit: contain;
    }

    .hero-sun {
        width: 62px;
        height: 62px;
        border-width: 6px;
        left: 12px;
        bottom: 18px;
    }

    .hero-child-silhouettes {
        right: 2px;
        bottom: -8px;
        transform: scale(0.72);
        transform-origin: bottom right;
    }

    .quickfacts-grid {
        padding: 12px;
    }

    .quick-card {
        grid-template-columns: 48px 1fr;
    }

    .quick-card:not(:last-child)::after {
        left: 14px;
        right: 14px;
        top: auto;
        bottom: -8px;
        width: auto;
        height: 1px;
    }

    .quick-icon {
        width: 44px;
        height: 44px;
    }

    .speech-doodle,
    .soft-silhouette-right,
    .day-section::before,
    .day-section::after,
    .flyer-doodle-plane,
    .apply-shell::after,
    .site-footer::after {
        display: none;
    }

    .flyer-preview {
        width: min(100%, 410px);
    }

    .apply-shell {
        padding: 24px 16px;
    }
}

@media (min-width: 760px) {
    .quickfacts-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .story-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    }

    .timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .timeline::before {
        left: 10%;
        right: 10%;
        top: 20px;
        bottom: auto;
        width: auto;
        height: 3px;
        border-left: 0;
        border-top: 3px dotted rgba(137, 42, 46, 0.22);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding-top: 30px;
    }

    .timeline-number {
        transform: translateY(-12px);
    }

    .footer-inner {
        grid-template-columns: 1.2fr 1.2fr 1fr;
        align-items: start;
    }
}

@media (min-width: 980px) {
    .site-nav a {
        padding-inline: 14px;
    }

    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 54px;
    }

    .hero-card {
        width: min(100%, 520px);
    }

    .hero-photo-frame {
        margin-right: -40px;
    }

    .hero-photo-frame img {
        height: 480px;
    }

    .flyer-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------
   Delta-Fix 12.05.2026:
   - Sprachflaggen wieder wie im vorherigen Stand
   - Flyer auf Handy/Touch wieder als echte Vollbildansicht
   - Bewerbertag-Sektion weniger rosa
   ------------------------------------------------------------ */
.language-switch {
    gap: 0;
}

.language-switch a {
    width: 36px;
    height: 26px;
    padding: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.language-switch a:hover,
.language-switch a:focus-visible {
    background: rgba(137, 42, 46, 0.08);
}

.language-switch a.active {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.language-switch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.apply-section {
    background: linear-gradient(180deg, #fff8e8, #fffdf7);
}

.apply-shell {
    background:
        radial-gradient(circle at 8% 18%, rgba(253, 218, 87, 0.16), transparent 16rem),
        radial-gradient(circle at 88% 82%, rgba(215, 225, 242, 0.18), transparent 16rem),
        linear-gradient(135deg, #fffdf7, #ffffff);
}

.apply-shell::after {
    opacity: 0.10;
}

.apply-hearts {
    opacity: 0.34;
}

@media (max-width: 759px), (hover: none) and (pointer: coarse) {
    .flyer-modal {
        padding: 0;
        place-items: stretch;
    }

    .flyer-modal-dialog {
        width: 100dvw;
        height: 100dvh;
        max-width: none;
        max-height: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255, 253, 247, 0.98);
    }

    .flyer-modal-content {
        width: 100%;
        height: 100%;
        padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    }

    .flyer-toolbar {
        padding-right: 56px;
    }

    .flyer-zoom-stage {
        border-radius: 0;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: none;
    }

    .flyer-modal-image {
        width: 100%;
        min-width: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
    }
}

/* ------------------------------------------------------------
   Delta-Fix 12.05.2026:
   - eigenes Kinderschloss-Logo als SVG/PNG/Favicon eingebunden
   - Footer-Logo ohne Invert-Filter, damit es sichtbar bleibt
   ------------------------------------------------------------ */
.brand-logo {
    /*width: clamp(158px, 28vw, 214px);*/
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.footer-logo {
    width: min(100%, 218px);
    height: auto;
    filter: none;
    opacity: 1;
}

@media (min-width: 980px) {
    .brand-logo {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 52px;
        height: 52px;
    }
}
