:root {
    --bg: #060506;
    --ink: #fff8ee;
    --muted: rgba(255, 248, 238, 0.72);
    --line: rgba(255, 248, 238, 0.16);
    --panel: rgba(14, 12, 14, 0.76);
    --gold: #f7b23a;
    --red: #b83249;
    --cyan: #36d6c2;
    --green: #9bd36a;
    --shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
    --radius: 8px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.58;
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

body.is-loading .topbar,
body.is-loading main,
body.is-loading .footer {
    opacity: 0;
}

body.is-ready .topbar,
body.is-ready main,
body.is-ready .footer {
    opacity: 1;
    transition: opacity 520ms ease;
}

a {
    color: inherit;
    text-decoration-color: rgba(247, 178, 58, 0.55);
    text-underline-offset: 0.24em;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

img {
    height: auto;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(247, 178, 58, 0.14), transparent 20rem),
        linear-gradient(180deg, #080607, #020202);
    transition: opacity 520ms ease, visibility 520ms ease;
}

body.is-ready .loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-panel {
    width: min(34rem, 100%);
    padding: clamp(1.25rem, 5vw, 2.4rem);
    background: rgba(12, 10, 12, 0.84);
    border: 1px solid rgba(255, 248, 238, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    backdrop-filter: blur(18px);
}

.loader-mark {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.3rem;
    color: #080607;
    background: conic-gradient(from 210deg, var(--gold), #fff8ee, var(--cyan), var(--gold));
    border-radius: 50%;
    font-weight: 950;
}

.loader h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.loader-text {
    margin: 1rem auto 1.1rem;
    color: var(--muted);
}

.loader-track {
    height: 0.55rem;
    overflow: hidden;
    background: rgba(255, 248, 238, 0.1);
    border-radius: 999px;
}

.loader-track span {
    display: block;
    width: 4%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    border-radius: inherit;
    transition: width 220ms ease;
}

.loader small {
    display: block;
    margin-top: 0.8rem;
    color: rgba(255, 248, 238, 0.6);
}

.loader-sound {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    min-height: 2.7rem;
    padding: 0.7rem 1rem;
    color: #080607;
    background: var(--gold);
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

body.sound-on .loader-sound {
    color: var(--ink);
    background: rgba(255, 248, 238, 0.1);
    border: 1px solid rgba(255, 248, 238, 0.18);
}

.sound-toggle {
    position: fixed;
    right: clamp(0.75rem, 2vw, 1.2rem);
    bottom: clamp(0.75rem, 2vw, 1.2rem);
    z-index: 45;
    min-width: 4.9rem;
    min-height: 2.3rem;
    padding: 0.45rem 0.68rem;
    color: rgba(255, 248, 238, 0.78);
    background: rgba(8, 6, 8, 0.22);
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 0 38px rgba(255, 248, 238, 0.05);
    backdrop-filter: blur(24px);
}

.sound-toggle[aria-pressed="true"] {
    color: #080607;
    background: rgba(247, 178, 58, 0.78);
}

#stage {
    position: fixed;
    inset: 0;
    z-index: -4;
    width: 100vw;
    height: 100vh;
}

.atmosphere {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 5, 6, 0.88), rgba(6, 5, 6, 0.18) 35%, rgba(6, 5, 6, 0.42) 66%, rgba(6, 5, 6, 0.92)),
        radial-gradient(circle at 58% 32%, rgba(247, 178, 58, 0.12), transparent 24rem),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 58px);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 3vw, 2rem);
    background: linear-gradient(180deg, rgba(6, 5, 6, 0.88), rgba(6, 5, 6, 0.16));
    border-bottom: 1px solid rgba(255, 248, 238, 0.1);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    flex: 0 0 3.1rem;
    color: #080607;
    background: conic-gradient(from 210deg, var(--gold), #fff8ee, var(--cyan), var(--gold));
    border-radius: 50%;
    font-weight: 950;
    box-shadow: 0 0 0 5px rgba(255, 248, 238, 0.08);
}

.brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    line-height: 1;
}

.brand small {
    display: block;
    max-width: 32ch;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius);
    color: rgba(255, 248, 238, 0.84);
    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none;
}

.main-menu a:hover,
.main-menu a[aria-current="page"] {
    color: #080607;
    background: var(--gold);
}

.main-menu a.utility {
    border: 1px solid var(--line);
    background: rgba(255, 248, 238, 0.07);
}

.main-menu a.utility.hot {
    color: #080607;
    border-color: transparent;
    background: var(--cyan);
}

.menu-toggle {
    display: none;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    background: rgba(255, 248, 238, 0.08);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.24rem auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 240vh;
}

