.event-landing {
    --event-wine: #8b2635;
    --event-wine-dark: #5f1722;
    --event-teal: #087f8c;
    --event-green: #27894a;
    --event-yellow: #ffd22e;
    --event-cream: #fffaf0;
    --event-ink: #292c31;
    --event-line: #d8e8ee;
    color: var(--event-ink);
}

.event-landing h1,
.event-landing h2,
.event-landing h3 {
    letter-spacing: -0.025em;
}

.event-landing h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 830;
    line-height: 1.04;
}

.event-quick-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem 1.5rem;
    margin: -0.5rem 0 1.5rem;
    padding: 0.65rem 1rem;
    border: 1px solid var(--event-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
}

.event-quick-nav a {
    color: var(--event-ink);
    font-size: 0.88rem;
    font-weight: 730;
    text-decoration: none;
}

.event-quick-nav a:hover,
.event-quick-nav a:focus {
    color: var(--event-wine);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.event-hero {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 0.94fr) minmax(24rem, 1.06fr);
    min-height: 38rem;
    border-radius: 1.5rem;
    background: var(--event-cream);
    box-shadow: 0 22px 55px rgba(48, 50, 54, 0.13);
}

.event-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.event-hero-copy::before {
    position: absolute;
    top: 0;
    left: clamp(2rem, 5vw, 4.5rem);
    width: 8rem;
    height: 0.55rem;
    border-radius: 0 0 1rem 1rem;
    background: linear-gradient(90deg, var(--event-green) 0 32%, var(--event-teal) 32% 66%, var(--event-wine) 66%);
    content: "";
}

.event-kicker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.event-kicker {
    margin: 0 0 0.45rem;
    color: var(--event-wine);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-kicker-row .event-kicker {
    margin: 0;
}

.event-free-badge {
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    color: #1f2822;
    background: var(--event-yellow);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.event-hero h1 {
    max-width: 9ch;
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 900;
    line-height: 0.91;
}

.event-date-title {
    margin: 0.9rem 0 1.15rem;
    color: var(--event-wine);
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 820;
    line-height: 1.05;
}

.event-hero-lead {
    max-width: 34rem;
    margin-bottom: 1.6rem;
    color: #4e545a;
    font-size: 1.08rem;
    line-height: 1.62;
}

.event-hero-actions,
.event-closing-actions,
.event-archive-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.event-hero-actions .btn,
.event-closing-actions .btn,
.event-archive-actions .btn,
.event-cta-panel .btn {
    padding: 0.8rem 1.2rem;
}

.event-capacity-note {
    margin: 1rem 0 0;
    color: #686e73;
    font-size: 0.85rem;
    font-weight: 650;
}

.event-hero-media {
    position: relative;
    min-height: 100%;
    margin: 0;
    background: #222;
}

.event-hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 250, 240, 0.55), transparent 24%);
    content: "";
    pointer-events: none;
}

.event-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero-media figcaption {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 1rem;
    max-width: 18rem;
    padding: 0.65rem 0.8rem;
    border-radius: 0.65rem;
    color: #fff;
    background: rgba(30, 31, 34, 0.78);
    font-size: 0.76rem;
    line-height: 1.35;
    backdrop-filter: blur(8px);
}

.event-facts {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 1.25rem 0;
    border: 1px solid var(--event-line);
    border-radius: 1rem;
    background: #fff;
}

.event-fact {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-height: 8rem;
    justify-content: center;
    padding: 1.25rem 1.4rem;
    border-right: 1px solid var(--event-line);
}

.event-fact:last-child {
    border-right: 0;
}

