/* ------------------------------------------------------------
   JUKUWE Übergangsseite
------------------------------------------------------------ */

/* Basis */
:root {
    --pink: #e90069;
    --yellow: #fcde02;
    --blue: #202946;
    --text: #4d4e50;
    --line: #e8e1d3;
    --bg: #fffdf7;
    --white: #ffffff;
    --max: 1120px;
    --radius: 18px;
    --headline-font: "Gill Sans", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 92% 0%, rgba(252, 222, 2, .28), transparent 30rem),
        radial-gradient(circle at 0% 88%, rgba(233, 0, 105, .07), transparent 28rem),
        var(--bg);
    line-height: 1.52;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* Layout */
.page,
.site-footer {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hero */
.hero {
    min-height: 500px;
    padding-top: 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 110px;
    align-items: start;
}

.kicker {
    margin: 0 0 18px;
    color: var(--pink);
    font-size: 1.0rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    margin-bottom: 14px;
    color: var(--blue);
    font-family: var(--headline-font);
    font-size: clamp(2.35rem, 4.8vw, 3.85rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 700;
}

.claim {
    margin-bottom: 26px;
    color: var(--pink);
    font-family: var(--headline-font);
    font-size: clamp(1.42rem, 2.55vw, 1.95rem);
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.intro {
    max-width: 610px;
    margin-bottom: 34px;
    color: var(--text);
    font-size: clamp(1.08rem, 1.45vw, 1.2rem);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 68px;
    padding: 18px 36px;
    border-radius: 999px;
    background: var(--pink);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 24px 42px rgba(233, 0, 105, .18);
}

.button:hover,
.button:focus-visible { background: #c9005b; }

.hero__logo { margin: 0; }
.hero__logo img { width: 145px; }

/* Angebote */
.offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 92px;
}

.offer-card {
    min-height: 306px;
    padding: 38px 28px 32px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--yellow);
    border-radius: var(--radius);
    background: rgba(255,255,255,.72);
}

.offer-card h2 {
    margin-bottom: 14px;
    color: var(--blue);
    font-family: var(--headline-font);
    font-size: 1.2rem;
    font-weight: 700;
}

.offer-card h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 14px;
    background: var(--pink);
}

.offer-card p {
    margin-bottom: 0;
    font-size: .95rem;
}

/* Kontakt */
.contact {
    margin-top: 74px;
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.contact .kicker { margin-bottom: 14px; }

.contact h2 {
    margin-bottom: 34px;
    color: var(--blue);
    font-family: var(--headline-font);
    font-size: clamp(1.35rem, 2.35vw, 2rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.contact-block {
    padding: 0 28px 34px 0;
    font-size: .9rem;
}

.contact-block + .contact-block {
    padding-left: 28px;
    border-left: 1px dotted var(--pink);
}

.contact-block h3 {
    margin-bottom: 14px;
    color: var(--pink);
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 700;
}

.contact-block p {
    margin-bottom: 17px;
    line-height: 1.42;
}

.contact-block p:last-child { margin-bottom: 0; }

.contact-block strong {
    color: var(--blue);
    font-weight: 800;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 5px;
    color: var(--blue);
    line-height: 1.35;
}

.contact-line img {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.contact-line a {
    color: var(--blue);
    text-decoration: none;
}

.contact-line a:hover,
.contact-line a:focus-visible {
    color: var(--pink);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 22px;
}

.social-links a {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.social-links a:hover img,
.social-links a:focus-visible img {
    opacity: .72;
}

/* Footer */
.site-footer {
    margin-top: 44px;
    padding-top: 26px;
    padding-bottom: 34px;
    border-top: 6px solid var(--yellow);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--text);
    font-size: .9rem;
}

.site-footer p { margin-bottom: 0; }

.site-footer nav {
    display: flex;
    gap: 24px;
}

.site-footer a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: var(--pink); }

/* Impressum-Seite */
.popup-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 36px 18px;
}

.popup-card {
    width: min(760px, 100%);
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--line);
    border-top: 6px solid var(--yellow);
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 30px 80px rgba(32,41,70,.08);
}

.popup-card h1 {
    margin-bottom: 26px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.popup-card h2 {
    margin: 26px 0 8px;
    color: var(--pink);
    font-size: 1.1rem;
}

.popup-card p { margin-bottom: 18px; }

.popup-card a {
    color: var(--pink);
    font-weight: 800;
    text-decoration: none;
}

.back-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--blue);
}

/* Tablet */
@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding-top: 56px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero__logo { order: -1; }
    .hero__logo img { width: 118px; }

    .offers,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .offer-card { min-height: auto; }

    .contact-block,
    .contact-block + .contact-block {
        padding: 24px 0;
        border-left: 0;
    }

    .contact-block + .contact-block {
        border-top: 1px dotted var(--pink);
    }
}

/* Smartphone */
@media (max-width: 620px) {
    .page,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero { padding-top: 38px; }

    h1 { font-size: clamp(2.15rem, 12vw, 3rem); }

    .intro { font-size: 1.04rem; }

    .button {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .offers { margin-top: 58px; }
    .contact { margin-top: 58px; }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer nav { flex-wrap: wrap; }
}
.contact-title-spacer {
    margin-top: 28px;
}
