:root {
    --black: #050505;
    --black-soft: #111111;
    --white: #ffffff;
    --cream: #f5efe6;
    --gold: #c9a45c;
    --gold-soft: #e0c98d;
    --grey: #c8c8c8;
    --text: #1d1d1d;
    --muted: #666666;
    --max-width: 1180px;
}

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    font-family: "Raleway", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

html:has(.mobile-menu-toggle:checked),
body:has(.mobile-menu-toggle:checked) {
    overflow: hidden;
    height: 100%;
}

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

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

main,
section,
footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 0;
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    min-width: 0;
    flex-shrink: 0;
}

.brand-main-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    max-width: 100%;
}

.brand-main-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    transform: translateY(1px);
}

.brand-sub {
    margin-left: 72px;
    margin-top: 4px;
    color: var(--grey);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
    min-width: 0;
}

.main-nav a {
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    padding: 11px 18px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* MOBILE MENU */

.mobile-menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    width: 34px;
    height: 26px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
}

@media (max-width: 980px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 20000;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #111111;
        color: var(--white);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.22s ease, visibility 0.22s ease;
        overflow: hidden;
        overscroll-behavior: contain;
        touch-action: none;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-top {
        min-height: 82px;
        padding: 16px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #111111;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
        min-width: 0;
    }

    .mobile-brand {
        color: var(--white);
        display: block;
        min-width: 0;
        max-width: calc(100vw - 86px);
        overflow: hidden;
    }

    .mobile-close {
        position: relative;
        width: 34px;
        height: 34px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-close span {
        position: absolute;
        top: 50%;
        left: 0;
        width: 34px;
        height: 2px;
        background: var(--white);
        border-radius: 99px;
    }

    .mobile-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-menu-links {
        background: #111111;
        flex-shrink: 0;
        padding-top: 4px;
    }

    .mobile-menu-links > a {
        display: grid;
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding: 14px 22px;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(8px);
    }

    .menu-icon {
        width: 24px;
        height: 24px;
        margin-top: 1px;
        color: var(--gold-soft);
    }

    .menu-icon svg {
        width: 100%;
        height: 100%;
        fill: currentColor;
    }

    .menu-copy {
        display: block;
        min-width: 0;
    }

    .menu-copy > span {
        display: block;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.25;
    }

    .menu-copy small {
        display: block;
        margin-top: 3px;
        max-width: 270px;
        color: #bdbdbd;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.35;
    }

    .mobile-menu-links > a:hover {
        background: rgba(255, 255, 255, 0.035);
    }

    .mobile-menu-spacer {
        flex: 1;
        min-height: 40px;
        background: #111111;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a {
        animation: mobileLinkIn 0.28s ease forwards;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a:nth-child(1) {
        animation-delay: 0.02s;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a:nth-child(2) {
        animation-delay: 0.05s;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a:nth-child(3) {
        animation-delay: 0.08s;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a:nth-child(4) {
        animation-delay: 0.11s;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a:nth-child(5) {
        animation-delay: 0.14s;
    }

    .mobile-menu-toggle:checked ~ .mobile-nav .mobile-menu-links > a:nth-child(6) {
        animation-delay: 0.17s;
    }

    .mobile-menu-toggle:checked + .header-container .brand-main-logo img,
    .mobile-menu-toggle:checked ~ .mobile-nav .brand-main-logo img {
        animation: pianoLogoOpen 0.38s ease;
    }
}

@keyframes mobileLinkIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pianoLogoOpen {
    0% {
        transform: translateY(1px) rotate(0deg) scale(1);
    }

    45% {
        transform: translateY(1px) rotate(-6deg) scale(1.06);
    }

    100% {
        transform: translateY(1px) rotate(0deg) scale(1);
    }
}

/* HERO */

.hero {
    position: relative;
    min-height: 760px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 65%, var(--cream) 100%),
        url("/assets/images/accueil-piano-mains.jpg");
    background-size: cover;
    background-position: center 55%;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--cream));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 28px 170px;
    min-width: 0;
}

.hero-kicker {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 600;
    max-width: 940px;
    margin-bottom: 28px;
    overflow-wrap: break-word;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    color: #eeeeee;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* PROMO */

.summer-promo {
    position: relative;
    z-index: 4;
    margin-top: -52px;
    background: var(--cream);
}

.summer-promo-container {
    padding-top: 0;
    padding-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.summer-promo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #9d2532;
    color: var(--white);
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.summer-promo-label svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex-shrink: 0;
}

.summer-promo-container p {
    color: var(--black);
    font-weight: 700;
}

/* SECTIONS */

.section-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 90px 28px;
    min-width: 0;
}

.section-kicker,
.section-title span {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    color: var(--black);
}

/* PRESENTATION */

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

.presentation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
    gap: 70px;
    align-items: start;
}

.presentation-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    margin-bottom: 26px;
    color: var(--black);
}

.presentation-text p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.presentation-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 4px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.presentation-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin-bottom: 14px;
}

