@media (max-width: 1024px) {
    /* ═══════════════════════════════════════
       TOP BAR – language toggle + link icons
       ═══════════════════════════════════════ */
    .main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 47px;
        padding: 0 15px;
        width: 100%;
        background-color: #1e1e22;
        border-bottom: 1px solid #ffffff;
        position: sticky;
        top: 0;
        z-index: 20;
        box-sizing: border-box;
    }

    .logo { display: none; }
    .home-prompt { display: none; }
    .hamburger { display: none; }

    /* Language toggle in top bar (mobile) */
    .main-header > .language-toggle {
        display: flex;
        align-items: center;
        gap: 25px;
        font-size: 17px;
    }

    .main-header > .language-toggle a {
        opacity: 0.5;
        cursor: pointer;
    }

    .main-header > .language-toggle a[data-lang="en"] {
        position: relative;
        top: 2px;
    }

    .main-header > .language-toggle a.is-active {
        opacity: 1;
        font-weight: 700;
    }

    .main-header > .language-toggle .diamond {
        width: 5px;
        height: 5px;
        background: #ffffff;
        transform: rotate(45deg);
    }

    /* Hide the standalone language toggle (bottom of page, used on desktop) */
    body > .language-toggle {
        display: none;
    }

    /* Link icons in top bar */
    .top-icons {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .top-icons a {
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-icons a img {
        width: 18px;
        height: 18px;
        display: block;
    }

    /* Hide desktop-only nav */
    nav { display: none; }

    /* ═══════════════════════════════
       MAIN – snap scroll container
       ═══════════════════════════════ */
    main {
        display: block;
        height: calc(100vh - 47px);
        overflow-y: auto;
        overscroll-behavior: none;
    }

    /* Hide desktop-only elements on mobile */
    .desktop-only { display: none !important; }
    .mobile-only { display: flex; }

    /* Each section is a snap point. Fixed height creates inner scroll for long content. */
    section {
        display: flex;
        flex-direction: column;
        background-color: #1e1e22;
        height: calc(100vh - 47px);
        min-height: calc(100vh - 47px);
        overflow-y: auto;
    }

    /* Mobile-only sections */
    section.mobile-only {
        display: flex;
        flex-direction: column;
        letter-spacing: -0.43px;
        color: #ffffff;
    }

    section.mobile-only p {
        font-size: 12px;
        color: #ffffff;
        line-height: 1.6;
        text-wrap: pretty;
    }

    /* Override global p color (#d4d1ba) in mobile sections */
    section.mobile-only p,
    section.mobile-only a {
        color: #ffffff;
    }

    /* ═══════════════════════════════
       HOME – full viewport with section bars
       ═══════════════════════════════ */
    .home {
        --home-visible-bars: 5;
        min-height: calc(100vh - 47px);
        height: calc(100vh - 47px);
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .home-section-bars {
        flex-shrink: 0;
    }

    .home-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 44px;
        padding: 0 25px;
        border-top: 1px solid #ffffff;
        background-color: #1e1e22;
        cursor: pointer;
    }

    .home-bar .title {
        font-size: 17px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: -0.43px;
    }

    /* English: section bar titles uppercase, active bar uses Rammetto One */
    :lang(en) .home-bar .title,
    :lang(en) .sticky-clone .title,
    :lang(en) .section-header .title {
        text-transform: uppercase;
        font-family: -apple-system, 'SF Pro', 'Helvetica Neue', sans-serif;
    }

    :lang(en) .sticky-header-stack .sticky-clone.is-current .title {
        font-family: 'Rammetto One', cursive;
        font-weight: 400;
        line-height: 1;
    }

    .home-bar.mobile-only {
        display: flex;
    }

    .home-bar.desktop-only {
        display: none;
    }

    .home-bar .number {
        font-size: 17px;
        color: #ffffff;
        font-family: 'Rammetto One', cursive;
        letter-spacing: -0.43px;
    }

    /* ═══════════════════════════════
       SECTION HEADERS – sticky stacking navigation bars
       ═══════════════════════════════ */
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 44px;
        padding: 0 25px;
        border-top: 1px solid #ffffff;
        cursor: pointer;
        background-color: #1e1e22;
    }

    /* Fixed header stack that accumulates passed section bars at TOP */
    .sticky-header-stack {
        position: fixed;
        top: 47px;
        left: 0;
        right: 0;
        z-index: 15;
        display: none;
    }

    .sticky-header-stack .sticky-clone {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 44px;
        padding: 0 25px;
        border-top: 1px solid #ffffff;
        background-color: #1e1e22;
        cursor: pointer;
    }

    .sticky-header-stack .sticky-clone .title {
        font-size: 17px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: -0.43px;
    }

    .sticky-header-stack .sticky-clone .number {
        font-size: 17px;
        color: #ffffff;
        font-family: 'Rammetto One', cursive;
        letter-spacing: -0.43px;
    }

    .sticky-header-stack .sticky-clone.is-current {
        font-weight: 700;
        background-color: transparent;
    }

    .sticky-header-stack .sticky-clone.is-current .title {
        font-weight: 700;
    }

    /* Fixed footer stack for upcoming section bars at BOTTOM */
    .sticky-footer-stack {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 15;
        display: none;
    }

    .sticky-footer-stack .sticky-clone {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 44px;
        padding: 0 25px;
        border-top: 1px solid #ffffff;
        background-color: #1e1e22;
        cursor: pointer;
    }

    .sticky-footer-stack .sticky-clone .title {
        font-size: 17px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: -0.43px;
    }

    .sticky-footer-stack .sticky-clone .number {
        font-size: 17px;
        color: #ffffff;
        font-family: 'Rammetto One', cursive;
        letter-spacing: -0.43px;
    }

    .section-header .title {
        font-size: 17px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: -0.43px;
        order: -1;
    }

    .section-header .title br {
        display: none;
    }

    .section-header .number {
        font-size: 17px;
        color: #ffffff;
        font-family: 'Rammetto One', cursive;
        letter-spacing: -0.43px;
    }

    /* Active section bar = bold text */
    section.active .section-header .title {
        font-weight: 700;
    }

    /* ═══════════════════════════════
       HOME section – mobile
       ═══════════════════════════════ */
    .home .container {
        position: relative;
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .home .hero-area {
        flex: 1;
        min-height: 0;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* TEMP: Pre-rendered hero image replacement — always 100% width, aspect preserved */
    .home .hero-temp-img {
        width: 100%;
        height: auto;
        max-height: 100%;
        min-height: 0;
        object-fit: contain;
        object-position: center bottom;
        display: block;
        margin-top: auto; /* push to bottom of flex container */
        flex-shrink: 1;
    }

    .home .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .home .atk-photo {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        z-index: 1;
    }

    /* Bilingual intro cards — always visible, never compressed */
    /* Now a direct child of .container, before .hero-area */
    .home .hero-intro-cards {
        display: flex;
        border-bottom: 1px solid #ffffff;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
        background-color: #1e1e22;
    }

    .home .hero-intro-cards .intro-card {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    /* Figma: left card = 70% with all text, right card = 30% empty border column */
    .home .hero-intro-cards .intro-card:first-child {
        width: 70%;
        min-height: 100px;
        padding: 20px 25px;
        border-right: none;
    }

    .home .hero-intro-cards .intro-card:last-child {
        width: 30%;
        min-height: 100px;
        padding: 20px 15px;
        border-left: 1px solid #ffffff;
    }

    .home .hero-intro-cards .intro-card .card-subtitle {
        font-size: 14px;
        color: #ffffff;
        line-height: 1.4;
        letter-spacing: -0.43px;
    }

    .home .hero-intro-cards .intro-card .card-title {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.4;
        letter-spacing: -0.43px;
        text-transform: uppercase;
        font-variant: small-caps;
    }

    .home .hero-intro-cards .card-spacer {
        height: 8px;
    }

    /* Hero content (play button overlay — pass-through, only button is interactive) */
    .home .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
    }

    /* Legacy hero-intro (hide on mobile, replaced by cards) */
    .home .hero-intro {
        display: none;
    }

    .home .play-button {
        display: none;
    }

    .home .play-button img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .home .name-banner {
        height: auto;
        min-height: 80px;
        background: none;
        border-top: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        margin-top: auto;
    }

    .home .name-banner h1 {
        font-family: 'Rammetto One', cursive;
        font-size: clamp(32px, 10vw, 48px);
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        line-height: 1.05;
        text-align: center;
        white-space: normal;
        word-break: break-word;
    }

    .home .name-banner .name-svg-desktop {
        display: none;
    }

    .home .name-banner .name-svg-mobile {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    /* ═══════════════════════════════
       PHOTO PANELS – mobile
       ═══════════════════════════════ */
    .photo-panel {
        width: 100%;
        height: 60vw;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid #ffffff;
    }

    .carousel {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
    }

    .carousel:active {
        cursor: grabbing;
    }

    .carousel-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.8s ease;
        pointer-events: none;
    }

    .carousel-slide.active { opacity: 1; pointer-events: auto; }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-dots {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 5;
    }

    .carousel-dot {
        background: #ffffff;
        transform: rotate(45deg);
    }

    .carousel-dot.active { width: 8px; height: 8px; opacity: 1; }
    .carousel-dot.adjacent { width: 6px; height: 6px; opacity: 0.5; }
    .carousel-dot.distant { width: 4px; height: 4px; opacity: 0.2; }

    /* ═══════════════════════════════
       CONTENT PANELS – mobile
       ═══════════════════════════════ */
    .content-panel {
        padding: 0;
    }

    .content-panel .introduction {
        padding: 40px 20px;
        border-bottom: 1px solid #ffffff;
    }

    .content-panel .section-body {
        padding: 30px 20px;
    }

    /* ═══════════════════════════════
       SECTION 01 – Concert
       ═══════════════════════════════ */
    #section-1 .tower-image { display: none; }

    /* ═══════════════════════════════
       SECTION 02 – Introduction
       ═══════════════════════════════ */
    #section-2 .content-panel .top-area {
        display: block;
    }

    #section-2 .content-panel .bio-text {
        padding: 40px 20px;
    }

    #section-2 .content-panel .side-photo {
        width: 100%;
        height: 300px;
        border-bottom: 1px solid #ffffff;
        overflow: hidden;
    }

    #section-2 .content-panel .side-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
    }

    /* ═══════════════════════════════
       ACCORDION – mobile
       ═══════════════════════════════ */
    .accordion-row {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #ffffff;
        cursor: pointer;
        overflow: hidden;
        letter-spacing: -0.43px;
    }

    .accordion-row .acc-header {
        display: flex;
        width: 100%;
        min-height: 82px;
    }

    .accordion-row .acc-title {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 20px;
        font-weight: 700;
        font-size: 17px;
    }

    /* Expand/collapse indicator */
    .accordion-row .acc-title::after {
        content: '+';
        margin-left: auto;
        font-size: 18px;
        font-weight: 300;
        opacity: 0.5;
        transition: transform 0.3s ease;
    }

    .accordion-row.is-active .acc-title::after {
        content: '\2212'; /* minus sign */
        transform: none;
    }

    /* Number on right side — move indicator to before title, suppress after */
    .m-acc-right .acc-title::after,
    .m-acc-right.is-active .acc-title::after {
        content: none;
    }

    .m-acc-right .acc-title::before {
        content: '+';
        margin-right: 12px;
        font-size: 18px;
        font-weight: 300;
        opacity: 0.5;
        transition: transform 0.3s ease;
    }

    .m-acc-right.is-active .acc-title::before {
        content: '\2212';
    }

    .accordion-row .acc-number {
        width: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #ffffff;
        font-family: 'Rammetto One', cursive;
        font-size: 17px;
        flex-shrink: 0;
    }

    .accordion-row .acc-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease-out;
        width: 100%;
        padding: 0 20px;
        color: #ffffff;
        font-size: 12px;
        line-height: 1.6;
        letter-spacing: -0.43px;
    }

    .accordion-row .acc-content p {
        font-size: 12px;
        line-height: 1.6;
        color: #ffffff;
    }

    .accordion-row.is-active .acc-content {
        max-height: 2000px;
        padding: 15px 20px 20px;
    }

    /* ═══════════════════════════════
       SECTION 03 – Teacher feature
       ═══════════════════════════════ */
    #section-3 .teacher-feature {
        border-top: 1px solid #ffffff;
    }

    #section-3 .teacher-feature .teacher-photo {
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    #section-3 .teacher-feature .teacher-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #section-3 .teacher-feature .teacher-info {
        display: flex;
        padding: 20px;
        gap: 10px;
    }

    #section-3 .teacher-feature .teacher-caption {
        writing-mode: vertical-rl;
        font-style: italic;
        font-size: 14px;
        color: #d4d1ba;
    }

    #section-3 .teacher-feature .teacher-name {
        writing-mode: vertical-rl;
        font-weight: 900;
        font-size: 20px;
        color: #ffffff;
    }

    /* ═══════════════════════════════
       SECTION 04 – Performance
       ═══════════════════════════════ */
    .photo-grid {
        display: block;
    }

    .photo-grid img {
        width: 100%;
        display: block;
        border-bottom: 1px solid #ffffff;
    }

    .grid-top-img,
    .grid-half-img {
        height: auto;
    }

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

    .grid-carousel-col {
        width: 100%;
        height: 60vw;
        position: relative;
    }

    .grid-spacer-col {
        display: none;
    }

    .text-block {
        padding: 30px 20px;
        border-bottom: 1px solid #ffffff;
        text-align: center;
    }

    .text-block .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .text-block p {
        font-size: 14px;
    }

    .wide-banner {
        border-bottom: 1px solid #ffffff;
    }

    .wide-banner img {
        width: 100%;
        display: block;
    }

    .roles-header {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #ffffff;
        font-family: 'Rammetto One', cursive;
        font-size: 20px;
        font-style: italic;
    }

    .roles-columns {
        display: block;
    }

    .roles-column {
        padding: 20px;
        font-size: 14px;
        line-height: 1.8;
        color: #d4d1ba;
        border-bottom: 1px solid #ffffff;
    }

    .role-entry { margin-bottom: 20px; }

    /* ═══════════════════════════════
       SECTION 05 – Media
       ═══════════════════════════════ */
    #section-5 .voice-layout {
        display: block;
    }

    #section-5 .voice-right {
        display: block;
    }

    #section-5 .screenshots-stack {
        display: block;
    }

    #section-5 .screenshots-stack img {
        width: 100%;
        display: block;
        border-bottom: 1px solid #ffffff;
    }

    #section-5 .voice-text {
        padding: 30px 20px;
    }

    #section-5 .voice-logo {
        width: 120px;
        margin-bottom: 20px;
    }

    #section-5 .video-thumbnail {
        position: relative;
        border-top: 1px solid #ffffff;
    }

    #section-5 .video-thumbnail img {
        width: 100%;
        display: block;
    }

    #section-5 .video-thumbnail .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        cursor: pointer;
        background: none;
        border-radius: 0;
    }

    /* ═══════════════════════════════
       FOOTER
       ═══════════════════════════════ */
    footer {
        display: none;
    }

    /* ═══════════════════════════════════════════════
       MOBILE-ONLY SECTIONS — Figma 807:3148
       ═══════════════════════════════════════════════ */

    /* Content wrapper inside mobile sections */
    .m-content {
        flex: 1;
    }

    /* --- Shared mobile block styles --- */
    .m-photo-block {
        width: 100%;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid #ffffff;
    }

    .m-photo-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .m-full-photo {
        height: 100vw; /* square-ish carousel */
    }

    .m-banner {
        height: 56vw;
    }

    .m-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .m-left-photo {
        width: 100%;
        border-bottom: 1px solid #ffffff;
    }

    .m-left-photo img {
        width: 70%;
        aspect-ratio: 300 / 430;
        object-fit: cover;
        display: block;
        border-right: 1px solid #ffffff;
    }

    .m-collage {
        height: 100vw;
    }

    /* --- Photo collage: layered Twelve Tenors + BW portrait (Figma 733:1600) ---
       430×430px at design width. Two performance photos overlapping on left,
       BW blurred portrait on right, color portrait strips overlaid. */
    .m-photo-collage {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-bottom: 1px solid #ffffff;
        background: #1e1e22;
    }

    /* TEMP: Pre-rendered collage image replacement */
    .collage-temp-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* BW blurred portrait — right side */
    .m-collage-bw {
        position: absolute;
        right: 0;
        top: 0;
        width: 51%;
        height: 100%;
        overflow: hidden;
        opacity: 0.4;
    }

    .m-collage-bw img {
        width: 195%;
        height: auto;
        object-fit: cover;
        filter: blur(7.5px) grayscale(100%);
        transform: scaleY(-1);
        position: absolute;
        top: -20%;
        left: -46%;
    }

    /* Top performance photo */
    .m-collage-photo-top {
        position: absolute;
        left: 0;
        top: calc(50% - 25px);
        transform: translateY(-50%);
        width: 83.7%;  /* 360/430 */
        height: 34.9%; /* 150/430 */
        overflow: hidden;
    }

    .m-collage-photo-top img {
        width: 130%;
        height: 110%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Bottom performance photo */
    .m-collage-photo-bottom {
        position: absolute;
        left: 0;
        top: calc(50% + 140px);
        transform: translateY(-50%);
        width: 88.4%;  /* 380/430 */
        height: 34.9%; /* 150/430 */
        overflow: hidden;
        border: 1px solid #ffffff;
    }

    .m-collage-photo-bottom img {
        width: 100%;
        height: 188%;
        object-fit: cover;
        position: absolute;
        top: -8%;
        left: 0;
    }

    /* Color portrait strips — right side overlays */
    .m-collage-color {
        position: absolute;
        right: 0;
        top: 4%;
        width: 32.6%;  /* 140/430 */
        height: 96%;
        overflow: hidden;
    }

    .m-collage-color img {
        width: 306%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: -128%;
    }

    /* --- Text blocks --- */
    .m-text-block {
        padding: 50px 25px;
        text-align: center;
        border-bottom: 1px solid #ffffff;
    }

    .m-text-block .m-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .m-text-block .m-title .rammetto {
        font-size: 17px;
        line-height: 1.4;
    }

    .m-text-block p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }

    .m-text-block.m-indented {
        padding: 50px 25px 50px 25px;
        margin-left: 85px;
        text-align: left;
        border-left: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        position: relative;
    }

    /* Extend border-bottom to full page width */
    .m-text-block.m-indented::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: -86px;
        width: 86px;
        height: 1px;
        background: #ffffff;
    }

    .m-text-block.m-indented .m-title {
        text-align: left;
    }

    .m-text-block.m-indented p {
        text-align: left;
    }

    /* --- Split block (text left + image right — Figma 670:1898) ---
       Left: 300px text area (70%), right-aligned text
       Right: 130px image column (30%), cropped tower photo with border-left + border-top
       Total height: 284px at 430px width */
    .m-split-block {
        display: flex;
        border-bottom: 1px solid #ffffff;
    }

    .m-split-text {
        width: 70%;
        padding: 50px 33px 50px 32px;
        text-align: right;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .m-split-title {
        text-align: right;
    }

    .m-split-title .rammetto {
        display: block;
        font-size: 17px;
        line-height: 22px;
    }

    .m-split-subtitle {
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: normal;
    }

    .m-split-body {
        font-size: 12px;
        line-height: normal;
        text-align: right;
    }

    .m-split-body p {
        font-size: 12px;
        text-align: right;
        margin-bottom: 0;
    }

    .m-split-body p + p {
        margin-top: 1em;
    }

    .m-split-image {
        width: 30%;
        flex-shrink: 0;
        border-left: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        overflow: hidden;
        position: relative;
    }

    .m-split-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 12.5% center;
        display: block;
    }

    /* --- Song list --- */
    .m-song-list {
        padding: 50px 20%;
        text-align: center;
        border-top: 1px solid #ffffff;
    }

    .m-song-list .m-title {
        font-size: 17px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .m-song-list .m-title .rammetto {
        font-size: 17px;
    }

    .m-song-list p {
        font-size: 12px;
        line-height: 2;
    }

    /* --- Split photo (section 2 intro — Figma: 130px left + 300px right at 430px) --- */
    .m-split-photo {
        display: flex;
        aspect-ratio: 430 / 430;
        border-bottom: 1px solid #ffffff;
    }

    .m-split-photo-left {
        width: 30%;
        border-right: 1px solid #ffffff;
    }

    .m-split-photo-right {
        width: 70%;
        overflow: hidden;
    }

    .m-split-photo-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- BW carousel (section 2) --- */
    .m-bw-carousel {
        height: 56vw;
    }

    .m-bw-carousel img {
        filter: grayscale(100%);
    }

    /* --- Teacher block (section 2) --- */
    .m-teacher-block {
        display: flex;
        height: 70vw;
        border-bottom: 1px solid #ffffff;
    }

    .m-teacher-info {
        width: 30%;
        border-right: 1px solid #ffffff;
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
        padding: 20px 15px;
    }

    .m-teacher-caption {
        writing-mode: vertical-rl;
        font-size: 12px;
        color: #ffffff;
        line-height: 1.3;
    }

    .m-teacher-name {
        writing-mode: vertical-rl;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
    }

    .m-teacher-photo {
        width: 70%;
        position: relative;
        overflow: hidden;
    }

    .m-teacher-photo .carousel,
    .m-teacher-photo .carousel-slide,
    .m-teacher-photo .carousel-slide img {
        width: 100%;
        height: 100%;
    }

    /* --- Mobile accordion variants --- */

    /* Left-aligned number (number | title) — for section 2 bio accordions */
    .m-acc-left .acc-header {
        flex-direction: row;
    }

    .m-acc-left .acc-number {
        border-left: none;
        border-right: 1px solid #ffffff;
        order: -1;
        width: 85px;
    }

    .m-acc-left .acc-content {
        margin-left: 84px;
        padding: 0 20px 0 20px;
        border-left: 1px solid #ffffff;
        width: calc(100% - 84px);
    }

    .m-acc-left.is-active .acc-content {
        padding: 15px 20px 20px 20px;
        max-height: 2000px;
    }

    /* Right-aligned number (title | number) — for section 2 pro accordions */
    .m-acc-right .acc-header {
        flex-direction: row;
    }

    .m-acc-right .acc-number {
        border-left: 1px solid #ffffff;
    }

    .m-acc-right .acc-title {
        text-align: right;
        justify-content: flex-end;
    }

    .m-acc-right .acc-content {
        text-align: right;
        margin-right: 84px;
        padding: 0 20px 0 20px;
        border-right: 1px solid #ffffff;
        width: calc(100% - 84px);
    }

    .m-acc-right.is-active .acc-content {
        padding: 15px 20px 20px 20px;
        max-height: 2000px;
    }

    /* --- Voice photos staggered grid (section 3) --- */
    /* --- Voice screenshots staggered grid (Figma 733:1633) ---
       3 photos at 300×169 in a 430×507 area, staggered:
       top-left, middle-right, bottom-left */
    .m-voice-photos {
        position: relative;
        width: 100%;
        aspect-ratio: 430 / 507;
    }

    .m-voice-photo-row {
        position: absolute;
        width: 70%;   /* 300/430 */
        height: 33.3%; /* 169/507 */
        overflow: hidden;
        border: 1px solid #ffffff;
    }

    .m-voice-photo-row:nth-child(1) {
        left: 0;
        top: 0;
        margin-top: -1px;
    }

    .m-voice-photo-row:nth-child(2) {
        right: 0;
        left: auto;
        top: 33.5%; /* 170/507 */
        margin-top: -3px;
    }

    .m-voice-photo-row:nth-child(3) {
        left: 0;
        top: 67%;  /* 340/507 */
        margin-top: -5px;
        border-bottom: none;
    }

    .m-voice-photo-row img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}