.event-fact-label {
    color: #6e747a;
    font-size: 0.72rem;
    font-weight: 830;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-fact strong {
    font-size: 1.05rem;
    line-height: 1.25;
}

.event-fact span:last-child {
    color: #676d72;
    font-size: 0.85rem;
}

.event-fact-accent {
    background: var(--event-yellow);
}

.event-fact-accent .event-fact-label,
.event-fact-accent span:last-child {
    color: #3b3d32;
}

.welcome-callout {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 1.25rem 0 4.5rem;
    padding: 1.3rem 1.6rem;
    border-radius: 1rem;
    color: #fff;
    background: var(--event-wine);
}

.welcome-callout-mark {
    display: inline-flex;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--event-wine-dark);
    background: var(--event-yellow);
    font-size: 1.2rem;
    font-weight: 900;
}

.welcome-callout strong {
    font-size: 1.3rem;
}

.welcome-callout p {
    margin: 0.15rem 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.event-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--event-line);
}

.event-section-split,
.about-event {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 6vw, 6rem);
}

.event-section-heading {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.event-section-heading h2,
.event-section-heading p:last-child {
    margin-bottom: 0;
}

.event-section-heading p:last-child,
.about-event p {
    color: #5d646a;
    line-height: 1.7;
}

.event-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-check-list li {
    position: relative;
    min-height: 4.5rem;
    padding: 1rem 1rem 1rem 2.9rem;
    border: 1px solid var(--event-line);
    border-radius: 0.8rem;
    background: #fff;
    line-height: 1.4;
}

.event-check-list li::before {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--event-green);
    font-size: 0.72rem;
    font-weight: 900;
    content: "✓";
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.activity-card {
    position: relative;
    overflow: hidden;
    min-height: 12.5rem;
    padding: 1.45rem;
    border: 1px solid var(--event-line);
    border-radius: 1rem;
    background: #fff;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.activity-card:hover {
    box-shadow: 0 14px 34px rgba(48, 50, 54, 0.1);
    transform: translateY(-3px);
}

.activity-card > span {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--event-teal);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.activity-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.25rem;
    font-weight: 820;
}

.activity-card p {
    margin: 0;
    color: #62686e;
    font-size: 0.93rem;
    line-height: 1.55;
}

.activity-card:nth-child(2),
.activity-card:nth-child(5) {
    border-top: 4px solid var(--event-wine);
}

.activity-card:nth-child(3),
.activity-card:nth-child(6) {
    border-top: 4px solid var(--event-yellow);
}

.arrival-section {
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    background: #fff;
}

.arrival-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    counter-reset: arrival;
    list-style: none;
}

.arrival-steps li {
    position: relative;
    min-height: 8.4rem;
    padding: 3.1rem 1.2rem 1.2rem;
    border-radius: 1rem;
    color: #fff;
    background: var(--event-ink);
    counter-increment: arrival;
}

.arrival-steps li::before {
    position: absolute;
    top: 0.95rem;
    left: 1.2rem;
    color: var(--event-yellow);
    font-size: 1.2rem;
    font-weight: 900;
    content: "0" counter(arrival);
}

.arrival-steps span {
    font-weight: 720;
    line-height: 1.45;
}

.late-welcome {
    margin-top: 1rem;
    padding: 1.1rem 1.25rem;
    border-left: 5px solid var(--event-yellow);
    border-radius: 0.25rem 0.8rem 0.8rem 0.25rem;
    background: #fff6c8;
}

.event-schedule {
    overflow: hidden;
    max-width: 52rem;
    border: 1px solid var(--event-line);
    border-radius: 1rem;
    background: #fff;
}

.schedule-row {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    align-items: center;
    min-height: 6.2rem;
    border-bottom: 1px solid var(--event-line);
}

.schedule-row:last-child {
    border-bottom: 0;
}

.schedule-row time {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--event-wine);
    background: #fff4f5;
    font-size: 1.4rem;
    font-weight: 880;
}

.schedule-row > span {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.4rem;
}

.schedule-row small {
    color: #697076;
}

.schedule-row-highlight time {
    color: #25291f;
    background: var(--event-yellow);
}

.schedule-note {
    max-width: 52rem;
    margin: 1rem 0 0;
    color: #60676d;
    font-size: 0.9rem;
}

.practical-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
}