.presentation-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.presentation-card a {
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid var(--gold);
}

/* SERVICES - DESKTOP CLAVIER */

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

.piano-services-section {
    position: relative;
    padding: 96px 0 118px;
    background: var(--cream);
    overflow: visible;
}

.piano-services-section .section-container {
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
}

.services-heading {
    max-width: 780px;
    margin: 0 auto 54px;
    text-align: center;
}

.services-heading h2 {
    margin-bottom: 16px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4.3vw, 62px);
    line-height: 1.06;
}

.services-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.piano-keyboard-services {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    overflow: visible;
}

.piano-white-keys {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    border-radius: 0 0 20px 20px;
    overflow: visible;
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.08));
}

.piano-white-keys::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7px;
    z-index: 10;
    background: linear-gradient(
        90deg,
        #7f1118 0%,
        #b2222d 22%,
        #d0464f 50%,
        #b2222d 78%,
        #7f1118 100%
    );
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.20);
    pointer-events: none;
}

.piano-white-key {
    position: relative;
    align-self: start;
    height: 622px;
    min-height: 622px;
    max-height: 622px;
    padding: 168px 30px 68px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 50%, #f4f4f4 78%, #ededed 100%);
    border-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -14px 20px rgba(0, 0, 0, 0.035);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transform: none;
    overflow: hidden;
    transition:
        height 0.16s ease,
        min-height 0.16s ease,
        max-height 0.16s ease,
        padding-bottom 0.16s ease,
        background 0.16s ease,
        box-shadow 0.16s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.piano-white-key:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.piano-white-key:first-child {
    border-bottom-left-radius: 20px;
}

.piano-white-key:last-child {
    border-bottom-right-radius: 20px;
}

.piano-white-key::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -1px;
    right: -1px;
    height: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #eeeeee 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.piano-white-key + .piano-white-key {
    box-shadow:
        inset 1px 0 0 rgba(0, 0, 0, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -14px 20px rgba(0, 0, 0, 0.035);
}

.piano-white-key > * {
    position: relative;
    z-index: 3;
    transition: transform 0.16s ease;
}

/* hauteurs virtuelles pour équilibrer les contenus */
.piano-white-key h3 {
    min-height: 108px;
}

.piano-white-key p {
    min-height: 132px;
}

/* hover : même hauteur pour les 3 touches */
.piano-white-key:hover {
    height: 622px;
    min-height: 622px;
    max-height: 622px;
    padding-bottom: 68px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 55%, #eeeeee 100%);
    box-shadow:
        inset 1px 0 0 rgba(0, 0, 0, 0.06),
        inset 0 4px 10px rgba(0, 0, 0, 0.035),
        inset 0 -10px 18px rgba(0, 0, 0, 0.035);
}

.piano-white-key:hover > * {
    transform: none;
}

/* clic : seule la touche cliquée joue */
.piano-white-key.is-playing {
    height: 652px;
    min-height: 652px;
    max-height: 652px;
    padding-bottom: 98px;
    background:
        linear-gradient(180deg, #f1f1f1 0%, #e9e9e9 58%, #dedede 100%);
    box-shadow:
        inset 1px 0 0 rgba(0, 0, 0, 0.06),
        inset 0 8px 16px rgba(0, 0, 0, 0.08),
        inset 0 -5px 10px rgba(0, 0, 0, 0.045);
}

.piano-white-key.is-playing > *:not(.click-music-note) {
    transform: translateY(14px);
}

/* ancienne note désactivée */
.piano-note-pop {
    display: none !important;
}

/* note au clic, partout sur le site */
.click-music-note {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    animation: clickMusicNote 0.72s ease forwards;
}

@keyframes clickMusicNote {
    0% {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.65) rotate(-12deg);
    }

    22% {
        opacity: 1;
        transform: translate(-50%, -70%) scale(1.12) rotate(4deg);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -145%) scale(1) rotate(14deg);
    }
}

