.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-weight: 800;
}

.navbar__logo,
.site-footer__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.navbar__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 900;
}

.navbar__name {
    overflow: hidden;
    max-width: 320px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 650;
}

.navbar__nav a {
    transition: color var(--transition);
}

.navbar__nav a:hover {
    color: var(--color-primary);
}

.navbar__toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    cursor: pointer;
}

.navbar__toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--color-secondary);
}

body.is-carousel-dragging {
    cursor: grabbing;
    user-select: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition);
}

.button:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
}

.site-footer {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 48px 0 20px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 32px;
}

.site-footer__brand,
.site-footer__column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__bottom {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__column h2 {
    font-size: 1rem;
}

.site-footer__bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 860px) {
    .navbar__toggle {
        display: block;
    }

    .navbar__nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 18px;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
    }

    .navbar__nav.is-open {
        display: flex;
    }

    .navbar__nav a {
        padding: 12px 0;
    }

    .navbar__name {
        max-width: 210px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}
.empty-state {
    display: grid;
    min-height: 150px;
    place-items: center;
    padding: 28px;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-muted);
    background: var(--color-white);
}

.empty-state--dark {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
}

.empty-state--center {
    text-align: center;
}

.section-title--center {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}

.section-title--compact {
    margin-bottom: 18px;
}

.section-title--compact h2 {
    font-size: 1.28rem;
}

.home-hero {
    position: relative;
    min-height: min(720px, calc(100vh - var(--header-height)));
    overflow: hidden;
    background: var(--color-secondary);
    color: var(--color-white);
}

.home-hero__track,
.home-hero__slide {
    min-height: inherit;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    transition: opacity 420ms ease;
}

.home-hero__slide.is-active,
.home-hero__slide--fallback {
    position: relative;
    opacity: 1;
}

.home-hero__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__slide--fallback {
    background: radial-gradient(circle at 25% 20%, rgba(205, 53, 44, 0.42), transparent 34%), linear-gradient(135deg, var(--color-secondary), #2a0b10 58%, var(--color-primary));
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.18)), linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 44%);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    max-width: var(--container);
    gap: 16px;
    padding-block: 112px 78px;
}

.home-hero__content p {
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-hero__content h1 {
    max-width: 820px;
    font-size: clamp(2.45rem, 5.5vw, 5.4rem);
    line-height: 0.98;
}

.home-hero__content span {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.16rem;
}

body.is-carousel-dragging .home-hero__content {
    cursor: grabbing;
    user-select: none;
}

.button {
    width: fit-content;
    margin-top: 10px;
    box-shadow: 0 12px 28px rgba(205, 53, 44, 0.28);
}

.home-hero__dots {
    position: absolute;
    z-index: 2;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 42px;
    display: flex;
    gap: 10px;
}

.home-hero__dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.home-hero__dot.is-active {
    background: var(--color-primary);
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    min-height: 430px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.news-card__media {
    height: 220px;
    flex: 0 0 220px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.news-card h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.12rem;
    line-height: 1.2;
}

.news-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--color-muted);
    font-size: 0.94rem;
}

.news-card a {
    margin-top: auto;
    color: var(--color-primary);
    font-weight: 800;
}

.agenda-item {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    min-height: 188px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.agenda-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--color-primary);
}

.agenda-item:hover {
    transform: translateY(-3px);
    border-color: rgba(205, 53, 44, 0.28);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.11);
}

.agenda-item__date {
    display: grid;
    place-items: center;
    align-self: start;
    min-height: 74px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(205, 53, 44, 0.2);
}

.agenda-item__date strong {
    font-size: 1.78rem;
    line-height: 0.9;
}

.agenda-item__date span {
    font-size: 0.78rem;
    font-weight: 850;
}

.agenda-item__body {
    display: grid;
    align-content: start;
    gap: 10px;
}

.agenda-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.agenda-item__meta span {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 99px;
    background: rgba(205, 53, 44, 0.1);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.agenda-item h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.08rem;
    line-height: 1.16;
}

.agenda-item__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.agenda-item__detail span + span::before {
    content: "/";
    margin-right: 10px;
    color: var(--color-primary);
}

.agenda-item__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-muted);
    font-size: 0.88rem;
}

@media (max-width: 760px) {
    .agenda-item {
        grid-template-columns: 68px minmax(0, 1fr);
        min-height: 170px;
        padding: 18px;
    }

    .agenda-item__date {
        min-height: 68px;
    }

    .agenda-item__date strong {
        font-size: 1.55rem;
    }
}
.sport-card {
    position: relative;
    display: grid;
    align-items: end;
    flex: 0 0 220px;
    width: 220px;
    height: 330px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    scroll-snap-align: start;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.sport-card:hover {
    transform: scale(1.035);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.sport-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
    user-select: none;
    -webkit-user-drag: none;
}

.sport-card:hover img {
    transform: scale(1.08);
}

.sport-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 20%, rgba(0, 0, 0, 0.86) 100%);
}

.sport-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.sport-card__body > span {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.sport-card h3 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.42rem;
    line-height: 1.02;
}

.sport-card h3 strong {
    flex: 0 0 auto;
    color: var(--color-white);
    font-size: 1.7rem;
    line-height: 0.8;
}

.sport-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.button--secondary {
    background: var(--color-secondary);
}

@media (max-width: 760px) {
    .home-hero {
        min-height: 560px;
    }

    .home-hero__content {
        padding-block: 84px 64px;
    }

    .home-hero__dots {
        left: 24px;
        right: auto;
        bottom: 24px;
    }

    .news-card {
        min-height: 400px;
    }

    .news-card__media {
        height: 210px;
        flex-basis: 210px;
    }

    .sport-card {
        flex-basis: 190px;
        width: 190px;
        height: 290px;
    }

    .sport-card__body {
        padding: 15px;
    }

    .sport-card h3 {
        font-size: 1.18rem;
    }

}

.news-card__media [data-news-image-fallback] {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--color-white);
    font-size: 2rem;
}

/* Material Symbols + Agenda */
.material-symbols-rounded {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
}

.agenda-item {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 255px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.agenda-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), rgba(205, 53, 44, 0));
}

.agenda-item::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(205, 53, 44, 0.07);
    pointer-events: none;
}

.agenda-item:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 53, 44, 0.26);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.12);
}

.agenda-item__top {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.agenda-item__date {
    display: grid;
    place-items: center;
    min-height: 86px;
    padding: 9px 8px;
    border-radius: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 16px 32px rgba(205, 53, 44, 0.22);
    text-transform: uppercase;
}

.agenda-item__date .material-symbols-rounded {
    font-size: 1rem;
    opacity: 0.86;
}

.agenda-item__date strong {
    font-size: 2rem;
    line-height: 0.9;
}

.agenda-item__date small {
    font-size: 0.78rem;
    font-weight: 850;
}

.agenda-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 2px;
}

.agenda-item__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.055);
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.agenda-item__meta .material-symbols-rounded {
    color: var(--color-primary);
    font-size: 1rem;
}

.agenda-item__body {
    display: grid;
    align-content: end;
    gap: 12px;
    padding-top: 24px;
}

.agenda-item h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.28rem;
    line-height: 1.08;
}

.agenda-item__details {
    display: grid;
    gap: 7px;
}

.agenda-item__details p {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.agenda-item__details .material-symbols-rounded {
    flex: 0 0 auto;
    color: var(--color-primary);
    font-size: 1.12rem;
}

.agenda-item__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-muted);
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .agenda-item {
        min-height: 232px;
    }

    .agenda-item__top {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .agenda-item__date {
        min-height: 78px;
    }

    .agenda-item__date strong {
        font-size: 1.75rem;
    }
}

/* Agenda dark premium card override */
.agenda-item {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 320px;
    min-height: 310px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 0.94)),
        var(--color-white);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
    scroll-snap-align: start;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.agenda-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 74px;
    background: linear-gradient(135deg, #111111, #26070d 62%, var(--color-primary));
}

.agenda-item::after {
    content: "";
    position: absolute;
    right: -44px;
    top: -44px;
    width: 124px;
    height: 124px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.agenda-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.agenda-item__top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.agenda-item__date {
    display: grid;
    min-height: 92px;
    place-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(205, 53, 44, 0.28);
}

.agenda-item__date .material-symbols-rounded {
    font-size: 1rem;
    opacity: 0.88;
}

.agenda-item__date strong {
    font-size: 2.16rem;
    line-height: 0.88;
}

.agenda-item__date small {
    font-size: 0.78rem;
    font-weight: 900;
}

.agenda-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 4px;
}

.agenda-item__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.agenda-item__meta .material-symbols-rounded {
    color: var(--color-white);
    font-size: 1rem;
}

.agenda-item__body {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 12px;
    padding-top: 32px;
}

.agenda-item h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-secondary);
    font-size: 1.42rem;
    line-height: 1.05;
}