.practical-list {
    margin: 0;
}

.practical-list div {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--event-line);
}

.practical-list dt {
    color: #6a7076;
    font-size: 0.8rem;
    font-weight: 830;
    text-transform: uppercase;
}

.practical-list dd {
    margin: 0;
    font-weight: 680;
}

.event-map {
    overflow: hidden;
    align-self: start;
    border: 1px solid var(--event-line);
    border-radius: 1rem;
    background: #fff;
}

.event-map iframe {
    display: block;
    width: 100%;
    height: 27rem;
    border: 0;
}

.event-map a {
    display: block;
    padding: 1rem 1.2rem;
    font-weight: 780;
    text-decoration: none;
}

.event-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
    align-items: center;
    gap: 2rem;
    margin: 2rem 0 4.5rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 1.35rem;
    color: #fff;
    background: var(--event-wine);
    box-shadow: 0 20px 45px rgba(98, 24, 36, 0.2);
}

.event-cta-panel .event-kicker {
    color: var(--event-yellow);
}

.event-cta-panel h2 {
    margin-bottom: 0.9rem;
}

.event-cta-panel p:last-child {
    max-width: 45rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.event-cta-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    text-align: center;
}

.event-cta-action small {
    color: rgba(255, 255, 255, 0.72);
}

.about-event > div:last-child {
    padding-top: 1.5rem;
    font-size: 1.02rem;
}

.event-text-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 800;
    text-decoration: none;
}

.next-event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 4.5rem;
    padding: 1.5rem;
    border: 1px solid var(--event-line);
    border-radius: 1rem;
    background: #fff;
}

.next-event-date {
    display: flex;
    width: 5rem;
    height: 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    color: #2e3029;
    background: var(--event-yellow);
    line-height: 1;
}

.next-event-date span {
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.next-event-date strong {
    margin-top: 0.2rem;
    font-size: 2rem;
}

.next-event h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.next-event p {
    margin: 0;
    color: #60666c;
}

.collaborator-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.collaborator-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 6rem;
    padding: 1rem;
    border: 1px solid var(--event-line);
    border-radius: 0.9rem;
    color: var(--event-ink);
    background: #fff;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease;
}

.collaborator-card:hover,
.collaborator-card:focus {
    border-color: var(--event-wine);
    color: var(--event-ink);
    transform: translateY(-2px);
}

.collaborator-mark {
    display: inline-flex;
    flex: 0 0 3.3rem;
    width: 3.3rem;
    height: 3.3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    color: #fff;
    background: var(--event-wine);
    font-size: 0.82rem;
    font-weight: 900;
}

.collaborator-mark-yellow {
    color: #2b2e27;
    background: var(--event-yellow);
}

.collaborator-mark-green {
    background: var(--event-green);
}

.collaborator-card > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.2rem;
}

.collaborator-card small {
    color: #6c7278;
}

.event-closing {
    padding: 1rem 0 5.5rem;
    text-align: center;
}

.event-closing > p {
    max-width: 53rem;
    margin: 0 auto 1.5rem;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 790;
    line-height: 1.25;
}

.event-closing-actions {
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    z-index: 1050;
    right: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3.4rem;
    padding: 0.55rem 1rem 0.55rem 0.55rem;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #188b46;
    box-shadow: 0 12px 28px rgba(29, 63, 41, 0.28);
    text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    background: #117039;
    transform: translateY(-2px);
}

.whatsapp-float span {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #13713a;
    background: #fff;
    font-size: 0.68rem;
    font-weight: 900;
}

.whatsapp-float strong {
    font-size: 0.88rem;
}

.event-archive {
    max-width: 64rem;
    margin: 2rem auto 4rem;
    padding: clamp(2rem, 7vw, 5rem);
    border: 1px solid var(--event-line);
    border-top: 0.65rem solid var(--event-wine);
    border-radius: 1.3rem;
    background: #fff;
    box-shadow: 0 18px 45px rgba(48, 50, 54, 0.1);
}

