/* EVENTS */
.events-hero {
    padding-bottom: 8px;
}

.events-hero__content {
    max-width: 760px;
}

    .events-hero__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 1.05;
        letter-spacing: -0.03em;
    }

.event-grid {
    align-items: stretch;
}

.event-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.10);
}

.event-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.event-card__meta {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
}

.event-card__body h3 {
    margin: 0;
    font-size: 1.2rem;
}

.event-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.event-card__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 10px;
}

    /* Force button to center perfectly */
    .event-card__actions .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.booking-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .booking-card__content h2 {
        margin: 0 0 14px;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.08;
    }

.booking-placeholder {
    min-height: 320px;
    border: 1px dashed rgba(18, 48, 31, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(127, 177, 141, 0.12), rgba(247, 199, 163, 0.12)), rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.booking-placeholder__inner {
    text-align: center;
    max-width: 420px;
}

    .booking-placeholder__inner h3 {
        margin: 0 0 12px;
    }

    .booking-placeholder__inner p {
        margin: 0 0 18px;
        color: var(--muted);
        line-height: 1.6;
    }

/* EVENT CAPTURE PAGE */
.event-capture-hero {
    padding-bottom: 8px;
}

.event-capture-shell {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 26px;
    align-items: stretch;
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(127, 177, 141, 0.08));
}

.event-capture-shell__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
}

    .event-capture-shell__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
        max-width: 12ch;
    }

.event-capture-points {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    max-width: 620px;
}

.event-capture-point {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
}

    .event-capture-point strong {
        display: block;
        margin-bottom: 6px;
        font-size: 0.98rem;
    }

    .event-capture-point p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
    }

.event-capture-shell__form {
    display: flex;
    align-items: stretch;
}

.event-capture-form-card {
    width: 100%;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

    .event-capture-form-card h2 {
        margin: 0 0 10px;
        font-size: clamp(1.7rem, 2.5vw, 2.25rem);
        line-height: 1.08;
    }

.event-capture-form-intro {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.event-form {
    display: grid;
    gap: 14px;
}

.event-form__field {
    display: grid;
    gap: 8px;
}

    .event-form__field label,
    .event-form__check {
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
    }

    .event-form__field input,
    .event-form__field select {
        width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: #fff;
        color: var(--text);
        font: inherit;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

        .event-form__field input::placeholder {
            color: var(--muted);
        }

        .event-form__field input:focus,
        .event-form__field select:focus {
            border-color: rgba(44, 107, 63, 0.45);
            box-shadow: 0 0 0 4px rgba(127, 177, 141, 0.18);
        }

.event-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 4px;
    font-weight: 600;
    color: var(--muted);
}

    .event-form__check input {
        margin-top: 2px;
    }

.event-form__actions {
    display: flex;
    padding-top: 4px;
}

.event-form__submit {
    width: 100%;
    min-height: 52px;
}

    .event-form__submit:disabled {
        opacity: 0.72;
        cursor: wait;
        transform: none;
    }

.event-form__helper {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.event-form__status {
    display: none;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 700;
    line-height: 1.5;
}

    .event-form__status.is-visible {
        display: block;
    }

    .event-form__status.is-loading {
        background: rgba(242, 227, 160, 0.30);
    }

    .event-form__status.is-success {
        background: rgba(127, 177, 141, 0.20);
        color: var(--brand);
    }

    .event-form__status.is-error {
        background: rgba(247, 199, 163, 0.25);
        color: #8a3b1c;
    }

.event-capture-image-band {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 280px;
}

.event-capture-image-band__img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

.event-capture-image-band__overlay {
    position: absolute;
    inset: auto 20px 20px 20px;
    max-width: 540px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(251, 247, 239, 0.88);
    border: 1px solid rgba(18, 48, 31, 0.10);
    backdrop-filter: blur(10px);
}

    .event-capture-image-band__overlay h3 {
        margin: 0;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        line-height: 1.15;
    }

@media (max-width: 980px) {
    .event-capture-shell {
        grid-template-columns: 1fr;
    }

    .event-capture-shell__content h1 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .event-capture-shell {
        padding: 16px;
        gap: 18px;
    }

    .event-capture-form-card {
        padding: 18px;
    }

    .event-capture-image-band__overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 16px;
    }
}

/* EVENTS RESPONSIVE FROM ORIGINAL GLOBAL BLOCK */

@media (max-width: 920px) {
    .booking-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .event-card__actions {
        justify-content: center;
    }

    .booking-placeholder {
        min-height: 240px;
    }
}