.hero-copy {
    position: sticky;
    top: 17vh;
    width: min(44rem, calc(100vw - 2rem));
    margin-left: clamp(1rem, 5vw, 4rem);
    padding-top: 5rem;
    pointer-events: none;
    transition: opacity 260ms ease;
}

body.has-entered .hero-copy {
    opacity: 0.12;
}

.kicker {
    margin: 0 0 0.8rem;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 7ch;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 11vw, 10.5rem);
    line-height: 0.85;
    letter-spacing: 0;
    text-shadow: 0 10px 46px rgba(0, 0, 0, 0.75);
}

.hero p:not(.kicker) {
    max-width: 45rem;
    margin: 1.3rem 0 0;
    color: rgba(255, 248, 238, 0.86);
    font-size: clamp(1.08rem, 1.8vw, 1.42rem);
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-top: 2rem;
    pointer-events: auto;
}

.hero-actions a,
.hero-actions button,
.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.76rem 1rem;
    color: var(--ink);
    background: rgba(255, 248, 238, 0.09);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.hero-actions .primary-action {
    color: #080607;
    background: var(--gold);
    border-color: transparent;
}

.scene-hint {
    position: fixed;
    right: clamp(1rem, 4vw, 3rem);
    bottom: 2rem;
    z-index: 12;
    display: grid;
    gap: 0.55rem;
    width: min(20rem, calc(100vw - 2rem));
    pointer-events: none;
    transition: opacity 220ms ease;
}

body.has-entered .scene-hint {
    opacity: 0;
    visibility: hidden;
}

.scene-hint span {
    padding: 0.8rem 0.95rem;
    color: rgba(255, 248, 238, 0.78);
    background: rgba(8, 6, 8, 0.18);
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: 0 0 34px rgba(255, 248, 238, 0.045);
    backdrop-filter: blur(22px);
}

.look-note {
    position: fixed;
    left: clamp(0.75rem, 2vw, 1.2rem);
    bottom: clamp(0.75rem, 2vw, 1.2rem);
    z-index: 13;
    max-width: min(23rem, calc(100vw - 7rem));
    margin: 0;
    padding: 0.55rem 0.72rem;
    color: rgba(255, 248, 238, 0.72);
    background: rgba(8, 6, 8, 0.12);
    border-radius: 999px;
    box-shadow: 0 0 48px rgba(255, 248, 238, 0.035);
    font-size: 0.78rem;
    font-weight: 820;
    pointer-events: none;
    backdrop-filter: blur(28px);
}

body.has-entered .look-note {
    opacity: 0.34;
}

.hotspots {
    position: fixed;
    inset: 0;
    z-index: 16;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    display: grid;
    grid-template-columns: 3.9rem minmax(6.4rem, 10.2rem);
    gap: 0.58rem;
    align-items: center;
    width: max-content;
    max-width: min(15rem, 72vw);
    padding: 0.5rem;
    color: var(--ink);
    background: rgba(10, 8, 10, 0.18);
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: 0 18px 78px rgba(0, 0, 0, 0.22), 0 0 42px rgba(255, 248, 238, 0.045), inset 0 0 38px rgba(255, 248, 238, 0.025);
    text-decoration: none;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
    backdrop-filter: blur(34px) saturate(122%);
    cursor: pointer;
}

.hotspot:hover,
.hotspot.is-active {
    border-color: rgba(247, 178, 58, 0.18);
    box-shadow: 0 18px 80px rgba(0, 0, 0, 0.24), 0 0 54px rgba(247, 178, 58, 0.18);
    transform: translate(-50%, -50%) scale(1.04);
}

.hotspot img {
    width: 3.9rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    background: rgba(255, 248, 238, 0.08);
}

.hotspot strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.98rem;
    line-height: 1.05;
}

.hotspot small {
    display: block;
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.25;
}

.content-shell {
    position: relative;
    z-index: 18;
    display: grid;
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.content-index {
    position: sticky;
    top: 96px;
    align-self: start;
}

.content-index a {
    display: block;
    margin-bottom: 0.35rem;
    padding: 0.62rem 0.75rem;
    color: rgba(255, 248, 238, 0.75);
    background: rgba(8, 6, 8, 0.16);
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 820;
    text-decoration: none;
}

.content-index a[aria-current="page"],
.content-index a:hover {
    color: #080607;
    background: var(--gold);
}

.content-card {
    position: relative;
    min-height: 60vh;
    padding: clamp(1rem, 3vw, 2rem);
    color: rgba(255, 248, 238, 0.88);
    background: rgba(9, 8, 9, 0.028);
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.08), 0 0 90px rgba(255, 248, 238, 0.012), inset 0 0 84px rgba(255, 248, 238, 0.006);
    backdrop-filter: blur(18px) saturate(106%);
}