.piano-black-keys {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 206px;
    z-index: 20;
    pointer-events: auto;
}

.piano-black-key {
    position: absolute;
    top: 7px;
    width: 18.5%;
    height: 178px;
    background:
        linear-gradient(180deg, #303030 0%, #171717 28%, #060606 70%, #000000 100%);
    border-radius: 0 0 13px 13px;
    box-shadow:
        0 16px 24px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -12px 18px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transform-origin: top center;
    transition:
        height 0.14s ease,
        background 0.14s ease,
        box-shadow 0.14s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.piano-black-key::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    pointer-events: none;
}

.piano-black-key-1 {
    left: 33.333%;
    transform: translateX(-50%);
}

.piano-black-key-2 {
    left: 66.666%;
    transform: translateX(-50%);
}

.piano-black-key-1:hover,
.piano-black-key-2:hover {
    height: 190px;
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, #202020 0%, #0e0e0e 45%, #000000 100%);
    box-shadow:
        0 8px 14px rgba(0, 0, 0, 0.20),
        inset 0 4px 8px rgba(255, 255, 255, 0.035),
        inset 0 -8px 14px rgba(0, 0, 0, 0.58);
}

.piano-black-key-1:active,
.piano-black-key-2:active {
    height: 204px;
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, #121212 0%, #050505 58%, #000000 100%);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.14),
        inset 0 8px 14px rgba(0, 0, 0, 0.78);
}

/* CONTENU TOUCHES */

.piano-service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #f3ede3;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.piano-white-key h3 {
    margin-bottom: 18px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 2.4vw, 48px);
    line-height: 1.04;
}

.piano-white-key p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 95%;
}

.piano-white-key a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.piano-white-key a::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.2s ease;
}

.piano-white-key a:hover {
    color: var(--gold);
}

.piano-white-key a:hover::after {
    transform: translateX(4px);
}

/* QUOTE */

.soft-quote {
    background: #111111;
    color: var(--white);
    text-align: center;
}

.soft-quote .section-container {
    padding-top: 76px;
    padding-bottom: 76px;
}

.soft-quote p {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.2;
    max-width: 920px;
    margin: 0 auto 18px;
}

.soft-quote span {
    color: var(--gold-soft);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* VISIT */

.human-visit,
.visit-section {
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 64px;
    align-items: start;
}

.visit-grid h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    margin-bottom: 22px;
}

.visit-grid p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.visit-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.visit-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.visit-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0 28px;
}

.visit-contacts a {
    font-weight: 700;
    color: var(--black);
}

/* PUBLIC CONTENT BLOCKS */

.site-content-blocks {
    background: var(--cream);
}

