:root {
    --birthday-bg: #fffaf2;
    --birthday-surface: #ffffff;
    --birthday-surface-soft: #fff4de;
    --birthday-text: #111111;
    --birthday-muted: #5b6470;
    --birthday-primary: #ff7a18;
    --birthday-primary-soft: #ffb347;
    --birthday-dark: #090909;
    --birthday-border: #eadfce;
    --birthday-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--birthday-text);
    background:
        radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.14), transparent 26%),
        var(--birthday-bg);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.birthday-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(9, 9, 9, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.birthday-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 84px;
}

.birthday-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.birthday-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.birthday-brand span {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
}

.birthday-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.birthday-hero {
    position: relative;
    min-height: 78vh;
    background:
        linear-gradient(110deg, rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.38)),
        url("../images/highlight/block-2.jpg") center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.birthday-hero-backdrop {
    position: absolute;
    inset: auto -120px -120px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.32), rgba(255, 179, 71, 0));
}

.birthday-hero-content {
    position: relative;
    z-index: 1;
    padding: 110px 0 90px;
}

.birthday-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffe5bc;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.birthday-hero h1,
.birthday-section-head h2,
.birthday-video-card h2,
.birthday-practical-card h2,
.birthday-form-intro h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.birthday-hero-text,
.birthday-section-head p,
.birthday-video-card p,
.birthday-form-intro p,
.birthday-practical-card p,
.birthday-faq-list p,
.birthday-footer p {
    color: var(--birthday-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.birthday-hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    margin: 22px 0 0;
}

.birthday-hero-actions,
.birthday-form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* of center indien gewenst */
    margin-top: 10px;
    gap: 10px;
}

.birthday-primary-btn,
.birthday-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.birthday-primary-btn {
    background: linear-gradient(135deg, var(--birthday-primary), var(--birthday-primary-soft));
    color: #fff;
    box-shadow: 0 16px 36px rgba(255, 122, 24, 0.28);
}

.birthday-primary-btn.is-disabled,
.birthday-primary-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    filter: grayscale(0.08);
}

.birthday-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.birthday-primary-btn:hover,
.birthday-secondary-btn:hover,
.birthday-back-link:hover,
.store-badge:hover {
    transform: translateY(-2px);
}

.birthday-facts,
.birthday-story,
.birthday-media,
.birthday-menu,
.birthday-practical,
.birthday-faq,
.birthday-form-section {
    padding: 88px 0;
}

.birthday-fact-card,
.birthday-story-card,
.birthday-video-card,
.birthday-menu-card,
.birthday-practical-card,
.birthday-form,
.birthday-contact-box,
.birthday-faq-list details {
    background: var(--birthday-surface);
    border: 1px solid var(--birthday-border);
    border-radius: 28px;
    box-shadow: var(--birthday-shadow);
}

.birthday-fact-card {
    padding: 28px;
    height: 100%;
}

.birthday-fact-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--birthday-primary), var(--birthday-primary-soft));
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.birthday-fact-card h2,
.birthday-story-card h3,
.birthday-menu-card h3,
.birthday-contact-box h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 800;
}

.birthday-fact-card p,
.birthday-story-card p,
.birthday-menu-card p,
.birthday-contact-box p {
    margin: 0;
    color: var(--birthday-muted);
    line-height: 1.7;
}

.birthday-section-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.birthday-section-head h2 {
    color: var(--birthday-text);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.birthday-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.birthday-story-card {
    position: relative;
    padding: 30px;
}

.birthday-story-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: var(--birthday-dark);
    color: #fff;
    font-weight: 800;
}

.birthday-video-card {
    padding: 28px;
}

.birthday-video-card video {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-top: 18px;
    border-radius: 22px;
    object-fit: cover;
    background: #000;
}

.birthday-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.birthday-gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid var(--birthday-border);
    box-shadow: var(--birthday-shadow);
}