.agenda-item__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.agenda-item__details {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.agenda-item__details p {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--color-secondary);
    font-size: 0.92rem;
    font-weight: 760;
}

.agenda-item__details .material-symbols-rounded {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(205, 53, 44, 0.1);
    color: var(--color-primary);
    font-size: 1rem;
}

@media (max-width: 1080px) {
    .agenda-item {
        flex-basis: min(430px, 72vw);
    }
}

@media (max-width: 760px) {
    .agenda-item {
        flex-basis: 86vw;
        min-width: 280px;
        min-height: 300px;
        padding: 20px;
    }

    .agenda-item__top {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .agenda-item__date {
        min-height: 82px;
    }

    .agenda-item__date strong {
        font-size: 1.9rem;
    }
}

/* Agenda event card design-system refinement */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.agenda-item {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 min(420px, calc((100% - 36px) / 3));
    min-width: 320px;
    min-height: 332px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 26px;
    background: var(--color-white);
    color: var(--color-secondary);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.agenda-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    height: auto;
    background: var(--color-primary);
    opacity: 0.9;
}

.agenda-item::after {
    display: none;
}

.agenda-item:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 17, 17, 0.12);
    background: var(--color-white);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.13);
}

.agenda-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
    color: rgba(17, 17, 17, 0.52);
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: uppercase;
}

.agenda-item__meta span {
    display: inline;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-transform: inherit;
}

.agenda-item__meta span + span::before {
    content: "Â·";
    margin: 0 8px;
    color: rgba(17, 17, 17, 0.36);
}

.agenda-item__body {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 0;
}

.agenda-item h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-secondary);
    font-size: clamp(1.45rem, 2vw, 1.82rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.04;
}

.agenda-item__subtitle {
    display: -webkit-box;
    overflow: hidden;
    max-width: 92%;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(17, 17, 17, 0.58);
    font-size: 0.98rem;
    font-weight: 520;
    line-height: 1.45;
}

.agenda-item__details {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 13px;
    margin: auto 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.agenda-item__details div {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.agenda-item__details dt,
.agenda-item__details dd {
    margin: 0;
}

.agenda-item__details dt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.agenda-item__details dd {
    overflow: hidden;
    color: rgba(17, 17, 17, 0.74);
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda-item__details .material-symbols-rounded {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 1.2rem;
}

@media (max-width: 1080px) {
    .agenda-item {
        flex-basis: min(420px, 72vw);
    }
}

@media (max-width: 760px) {
    .agenda-item {
        flex-basis: 86vw;
        min-width: 280px;
        min-height: 306px;
        padding: 26px;
        border-radius: 22px;
    }

    .agenda-item__meta {
        margin-bottom: 22px;
        font-size: 0.72rem;
    }

    .agenda-item h3 {
        font-size: 1.38rem;
    }

    .agenda-item__subtitle {
        max-width: 100%;
        font-size: 0.94rem;
    }

    .agenda-item__details {
        gap: 11px;
        padding-top: 20px;
    }
}

/* Agenda compact event cards */
.agenda-item {
    flex: initial;
    min-width: 0;
    min-height: 356px;
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.agenda-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.agenda-item__meta {
    margin-bottom: 22px;
    font-size: 0.7rem;
}

.agenda-item__meta span + span::before {
    content: "/";
    margin: 0 7px;
}

.agenda-item h3 {
    font-size: clamp(1.22rem, 1.45vw, 1.5rem);
    line-height: 1.08;
}

.agenda-item__subtitle {
    max-width: 100%;
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
    line-height: 1.4;
}

.agenda-item__details {
    gap: 10px;
    padding-top: 18px;
}

.agenda-item__details div {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
}

.agenda-item__details dd {
    font-size: 0.88rem;
}

.agenda-item__details .material-symbols-rounded {
    width: 22px;
    height: 22px;
    font-size: 1.08rem;
}

.agenda-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 18px;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 820;
    line-height: 1;
    transition: gap 180ms ease, color 180ms ease;
}

.agenda-item__link .material-symbols-rounded {
    font-size: 1.05rem;
}

.agenda-item__link:hover {
    gap: 9px;
    color: var(--color-secondary);
}

@media (max-width: 760px) {
    .agenda-item {
        min-height: 318px;
        padding: 22px;
    }
}
/* Agenda contextual icon */
.agenda-item__context-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 1;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(205, 53, 44, 0.12);
    border-radius: 50%;
    background: rgba(205, 53, 44, 0.07);
    color: var(--color-primary);
    font-size: 1.2rem;
}

.agenda-item__context-icon + .agenda-item__meta {
    max-width: calc(100% - 48px);
}

@media (max-width: 760px) {
    .agenda-item__context-icon {
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        font-size: 1.12rem;
    }
}
/* Agenda V1 final compact card */
.agenda-item {
    min-height: 282px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.agenda-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}

.agenda-item__context-icon {
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
}

.agenda-item__context-icon + .agenda-item__meta {
    max-width: calc(100% - 42px);
}

.agenda-item__meta {
    min-height: 1.9em;
    margin-bottom: 14px;
    font-size: 0.66rem;
    line-height: 1.35;
}

.agenda-item__meta span + span::before {
    content: "/";
    margin: 0 6px;
}

.agenda-item__body {
    gap: 8px;
}

.agenda-item h3 {
    font-size: clamp(1.06rem, 1.1vw, 1.25rem);
    line-height: 1.12;
}

.agenda-item__subtitle {
    -webkit-line-clamp: 1;
    font-size: 0.82rem;
    line-height: 1.35;
}

.agenda-item__details {
    gap: 8px;
    padding-top: 14px;
}

.agenda-item__details div {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
}

.agenda-item__details dd {
    font-size: 0.82rem;
    line-height: 1.25;
}

.agenda-item__details .material-symbols-rounded {
    width: 20px;
    height: 20px;
    font-size: 1rem;
}

.agenda-item__link {
    margin-top: 14px;
    font-size: 0.82rem;
}

@media (max-width: 760px) {
    .agenda-item {
        min-height: 268px;
        padding: 18px;
    }
}
/* Agenda event date emphasis */
.agenda-item__date-block {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.agenda-item__date-block time {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 1;
    box-shadow: 0 10px 20px rgba(205, 53, 44, 0.18);
}

.agenda-item__date-block strong {
    font-size: 1.72rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.agenda-item__date-block span:not(.material-symbols-rounded) {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.agenda-item__date-block .agenda-item__context-icon {
    position: static;
    flex: 0 0 auto;
}

.agenda-item__context-icon + .agenda-item__meta {
    max-width: none;
}

.agenda-item__meta {
    min-height: 0;
    margin-bottom: 12px;
}

.agenda-item__details {
    margin-top: auto;
}

@media (max-width: 760px) {
    .agenda-item__date-block time {
        min-height: 40px;
    }

    .agenda-item__date-block strong {
        font-size: 1.55rem;
    }
}
/* Agenda V1 refined visual weight */
.agenda-item {
    padding: 20px;
    border-color: rgba(17, 17, 17, 0.07);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.agenda-item:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.1);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.11);
}

.agenda-item__date-block {
    margin-bottom: 16px;
}

.agenda-item__date-block time {
    gap: 8px;
    min-height: 40px;
    padding: 8px 11px;
    border: 1px solid rgba(205, 53, 44, 0.18);
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(205, 53, 44, 0.96), rgba(168, 12, 36, 0.96));
    box-shadow: 0 6px 14px rgba(205, 53, 44, 0.16);
}

.agenda-item__date-block strong {
    font-size: 1.62rem;
    font-weight: 720;
    letter-spacing: 0;
}

.agenda-item__date-block span:not(.material-symbols-rounded) {
    font-size: 0.68rem;
    font-weight: 680;
    letter-spacing: 0.08em;
}

.agenda-item__context-icon {
    width: 28px;
    height: 28px;
    border-color: rgba(205, 53, 44, 0.09);
    background: rgba(205, 53, 44, 0.045);
    color: rgba(205, 53, 44, 0.78);
    font-size: 0.98rem;
}

.agenda-item__meta {
    color: rgba(17, 17, 17, 0.48);
    font-size: 0.65rem;
    font-weight: 560;
    letter-spacing: 0.035em;
}

.agenda-item h3 {
    font-weight: 720;
    letter-spacing: 0;
}

.agenda-item__subtitle {
    color: rgba(17, 17, 17, 0.54);
    font-weight: 400;
}

.agenda-item__details {
    border-top-color: rgba(17, 17, 17, 0.065);
}

.agenda-item__details dt {
    color: rgba(205, 53, 44, 0.76);
}

.agenda-item__details dd {
    color: rgba(17, 17, 17, 0.66);
    font-weight: 500;
}

.agenda-item__details .material-symbols-rounded {
    font-size: 0.92rem;
}

.agenda-item__link {
    font-weight: 640;
}

@media (max-width: 760px) {
    .agenda-item {
        padding: 19px;
    }

    .agenda-item__date-block strong {
        font-size: 1.5rem;
    }
}
/* Agenda V1 final polish */
.agenda-item {
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.075);
}

.agenda-item:hover {
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.105);
}