.site-content-block {
    padding: 72px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.site-content-block:first-child {
    border-top: 0;
}

.site-content-category {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #111111;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-content-block h2 {
    max-width: 840px;
    margin-bottom: 26px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
}

.site-content-text {
    max-width: 860px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.85;
}

.site-content-text p,
.site-content-text ul,
.site-content-text ol,
.site-content-text blockquote {
    margin-bottom: 18px;
}

.site-content-text h2,
.site-content-text h3 {
    margin: 28px 0 14px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    line-height: 1.15;
}

.site-content-text h2 {
    font-size: 36px;
}

.site-content-text h3 {
    font-size: 28px;
}

.site-content-text ul,
.site-content-text ol {
    padding-left: 24px;
}

.site-content-text strong,
.site-content-text b {
    color: var(--black);
    font-weight: 800;
}

.site-content-text mark {
    padding: 0 4px;
    background: #fff1a8;
}

.site-content-images {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.site-content-images-count-1 {
    grid-template-columns: 1fr;
}

.site-content-images-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-content-images-count-3,
.site-content-images-count-4,
.site-content-images-count-5,
.site-content-images-count-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-content-images figure {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #111111;
}

.site-content-images img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.site-content-images figure:hover img {
    transform: scale(1.035);
}

/* FOOTER */

.site-footer {
    background: var(--black);
    color: var(--grey);
}

.footer-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 38px 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer strong {
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

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

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

/* FLOATING WHATSAPP BUTTON */

.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.whatsapp-floating svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-floating:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--black);
}

/* TABLET */

@media (max-width: 980px) {
    .header-container {
        padding: 14px 22px;
    }

    .presentation-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .piano-white-key,
    .piano-white-key:hover {
        height: 592px;
        min-height: 592px;
        max-height: 592px;
        padding: 170px 22px 62px;
    }

    .piano-white-key.is-playing {
        height: 622px;
        min-height: 622px;
        max-height: 622px;
        padding-bottom: 92px;
    }

    .piano-black-key {
        height: 160px;
    }

    .piano-black-key-1:hover,
    .piano-black-key-2:hover {
        height: 172px;
    }

    .piano-black-key-1:active,
    .piano-black-key-2:active {
        height: 186px;
    }

    .piano-black-keys {
        height: 190px;
    }
}

/* MOBILE - SERVICES EN CARTES */

@media (max-width: 820px) {
    .piano-services-section {
        padding: 72px 0 82px;
    }

    .piano-services-section .section-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .services-heading {
        max-width: 100%;
        margin-bottom: 32px;
        text-align: left;
    }

    .services-heading h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .services-heading p {
        font-size: 16px;
        line-height: 1.75;
    }

    .piano-keyboard-services {
        max-width: 100%;
        margin: 0;
    }

    .piano-black-keys {
        display: none !important;
    }

    .piano-white-keys {
        display: flex !important;
        flex-direction: column;
        gap: 18px;
        align-items: stretch !important;
        filter: none;
        border-radius: 0;
        overflow: visible;
    }

    .piano-white-keys::before {
        display: none !important;
    }

    .piano-white-key,
    .piano-white-key:hover,
    .piano-white-key:active,
    .piano-white-key.is-playing {
        position: relative;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 28px 24px 26px !important;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 24px !important;
        background: #ffffff !important;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07) !important;
        transform: none !important;
        overflow: hidden;
    }

    .piano-white-key::before {
        display: none !important;
    }

    .piano-white-key h3,
    .piano-white-key p {
        min-height: 0 !important;
    }

    .piano-white-key > * {
        position: relative;
        z-index: 2;
    }

    .piano-white-key:hover > *,
    .piano-white-key:active > *,
    .piano-white-key.is-playing > *:not(.click-music-note) {
        transform: none !important;
    }

    .piano-service-number {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        font-size: 22px;
        background: #f3ede3;
    }

    .piano-white-key h3 {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 32px;
        line-height: 1.05;
    }

    .piano-white-key p {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.75;
    }

    .piano-white-key a {
        font-size: 15px;
    }

    .piano-white-key.mobile-tap {
        transform: scale(0.985) !important;
        background: #f8f8f8 !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
    }

    .click-music-note {
        font-size: 30px;
    }
}

/* MOBILE GLOBAL */

@media (max-width: 620px) {
    .header-container {
        padding: 14px 16px;
        gap: 14px;
        overflow: hidden;
    }

    .brand-wordmark {
        flex: 1;
        min-width: 0;
        max-width: calc(100vw - 84px);
        overflow: hidden;
    }

    .brand-main-logo {
        font-size: clamp(19px, 5.5vw, 23px);
        max-width: 100%;
        overflow: hidden;
    }

    .brand-main-logo img {
        width: 29px;
        height: 29px;
    }

    .brand-sub {
        margin-left: 51px;
        font-size: 9px;
        letter-spacing: 0.22em;
    }

    .mobile-menu-top {
        min-height: 76px;
        padding: 12px 16px;
    }

    .mobile-menu-links > a {
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 12px;
        padding: 13px 18px;
    }

    .menu-icon {
        width: 22px;
        height: 22px;
    }

    .menu-copy > span {
        font-size: 15px;
    }

    .menu-copy small {
        font-size: 11px;
        max-width: 220px;
    }

    .hero {
        min-height: 660px;
        background-position: center bottom;
    }

    .hero-content {
        padding: 90px 18px 130px;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 0.20em;
    }

    .hero h1 {
        font-size: clamp(36px, 10vw, 42px);
        line-height: 1.08;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn {
        padding: 13px 20px;
        font-size: 13px;
    }

    .summer-promo {
        margin-top: -42px;
    }

    .summer-promo-container {
        display: block;
        padding: 0 18px 38px;
        text-align: left;
    }

    .summer-promo-label {
        margin-bottom: 12px;
        padding: 10px 14px;
    }

    .summer-promo-container p {
        font-size: 15px;
        line-height: 1.5;
    }

    .section-container {
        padding: 70px 18px;
    }

    .presentation-text h2,
    .visit-grid h2 {
        font-size: 32px;
    }

    .presentation-text p,
    .visit-grid p {
        font-size: 16px;
    }

    .presentation-card,
    .visit-card {
        padding: 26px;
    }

    .piano-services-section {
        padding: 72px 0 82px;
    }

    .services-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .services-heading p {
        font-size: 16px;
    }

    .piano-white-key,
    .piano-white-key:hover,
    .piano-white-key:active,
    .piano-white-key.is-playing {
        padding: 24px 20px 24px !important;
    }

    .piano-service-number {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
        font-size: 20px;
    }

    .piano-white-key h3 {
        font-size: 28px;
    }

    .piano-white-key p {
        font-size: 15px;
        line-height: 1.75;
    }

    .site-content-block {
        padding: 52px 0;
    }

    .site-content-text {
        font-size: 16px;
    }

    .site-content-images,
    .site-content-images-count-2,
    .site-content-images-count-3,
    .site-content-images-count-4,
    .site-content-images-count-5,
    .site-content-images-count-6 {
        grid-template-columns: 1fr;
    }

    .site-content-images img {
        height: 260px;
    }

    .footer-container {
        flex-direction: column;
        padding: 34px 18px;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-floating svg {
        width: 29px;
        height: 29px;
    }
}

/* VERY SMALL MOBILE / LOW HEIGHT */

@media (max-width: 380px) {
    .brand-main-logo {
        font-size: 19px;
    }

    .brand-main-logo img {
        width: 26px;
        height: 26px;
    }

    .brand-sub {
        margin-left: 46px;
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .hero h1 {
        font-size: 34px;
    }

    .btn {
        width: 100%;
    }
}

@media (max-height: 640px) and (max-width: 980px) {
    .mobile-menu-top {
        min-height: 68px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-menu-links > a {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .menu-copy small {
        display: none;
    }
}
/* =========================================
   PAGE NOS PIANOS
========================================= */

.pianos-hero {
    background:
        radial-gradient(circle at top right, rgba(201, 164, 92, 0.16), transparent 34%),
        linear-gradient(180deg, #111111 0%, #191919 100%);
    color: var(--white);
}

.pianos-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 70px;
    align-items: center;
    padding-top: 112px;
    padding-bottom: 112px;
}

.pianos-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 5.8vw, 76px);
    line-height: 1.04;
    font-weight: 600;
}

.pianos-hero p {
    max-width: 680px;
    color: #dddddd;
    font-size: 18px;
    line-height: 1.85;
}

.pianos-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-dark {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-dark:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    transform: translateY(-2px);
}

.pianos-hero-card {
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.pianos-hero-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pianos-hero-card strong {
    display: block;
    margin-bottom: 16px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.1;
}

.pianos-hero-card p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.75;
}

/* INTRO */

.pianos-intro {
    background: var(--cream);
}

.pianos-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 70px;
    padding-bottom: 50px;
}

.pianos-intro-item {
    padding: 30px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
}

.pianos-intro-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #f3ede3;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
}

.pianos-intro-item h2 {
    margin-bottom: 10px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.1;
}

.pianos-intro-item p {
    color: var(--muted);
    line-height: 1.75;
}

/* LISTE */

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

.pianos-list-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.pianos-list-heading h2 {
    margin-bottom: 16px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
}

.pianos-list-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

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

.piano-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    min-height: 360px;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.065);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.065);
}