.event-back-link {
    display: inline-block;
    margin-bottom: 3rem;
    color: #555d63;
    font-weight: 720;
    text-decoration: none;
}

.event-archive h1 {
    max-width: 12ch;
    margin-bottom: 1.25rem;
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 900;
    line-height: 0.94;
}

.event-archive-lead {
    max-width: 47rem;
    margin-bottom: 1.8rem;
    color: #555c62;
    font-size: 1.15rem;
    line-height: 1.7;
}

.archive-photo {
    margin: 3rem 0 0;
}

.archive-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border: 1px solid var(--event-line);
    border-radius: 1rem;
    object-fit: cover;
}

.archive-photo figcaption {
    margin-top: 0.7rem;
    color: #687076;
    font-size: 0.82rem;
    line-height: 1.5;
}

.archive-collaborators {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--event-line);
}

.archive-collaborators h2 {
    margin-bottom: 1.6rem;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

@media (max-width: 991.98px) {
    .event-hero {
        grid-template-columns: 1fr;
    }

    .event-hero-media {
        min-height: 27rem;
        order: -1;
    }

    .event-hero-media::after {
        background: linear-gradient(0deg, rgba(255, 250, 240, 0.38), transparent 25%);
    }

    .event-hero-copy::before {
        top: auto;
        bottom: 0;
    }

    .event-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-fact:nth-child(2) {
        border-right: 0;
    }

    .event-fact:nth-child(-n + 2) {
        border-bottom: 1px solid var(--event-line);
    }

    .event-section-split,
    .about-event,
    .practical-section {
        grid-template-columns: 1fr;
    }

    .activity-grid,
    .arrival-steps,
    .collaborator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-navbar .site-search {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .event-quick-nav {
        overflow-x: auto;
        justify-content: flex-start;
        margin-right: -0.75rem;
        margin-left: -0.75rem;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        white-space: nowrap;
    }

    .event-hero {
        margin-right: -0.75rem;
        margin-left: -0.75rem;
        border-radius: 0;
    }

    .event-hero-media {
        min-height: 22rem;
    }

    .event-hero-copy {
        padding: 2.2rem 1.4rem 2.5rem;
    }

    .event-hero-copy::before {
        left: 1.4rem;
    }

    .event-hero h1 {
        font-size: clamp(3.3rem, 15vw, 4.8rem);
    }

    .event-facts {
        grid-template-columns: 1fr;
    }

    .event-fact,
    .event-fact:nth-child(2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--event-line);
    }

    .event-fact:last-child {
        border-bottom: 0;
    }

    .welcome-callout {
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .event-section {
        padding: 3.2rem 0;
    }

    .event-check-list,
    .activity-grid,
    .arrival-steps,
    .collaborator-grid {
        grid-template-columns: 1fr;
    }

    .arrival-steps li {
        min-height: 6.8rem;
    }

    .event-map iframe {
        height: 21rem;
    }

    .next-event {
        grid-template-columns: auto 1fr;
    }

    .next-event .btn {
        grid-column: 1 / -1;
    }

    .whatsapp-float {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .event-archive {
        margin: 0 auto 2rem;
        padding: 2rem 1.3rem 2.5rem;
    }

    .event-back-link {
        margin-bottom: 2rem;
    }
}

@media (max-width: 479.98px) {
    .event-hero-actions,
    .event-closing-actions,
    .event-archive-actions {
        flex-direction: column;
    }

    .event-hero-actions .btn,
    .event-closing-actions .btn,
    .event-archive-actions .btn {
        width: 100%;
    }

    .schedule-row {
        grid-template-columns: 5.6rem 1fr;
    }

    .schedule-row time {
        font-size: 1.15rem;
    }

    .practical-list div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .whatsapp-float strong {
        display: none;
    }

    .whatsapp-float {
        padding-right: 0.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .activity-card,
    .collaborator-card,
    .whatsapp-float {
        transition: none;
    }
}