.agenda-item__context-icon {
    border-color: rgba(205, 53, 44, 0.07);
    background: rgba(205, 53, 44, 0.035);
    color: rgba(205, 53, 44, 0.68);
}

.agenda-item__meta span + span::before {
    content: "\2022";
    margin: 0 7px;
    color: rgba(17, 17, 17, 0.28);
}

.agenda-item__details {
    gap: 11px;
    border-top-color: rgba(17, 17, 17, 0.045);
}

.agenda-item__details div {
    gap: 9px;
}
/* Agenda V1 closing polish */
.agenda-item::before {
    display: none;
}

.agenda-item {
    border-color: rgba(17, 17, 17, 0.075);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.agenda-item:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 17, 17, 0.13);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.agenda-item__date-block time {
    display: grid;
    min-width: 58px;
    min-height: 60px;
    place-items: center;
    gap: 3px;
    padding: 9px 12px 8px;
    border-color: rgba(205, 53, 44, 0.14);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(205, 53, 44, 0.95), rgba(178, 14, 40, 0.95));
    box-shadow: 0 8px 18px rgba(205, 53, 44, 0.14);
}

.agenda-item__date-block strong {
    font-size: 1.68rem;
    font-weight: 690;
    line-height: 0.92;
}

.agenda-item__date-block span:not(.material-symbols-rounded) {
    font-size: 0.64rem;
    font-weight: 620;
    letter-spacing: 0.12em;
    line-height: 1;
}

@media (max-width: 760px) {
    .agenda-item__date-block time {
        min-width: 54px;
        min-height: 56px;
    }

    .agenda-item__date-block strong {
        font-size: 1.52rem;
    }
}
/* News cards V1 premium polish */
.news-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 414px;
    border: 1px solid rgba(17, 17, 17, 0.075);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.065);
    cursor: pointer;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 17, 17, 0.11);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.105);
}

.news-card__media {
    height: 208px;
    flex: 0 0 208px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(205, 53, 44, 0.92));
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.news-card:hover .news-card__media img {
    transform: scale(1.035);
}

.news-card__body {
    gap: 13px;
    padding: 18px 18px 20px;
}

.news-card__meta {
    align-items: center;
    gap: 0;
    color: rgba(17, 17, 17, 0.48);
    font-size: 0.72rem;
    font-weight: 560;
    letter-spacing: 0.025em;
}

.news-card__meta span {
    color: rgba(205, 53, 44, 0.84);
}

.news-card__meta time::before {
    content: "\2022";
    margin: 0 9px;
    color: rgba(17, 17, 17, 0.28);
}

.news-card h3 {
    font-size: 1.16rem;
    font-weight: 720;
    line-height: 1.18;
}

.news-card p {
    -webkit-line-clamp: 2;
    color: rgba(17, 17, 17, 0.58);
    font-size: 0.93rem;
    line-height: 1.45;
}

.news-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 650;
    transition: gap 180ms ease, color 180ms ease;
}

.news-card a:hover {
    gap: 9px;
    color: var(--color-secondary);
}

.news-card a .material-symbols-rounded {
    font-size: 1rem;
}

@media (max-width: 760px) {
    .news-card {
        min-height: 392px;
    }

    .news-card__media {
        height: 194px;
        flex-basis: 194px;
    }
}
/* Agenda economic-calendar cards */
.agenda-item--calendar {
    display: flex;
    flex: 0 0 280px;
    width: 280px;
    height: 184px;
    min-width: 280px;
    min-height: 184px;
    padding: 16px;
    border: 1px solid rgba(17, 17, 17, 0.075);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
}

.agenda-item--calendar:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 17, 17, 0.13);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.agenda-item--calendar .agenda-item__topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.agenda-item--calendar .agenda-item__date-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
    line-height: 1;
}

.agenda-item--calendar .agenda-item__date-inline span {
    font-size: 1.05rem;
    font-weight: 720;
    letter-spacing: 0;
}

.agenda-item--calendar .agenda-item__date-inline small {
    color: rgba(17, 17, 17, 0.5);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.agenda-item--calendar .agenda-item__context-icon {
    position: static;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-color: rgba(205, 53, 44, 0.08);
    background: rgba(205, 53, 44, 0.04);
    color: rgba(205, 53, 44, 0.68);
    font-size: 1rem;
}

.agenda-item--calendar .agenda-item__body {
    gap: 7px;
}

.agenda-item--calendar h3 {
    font-size: 1.04rem;
    font-weight: 680;
    line-height: 1.18;
}

.agenda-item--calendar .agenda-item__meta {
    margin: 0;
    color: rgba(17, 17, 17, 0.48);
    font-size: 0.68rem;
    font-weight: 520;
    letter-spacing: 0.025em;
    line-height: 1.35;
}

.agenda-item--calendar .agenda-item__details {
    gap: 7px;
    margin-top: auto;
    padding-top: 12px;
    border-top-color: rgba(17, 17, 17, 0.045);
}

.agenda-item--calendar .agenda-item__details div {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 7px;
}

.agenda-item--calendar .agenda-item__details dd {
    font-size: 0.78rem;
    font-weight: 500;
}

.agenda-item--calendar .agenda-item__details .material-symbols-rounded {
    width: 18px;
    height: 18px;
    font-size: 0.88rem;
}

@media (max-width: 760px) {
    .agenda-item--calendar {
        flex-basis: 260px;
        width: 260px;
        min-width: 260px;
        height: 178px;
        min-height: 178px;
    }
}
/* Agenda horizontal premium balance */
.agenda-item--calendar {
    flex-basis: 306px;
    width: 306px;
    min-width: 306px;
    height: 216px;
    min-height: 216px;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.085);
}

.agenda-item--calendar:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.13);
}

.agenda-item--calendar .agenda-item__topline {
    margin-bottom: 16px;
}

.agenda-item--calendar .agenda-item__date-inline span {
    font-size: 1.12rem;
    font-weight: 680;
}

.agenda-item--calendar .agenda-item__date-inline small {
    font-size: 0.7rem;
    font-weight: 600;
}

.agenda-item--calendar .agenda-item__context-icon {
    width: 30px;
    height: 30px;
    font-size: 1.04rem;
}

.agenda-item--calendar .agenda-item__body {
    gap: 9px;
}

.agenda-item--calendar h3 {
    font-size: 1.12rem;
    line-height: 1.18;
}

.agenda-item--calendar .agenda-item__meta {
    font-size: 0.7rem;
    line-height: 1.35;
}

.agenda-item--calendar .agenda-item__details {
    gap: 9px;
    padding-top: 14px;
}

.agenda-item--calendar .agenda-item__details div {
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 8px;
}

.agenda-item--calendar .agenda-item__details dd {
    font-size: 0.82rem;
    line-height: 1.3;
}

.agenda-item--calendar .agenda-item__details .material-symbols-rounded {
    width: 19px;
    height: 19px;
    font-size: 0.94rem;
}

@media (max-width: 760px) {
    .agenda-item--calendar {
        flex-basis: 292px;
        width: 292px;
        min-width: 292px;
        height: 210px;
        min-height: 210px;
        padding: 17px;
    }
}
/* Home experience pass: news and agenda refinement */
.news-card {
    min-height: 372px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.055);
}

.news-card:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
}

.news-card__media {
    height: 184px;
    flex-basis: 184px;
}

.news-card__body {
    gap: 10px;
    padding: 15px 16px 17px;
}

.news-card__meta {
    font-size: 0.68rem;
}

.news-card h3 {
    font-size: 1.08rem;
    line-height: 1.2;
}

.news-card p {
    font-size: 0.88rem;
    line-height: 1.42;
}

.news-card a {
    font-size: 0.86rem;
}

.agenda-item--calendar {
    width: 300px;
    min-width: 300px;
    height: 208px;
    min-height: 208px;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.095);
}

.agenda-item--calendar .agenda-item__topline {
    align-items: start;
    margin-bottom: 18px;
}

.agenda-item--calendar .agenda-item__date-inline {
    display: grid;
    gap: 3px;
    align-items: start;
    color: var(--color-primary);
}

.agenda-item--calendar .agenda-item__date-inline span {
    font-size: 1.86rem;
    font-weight: 620;
    line-height: 0.9;
}

.agenda-item--calendar .agenda-item__date-inline small {
    color: rgba(17, 17, 17, 0.44);
    font-size: 0.66rem;
    font-weight: 620;
    letter-spacing: 0.16em;
}

.agenda-item--calendar h3 {
    font-size: 1.08rem;
    font-weight: 640;
}

.agenda-item--calendar .agenda-item__meta {
    color: rgba(17, 17, 17, 0.44);
    font-size: 0.67rem;
    font-weight: 480;
}

.agenda-item--calendar .agenda-item__details {
    padding-top: 13px;
}