.piano-card-image {
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.piano-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 38px;
    opacity: 0.92;
}

.piano-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.piano-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.piano-card-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f3ede3;
    color: #8a6a2f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.piano-card h3 {
    margin-bottom: 14px;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.08;
}

.piano-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.piano-card ul {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.piano-card li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.piano-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gold);
}

.piano-card-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.piano-card-bottom strong {
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
}

.piano-card-bottom a {
    color: var(--black);
    font-size: 14px;
    font-weight: 800;
    border-bottom: 1px solid var(--gold);
}

/* CTA */

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

.pianos-cta {
    padding: 58px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(17, 17, 17, 0.96)),
        radial-gradient(circle at top right, rgba(201, 164, 92, 0.20), transparent 38%);
    color: var(--white);
    text-align: center;
}

.pianos-cta h2 {
    max-width: 720px;
    margin: 0 auto 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
}

.pianos-cta p {
    max-width: 680px;
    margin: 0 auto;
    color: #dddddd;
    font-size: 17px;
    line-height: 1.8;
}

.pianos-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn-light {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: var(--white);
}

.btn-light:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    transform: translateY(-2px);
}

/* RESPONSIVE PAGE NOS PIANOS */

@media (max-width: 980px) {
    .pianos-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pianos-hero-card {
        max-width: 520px;
    }

    .pianos-intro-grid {
        grid-template-columns: 1fr;
    }

    .pianos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .pianos-hero-inner {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .pianos-hero h1 {
        font-size: 38px;
    }

    .pianos-hero p {
        font-size: 16px;
    }

    .pianos-hero-card {
        padding: 26px;
        border-radius: 22px;
    }

    .pianos-hero-card strong {
        font-size: 28px;
    }

    .pianos-intro-grid {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .pianos-intro-item {
        padding: 24px;
    }

    .pianos-grid {
        gap: 20px;
    }

    .piano-card {
        grid-template-columns: 1fr;
    }

    .piano-card-image {
        min-height: 230px;
    }

    .piano-card-image img {
        max-height: 210px;
    }

    .piano-card-content {
        padding: 24px;
    }

    .piano-card h3 {
        font-size: 30px;
    }

    .piano-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .pianos-cta {
        padding: 34px 24px;
        border-radius: 24px;
        text-align: left;
    }

    .pianos-cta h2 {
        font-size: 34px;
    }

    .pianos-cta-actions {
        justify-content: flex-start;
    }
}