.content-card::before {
    content: "";
    position: absolute;
    inset: -13px;
    z-index: -1;
    border-radius: calc(var(--radius) + 12px);
    border: 1px solid rgba(255, 248, 238, 0.018);
    opacity: 0.34;
    filter: blur(18px);
    pointer-events: none;
}

.content-card > * {
    position: relative;
    z-index: 1;
}

.content-card header {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.content-card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.return-amphi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.68rem 0.9rem;
    color: var(--ink);
    background: rgba(8, 6, 8, 0.105);
    border: 1px solid transparent;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 42px rgba(255, 248, 238, 0.035);
    backdrop-filter: blur(30px);
}

.return-amphi:hover {
    color: #080607;
    background: var(--gold);
}

.content-card .page-html {
    max-width: 900px;
    overflow-wrap: anywhere;
}

.content-card[data-route-slug="photos"] .page-html,
.content-card[data-route-slug="videos"] .page-html,
.content-card[data-route-slug="presse"] .page-html {
    max-width: none;
}

.content-card .page-html > *:first-child {
    margin-top: 0;
}

.page-html h1,
.page-html h2,
.page-html h3,
.page-html h4 {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.06;
    letter-spacing: 0;
}

.page-html h2 {
    margin-top: 2.4rem;
    font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}

.page-html h3 {
    margin-top: 2rem;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.tns-news-feature {
    margin: 0 0 2.5rem;
    padding: clamp(1rem, 3vw, 1.6rem);
    background: linear-gradient(135deg, rgba(247, 178, 58, 0.018), rgba(54, 214, 194, 0.01));
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: 0 0 88px rgba(247, 178, 58, 0.018), inset 0 0 70px rgba(255, 248, 238, 0.006);
    backdrop-filter: blur(16px);
}

.tns-news-visual {
    margin: 1.35rem 0 1.6rem;
}

.tns-news-visual picture,
.tns-news-visual img {
    display: block;
    width: 100%;
}

.tns-news-visual img {
    aspect-ratio: 1.25;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 24px 86px rgba(0, 0, 0, 0.32);
}

.tns-news-feature h2 {
    max-width: 13ch;
    margin-top: 0.15rem;
    color: var(--gold);
}

.tns-news-feature h3 {
    margin-top: 0.8rem;
    color: var(--ink);
}

.page-html p,
.page-html li {
    max-width: 78ch;
}

.page-html *,
.page-html pre,
.page-html code {
    max-width: 100%;
}

.page-html pre,
.page-html code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.page-html .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.page-html .wp-block-column {
    min-width: 0;
}

.page-html img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-html figure,
.page-html .wp-block-image,
.page-html .wp-block-gallery {
    margin: 2rem 0;
}

.page-html iframe {
    width: 100%;
    border: 0;
    border-radius: var(--radius);
}

.floating-intro {
    max-width: 760px;
}

.floating-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2.2rem);
    margin-top: clamp(2rem, 5vw, 4rem);
    perspective: 1200px;
}

.floating-item {
    position: relative;
    display: grid;
    gap: 0.72rem;
    align-content: start;
    min-height: 13rem;
    padding: 0;
    color: rgba(255, 248, 238, 0.84);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
    transform: translateZ(var(--float-depth));
    animation: floatingMedia 6.8s ease-in-out infinite;
    animation-delay: var(--float-delay);
}

.floating-item:nth-child(3n + 2) {
    margin-top: 2.6rem;
}

.floating-item:nth-child(3n) {
    margin-top: 1.1rem;
}

.floating-orb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.28;
    border-radius: var(--radius);
    background: rgba(255, 248, 238, 0.035);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), 0 0 48px rgba(255, 248, 238, 0.05);
    backdrop-filter: blur(24px);
}

.floating-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.02);
    transition: transform 240ms ease, opacity 240ms ease;
}

.floating-item:hover .floating-orb img {
    opacity: 1;
    transform: scale(1.08);
}

.floating-item > span:last-child {
    padding: 0 0.25rem;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.85);
}

.floating-gallery.no-captions .floating-item {
    min-height: auto;
}

.preview-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
    background: rgba(3, 2, 3, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
    backdrop-filter: blur(22px);
}

.preview-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.preview-dialog {
    width: min(980px, 100%);
    color: var(--ink);
}

.preview-stage {
    display: grid;
    place-items: center;
    min-height: min(70vh, 680px);
}

.preview-stage img,
.preview-stage iframe {
    width: 100%;
    max-height: 78vh;
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 32px 110px rgba(0, 0, 0, 0.55);
}