@media (max-width: 760px) {
    .news-card {
        min-height: 360px;
    }

    .news-card__media {
        height: 176px;
        flex-basis: 176px;
    }

    .agenda-item--calendar {
        width: 286px;
        min-width: 286px;
        height: 204px;
        min-height: 204px;
    }
}
/* Agenda compact utility module */
.home-agenda-section--compact .agenda-item--calendar {
    width: 282px;
    min-width: 282px;
    height: 184px;
    min-height: 184px;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.home-agenda-section--compact .agenda-item--calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.115);
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__topline {
    margin-bottom: 12px;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__date-inline span {
    font-size: 1.42rem;
    font-weight: 620;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__date-inline small {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__context-icon {
    width: 27px;
    height: 27px;
    font-size: 0.96rem;
}

.home-agenda-section--compact .agenda-item--calendar h3 {
    font-size: 1rem;
    line-height: 1.17;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__meta {
    font-size: 0.65rem;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__details {
    gap: 6px;
    padding-top: 10px;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__details dd {
    font-size: 0.76rem;
}

@media (max-width: 760px) {
    .home-agenda-section--compact .agenda-item--calendar {
        width: 268px;
        min-width: 268px;
        height: 180px;
        min-height: 180px;
    }
}
/* Agenda compact module overflow fix */
.home-agenda-section--compact .agenda-item--calendar {
    height: 210px;
    min-height: 210px;
    padding: 16px;
    overflow: visible;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__body {
    gap: 7px;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__details {
    gap: 7px;
    padding-top: 12px;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__details div {
    align-items: start;
}

.home-agenda-section--compact .agenda-item--calendar .agenda-item__details dd {
    line-height: 1.28;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .home-agenda-section--compact .agenda-item--calendar {
        height: 206px;
        min-height: 206px;
    }
}
/* Agenda schedule strip redesign */
.agenda-event-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    flex: 0 0 328px;
    width: 328px;
    min-height: 168px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.13);
    scroll-snap-align: start;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.agenda-event-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--color-primary);
    opacity: 0.9;
}

.agenda-event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 74px rgba(0, 0, 0, 0.18);
}

.agenda-event-card__date {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 18px 12px 18px 15px;
    background: linear-gradient(180deg, rgba(205, 53, 44, 0.96), rgba(148, 10, 31, 0.96));
    color: var(--color-white);
    text-transform: uppercase;
}

.agenda-event-card__date strong {
    font-size: 2rem;
    font-weight: 640;
    line-height: 0.9;
}

.agenda-event-card__date span {
    font-size: 0.66rem;
    font-weight: 650;
    letter-spacing: 0.16em;
}

.agenda-event-card__content {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    min-width: 0;
    padding: 15px 15px 14px;
}

.agenda-event-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 26px;
    margin-bottom: 6px;
}

.agenda-event-card__meta {
    display: flex;
    min-width: 0;
    overflow: hidden;
    color: rgba(17, 17, 17, 0.5);
    font-size: 0.66rem;
    font-weight: 560;
    letter-spacing: 0.035em;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.agenda-event-card__meta span + span::before {
    content: "\2022";
    margin: 0 7px;
    color: rgba(17, 17, 17, 0.28);
}

.agenda-event-card__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(205, 53, 44, 0.09);
    border-radius: 50%;
    background: rgba(205, 53, 44, 0.045);
    color: rgba(205, 53, 44, 0.72);
    font-size: 0.95rem;
}

.agenda-event-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-secondary);
    font-size: 1.02rem;
    font-weight: 680;
    line-height: 1.16;
}

.agenda-event-card__subtitle {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: rgba(17, 17, 17, 0.54);
    font-size: 0.78rem;
    line-height: 1.35;
}

.agenda-event-card__details {
    display: grid;
    align-self: end;
    gap: 6px;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(17, 17, 17, 0.055);
}

.agenda-event-card__details div {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    min-width: 0;
}

.agenda-event-card__details dt,
.agenda-event-card__details dd {
    margin: 0;
}

.agenda-event-card__details dt {
    display: inline-flex;
    color: rgba(205, 53, 44, 0.74);
}

.agenda-event-card__details dd {
    overflow: hidden;
    color: rgba(17, 17, 17, 0.64);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda-event-card__details .material-symbols-rounded {
    width: 18px;
    height: 18px;
    font-size: 0.88rem;
}

@media (max-width: 760px) {
    .agenda-event-card {
        flex-basis: 304px;
        width: 304px;
        min-height: 166px;
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .agenda-event-card__date strong {
        font-size: 1.82rem;
    }
}
/* Agenda schedule strip on light surface */
.agenda-event-card {
    border-color: rgba(17, 17, 17, 0.07);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.065);
}

.agenda-event-card:hover {
    border-color: rgba(17, 17, 17, 0.11);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.1);
}

.agenda-event-card__date {
    background: linear-gradient(180deg, rgba(205, 53, 44, 0.95), rgba(168, 12, 36, 0.95));
}
/* Agenda product strip card fit */
.home-agenda-strip .agenda-event-card {
    flex-basis: 322px;
    width: 322px;
    min-height: 162px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
}

.home-agenda-strip .agenda-event-card:hover {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.11);
}

@media (max-width: 760px) {
    .home-agenda-strip .agenda-event-card {
        flex-basis: 300px;
        width: 300px;
    }
}
/* Digest agenda vertical events */
.agenda-side-event {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    overflow: hidden;
    min-height: 142px;
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.055);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.agenda-side-event:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.11);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.085);
}

.agenda-side-event__date {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: linear-gradient(180deg, rgba(205, 53, 44, 0.95), rgba(160, 11, 34, 0.95));
    color: var(--color-white);
    text-transform: uppercase;
}

.agenda-side-event__date strong {
    font-size: 1.62rem;
    font-weight: 640;
    line-height: 0.9;
}

.agenda-side-event__date span {
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.14em;
}

.agenda-side-event__content {
    display: grid;
    min-width: 0;
    padding: 12px;
}

.agenda-side-event__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.agenda-side-event__meta {
    display: flex;
    min-width: 0;
    overflow: hidden;
    color: rgba(17, 17, 17, 0.48);
    font-size: 0.62rem;
    font-weight: 560;
    letter-spacing: 0.035em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.agenda-side-event__meta span + span::before {
    content: "\2022";
    margin: 0 6px;
    color: rgba(17, 17, 17, 0.26);
}

.agenda-side-event__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(205, 53, 44, 0.045);
    color: rgba(205, 53, 44, 0.72);
    font-size: 0.88rem;
}

.agenda-side-event h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--color-secondary);
    font-size: 0.96rem;
    font-weight: 660;
    line-height: 1.18;
}

.agenda-side-event__details {
    display: grid;
    align-self: end;
    gap: 5px;
    margin: 9px 0 0;
    padding-top: 9px;
    border-top: 1px solid rgba(17, 17, 17, 0.055);
}

.agenda-side-event__details div {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    gap: 6px;
    min-width: 0;
}

.agenda-side-event__details dt,
.agenda-side-event__details dd {
    margin: 0;
}

.agenda-side-event__details dt {
    display: inline-flex;
    color: rgba(205, 53, 44, 0.72);
}

.agenda-side-event__details dd {
    overflow: hidden;
    color: rgba(17, 17, 17, 0.64);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda-side-event__details .material-symbols-rounded {
    width: 17px;
    height: 17px;
    font-size: 0.84rem;
}
/* Global premium action button */
.site-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.88rem;
    font-weight: 620;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.025);
    transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-action:hover {
    transform: translateY(-1px);
    border-color: rgba(205, 53, 44, 0.24);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.site-action__icon {
    font-size: 1rem;
    transition: transform 240ms ease;
}

.site-action:hover .site-action__icon {
    transform: translateX(2px);
}
/* Sponsors logo strip */
.sponsor-card {
    display: grid;
    flex: 0 0 auto;
    width: clamp(142px, 13vw, 188px);
    min-height: 72px;
    place-items: center;
    padding: 14px 24px;
    border: 1px solid rgba(17, 17, 17, 0.075);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.045);
    backdrop-filter: blur(10px);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.sponsor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(205, 53, 44, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.07);
}

.sponsor-card a {
    display: grid;
    width: 100%;
    min-height: 44px;
    place-items: center;
}

.sponsor-card img {
    display: block;
    width: 100%;
    max-width: 132px;
    max-height: 42px;
    object-fit: contain;
    filter: saturate(0.9) contrast(1.02);
}

.sponsor-card span {
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.15;
    text-align: center;
}

@media (max-width: 760px) {
    .sponsor-card {
        width: 136px;
        min-height: 66px;
        padding: 12px 18px;
        border-radius: 16px;
    }

    .sponsor-card img {
        max-width: 108px;
        max-height: 36px;
    }
}

