:root {
    --black: #111111;
    --black-soft: #1d1b19;
    --burgundy: #971c2d;
    --burgundy-dark: #65101d;
    --gold: #c98927;
    --gold-light: #e8bd68;
    --cream: #f7f4ee;
    --white: #ffffff;
    --text: #24211f;
    --muted: #6d6862;
    --line: #e7e1d7;
    --shadow: 0 24px 70px rgba(31, 24, 18, .12);
    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

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

button {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
    background: rgba(255, 255, 255, .96);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 10px 34px rgba(17, 17, 17, .09);
}

.header-inner {
    width: min(100% - 48px, 1180px);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 245px;
}

.brand img {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    object-fit: contain;
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.16rem;
}

.brand small {
    margin-top: 5px;
    color: var(--gold);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 8px;
    color: #3e3a36;
    font-size: .84rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: var(--cream);
    color: var(--burgundy);
}

.main-nav a i {
    color: var(--gold);
}

.main-nav .nav-whatsapp {
    margin-left: 6px;
    background: var(--black);
    color: var(--white);
    padding-inline: 18px;
}

.main-nav .nav-whatsapp:hover {
    background: var(--burgundy);
    color: var(--white);
}

.main-nav .nav-whatsapp i {
    color: #35d568;
    font-size: 1.08rem;
}

.menu-toggle {
    width: 50px;
    height: 50px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--black);
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.home-section {
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: calc(var(--header-height) + 58px) 0 74px;
    background:
        radial-gradient(circle at 15% 45%, rgba(201, 137, 39, .07), transparent 28%),
        var(--white);
}

.home-grid {
    width: min(100% - 48px, 1180px);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 92px;
    margin-inline: auto;
}

.section-label {
    margin: 0 0 15px;
    color: var(--burgundy);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-copy h1,
.show-description h3,
.media-heading h3 {
    font-family: "Playfair Display", Georgia, serif;
}

.home-copy h1 {
    margin: 0;
    color: var(--black);
    font-size: clamp(4rem, 7.2vw, 6.8rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .86;
}

.home-copy h1 span {
    display: inline-block;
    margin-top: 12px;
    color: var(--burgundy);
    font-size: .72em;
    letter-spacing: -.04em;
}

.home-copy > p:not(.section-label) {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--muted);
}

.home-copy .home-intro {
    margin-top: 32px;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.55;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 30px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 12px 21px;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(151, 28, 45, .2);
}

.button-primary:hover {
    background: var(--burgundy-dark);
}

.button-link {
    color: var(--text);
}

.button-link:hover {
    color: var(--burgundy);
}

.home-visual {
    position: relative;
    width: min(100%, 550px);
    justify-self: end;
    padding: 20px 20px 0 0;
}

.visual-line {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 42px);
    height: calc(100% - 16px);
    border: 2px solid var(--gold);
    border-radius: 0;
}

.home-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    box-shadow: var(--shadow);
}

.home-logo {
    position: absolute;
    z-index: 2;
    right: -34px;
    bottom: -32px;
    width: 142px;
    height: 142px;
    border: 8px solid var(--white);
    border-radius: 50%;
    background: var(--black);
    object-fit: contain;
    box-shadow: 0 16px 36px rgba(17, 17, 17, .2);
}

.show-section {
    background: var(--white);
}

.closeup-section {
    background: var(--cream);
}

.section-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
}

.section-band-dark {
    background: linear-gradient(125deg, #201d1a, #090909);
}

.section-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(201, 137, 39, .16));
}

.section-band > div {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1180px);
    min-height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: auto;
    padding: 48px 0;
}

.section-band span {
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, .08);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 12rem;
    font-weight: 700;
    line-height: 1;
}

.section-band p {
    margin: 0 0 7px;
    color: var(--gold-light);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-band h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(3.8rem, 7vw, 6.6rem);
    line-height: .95;
}

.section-content {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
    padding: 94px 0 108px;
}

.show-description {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 86px;
}

.show-description h3,
.media-heading h3 {
    margin: 0;
    color: var(--black);
    font-size: clamp(2.35rem, 4vw, 3.8rem);
    line-height: 1.12;
}