.preview-stage img {
    object-fit: contain;
}

.preview-stage iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

.preview-close {
    float: right;
    margin-bottom: 0.7rem;
    min-height: 2.45rem;
    padding: 0.55rem 0.8rem;
    color: var(--ink);
    background: rgba(8, 6, 8, 0.26);
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    backdrop-filter: blur(24px);
}

.preview-dialog p {
    margin: 0.8rem 0 0;
    color: rgba(255, 248, 238, 0.74);
}

@keyframes floatingMedia {
    0%,
    100% {
        transform: translate3d(0, 0, var(--float-depth)) rotateZ(-0.4deg);
    }
    50% {
        transform: translate3d(0.35rem, -1.05rem, var(--float-depth)) rotateZ(0.45deg);
    }
}

.page-html input,
.page-html textarea,
.page-html select {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    color: var(--ink);
    background: rgba(255, 248, 238, 0.08);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.footer {
    position: relative;
    z-index: 18;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem clamp(1rem, 4vw, 2rem);
    color: rgba(255, 248, 238, 0.68);
    background: rgba(5, 4, 5, 0.92);
    border-top: 1px solid var(--line);
}

.footer p {
    margin: 0;
}

.footer div {
    display: flex;
    gap: 0.85rem;
}

@media (max-width: 1060px) {
    .menu-toggle {
        display: block;
    }

    .main-menu {
        position: fixed;
        top: 76px;
        left: 1rem;
        right: 1rem;
        display: none;
        padding: 1rem;
        background: rgba(6, 5, 6, 0.96);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        backdrop-filter: blur(16px);
    }

    .main-menu.is-open {
        display: grid;
    }

    .main-menu a {
        width: 100%;
        min-height: 2.8rem;
        font-size: 0.96rem;
    }

    .hotspot {
        grid-template-columns: 3.4rem minmax(7rem, 10rem);
    }

    .hotspot img {
        width: 3.4rem;
    }

    .content-shell {
        grid-template-columns: 1fr;
    }

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

    .content-index {
        position: relative;
        top: auto;
    }

    #side-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
    }
}

@media (max-width: 640px) {
    body {
        line-height: 1.5;
    }

    .topbar {
        min-height: 68px;
        padding: 0.65rem 0.75rem;
    }

    .brand-mark {
        width: 2.65rem;
        height: 2.65rem;
        flex-basis: 2.65rem;
    }

    .brand small {
        display: none;
    }

    .hero-copy {
        top: 11vh;
        width: calc(100vw - 1rem);
        margin-left: 0.5rem;
        padding-top: 4.2rem;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 22vw, 5.6rem);
    }

    .hero p:not(.kicker) {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .scene-hint {
        display: none;
    }

    .look-note {
        max-width: calc(100vw - 6.5rem);
        font-size: 0.7rem;
    }

    .hotspot {
        grid-template-columns: 2.6rem minmax(0, 1fr);
        gap: 0.42rem;
        width: min(10.4rem, 47vw);
        max-width: 47vw;
        padding: 0.38rem;
        background: rgba(10, 8, 10, 0.16);
        backdrop-filter: blur(30px) saturate(112%);
    }

    .hotspot img {
        width: 2.6rem;
        border-radius: 5px;
    }

    .hotspot strong {
        font-size: 0.78rem;
    }

    .hotspot small {
        display: none;
    }

    #side-menu {
        grid-template-columns: 1fr;
    }

    .content-shell {
        width: min(100% - 1rem, 1180px);
        padding: 3.2rem 0;
    }

    .content-card {
        padding: 0.95rem;
        background: rgba(9, 8, 9, 0.04);
        backdrop-filter: blur(16px) saturate(104%);
    }

    .page-html .wp-block-columns {
        grid-template-columns: 1fr;
    }

    .content-card header {
        align-items: start;
    }

    .content-card h2 {
        font-size: clamp(2rem, 13vw, 3.6rem);
    }

    .return-amphi {
        width: 100%;
    }

    .floating-gallery {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .floating-item,
    .floating-item:nth-child(3n + 2),
    .floating-item:nth-child(3n) {
        margin-top: 0;
    }

    .footer {
        display: grid;
        padding-bottom: 4.25rem;
    }

    .sound-toggle {
        right: 0.7rem;
        bottom: 0.7rem;
        min-width: 4.25rem;
        min-height: 2.1rem;
        font-size: 0.72rem;
    }

    .preview-modal {
        padding: 0.7rem;
    }

    .preview-stage {
        min-height: auto;
    }

    .preview-close {
        float: none;
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