.home-sponsors .sponsor-card {
    width: clamp(132px, 12vw, 178px);
    min-height: 62px;
    padding: 8px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.home-sponsors .sponsor-card:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.home-sponsors .sponsor-card a {
    min-height: 46px;
}

.home-sponsors .sponsor-card img {
    width: min(100%, 136px);
    height: 46px;
    max-width: none;
    max-height: none;
    object-position: center;
    opacity: 0.9;
    filter: saturate(0.82) contrast(1.04);
    transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.home-sponsors .sponsor-card:hover img {
    opacity: 1;
    filter: saturate(1) contrast(1.06);
    transform: translateY(-1px);
}

.home-sponsors .sponsor-card__fallback {
    color: rgba(17, 17, 17, 0.6);
    font-weight: 620;
    text-align: center;
}

@media (max-width: 760px) {
    .home-sponsors .sponsor-card {
        width: 124px;
        min-height: 56px;
        padding: 6px 10px;
    }

    .home-sponsors .sponsor-card img {
        width: min(100%, 108px);
        height: 36px;
    }
}

/* Noticias V1 public module */
.news-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.news-card:focus-visible {
    outline: 3px solid rgba(205, 53, 44, 0.28);
    outline-offset: 4px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 650;
    transition: gap 180ms ease, color 180ms ease;
}

.news-card:hover .news-card__link {
    gap: 9px;
    color: var(--color-secondary);
}

.news-card__link .material-symbols-rounded {
    font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .news-card,
    .news-card__media img,
    .news-card__link {
        transition: none;
    }
}

/* CSI global brand layer */
:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.site-header {
    border-bottom-color: color-mix(in srgb, var(--color-brand) 14%, transparent);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-brand) 70%, transparent), transparent);
    opacity: 0.75;
    pointer-events: none;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px var(--color-shadow-soft);
}

.navbar__mark {
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-strong));
    color: var(--color-text-on-brand);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--color-brand) 24%, transparent);
}

.navbar__nav a {
    position: relative;
    color: color-mix(in srgb, var(--color-text) 82%, transparent);
    transition: color 180ms var(--ease-out);
}

.navbar__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--color-brand);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.navbar__nav a:hover {
    color: var(--color-brand);
}

.navbar__nav a:hover::after,
.navbar__nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar__toggle {
    border-color: var(--color-brand-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

.button,
.site-action--primary {
    background: var(--color-brand);
    color: var(--color-text-on-brand);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--color-brand) 22%, transparent);
}

.button:hover,
.site-action--primary:hover {
    background: var(--color-brand-hover);
    color: var(--color-text-on-brand);
}

.site-action {
    min-height: 40px;
    padding: 0 15px;
    border-color: var(--color-brand-border);
    border-radius: var(--radius-pill);
    background: color-mix(in srgb, var(--color-surface) 88%, transparent);
    color: color-mix(in srgb, var(--color-text) 74%, var(--color-brand));
    box-shadow: 0 10px 28px var(--color-shadow-soft);
    transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-action:hover {
    border-color: color-mix(in srgb, var(--color-brand) 32%, transparent);
    background: var(--color-surface);
    color: var(--color-brand);
    box-shadow: 0 16px 38px var(--color-shadow-soft);
}

.site-action:active,
.button:active {
    transform: scale(0.98);
}

.site-action--on-dark {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-on-brand);
    box-shadow: none;
}

.site-action--on-dark:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-text-on-brand);
}

.card,
.news-card,
.sport-detail-card,
.staff-card,
.training-venue-card,
.agenda-item,
.agenda-item--calendar,
.sponsor-card {
    border-color: color-mix(in srgb, var(--color-text) 9%, transparent);
    box-shadow: 0 14px 42px var(--color-shadow-soft);
}

.news-card__media,
.news-related-card__media,
.featured-news-card__media {
    background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
}

.news-card__meta span,
.news-card__link,
.news-related-card__meta span,
.news-related-card small,
.material-symbols-rounded.is-brand,
.section-heading__eyebrow {
    color: var(--color-brand);
}

.agenda-event-card__date,
.agenda-item--calendar__date,
.schedule-event__date,
.training-block,
.sport-tab.is-active,
.area-pill.is-active,
.category-pill.is-active {
    border-color: color-mix(in srgb, var(--color-brand) 24%, transparent);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--color-brand) 26%, transparent), transparent 34%),
        linear-gradient(135deg, var(--color-brand-deep), var(--color-brand-dark) 54%, #080606);
    color: var(--color-text-on-brand);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand), rgba(255,255,255,0.32), transparent);
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__bottom {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__column h2 {
    color: rgba(255, 255, 255, 0.94);
}

@media (prefers-reduced-motion: reduce) {
    .navbar__nav a,
    .navbar__nav a::after,
    .site-action,
    .site-action__icon,
    .button {
        transition: none;
    }
}
/* Navbar dropdown: El Club */
.navbar__item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.navbar__link {
    display: inline-flex;
    align-items: center;
}

.navbar__item--dropdown .navbar__link::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--transition);
}

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 190px;
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.navbar__dropdown a {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--color-text);
    font-size: 0.92rem;
}

.navbar__dropdown a:hover,
.navbar__dropdown a:focus-visible {
    background: var(--color-brand-surface);
    color: var(--color-brand-strong);
}

.navbar__item--dropdown:hover .navbar__dropdown,
.navbar__item--dropdown:focus-within .navbar__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar__item--dropdown:hover .navbar__link::after,
.navbar__item--dropdown:focus-within .navbar__link::after {
    transform: translateY(1px) rotate(225deg);
}

@media (max-width: 760px) {
    .navbar__item {
        display: grid;
        width: 100%;
    }

    .navbar__item--dropdown .navbar__link::after {
        display: none;
    }

    .navbar__dropdown {
        position: static;
        min-width: 0;
        margin-top: 4px;
        padding: 4px 0 0 14px;
        border: 0;
        border-left: 1px solid var(--color-brand-border);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .navbar__dropdown a {
        padding: 8px 0;
    }
}
/* Navbar dropdown overrides for global underline */
.navbar__item--dropdown > .navbar__link::after {
    position: static;
    inset: auto;
    display: inline-block;
    flex: 0 0 auto;
    background: transparent;
    opacity: 1;
    pointer-events: none;
}

.navbar__dropdown a::after {
    display: none;
}
/* Navbar dropdown tablet alignment with mobile menu breakpoint */
@media (max-width: 860px) {
    .navbar__item {
        display: grid;
        width: 100%;
    }

    .navbar__item--dropdown .navbar__link::after {
        display: none;
    }

    .navbar__dropdown {
        position: static;
        min-width: 0;
        margin-top: 4px;
        padding: 4px 0 0 14px;
        border: 0;
        border-left: 1px solid var(--color-brand-border);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .navbar__dropdown a {
        padding: 8px 0;
    }
}
/* Home hero premium title pass */
.home-hero {
    min-height: min(690px, calc(100vh - var(--header-height)));
}

.home-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.12) 82%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 46%);
}

.home-hero__content {
    align-content: end;
    gap: clamp(10px, 1.6vw, 16px);
    max-width: var(--container);
    padding-block: clamp(94px, 13vh, 126px) clamp(64px, 9vh, 92px);
}

.home-hero__content h1 {
    max-width: min(880px, 13ch);
    font-family: "Barlow Condensed", var(--font-base, system-ui), sans-serif;
    font-size: clamp(4.1rem, 9.4vw, 8.6rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.home-hero__content p {
    margin: 0;
    letter-spacing: 0.1em;
}

.home-hero__content span {
    max-width: 620px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.45;
}

.home-hero__content .button {
    margin-top: clamp(6px, 1.2vw, 12px);
}

@media (max-width: 760px) {
    .home-hero {
        min-height: 610px;
    }

    .home-hero__overlay {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42)),
            linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 50%);
    }

    .home-hero__content {
        gap: 12px;
        padding-block: 92px 76px;
    }

    .home-hero__content h1 {
        max-width: 8.8ch;
        font-size: clamp(3.5rem, 18vw, 5.4rem);
        line-height: 0.84;
    }

    .home-hero__content span {
        max-width: 34ch;
        font-size: 1rem;
    }
}

/* Footer editorial composition */
.site-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 64px 0 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(135deg, #121416 0%, #0a0c0e 58%, #08090a 100%);
    background-size: 36px 36px, 36px 36px, auto;
    color: #f7f7f7;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 4px;
    background: var(--color-brand);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.7fr) minmax(240px, 1.1fr) minmax(190px, 0.8fr);
    gap: 42px;
}

.site-footer__brand,
.site-footer__column {
    min-width: 0;
}

.site-footer__brand {
    display: flex;
    min-height: 370px;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 20px;
}