.description-text {
    border-left: 1px solid var(--line);
    padding-left: 42px;
}

.description-text p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.08rem;
}

.description-text p:last-child {
    margin-bottom: 0;
}

.show-features {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 62px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.show-features li {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid var(--line);
    padding: 18px;
    color: #3a3632;
    font-size: .83rem;
    font-weight: 700;
    text-align: center;
}

.show-features li:last-child {
    border-right: 0;
}

.show-features i {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    font-size: .68rem;
}

.media-heading {
    margin: 94px 0 32px;
}

.media-heading h3 {
    font-size: clamp(2.35rem, 4vw, 3.35rem);
}

.photo-grid {
    columns: 3 280px;
    column-gap: 13px;
}

.photo-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    width: 100%;
    display: inline-block;
    break-inside: avoid;
    margin: 0 0 13px;
    border: 0;
    border-radius: 0;
    background: var(--black);
    padding: 0;
    cursor: zoom-in;
}

.photo-card::after {
    content: "+";
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(17, 17, 17, .62);
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.photo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .55s ease, filter .55s ease;
}

.photo-card:hover img {
    transform: none;
    filter: brightness(.88);
}

.photo-card:hover::after {
    opacity: 1;
    transform: translateY(-2px);
}

.photo-wide {
    grid-column: auto;
}

.photo-tall {
    grid-row: auto;
}

.closeup-gallery {
    columns: 4 220px;
}

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

.video-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(34, 28, 23, .08);
}

.video-card video {
    width: 100%;
    height: 510px;
    background: var(--black);
    object-fit: contain;
}

.video-card p {
    margin: 0;
    padding: 18px 22px;
    color: var(--text);
    font-weight: 700;
}

.video-featured {
    width: min(100%, 520px);
    margin-inline: auto;
}

.video-featured video {
    width: 100%;
    height: min(76vh, 760px);
    aspect-ratio: auto;
    object-fit: contain;
}

.special-participation {
    position: relative;
    overflow: hidden;
    margin-top: 82px;
    border-top: 6px solid var(--gold);
    border-radius: 8px;
    background:
        radial-gradient(circle at 12% 15%, rgba(232, 189, 104, .18), transparent 30%),
        linear-gradient(135deg, var(--burgundy), #4c0b15);
    padding: 56px 48px 50px;
    box-shadow: 0 26px 70px rgba(101, 16, 29, .24);
}

.special-participation::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(232, 189, 104, .24);
    border-radius: 50%;
}

.participation-heading {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-inline: auto;
    color: var(--white);
    text-align: center;
}

.participation-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.participation-heading h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.45rem, 5vw, 4.45rem);
    line-height: 1.08;
}

.participation-heading h3 strong {
    display: block;
    color: var(--gold-light);
}

.participation-video {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    margin: 36px auto 0;
    border: 7px solid rgba(255, 255, 255, .92);
    background: var(--black);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.participation-video video {
    width: 100%;
    height: auto;
    background: var(--black);
    object-fit: contain;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, .66);
}

.footer-inner {
    width: min(100% - 48px, 1180px);
    min-height: 170px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-inline: auto;
    padding: 32px 0;
}

.footer-inner > img {
    width: 74px;
    height: 74px;
    border-radius: 8px;
}

.footer-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.footer-copy strong {
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.32rem;
}

.footer-copy span {
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.15rem;
    transition: border-color .2s ease, color .2s ease;
}

.footer-links a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.footer-inner > p {
    grid-column: 2 / -1;
    margin: -28px 0 0;
    font-size: .72rem;
}

.gallery-modal {
    width: min(1120px, calc(100% - 28px));
    max-height: calc(100svh - 28px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: #090909;
    padding: 8px;
    box-shadow: 0 34px 120px rgba(0, 0, 0, .7);
}

.gallery-modal::backdrop {
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(6px);
}

.gallery-modal img {
    width: 100%;
    max-height: calc(100svh - 44px);
    border-radius: 4px;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(0, 0, 0, .74);
    color: var(--white);
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    z-index: 1500;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    padding: 12px 20px 12px 15px;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .25);
    animation: whatsappPulse 2.2s infinite;
    transition: background .2s ease;
}