.birthday-menu-card {
    padding: 28px;
    height: 100%;
    background: linear-gradient(180deg, #fffefb 0%, #fff4de 100%);
}

.birthday-menu-price {
    margin: 0 0 12px;
    color: var(--birthday-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.birthday-footnote {
    margin: 22px 0 0;
    text-align: center;
    color: var(--birthday-muted);
}

.birthday-practical-card {
    padding: 30px;
    height: 100%;
}

.birthday-practical-card-dark {
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.birthday-practical-card-dark h2,
.birthday-practical-card-dark p,
.birthday-practical-card-dark li {
    color: #fff;
}

.birthday-check-list,
.birthday-policy-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.birthday-check-list li,
.birthday-policy-list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.7;
}

.birthday-check-list li::before,
.birthday-policy-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--birthday-primary);
    font-weight: 800;
}

.birthday-faq-list {
    display: grid;
    gap: 14px;
}

.birthday-faq-list details {
    padding: 0 24px;
    overflow: hidden;
}

.birthday-faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.birthday-faq-list summary::-webkit-details-marker {
    display: none;
}

.birthday-faq-list details p {
    margin: 0 0 24px;
}

.birthday-form-intro {
    max-width: 760px;
    margin: 0 0 34px;
}

.birthday-form-section .birthday-form-intro h2 {
    font-size: clamp(2.6rem, 4.2vw, 4.3rem);
    line-height: 1.02;
    max-width: none;
}

.birthday-form-section .birthday-form-intro p {
    max-width: 42rem;
}

.birthday-contact-box {
    max-width: 430px;
    padding: 18px 22px;
    margin-top: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fffefb 0%, #fff4de 100%);
}

.birthday-contact-box h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.birthday-contact-box p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
}

.birthday-contact-box p + p {
    margin-top: 6px;
}

.birthday-form {
    padding: 30px;
}

.birthday-form-note {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff1d8;
    color: #8f4f07;
    font-weight: 700;
}

.form-label {
    font-weight: 700;
    color: var(--birthday-text);
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #d9ccb8;
    padding: 12px 14px;
    box-shadow: none;
}

textarea.form-control {
    min-height: 140px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--birthday-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 24, 0.14);
}

.birthday-availability-feedback {
    display: none;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.birthday-availability-feedback.is-visible {
    display: block;
}

.birthday-availability-feedback.is-error {
    background: #fff0ef;
    border: 1px solid #f0bbb5;
    color: #a33426;
}

.birthday-form-response {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
}

.birthday-form-response.is-visible {
    display: block;
}

.birthday-form-response.is-success {
    background: #eefaf0;
    border: 1px solid #b9dfc1;
    color: #23663a;
}

.birthday-form-response.is-error {
    background: #fff0ef;
    border: 1px solid #f0bbb5;
    color: #a33426;
}

.birthday-form-actions p {
    width: 100%;
    margin: 0;
    color: var(--birthday-muted);
}

.birthday-footer {
    background: #090909;
    color: #fff;
    padding: 34px 0;
}

.birthday-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.birthday-footer h2 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 800;
}

.birthday-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.birthday-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .birthday-story-grid {
        grid-template-columns: 1fr;
    }

    .birthday-form-intro {
        margin-bottom: 28px;
    }

    .birthday-form-section .birthday-form-intro h2 {
        font-size: clamp(2.2rem, 6vw, 3.4rem);
    }

    .birthday-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .birthday-topbar-inner {
        min-height: 74px;
    }

    .birthday-brand span {
        display: none;
    }

    .birthday-hero-content,
    .birthday-facts,
    .birthday-story,
    .birthday-media,
    .birthday-menu,
    .birthday-practical,
    .birthday-faq,
    .birthday-form-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .birthday-gallery-grid {
        grid-template-columns: 1fr;
    }

    .birthday-gallery-grid img {
        height: 220px;
    }

    .birthday-form,
    .birthday-video-card,
    .birthday-practical-card,
    .birthday-story-card,
    .birthday-menu-card,
    .birthday-fact-card {
        padding: 22px;
        border-radius: 22px;
    }

    .birthday-back-link,
    .birthday-primary-btn,
    .birthday-secondary-btn {
        width: 100%;
    }
}
.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: orange;
    font-weight: 800;
}

.discount-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7ef, #fff2e6);
    border: 1px solid #ffd7b6;
}

.discount-note strong { color: #9a4d12; }

.birthday-submit-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.birthday-price-estimate {
    font-weight: 700;
    color: var(--birthday-dark);
    background: #fff7e6;
    border: 1px solid #ffd27a;
    padding: 10px 14px;
    border-radius: 12px;
}