.site-footer__brand-lockup {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-footer__logo {
    width: 104px;
    height: 132px;
    object-fit: contain;
}

.site-footer__brand h2 {
    max-width: 300px;
    margin: 0;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.2rem, 3vw, 3.65rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 0.88;
    text-transform: uppercase;
}

.site-footer__tagline {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__socials a {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    color: #fff;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    border-color: var(--color-brand);
    color: var(--color-brand);
    transform: translateY(-2px);
}

.site-footer__socials .material-symbols-rounded {
    font-size: 28px;
}

.site-footer__column {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer__column h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer__column h2 span {
    color: var(--color-brand);
    font-size: 0.72rem;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-footer__nav a,
.site-footer__contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__nav a {
    font-size: 1.05rem;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact-item a:hover,
.site-footer__contact-item a:focus-visible {
    color: var(--color-brand);
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-footer__contact-item {
    display: grid;
    gap: 5px;
    padding: 0 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__contact-item:last-child {
    margin-bottom: 0;
}

.site-footer__contact-item strong {
    color: #fff;
    font-size: 1rem;
}

.site-footer__contact-item a {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
}

.site-footer__wordmark {
    position: relative;
    z-index: -1;
    overflow: hidden;
    height: clamp(140px, 17vw, 260px);
    margin-top: 24px;
    color: transparent;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(10rem, 20vw, 21rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.8;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(205, 53, 44, 0.58);
    white-space: nowrap;
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__bottom small {
    font-size: 0.86rem;
}

@media (max-width: 1060px) {
    .site-footer__grid {
        grid-template-columns: minmax(250px, 1.1fr) minmax(150px, 0.7fr) minmax(220px, 1fr);
    }

    .site-footer__contact-list:last-child {
        grid-column: 3;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding-top: 42px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
        min-height: 0;
        gap: 38px;
        padding-right: 0;
    }

    .site-footer__brand-lockup {
        align-items: flex-start;
    }

    .site-footer__logo {
        width: 74px;
        height: 92px;
    }

    .site-footer__brand h2 {
        font-size: clamp(2rem, 11vw, 3.1rem);
    }

    .site-footer__tagline {
        margin-top: 14px;
        font-size: 0.83rem;
        letter-spacing: 0.14em;
    }

    .site-footer__column {
        padding-left: 18px;
    }

    .site-footer__column h2 {
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .site-footer__contact-item a,
    .site-footer__nav a {
        font-size: 0.92rem;
    }

    .site-footer__wordmark {
        height: 92px;
        margin-top: 30px;
        font-size: 7rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 94px;
        gap: 6px;
    }
}

@media (max-width: 470px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__column,
    .site-footer__contact-list:last-child {
        grid-column: auto;
    }

    .site-footer__brand-lockup {
        gap: 14px;
    }

    .site-footer__socials a {
        width: 52px;
        height: 52px;
    }

    .site-footer__wordmark {
        font-size: 5.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__socials a,
    .site-footer__nav a,
    .site-footer__contact-item a {
        transition: none;
    }
}



/* Footer compact refinement */
.site-footer {
    padding-top: 48px;
}

.site-footer__grid {
    grid-template-columns: minmax(250px, 1.2fr) minmax(150px, 0.72fr) minmax(280px, 1.18fr) minmax(210px, 0.9fr);
    gap: 30px;
}

.site-footer__brand {
    min-height: 310px;
    padding-right: 10px;
}

.site-footer__brand-lockup {
    gap: 16px;
}

.site-footer__logo {
    width: 78px;
    height: 98px;
}

.site-footer__brand h2 {
    max-width: 250px;
    font-size: clamp(1.8rem, 2.5vw, 2.9rem);
    line-height: 0.9;
}

.site-footer__tagline {
    margin-top: 16px;
    font-size: 0.86rem;
    letter-spacing: 0.17em;
}

.site-footer__socials {
    gap: 12px;
}

.site-footer__socials a {
    width: 52px;
    height: 52px;
}

.site-footer__socials .material-symbols-rounded {
    font-size: 24px;
}

.site-footer__column {
    padding-left: 22px;
}

.site-footer__column h2 {
    margin-bottom: 22px;
    font-size: 1.2rem;
}

.site-footer__contact-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.site-footer__contact-item a {
    font-size: 0.88rem;
    line-height: 1.25;
}

.site-footer__wordmark {
    z-index: 0;
    height: clamp(112px, 13vw, 188px);
    margin: 12px clamp(24px, 8vw, 120px) 0;
    font-size: clamp(7rem, 15vw, 15rem);
}

.site-footer__bottom {
    min-height: 64px;
    padding-top: 14px;
}

@media (max-width: 1060px) {
    .site-footer__grid {
        grid-template-columns: minmax(230px, 1.1fr) minmax(140px, 0.72fr) minmax(250px, 1.1fr);
        gap: 28px;
    }

    .site-footer__contact-list:last-child {
        grid-column: 3;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding-top: 38px;
    }

    .site-footer__grid {
        gap: 28px 20px;
    }

    .site-footer__brand {
        gap: 30px;
    }

    .site-footer__logo {
        width: 66px;
        height: 82px;
    }

    .site-footer__brand h2 {
        font-size: clamp(1.75rem, 9vw, 2.7rem);
    }

    .site-footer__tagline {
        font-size: 0.76rem;
    }

    .site-footer__wordmark {
        height: 78px;
        margin: 24px 18px 0;
        font-size: 6rem;
    }
}

@media (max-width: 470px) {
    .site-footer__wordmark {
        height: 64px;
        margin-inline: 12px;
        font-size: 4.5rem;
    }
}


/* Footer wordmark reveal */
.site-footer__wordmark {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__wordmark.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__wordmark,
    .site-footer__wordmark.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* Final footer proportion and social logo refinement */
.site-footer {
    padding-top: 38px;
}

.site-footer__grid {
    grid-template-columns: minmax(250px, 1.25fr) minmax(150px, 0.72fr) minmax(270px, 1.15fr) minmax(205px, 0.86fr);
    gap: 28px;
}

.site-footer__brand {
    min-height: 258px;
    padding-right: 8px;
}

.site-footer__brand-lockup {
    align-items: center;
    gap: 14px;
}

.site-footer__logo {
    width: 62px;
    height: 78px;
}

.site-footer__brand h2 {
    max-width: 330px;
    font-size: clamp(1.7rem, 2.2vw, 2.55rem);
    line-height: 0.94;
}

.site-footer__tagline {
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
}

.site-footer__socials {
    gap: 10px;
}

.site-footer__socials a {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.48);
}

.site-footer__social-logo {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.site-footer__social-fallback {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.35rem;
    line-height: 1;
}

.site-footer__column {
    padding-left: 0;
    border-left: 0;
}

.site-footer__column h2 {
    margin-bottom: 18px;
    font-size: 1.12rem;
}

.site-footer__nav {
    gap: 11px;
}

.site-footer__nav a {
    font-size: 0.96rem;
}

.site-footer__contact-item {
    padding-bottom: 0;
    margin-bottom: 11px;
    border-bottom: 0;
}

.site-footer__contact-item strong {
    font-size: 0.88rem;
}

.site-footer__contact-item a {
    font-size: 0.82rem;
    line-height: 1.25;
}

.site-footer__wordmark {
    height: clamp(100px, 11vw, 158px);
    margin: 4px clamp(28px, 7vw, 112px) 0;
    font-size: clamp(5.2rem, 12.3vw, 13rem);
    letter-spacing: -0.075em;
    text-shadow: 0 0 26px rgba(205, 53, 44, 0.1);
    -webkit-text-stroke: 1.25px rgba(205, 53, 44, 0.8);
}

.site-footer__bottom {
    min-height: 56px;
    padding-top: 12px;
}

@media (max-width: 1060px) {
    .site-footer__grid {
        grid-template-columns: minmax(230px, 1.1fr) minmax(140px, 0.7fr) minmax(245px, 1fr);
        gap: 24px;
    }

    .site-footer__contact-list:last-child {
        grid-column: 3;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding-top: 34px;
    }

    .site-footer__grid {
        gap: 25px 18px;
    }

    .site-footer__brand {
        min-height: 0;
        gap: 28px;
    }

    .site-footer__logo {
        width: 58px;
        height: 72px;
    }

    .site-footer__brand h2 {
        max-width: 270px;
        font-size: clamp(1.65rem, 8vw, 2.4rem);
    }

    .site-footer__tagline {
        font-size: 0.7rem;
    }

    .site-footer__column h2 {
        margin-bottom: 15px;
    }

    .site-footer__wordmark {
        height: 72px;
        margin: 20px 20px 0;
        font-size: 5.6rem;
    }
}

@media (max-width: 470px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__contact-list:last-child {
        grid-column: auto;
    }

    .site-footer__wordmark {
        height: 58px;
        margin-inline: 12px;
        font-size: 4.2rem;
    }
}


/* Light editorial footer */
.site-footer{position:relative;overflow:hidden;isolation:isolate;max-width:calc(100% - 48px);margin:34px auto 24px;padding:50px 0 0;border:1px solid rgba(64,55,49,.1);border-radius:32px;background:#f7f4ef;color:#33302e;box-shadow:0 18px 48px rgba(54,45,39,.08)}
.site-footer::before{display:none}
.site-footer__inner,.site-footer__grid,.site-footer__wordmark,.site-footer__bottom{position:relative;z-index:2}
.site-footer__inner{padding-inline:56px}
.site-footer__grid{display:grid;grid-template-columns:minmax(240px,1.05fr) minmax(245px,1.15fr) minmax(190px,.84fr) minmax(190px,.82fr);gap:44px}
.site-footer__identity,.site-footer__directory,.site-footer__community{min-width:0}
.site-footer__eyebrow{margin:0 0 28px;color:var(--color-brand);font-size:.72rem;font-weight:800;letter-spacing:.26em;line-height:1;text-transform:uppercase}
.site-footer__identity-lockup{display:flex;align-items:center;gap:18px}
.site-footer__identity-logo{width:74px;height:92px;object-fit:contain}
.site-footer__identity h2{max-width:265px;margin:0;color:#34312f;font-family:"Barlow Condensed",sans-serif;font-size:clamp(2rem,2.8vw,3rem);font-weight:800;letter-spacing:.03em;line-height:.9;text-transform:uppercase}
.site-footer__location{margin:12px 0 0;color:#68615c;font-size:.82rem;letter-spacing:.12em;line-height:1.3;text-transform:uppercase}
.site-footer__founded{margin:14px 0 0;color:var(--color-brand);font-size:.72rem;font-weight:800;letter-spacing:.25em;text-transform:uppercase}
.site-footer__contact-list{display:grid;gap:0;margin:0;padding:0;list-style:none}
.site-footer__contact-item{display:flex;align-items:flex-start;gap:12px;margin:0;padding:0 0 13px;border:0}
.site-footer__contact-item+.site-footer__contact-item{padding-top:13px;border-top:1px solid rgba(64,55,49,.09)}
.site-footer__contact-mark{display:grid;flex:none;width:30px;height:30px;place-items:center;border:1px solid rgba(205,53,44,.22);border-radius:50%;color:var(--color-brand);font-size:1rem;line-height:1}
.site-footer__contact-item a{display:grid;min-width:0;gap:3px;color:#5e5853;font-size:.82rem;line-height:1.25;text-decoration:none;overflow-wrap:anywhere}
.site-footer__contact-item strong{color:#36322f;font-size:.87rem}
.site-footer__contact-item a:hover,.site-footer__contact-item a:focus-visible,.site-footer__contact-link:hover,.site-footer__contact-link:focus-visible{color:var(--color-brand)}
.site-footer__socials{display:flex;flex-wrap:wrap;gap:12px}
.site-footer__socials a{display:grid;width:50px;height:50px;place-items:center;border:1px solid rgba(64,55,49,.1);border-radius:16px;background:rgba(255,255,255,.5);color:var(--color-brand);box-shadow:0 5px 14px rgba(65,55,48,.08);text-decoration:none;transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition)}
.site-footer__socials a:hover,.site-footer__socials a:focus-visible{border-color:rgba(205,53,44,.35);box-shadow:0 8px 18px rgba(65,55,48,.12);transform:translateY(-2px)}
.site-footer__social-logo{width:28px;height:28px;object-fit:contain}
.site-footer__social-fallback{color:var(--color-brand);font-size:1.4rem;line-height:1}
.site-footer__community-place{margin:28px 0 0;padding-top:16px;border-top:1px solid rgba(64,55,49,.09);color:#68615c;font-size:.82rem}
.site-footer__contact-link{display:inline-flex;gap:10px;margin-top:22px;color:var(--color-brand);font-size:.84rem;font-weight:700;text-decoration:none}
.site-footer__community-copy{max-width:220px;margin:18px 0 0;color:#68615c;font-size:.82rem;line-height:1.45}
.site-footer__wave{position:absolute;z-index:1;right:-3%;bottom:148px;left:-3%;width:106%;height:170px;opacity:0;color:var(--color-brand);pointer-events:none;transform:translateY(8px);transition:opacity 900ms ease,transform 1000ms ease}
.site-footer__wave path{fill:none;stroke:currentColor;stroke-width:1.1;vector-effect:non-scaling-stroke;opacity:.22}
.site-footer__wave path:nth-child(2){opacity:.15}.site-footer__wave path:nth-child(3){opacity:.11}.site-footer__wave path:nth-child(4){opacity:.07}
.site-footer__wave.is-visible{opacity:1;transform:translateY(0)}
.site-footer__watermark{position:absolute;z-index:1;right:-50px;bottom:-110px;width:360px;opacity:.045;pointer-events:none;transform:rotate(15deg);filter:grayscale(1)}
.site-footer__watermark img{display:block;width:100%;height:auto}
.site-footer__wordmark{overflow:visible;height:auto;margin:30px clamp(18px,5vw,88px) 0;color:rgba(205,53,44,.035);font-family:"Barlow Condensed",sans-serif;font-size:clamp(4.7rem,10.8vw,11rem);font-weight:800;letter-spacing:.015em;line-height:1;text-align:center;text-transform:uppercase;white-space:nowrap;-webkit-text-stroke:1px rgba(205,53,44,.64);background:linear-gradient(90deg,rgba(205,53,44,.8) 0%,rgba(205,53,44,.8) 50%,transparent 50%);background-size:0% 100%;background-repeat:no-repeat;-webkit-background-clip:text;background-clip:text;opacity:0;transform:translateY(10px);transition:opacity 900ms ease,transform 900ms ease,background-size 1200ms cubic-bezier(.22,1,.36,1)}
.site-footer__wordmark.is-visible{opacity:1;transform:translateY(0);background-size:100% 100%}
.site-footer__bottom{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;min-height:72px;margin-top:22px;padding:16px 0;border-top:1px solid rgba(64,55,49,.12);color:#6a645e}
.site-footer__bottom small{font-size:.78rem}.site-footer__bottom small:last-child{text-align:right}.site-footer__bottom-mark{display:grid;place-items:center}.site-footer__bottom-mark img{width:24px;height:30px;object-fit:contain}
@media(max-width:1060px){.site-footer__inner{padding-inline:36px}.site-footer__grid{grid-template-columns:1fr 1fr;gap:38px 42px}.site-footer__community{grid-column:2}.site-footer__wordmark{margin-top:18px}.site-footer__wave{bottom:130px}}
@media(max-width:760px){.site-footer{max-width:calc(100% - 24px);margin:20px auto 12px;padding-top:34px;border-radius:24px}.site-footer__inner{padding-inline:22px}.site-footer__grid{grid-template-columns:1fr;gap:30px}.site-footer__community{grid-column:auto}.site-footer__eyebrow{margin-bottom:18px}.site-footer__identity-logo{width:62px;height:78px}.site-footer__identity h2{font-size:clamp(1.9rem,9vw,2.6rem)}.site-footer__socials a{width:48px;height:48px}.site-footer__wave{bottom:130px;height:150px}.site-footer__watermark{right:-72px;bottom:-80px;width:280px}.site-footer__wordmark{margin:18px 6px 0;font-size:clamp(3.8rem,15vw,6.2rem);line-height:1;white-space:normal}.site-footer__bottom{grid-template-columns:1fr;gap:8px;justify-items:start;min-height:0;margin-top:28px}.site-footer__bottom small:last-child{text-align:left}.site-footer__bottom-mark{display:none}}
@media(max-width:390px){.site-footer__inner{padding-inline:18px}.site-footer__identity-lockup{gap:12px}.site-footer__identity h2{font-size:1.85rem}.site-footer__wordmark{font-size:3.45rem}}
@media(prefers-reduced-motion:reduce){.site-footer__wave,.site-footer__wave.is-visible,.site-footer__wordmark,.site-footer__wordmark.is-visible{opacity:1;transform:none;transition:none;background-size:100% 100%}.site-footer__socials a{transition:none}}


/* Footer wide container refinement */
.site-footer {
    max-width: min(calc(100% - 48px), 1680px);
    padding-top: 42px;
}
.site-footer > .site-footer__inner.container {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: 36px;
}
.site-footer__grid {
    grid-template-columns:
        minmax(280px, 1.05fr)
        minmax(330px, 1.2fr)
        minmax(240px, .9fr)
        minmax(230px, .82fr);
    gap: clamp(36px, 4vw, 64px);
}
.site-footer__eyebrow {
    margin-bottom: 22px;
    white-space: nowrap;
}
.site-footer__identity {
    padding-right: 12px;
}
.site-footer__identity h2 {
    max-width: 290px;
}
.site-footer__wordmark {
    margin-top: 18px;
}
.site-footer__bottom {
    margin-top: 28px;
}
@media (max-width: 1280px) {
    .site-footer > .site-footer__inner.container {
        padding-inline: 30px;
    }
    .site-footer__grid {
        gap: 36px;
    }
}
@media (max-width: 1060px) {
    .site-footer > .site-footer__inner.container {
        padding-inline: 36px;
    }
    .site-footer__grid {
        grid-template-columns: minmax(250px, 1fr) minmax(270px, 1fr);
        gap: 34px 48px;
    }
    .site-footer__community {
        grid-column: 2;
    }
}
@media (max-width: 760px) {
    .site-footer {
        max-width: calc(100% - 24px);
        padding-top: 34px;
    }
    .site-footer > .site-footer__inner.container {
        padding-inline: 22px;
    }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .site-footer__community {
        grid-column: auto;
    }
}
@media (max-width: 390px) {
    .site-footer > .site-footer__inner.container {
        padding-inline: 18px;
    }
}


/* Identity lockup: vertical refinement */
.site-footer__identity {
    max-width: 268px;
    padding-right: 0;
}
.site-footer__identity-lockup {
    display: block;
}
.site-footer__identity-logo {
    display: block;
    width: 62px;
    height: 64px;
    margin: 0 0 16px;
    object-fit: contain;
}
.site-footer__identity h2 {
    max-width: 235px;
    margin: 0;
}
.site-footer__identity .site-footer__location {
    margin-top: 10px;
}
.site-footer__identity .site-footer__founded {
    margin-top: 12px;
}
@media (max-width: 760px) {
    .site-footer__identity {
        max-width: 100%;
    }
    .site-footer__identity-logo {
        width: 60px;
        height: 62px;
        margin-bottom: 15px;
    }
}



.navbar__nav button.navbar__link { appearance: none; margin: 0; padding: 0; border: 0; background: transparent; font: inherit; line-height: inherit; text-align: inherit; color: inherit; }
.navbar__nav button.navbar__link:hover { color: var(--color-brand); }
.navbar__item--dropdown.is-open .navbar__dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.navbar__item--dropdown.is-open .navbar__link::after { transform: translateY(1px) rotate(225deg); }
@media (max-width: 860px) {
    .navbar__item--dropdown .navbar__dropdown { display: none; opacity: 0; pointer-events: none; }
    .navbar__item--dropdown.is-open .navbar__dropdown { display: block; opacity: 1; pointer-events: auto; }
}
/* Header visual experiment: compact institutional navigation. */
.site-header {
    background: color-mix(in srgb, var(--color-surface-warm) 94%, transparent);
    border-bottom-color: color-mix(in srgb, var(--color-brand) 18%, transparent);
    box-shadow: 0 8px 24px rgba(35, 12, 10, 0.035);
}

.navbar {
    gap: clamp(24px, 4vw, 64px);
}

.navbar__brand {
    gap: 14px;
    letter-spacing: 0.01em;
}

.navbar__logo,
.navbar__mark {
    width: 44px;
    height: 44px;
}

.navbar__name {
    color: var(--color-text);
    font-family: "Barlow Condensed", var(--font-base), sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.navbar__nav {
    gap: clamp(16px, 2vw, 28px);
    font-size: 0.9rem;
    letter-spacing: 0.015em;
}

.navbar__nav > a,
.navbar__item--dropdown > .navbar__link {
    position: relative;
    min-height: 38px;
    padding: 9px 1px 7px;
    border-bottom: 2px solid transparent;
    color: color-mix(in srgb, var(--color-text) 82%, transparent);
    transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.navbar__nav > a:hover,
.navbar__nav > a:focus-visible,
.navbar__item--dropdown > .navbar__link:hover,
.navbar__item--dropdown > .navbar__link:focus-visible,
.navbar__item--dropdown.is-open > .navbar__link {
    border-bottom-color: var(--color-brand);
    color: var(--color-brand-strong);
}

.navbar__dropdown {
    top: calc(100% + 12px);
    min-width: 216px;
    padding: 8px;
    border-color: color-mix(in srgb, var(--color-brand) 18%, transparent);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--color-surface-warm) 98%, white);
    box-shadow: 0 18px 44px rgba(35, 12, 10, 0.12);
}

.navbar__dropdown::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 22px;
    width: 9px;
    height: 9px;
    border-top: 1px solid color-mix(in srgb, var(--color-brand) 18%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--color-brand) 18%, transparent);
    background: var(--color-surface-warm);
    transform: rotate(45deg);
}

.navbar__dropdown a {
    min-height: 40px;
    align-items: center;
    padding: 9px 12px;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 620;
}

.navbar__dropdown a:hover,
.navbar__dropdown a:focus-visible {
    background: var(--color-brand-soft);
    color: var(--color-brand-strong);
}

.navbar__toggle {
    border-color: var(--color-brand-border);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--color-surface-warm) 94%, white);
    box-shadow: 0 5px 16px rgba(35, 12, 10, 0.06);
}

.navbar__toggle span {
    background: var(--color-brand-strong);
    transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
    .site-header {
        box-shadow: 0 6px 20px rgba(35, 12, 10, 0.06);
    }

    .navbar__nav {
        gap: 0;
        padding: 12px 24px 20px;
        border-bottom-color: color-mix(in srgb, var(--color-brand) 18%, transparent);
        background: color-mix(in srgb, var(--color-surface-warm) 98%, white);
        box-shadow: 0 18px 30px rgba(35, 12, 10, 0.08);
    }

    .navbar__nav > a,
    .navbar__item--dropdown > .navbar__link {
        min-height: 46px;
        padding: 12px 0 10px;
        border-bottom-color: transparent;
        font-size: 1rem;
    }

    .navbar__nav > a:hover,
    .navbar__nav > a:focus-visible,
    .navbar__item--dropdown > .navbar__link:hover,
    .navbar__item--dropdown > .navbar__link:focus-visible,
    .navbar__item--dropdown.is-open > .navbar__link {
        border-bottom-color: transparent;
        color: var(--color-brand-strong);
    }

    .navbar__item--dropdown.is-open > .navbar__link {
        border-left: 3px solid var(--color-brand);
        padding-left: 12px;
    }

    .navbar__dropdown::before {
        display: none;
    }

    .navbar__dropdown a {
        min-height: 40px;
        padding: 9px 0;
        color: var(--color-text-muted);
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar__toggle span,
    .navbar__nav > a,
    .navbar__item--dropdown > .navbar__link {
        transition: none;
    }
}
/* Header final: refined full lockup and stable desktop hover path. */
.navbar__brand {
    gap: 16px;
    align-items: center;
}

.navbar__logo,
.navbar__mark {
    width: 52px;
    height: 52px;
}

.navbar__name {
    display: grid;
    gap: 1px;
    max-width: 238px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    color: var(--color-text);
    font-family: "Barlow Condensed", var(--font-base), sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    line-height: 0.94;
    text-transform: uppercase;
}

.navbar__name > span { display: block; }

@media (min-width: 861px) {
    .navbar__item--dropdown::before {
        content: "";
        position: absolute;
        top: 100%;
        right: -12px;
        left: -12px;
        height: 20px;
        background: transparent;
    }

    .navbar__dropdown {
        top: calc(100% + 8px);
    }
}

@media (max-width: 860px) {
    .navbar__logo,
    .navbar__mark {
        width: 48px;
        height: 48px;
    }

    .navbar__name {
        max-width: 170px;
        font-size: 1rem;
        letter-spacing: 0.045em;
        line-height: 0.96;
    }
}

/* Shared editorial controls: structural primitives, not a shared form. */
.editorial-controls {
    --editorial-control-height: 2.75rem;
    --editorial-control-radius: .72rem;
    --editorial-control-line: color-mix(in srgb, var(--color-text) 11%, transparent);
    --editorial-control-surface: rgba(255, 255, 255, .9);
}

.editorial-content-surface {
    padding: clamp(1rem, 2.2vw, 1.55rem);
    border: 1px solid rgba(64, 55, 49, .075);
    border-radius: clamp(1rem, 1.9vw, 1.35rem);
    background: rgba(255, 255, 255, .56);
    box-shadow:
        0 1rem 2.8rem rgba(54, 45, 39, .026),
        inset 0 1px 0 rgba(255, 255, 255, .9),
        inset 0 -1rem 1.8rem rgba(64, 55, 49, .018);
}

@media (max-width: 760px) {
    .editorial-content-surface {
        padding: .9rem;
        border-radius: 1rem;
    }
}

.editorial-controls__input,
.editorial-controls__button {
    min-height: var(--editorial-control-height);
    border-radius: var(--editorial-control-radius);
}

.editorial-controls__input {
    border: 1px solid var(--editorial-control-line);
    background: var(--editorial-control-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.editorial-controls__input:focus-visible,
.editorial-controls__button:focus-visible,
.editorial-controls__segment:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--color-brand) 28%, transparent);
    outline-offset: 3px;
}

.editorial-controls__button {
    color: var(--color-text-on-brand, #fff);
    border: 1px solid var(--color-brand);
    background: var(--color-brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .editorial-controls__button:hover {
        border-color: var(--color-brand-strong);
        background: var(--color-brand-strong);
        transform: translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .editorial-controls__button { transition: none; }
}