.whatsapp-float:hover {
    background: #1db956;
}

.whatsapp-icon-wrapper {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: none !important;
    rotate: 0deg !important;
}

.whatsapp-icon-wrapper i,
.whatsapp-float i {
    display: block;
    font-size: 28px;
    line-height: 1;
    transform: none !important;
    rotate: 0deg !important;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .42), 0 14px 36px rgba(0, 0, 0, .25);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 14px 36px rgba(0, 0, 0, .25);
    }
}

body.motion-ready .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

body.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .main-nav a {
        padding-inline: 10px;
    }

    .main-nav .nav-whatsapp {
        padding-inline: 13px;
    }

    .home-grid {
        gap: 52px;
    }

    .home-logo {
        right: -10px;
    }

    .show-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .show-features li:nth-child(3) {
        border-right: 0;
    }

    .show-features li:nth-child(n+4) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 78px;
    }

    .header-inner {
        width: min(100% - 32px, 760px);
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: var(--header-height) 0 0;
        z-index: -1;
        min-height: calc(100svh - var(--header-height));
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
        overflow-y: auto;
        background: rgba(9, 9, 9, .99);
        padding: 52px 24px 40px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-18px);
        transition: visibility .25s ease, opacity .25s ease, transform .25s ease;
    }

    .main-nav.is-open {
        z-index: 1001;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        width: min(100%, 420px);
        min-height: 68px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
        border-radius: 0;
        color: rgba(255, 255, 255, .82);
        padding: 14px 10px;
        font-size: 1.15rem;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        background: transparent;
        color: var(--gold-light);
    }

    .main-nav .nav-whatsapp {
        min-height: 54px;
        justify-content: center;
        margin: 34px 0 0;
        border: 0;
        border-radius: 7px;
        background: var(--burgundy);
        color: var(--white);
    }

    .home-section {
        padding-bottom: 86px;
    }

    .home-grid {
        width: min(100% - 36px, 760px);
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .home-copy {
        padding-top: 24px;
    }

    .home-visual {
        width: min(100%, 560px);
        justify-self: center;
    }

    .section-band > div,
    .section-content {
        width: min(100% - 36px, 760px);
    }

    .show-description {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .description-text {
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 28px 0 0;
    }

    .photo-grid {
        columns: 2 240px;
    }

    .closeup-gallery {
        columns: 3 180px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 74px;
    }

    .header-inner {
        width: calc(100% - 24px);
    }

    .brand {
        min-width: 0;
        gap: 10px;
    }

    .brand img {
        width: 49px;
        height: 49px;
    }

    .brand strong {
        font-size: .98rem;
    }

    .brand small {
        max-width: 180px;
        overflow: hidden;
        font-size: .56rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
    }

    .home-section {
        min-height: auto;
        padding: calc(var(--header-height) + 48px) 0 74px;
    }

    .home-grid,
    .section-band > div,
    .section-content,
    .footer-inner {
        width: min(100% - 28px, 560px);
    }

    .home-copy h1 {
        font-size: clamp(3.65rem, 18vw, 5.2rem);
    }

    .home-copy .home-intro {
        font-size: 1.12rem;
    }

    .home-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-actions .button {
        width: 100%;
    }

    .home-visual {
        padding: 12px 12px 0 0;
    }

    .home-logo {
        right: 0;
        bottom: -24px;
        width: 108px;
        height: 108px;
        border-width: 6px;
    }

    .section-band > div {
        min-height: 210px;
    }

    .section-band span {
        right: -12px;
        font-size: 8rem;
    }

    .section-band p {
        font-size: .68rem;
    }

    .section-band h2 {
        font-size: clamp(3.25rem, 16vw, 5rem);
    }

    .section-content {
        padding: 70px 0 84px;
    }

    .show-description h3,
    .media-heading h3 {
        font-size: clamp(2.18rem, 10vw, 3rem);
    }

    .description-text p {
        font-size: 1rem;
    }

    .show-features {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .show-features li,
    .show-features li:nth-child(3) {
        min-height: 65px;
        justify-content: flex-start;
        border-top: 1px solid var(--line);
        border-right: 0;
        padding: 13px 4px;
        text-align: left;
    }

    .show-features li:first-child {
        border-top: 0;
    }

    .media-heading {
        margin: 72px 0 25px;
    }

    .photo-grid,
    .closeup-gallery {
        columns: 2;
        column-gap: 10px;
    }

    .photo-wide,
    .photo-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .photo-card {
        margin-bottom: 10px;
    }

    .photo-card::after {
        opacity: 1;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .video-card video {
        height: min(132vw, 590px);
    }

    .video-featured video {
        height: min(72vh, 680px);
    }

    .special-participation {
        margin-top: 68px;
        padding: 42px 18px 20px;
    }

    .participation-heading h3 {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .participation-video {
        margin-top: 28px;
        border-width: 4px;
    }

    .section-action .button {
        width: 100%;
    }

    .footer-inner {
        min-height: 230px;
        grid-template-columns: auto 1fr;
        gap: 18px 14px;
    }

    .footer-links {
        grid-column: 1 / -1;
    }

    .footer-inner > p {
        grid-column: 1 / -1;
        margin: 0;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        min-height: 60px;
        padding: 0;
        border-radius: 50%;
    }

    .whatsapp-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    body.motion-ready .reveal {
        opacity: 1;
        transform: none;
    }
}


/* Show Escolar */
.school-section {
    background: var(--cream);
}

.section-band-school {
    background: linear-gradient(125deg, #243a52, #0f1d2c);
}

.school-content {
    padding-top: 78px;
}

.school-heading {
    margin-top: 0;
    text-align: center;
}

.school-video {
    width: min(100%, 560px);
}

.school-video video {
    height: min(78vh, 780px);
}

/* Show Adulto */
.adult-section {
    background:
        radial-gradient(circle at 92% 12%, rgba(201, 137, 39, .08), transparent 25%),
        var(--white);
}

.section-band-adult {
    background:
        radial-gradient(circle at 84% 30%, rgba(232, 189, 104, .18), transparent 26%),
        linear-gradient(125deg, #3a1518, #0f0d0d 72%);
}

.section-band-adult > div {
    min-height: 280px;
}

.section-band-adult p {
    max-width: 610px;
}

.adult-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.adult-info-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    padding: 42px;
}

.adult-info-card-dark {
    border-color: #2b2824;
    background: var(--black-soft);
    color: rgba(255,255,255,.78);
}

.adult-info-card-dark .section-label {
    color: var(--gold-light);
}

.adult-info-card-dark h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    line-height: 1.15;
}

.adult-info-card-dark p {
    margin: 0;
}

.adult-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--gold-light);
    font-size: 1.25rem;
}

.adult-event-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.adult-event-list li {
    position: relative;
    padding-left: 19px;
    font-weight: 700;
}

.adult-event-list li::before {
    content: "";
    position: absolute;
    top: .78em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.adult-signature {
    display: block;
    margin-top: 24px;
    color: var(--gold-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
}

.adult-years {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 62px 0 0;
    border-block: 1px solid var(--line);
    padding: 28px 0;
}

.adult-years strong {
    color: var(--burgundy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    line-height: .8;
}

.adult-years span {
    color: var(--black);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.adult-gallery {
    columns: 4 220px;
}

.adult-video-grid .video-card video {
    height: min(72vh, 720px);
}

.adult-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 76px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}

.adult-cta span {
    color: var(--burgundy);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.adult-cta h3 {
    margin: 4px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.1;
}

@media (max-width: 900px) {
    .adult-experience-grid {
        grid-template-columns: 1fr;
    }

    .adult-gallery {
        columns: 3 180px;
    }

    .adult-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .school-video video,
    .adult-video-grid .video-card video {
        height: min(132vw, 620px);
    }

    .adult-info-card {
        padding: 30px 24px;
    }

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

    .adult-gallery {
        columns: 2;
    }

    .adult-years {
        justify-content: flex-start;
    }

    .adult-cta .button {
        width: 100%;
    }
}
