@font-face {
    font-family: "Quorum";
    src: url("../fonts/quorm.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quorum";
    src: url("../fonts/quorml.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quorum";
    src: url("../fonts/quorb.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quorum";
    src: url("../fonts/quorw.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-paper: #F4EDE9;
    --paper: #F4EDE9;
    --paper-soft: rgba(244, 237, 233, .94);
    --paper-glass: rgba(244, 237, 233, .88);
    --ink: #090705;
    --muted: #6d6257;
    --line: rgba(9, 7, 5, .28);
    --white: #ffffff;
    --wine: #7d1118;
    --pine: #123c36;
    --topbar: 44px;
    --bottombar: 40px;
    --sans: "Quorum", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --serif: "Quorum", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

button,
input,
select,
textarea {
    font: inherit;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

figure {
    margin: 0;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background: var(--paper);
    transition: opacity .45s ease, visibility .45s ease;
}

.loader span {
    font-family: var(--serif);
    font-size: 27px;
    animation: pulseName 2s ease-in-out infinite;
}

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

@keyframes pulseName {
    50% {
        opacity: .28;
        transform: scale(.98);
    }
}

.costes-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--topbar);
    display: grid;
    grid-template-columns: minmax(420px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
}

.header-left {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 100%;
}

.nav-trigger,
.book-trigger,
.menu-close,
.costes-logo,
.footer-title,
.footer-next,
.breadcrumbs button,
.slide-arrow {
    border: 0;
    background: transparent;
    color: var(--ink);
}

.nav-trigger {
    flex: 0 0 74px;
    width: 74px;
    height: 100%;
    border-right: 1px solid var(--ink);
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 100%;
    gap: 12px;
    padding: 0 14px;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

.breadcrumbs button,
.breadcrumbs span {
    flex: 0 0 auto;
}

.breadcrumbs [data-current-crumb] {
    min-width: 0;
    overflow: hidden;
    color: var(--wine);
    text-overflow: ellipsis;
}

.costes-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 148px;
    padding: 0 18px;
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.costes-logo img {
    display: block;
    width: min(148px, 16vw);
    max-width: 148px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.header-tools {
    justify-self: end;
    height: 100%;
    display: flex;
    align-items: center;
}

.languages {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid var(--ink);
    font-size: 14px;
    white-space: nowrap;
}

.languages span {
    color: var(--wine);
}

.book-trigger {
    width: 78px;
    height: 100%;
    text-transform: uppercase;
}

.scene-stage {
    position: fixed;
    top: var(--topbar);
    right: 0;
    bottom: var(--bottombar);
    left: 0;
    overflow: hidden;
    background: var(--ink);
}

.scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.012);
    transition: opacity .58s ease, transform .86s ease, visibility .58s ease;
}

.scene.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scene::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .34);
    pointer-events: none;
}

.room-scene::before {
    background: rgba(0, 0, 0, .18);
}

.scene-kicker {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 17px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}

.scene-label,
.panel-kicker {
    margin: 0 0 14px;
    color: var(--wine);
    font-size: 13px;
    text-transform: uppercase;
}

.home-copy {
    position: absolute;
    z-index: 3;
    left: 80px;
    bottom: 88px;
    width: 620px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.home-copy::before {
    content: "";
    display: block;
    width: 76px;
    height: 1px;
    margin-bottom: 20px;
    background: rgba(244, 223, 189, .78);
}

.home-copy .scene-label {
    color: var(--white);
}

.home-copy h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: 45px;
    font-weight: 400;
    line-height: .95;
    text-transform: uppercase;
}

.home-copy p {
    margin: 22px 0 32px;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.35;
}

.home-copy button,
.scene-panel button,
.book-panel form button {
    min-width: 168px;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid var(--ink);
    background: var(--paper-soft);
    color: var(--ink);
    font-size: 12px;
    text-transform: uppercase;
}

.home-copy button:hover,
.scene-panel button:hover,
.book-panel form button:hover,
.room-command button:hover {
    background: var(--ink);
    color: var(--paper);
}

.story-card {
    position: absolute;
    z-index: 4;
    top: 42px;
    right: 42px;
    width: 480px;
    min-height: 304px;
    padding: 30px 28px 24px;
    background: var(--paper-soft);
    color: var(--ink);
    text-shadow: none;
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.story-card.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.story-card button,
.menu-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 22px;
    line-height: 26px;
}

.story-card h2 {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.story-card p {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.45;
}

.costes-menu {
    position: fixed;
    z-index: 90;
    top: var(--topbar);
    right: 0;
    bottom: var(--bottombar);
    left: 0;
    display: none;
    padding: 42px 18px;
    overflow-y: auto;
    background: rgba(0, 0, 0, .58);
    border-bottom: 1px solid var(--ink);
}

.costes-menu.open {
    display: block;
}

.menu-inner {
    position: relative;
    width: 640px;
    max-width: 100%;
    margin: 0 auto;
}

.menu-primary,
.menu-rooms {
    display: grid;
    gap: 2px;
}

.menu-primary button,
.menu-rooms button {
    display: block;
    min-height: 54px;
    border: 0;
    background: var(--paper);
    color: var(--ink);
    text-align: center;
    text-transform: uppercase;
}

.menu-primary button {
    font-size: 17px;
}

.menu-rooms {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8px;
}

.menu-rooms button {
    min-height: 42px;
    font-size: 12px;
}

.book-panel {
    position: fixed;
    z-index: 95;
    top: var(--topbar);
    right: 0;
    bottom: var(--bottombar);
    width: 470px;
    max-width: 100%;
    padding: 46px 28px;
    overflow-y: auto;
    background: var(--paper);
    color: var(--ink);
    border-left: 1px solid var(--ink);
    transform: translateX(100%);
    transition: transform .35s ease;
}

.book-panel.open {
    transform: translateX(0);
}

.book-panel h2 {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
}

.book-panel form {
    display: grid;
    gap: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.book-panel label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    text-transform: uppercase;
}

.book-panel input,
.book-panel textarea,
.book-panel select {
    width: 100%;
    min-height: 42px;
    padding: 10px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-size: 14px;
}

.book-panel textarea {
    resize: vertical;
}

.booking-notice {
    padding: 13px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
}

.booking-notice.error {
    border-color: var(--wine);
    color: var(--wine);
}

.heritage-panel,
.scene-panel {
    position: absolute;
    z-index: 3;
    max-height: calc(100% - 52px);
    overflow: auto;
    background: var(--paper-soft);
    color: var(--ink);
}

.heritage-panel {
    left: 48px;
    bottom: 48px;
    width: 520px;
    padding: 34px;
}

.heritage-panel h2,
.scene-panel h2,
.rooms-title h1 {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.04;
}

.heritage-panel p,
.scene-panel p,
.rooms-title p {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.5;
}

.fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 22px;
    background: var(--ink);
}

.fact-grid span {
    padding: 12px;
    background: var(--paper);
    color: var(--pine);
    font-size: 12px;
    text-transform: uppercase;
}

.heritage-photo {
    position: absolute;
    z-index: 3;
    right: 48px;
    top: 78px;
    width: 330px;
    height: 440px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--paper);
}

.rooms-directory {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: grid;
    grid-template-columns: 390px 560px;
    gap: 22px;
    width: 972px;
    max-width: calc(100% - 72px);
    transform: translate(-50%, -50%);
}

.rooms-title,
.rooms-list {
    background: var(--paper-soft);
    color: var(--ink);
}

.rooms-title {
    padding: 34px;
}

.rooms-title .scene-label {
    color: var(--wine);
}

.rooms-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    max-height: calc(100vh - var(--topbar) - var(--bottombar) - 110px);
    overflow: auto;
    background: var(--ink);
}

.rooms-list button {
    display: grid;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 70px;
    padding: 14px 18px;
    border: 0;
    background: var(--paper);
    color: var(--ink);
    text-align: left;
}

.rooms-list strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
}

.rooms-list small {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.slide-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 52px;
    height: 76px;
    transform: translateY(-50%);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 44px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.slide-arrow:hover {
    color: var(--white);
}

.slide-prev {
    left: 18px;
}

.slide-next {
    right: 18px;
}

.slide-counter {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 56px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}

.room-image-bank {
    display: none;
}

.home-slide-bank {
    display: none;
}

.home-image-layer,
.scene-fade-layer,
.scene-media-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.35s ease, transform 8s linear;
    pointer-events: none;
}

.home-image-layer.active,
.scene-fade-layer.active,
.scene-media-layer.active {
    opacity: 1;
    transform: scale(1);
}

.scene-media-layer iframe,
.scene-media-layer video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124%;
    height: 124%;
    border: 0;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-video-slide::-webkit-media-controls,
.scene-media-layer video::-webkit-media-controls,
.room-tile-video video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
}

.home-video-slide::-webkit-media-controls-panel,
.scene-media-layer video::-webkit-media-controls-panel,
.room-tile-video video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
}

.home-video-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .8s ease, transform 7s linear;
    pointer-events: none;
}

.home-youtube-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1.1s ease, transform 7.5s linear;
    pointer-events: none;
}

.home-youtube-slide iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124%;
    height: 124%;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.scene-home.media-video-active .home-video-slide,
.scene-home.media-youtube-active .home-youtube-slide {
    opacity: 1;
    transform: scale(1);
}

.scene-home.media-video-active .home-image-layer,
.scene-home.media-youtube-active .home-image-layer {
    opacity: 0;
}

.category-intro-copy,
.category-copy {
    position: absolute;
    z-index: 3;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, .48);
}

.category-intro-copy {
    left: 50%;
    top: 49%;
    width: 680px;
    max-width: calc(100% - 72px);
    text-align: center;
    transform: translate(-50%, -50%);
}

.category-copy {
    left: 76px;
    bottom: 106px;
    width: 570px;
    max-width: calc(100% - 620px);
}

.category-intro-copy .scene-label,
.category-copy .scene-label {
    color: var(--white);
}

.category-intro-copy h1,
.category-copy h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 400;
    line-height: .94;
    text-transform: uppercase;
}

.category-copy h1 {
    font-size: 60px;
}

.category-intro-copy p,
.category-copy p {
    margin: 18px auto 0;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.36;
}

.category-copy p {
    margin-right: 0;
    margin-left: 0;
}

.room-command {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 12px;
    width: 480px;
    max-width: calc(100% - 28px);
    background: rgba(255, 250, 244, .9);
    color: var(--ink);
    border: 1px solid rgba(9, 7, 5, .22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    transform: translateX(-50%);
    transition: width .28s ease;
}

.room-command-head {
    display: grid;
    grid-template-columns: 1fr 42px;
    height: 32px;
    border-bottom: 1px solid var(--ink);
}

.room-command-head span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    padding: 0 12px;
    font-size: 12px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-command-head button {
    border: 0;
    border-left: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-size: 24px;
}

.room-command-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 46px;
}

.room-command-actions button {
    position: relative;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-transform: uppercase;
    transition: color .28s ease, background .28s ease;
    overflow: hidden;
}

.room-command-actions button::before {
    content: "";
    position: absolute;
    inset: auto 18px 8px;
    height: 1px;
    background: var(--wine);
    opacity: 0;
    transform: scaleX(.3);
    transition: opacity .28s ease, transform .32s ease;
}

.room-command-actions button:hover,
.room-command-actions button:focus-visible,
.room-command-head button:hover,
.room-command-head button:focus-visible {
    background: #120d09;
    color: #f4dfbd;
}

.room-command-actions button:hover::before,
.room-command-actions button:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.room-command-actions button + button {
    border-left: 1px solid var(--ink);
}

.room-command-actions span {
    display: inline-block;
    min-width: 18px;
    margin-left: 18px;
    font-size: 20px;
    line-height: 1;
}

.room-detail-sheet {
    position: absolute;
    right: 0;
    bottom: 80px;
    left: 0;
    display: none;
    height: auto;
    overflow: hidden;
    background: rgba(255, 250, 244, .96);
    border: 1px solid var(--ink);
    border-top: 1px solid var(--ink);
    opacity: 0;
    transform: translateY(76px);
    box-shadow: 0 -18px 46px rgba(0, 0, 0, .22);
    will-change: opacity, transform;
    transition: opacity .78s cubic-bezier(.16, 1, .3, 1), transform .92s cubic-bezier(.16, 1, .3, 1), padding .7s ease;
}

.room-command.details-open {
    width: 500px;
}

.room-command.details-open .room-detail-sheet {
    display: block;
    max-height: 430px;
    overflow: auto;
    padding: 34px 28px 38px;
}

.room-detail-sheet h2 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.room-detail-sheet p {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.45;
}

.room-detail-sheet dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.room-detail-sheet div {
    padding: 11px 0;
    border-top: 1px solid var(--line);
}

.room-detail-sheet dt {
    color: var(--wine);
    font-size: 11px;
    text-transform: uppercase;
}

.room-detail-sheet dd {
    margin: 5px 0 0;
    font-family: var(--serif);
    font-size: 15px;
}

.category-room-links {
    display: grid;
    gap: 1px;
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: var(--ink);
}

.room-detail-sheet .category-room-links {
    padding: 0;
    border: 0;
}

.category-room-links button {
    display: grid;
    gap: 5px;
    min-height: 58px;
    padding: 13px 15px;
    border: 0;
    background: var(--paper);
    color: var(--ink);
    text-align: left;
}

.category-room-links button:hover {
    background: var(--ink);
    color: var(--paper);
}

.category-room-links strong {
    min-width: 0;
    overflow: hidden;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-room-links small {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-room-links button:hover small {
    color: rgba(255, 250, 244, .75);
}

.scene-rooms::before {
    background: rgba(0, 0, 0, .16);
}

.rooms-mosaic {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 2px;
    background: var(--paper);
}

.rooms-mosaic.is-shuffling .room-tile {
    opacity: .52;
    transform: scale(.985);
}

.room-tile {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 0;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    color: var(--ink);
    transform: translateZ(0);
    transition: opacity .55s ease, transform .55s ease;
}

.room-tile-large-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.room-tile-wide {
    grid-column: span 2;
}

.room-tile::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.2s ease, filter .7s ease;
}

.room-tile:hover::before,
.room-tile:focus-visible::before {
    filter: brightness(.86);
    transform: scale(1.055);
}

.room-tile-video,
.room-tile-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.room-tile-video {
    z-index: 1;
    opacity: 0;
    background: var(--ink);
    transition: opacity .22s ease;
}

.room-tile-video iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124%;
    height: 124%;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.room-tile-video video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124%;
    height: 124%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.room-tile.video-ready:hover .room-tile-video,
.room-tile.video-ready:focus-visible .room-tile-video,
.room-tile.video-on .room-tile-video {
    opacity: .92;
}

.room-tile-shade {
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .06), rgba(0, 0, 0, .18));
}

.room-tile-copy {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    display: grid;
    gap: 4px;
    width: 288px;
    max-width: calc(100% - 34px);
    min-height: 58px;
    padding: 12px 18px 11px;
    background: rgba(255, 250, 244, .9);
    color: var(--ink);
    border: 1px solid rgba(9, 7, 5, .16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    text-align: center;
    transform: translateX(-50%);
    transition: transform .45s ease, background .45s ease, color .45s ease;
}

.room-tile:hover .room-tile-copy,
.room-tile:focus-visible .room-tile-copy {
    background: #120d09;
    color: #f4dfbd;
    transform: translate(-50%, -8px);
}

.room-tile-copy strong {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.12;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-tile-copy small {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-tile:hover .room-tile-copy small,
.room-tile:focus-visible .room-tile-copy small {
    color: rgba(244, 223, 189, .75);
}

.scene-panel {
    width: 500px;
    padding: 34px;
}

.left-panel {
    left: 46px;
    bottom: 46px;
}

.right-panel {
    right: 46px;
    bottom: 46px;
}

.center-panel {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.panel-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 22px;
}

.panel-thumbs figure {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--ink);
    background-size: cover;
    background-position: center;
}

.service-list {
    display: grid;
    gap: 0;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    font-family: var(--serif);
    font-size: 17px;
}

.service-list li {
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.ritual-board {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 1040px;
    max-width: calc(100% - 72px);
    transform: translateX(-50%);
}

.ritual-board article {
    min-height: 230px;
    padding: 28px;
    background: var(--paper-soft);
    color: var(--ink);
}

.ritual-board span {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 26px;
}

.ritual-board p {
    margin: 14px 0 0;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.5;
}

.split-small {
    height: 150px;
    margin-top: 22px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ink);
}

.costes-footer {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--bottombar);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: var(--paper);
    border-top: 1px solid var(--ink);
}

.radio-button {
    width: 46px;
    height: 100%;
    padding: 0;
    border: 0;
    border-right: 1px solid var(--ink);
    background: transparent;
}

.radio-button span {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 13px solid var(--ink);
}

.footer-room-nav,
.footer-arrow {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    text-transform: uppercase;
}

.footer-room-nav {
    justify-content: center;
    gap: 56px;
    min-width: 0;
    overflow: hidden;
}

.footer-room-nav button {
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-room-nav button.active {
    color: var(--wine);
}

.footer-arrow {
    justify-content: center;
    width: 46px;
    padding: 0;
    border: 0;
    background: transparent;
}

.footer-prev {
    border-right: 1px solid var(--ink);
}

.footer-next {
    border-left: 1px solid var(--ink);
}

.footer-arrow span {
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.footer-prev span {
    border-right: 13px solid var(--ink);
}

.footer-next span {
    border-left: 13px solid var(--ink);
}

body.menu-open .scene-stage,
body.booking-open .scene-stage {
    pointer-events: none;
}

/* L'Union signature layer: keeps the cinematic flow, removes the direct Costes copy feeling. */
.costes-header {
    height: 46px;
    background: rgba(255, 250, 244, .96);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(9, 7, 5, .72);
}

.nav-trigger {
    position: relative;
    font-size: 14px;
}

.nav-trigger::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 12px;
    left: 15px;
    height: 1px;
    background: var(--wine);
    transform: scaleX(.35);
    transform-origin: left;
    transition: transform .35s ease;
}

.nav-trigger:hover::after {
    transform: scaleX(1);
}

.costes-logo {
    font-size: 24px;
    letter-spacing: .04em;
}

.book-trigger {
    color: #000;
    transition: background .3s ease, color .3s ease;
}

.book-trigger:hover {
    color: brown;
}

.scene {
    filter: saturate(.96);
    transform: scale(1.018) translateY(10px);
    transition: opacity .78s cubic-bezier(.2, .72, .16, 1), transform 1.05s cubic-bezier(.2, .72, .16, 1), visibility .78s ease, filter 1.05s ease;
}

.scene.active {
    filter: saturate(1);
    transform: scale(1) translateY(0);
}

.scene.is-leaving {
    opacity: 0;
    transform: scale(1.035) translateY(-10px);
}

.scene::before {
    background: radial-gradient(circle at 28% 28%, rgba(255, 248, 230, .08), transparent 28%), linear-gradient(120deg, rgba(4, 3, 2, .48), rgba(4, 3, 2, .17) 45%, rgba(4, 3, 2, .44));
}

.room-scene::before {
    background: linear-gradient(90deg, rgba(4, 3, 2, .42), rgba(4, 3, 2, .12) 42%, rgba(4, 3, 2, .32));
}

.scene-kicker {
    top: 22px;
    letter-spacing: .08em;
}

.home-copy {
    left: 72px;
    bottom: 82px;
    width: 700px;
}

.home-copy h1 {
    font-size: 64px;
    text-transform: none;
}

.home-copy button,
.scene-panel button,
.book-panel form button {
    border-color: rgba(255, 250, 244, .72);
    background: rgba(255, 250, 244, .86);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .16);
    transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}

.home-copy button:hover,
.scene-panel button:hover,
.book-panel form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.costes-menu {
    display: block;
    padding: 0;
    background: rgba(8, 6, 4, .82);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .42s ease, transform .55s cubic-bezier(.16, 1, .3, 1), visibility .42s ease;
}

.costes-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-inner {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
    gap: 0;
    margin: 0;
}

.menu-inner::before {
    content: "L'Union Han";
    display: flex;
    align-items: flex-end;
    padding: 48px 46px;
    background: linear-gradient(to top, rgba(8, 6, 4, .76), rgba(8, 6, 4, .12)), url("../images/facade-street.jpg") center/cover;
    color: rgba(255, 250, 244, .9);
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
}

.menu-primary {
    counter-reset: menuItem;
    align-content: center;
    gap: 0;
    padding: 54px 7vw;
    background: rgba(255, 250, 244, .95);
}

.menu-primary button {
    counter-increment: menuItem;
    position: relative;
    min-height: 66px;
    padding: 0 0 0 54px;
    border-bottom: 1px solid rgba(9, 7, 5, .13);
    background: transparent;
    text-align: left;
    font-family: var(--serif);
    font-size: 31px;
    text-transform: none;
    transition: color .28s ease, padding .34s ease, background .28s ease;
}

.menu-primary button::before {
    content: "0" counter(menuItem);
    position: absolute;
    left: 0;
    top: 50%;
    color: var(--wine);
    font-family: var(--sans);
    font-size: 11px;
    transform: translateY(-50%);
}

.menu-primary button:hover,
.menu-primary button:focus-visible {
    padding-left: 68px;
    background: rgba(125, 17, 24, .055);
    color: var(--wine);
}

.menu-close {
    z-index: 2;
}

.rooms-mosaic {
    gap: 10px;
    padding: 18px;
    background: #100b08;
}

.rooms-mosaic.is-shuffling .room-tile {
    opacity: .7;
    transform: scale(.975) translateY(8px);
}

.room-tile {
    border-radius: 4px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
    transition: opacity .65s ease, transform .7s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease;
}

.room-tile:hover,
.room-tile:focus-visible {
    z-index: 4;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .34);
    transform: translateY(-4px);
}

.room-tile::before {
    transition: transform 1.8s cubic-bezier(.16, 1, .3, 1), filter .8s ease;
}

.room-tile-copy {
    left: 22px;
    right: 22px;
    bottom: 18px;
    width: auto;
    max-width: none;
    min-height: 62px;
    padding: 13px 16px;
    background: rgba(255, 250, 244, .86);
    text-align: left;
    transform: none;
}

.room-tile-copy::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 12px;
    width: 34px;
    height: 1px;
    background: var(--wine);
}

.room-tile-copy strong {
    padding-top: 9px;
    font-family: var(--serif);
    font-size: 18px;
    text-transform: none;
}

.room-tile:hover .room-tile-copy,
.room-tile:focus-visible .room-tile-copy {
    background: rgba(18, 13, 9, .9);
    transform: translateY(-8px);
}

.category-copy {
    left: 70px;
    bottom: 120px;
    max-width: 560px;
}

.category-copy h1,
.category-intro-copy h1 {
    text-transform: none;
}

.slide-arrow {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 250, 244, .48);
    border-radius: 50%;
    background: rgba(9, 7, 5, .22);
    color: var(--paper);
    font-size: 0;
    backdrop-filter: blur(7px);
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.slide-arrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
}

.slide-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.slide-next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.slide-arrow:hover {
    background: rgba(255, 250, 244, .92);
    border-color: rgba(255, 250, 244, .92);
    color: var(--ink);
    transform: translateY(-50%) scale(1.04);
}

.room-command {
    right: 54px;
    left: auto;
    bottom: 28px;
    width: 430px;
    background: rgba(255, 250, 244, .88);
    border-color: rgba(255, 250, 244, .42);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .26);
    transform: none;
    backdrop-filter: blur(12px);
}

.room-command-head {
    height: 38px;
    border-bottom-color: rgba(9, 7, 5, .22);
}

.room-command-head span {
    justify-content: flex-start;
    padding-left: 18px;
    font-family: var(--serif);
    font-size: 17px;
    text-transform: none;
}

.room-command-actions {
    height: 50px;
}

.room-detail-sheet {
    bottom: 92px;
    background: rgba(255, 250, 244, .97);
    border-color: rgba(9, 7, 5, .18);
    transform: translateY(92px);
}

.room-command.details-open {
    width: 520px;
}

.room-detail-sheet h2 {
    text-align: left;
}

.restaurant-panel {
    left: 56px;
    bottom: 52px;
    width: 560px;
    background: rgba(255, 250, 244, .91);
    backdrop-filter: blur(10px);
}

.restaurant-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 24px 0;
    background: rgba(9, 7, 5, .18);
}

.restaurant-notes span {
    display: grid;
    gap: 4px;
    padding: 14px 12px;
    background: rgba(255, 250, 244, .78);
    font-size: 11px;
    text-transform: uppercase;
}

.restaurant-notes strong {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
}

.restaurant-strip {
    position: absolute;
    z-index: 3;
    right: auto;
    left: 56px;
    top: 78px;
    display: grid;
    gap: 10px;
    width: 230px;
}

.restaurant-strip span {
    padding: 14px 18px;
    background: rgba(9, 7, 5, .56);
    color: rgba(255, 250, 244, .92);
    border-left: 2px solid rgba(244, 223, 189, .64);
    backdrop-filter: blur(8px);
    font-family: var(--serif);
    font-size: 21px;
}

.panel-thumbs figure {
    border: 0;
    border-radius: 4px;
    filter: saturate(.92);
}

.admin-body {
    min-height: 100%;
    overflow: auto;
    background: #f8f1ea;
    color: var(--ink);
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px 1fr;
}

.admin-sidebar {
    padding: 28px;
    background: var(--ink);
    color: #fff;
}

.admin-sidebar strong {
    display: block;
    margin-bottom: 34px;
}

.admin-sidebar a {
    display: block;
    padding: 13px 0;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    color: #fff;
}

.admin-main {
    padding: 34px;
}

.admin-card {
    margin-bottom: 22px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
}

.admin-card h1,
.admin-card h2 {
    margin-top: 0;
    font-family: var(--serif);
    font-weight: 400;
}

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

.admin-form .wide,
.admin-form button {
    grid-column: 1 / -1;
}

.admin-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    min-height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    background: #fffaf6;
    color: var(--ink);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-size: 12px;
    text-transform: uppercase;
}

.admin-button {
    min-height: 44px;
    border: 1px solid var(--wine);
    background: var(--wine);
    color: #fff;
    text-transform: uppercase;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-login .admin-card {
    width: 420px;
    max-width: 100%;
}

@media (max-width: 1120px) {
    .costes-header {
        grid-template-columns: minmax(270px, 1fr) auto minmax(160px, 1fr);
    }

    .breadcrumbs {
        gap: 8px;
    }

    .home-copy {
        left: 42px;
        width: 520px;
    }

    .story-card {
        width: 420px;
    }

    .rooms-directory {
        grid-template-columns: 330px 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --topbar: 46px;
        --bottombar: 42px;
    }

    .costes-header {
        grid-template-columns: 74px minmax(0, 1fr) 74px;
    }

    .header-left {
        min-width: 0;
    }

    .nav-trigger,
    .book-trigger {
        width: 74px;
        font-size: 12px;
    }

    .breadcrumbs {
        display: none;
    }

    .costes-logo {
        min-width: 0;
        padding: 0 8px;
        overflow: hidden;
        font-size: 17px;
        text-overflow: ellipsis;
    }

    .languages {
        display: none;
    }

    .book-trigger {
        border-left: 1px solid var(--ink);
    }

    .scene-kicker {
        top: 13px;
        max-width: calc(100% - 36px);
        overflow: hidden;
        font-size: 13px;
        text-overflow: ellipsis;
    }

    .story-card {
        top: 52px;
        right: 14px;
        left: 14px;
        width: auto;
        min-height: 0;
        max-height: 300px;
        padding: 25px 20px 18px;
        overflow: auto;
    }

    .story-card p {
        font-size: 14px;
    }

    .home-copy {
        left: 20px;
        right: 20px;
        bottom: 42px;
        width: auto;
    }

    .home-copy h1 {
        font-size: 38px;
    }

    .home-copy p {
        margin: 16px 0 20px;
        font-size: 18px;
    }

    .heritage-panel,
    .scene-panel {
        right: 14px;
        left: 14px;
        bottom: 14px;
        width: auto;
        max-height: 58%;
        padding: 22px;
        overflow: auto;
    }

    .heritage-panel h2,
    .scene-panel h2,
    .rooms-title h1 {
        font-size: 31px;
    }

    .heritage-panel p,
    .scene-panel p,
    .rooms-title p {
        font-size: 15px;
    }

    .heritage-photo {
        top: 52px;
        right: 14px;
        width: 170px;
        height: 210px;
    }

    .rooms-directory {
        left: 14px;
        right: 14px;
        top: 58px;
        bottom: 14px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: auto;
        max-width: none;
        transform: none;
    }

    .rooms-title {
        padding: 20px;
    }

    .rooms-list {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .rooms-list button {
        min-height: 58px;
    }

    .rooms-mosaic {
        top: 0;
        bottom: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: 238px;
        overflow-y: auto;
        padding-bottom: 14px;
    }

    .room-tile-large-tall,
    .room-tile-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .room-tile-copy {
        bottom: 14px;
        width: 154px;
        min-height: 54px;
        padding: 11px 12px 10px;
    }

    .room-tile-copy strong {
        font-size: 12px;
        white-space: normal;
    }

    .room-tile-copy small {
        font-size: 10px;
        white-space: normal;
    }

    .category-intro-copy {
        right: 20px;
        left: 20px;
        top: auto;
        bottom: 98px;
        width: auto;
        max-width: none;
        text-align: left;
        transform: none;
    }

    .category-copy {
        right: 20px;
        left: 20px;
        bottom: 100px;
        width: auto;
        max-width: none;
    }

    .category-intro-copy h1,
    .category-copy h1 {
        font-size: 42px;
    }

    .category-intro-copy p,
    .category-copy p {
        margin-top: 13px;
        font-size: 17px;
    }

    .slide-arrow {
        top: 50%;
        bottom: 118px;
        width: 42px;
        height: 52px;
        font-size: 34px;
    }

    .slide-prev {
        left: 8px;
    }

    .slide-next {
        right: 8px;
    }

    .slide-counter {
        display: none;
    }

    .room-command {
        bottom: 10px;
        width: 360px;
    }

    .room-command.details-open {
        width: calc(100% - 28px);
    }

    .room-command.details-open .room-detail-sheet {
        display: block;
        max-height: 470px;
        padding: 24px 22px 28px;
    }

    .room-detail-sheet h2 {
        font-size: 25px;
    }

    .room-detail-sheet p {
        font-size: 15px;
    }

    .category-room-links button {
        min-height: 54px;
    }

    .category-room-links strong {
        font-size: 18px;
    }

    .ritual-board {
        left: 14px;
        right: 14px;
        top: 58px;
        bottom: 14px;
        grid-template-columns: 1fr;
        width: auto;
        max-width: none;
        overflow: auto;
        transform: none;
    }

    .ritual-board article {
        min-height: 150px;
        padding: 22px;
    }

    .panel-thumbs {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .scene-contact .center-panel {
        top: 58px;
        right: 14px;
        bottom: 14px;
        left: 14px;
        display: flex;
        width: auto;
        max-height: none;
        flex-direction: column;
        justify-content: center;
        transform: none;
    }

    .scene-contact .center-panel h2 {
        overflow-wrap: break-word;
    }

    .form-row,
    .fact-grid,
    .admin-shell,
    .admin-form {
        grid-template-columns: 1fr;
    }
}

/* 2026-07-07 contact footer content moved into Contact scene; bottom bar stays one CONTACT action. */
.footer-contact-nav {
    justify-content: center !important;
    gap: 0 !important;
    overflow: hidden !important;
}

.footer-contact-nav button {
    min-width: 120px;
    text-align: center;
}

.contact-footer-panel {
    width: min(760px, calc(100vw - 72px));
    max-height: calc(100vh - var(--topbar) - var(--bottombar) - 70px);
    overflow: auto;
}

.contact-footer-panel h2 {
    margin-bottom: 18px;
}

.contact-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}

.contact-footer-grid a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
    align-items: center;
    min-height: 76px;
    padding: 12px;
    border: 1px solid rgba(9, 7, 5, .14);
    border-radius: 10px;
    background: rgba(255, 255, 255, .32);
}

.contact-footer-grid a > span {
    grid-row: span 3;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    font-size: 15px;
}

.contact-footer-grid small {
    color: var(--wine);
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.contact-footer-grid strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.05;
}

.contact-footer-grid em {
    color: rgba(9, 7, 5, .66);
    font-size: 12px;
    font-style: normal;
    line-height: 1.15;
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr .85fr auto;
    gap: 8px;
    align-items: end;
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(9, 7, 5, .06);
}

.newsletter-card > div span {
    display: block;
    color: var(--wine);
    font-size: 12px;
    text-transform: uppercase;
}

.newsletter-card > div p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.25;
}

.newsletter-card label span {
    display: block;
    margin-bottom: 4px;
    color: rgba(9, 7, 5, .7);
    font-size: 10px;
    text-transform: uppercase;
}

.newsletter-card input {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(9, 7, 5, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .58);
    padding: 0 10px;
    color: var(--ink);
}

.newsletter-card button {
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    color: var(--paper);
    padding: 0 16px;
}

.newsletter-message {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    color: var(--pine);
    font-size: 12px;
}

.newsletter-message.error {
    color: var(--wine);
}

.contact-social-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    color: rgba(9, 7, 5, .7);
    font-size: 12px;
}

.contact-social-line span {
    color: var(--ink);
}

.contact-social-line a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 901px) {
    .rooms-mosaic {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
        grid-template-columns: none !important;
        grid-auto-columns: clamp(230px, 24vw, 360px) !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        cursor: grab;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .rooms-mosaic::-webkit-scrollbar {
        display: none;
    }

    .rooms-mosaic.is-dragging {
        cursor: grabbing;
        user-select: none;
    }

    .rooms-mosaic .room-tile {
        scroll-snap-align: center;
    }
}

@media (max-width: 900px) {
    .contact-footer-panel {
        width: auto;
        max-height: calc(100vh - 184px);
    }

    .contact-footer-grid,
    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .contact-footer-grid a {
        min-height: 70px;
    }
}

@media (max-width: 430px) {
    .menu-primary button {
        min-height: 48px;
        font-size: 15px;
    }

    .menu-rooms {
        grid-template-columns: 1fr;
    }

    .home-copy h1 {
        font-size: 34px;
    }

    .home-copy button,
    .scene-panel button,
    .book-panel form button {
        min-width: 32px;
    }

    .room-command {
        width: calc(100% - 28px);
    }

    .room-command-head span {
        font-size: 11px;
    }

    .room-command-actions span {
        margin-left: 8px;
    }

    .category-intro-copy h1,
    .category-copy h1 {
        font-size: 36px;
    }

    .category-room-links small {
        white-space: normal;
    }

    .rooms-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 244px;
    }

    .room-tile-copy {
        width: 240px;
    }

    .footer-room-nav {
        padding: 0 10px;
        font-size: 12px;
    }

    .footer-room-nav {
        justify-content: flex-start;
        gap: 18px;
        overflow-x: hidden;
    }

    .footer-room-nav button {
        font-size: 11px;
    }
}

@media (max-width: 900px) {
    .menu-inner {
        display: block;
        min-height: 100%;
    }

    .menu-inner::before {
        min-height: 150px;
        padding: 26px 22px;
        font-size: 34px;
    }

    .menu-primary {
        padding: 18px 22px 28px;
    }

    .menu-primary button {
        min-height: 52px;
        padding-left: 42px;
        font-size: 23px;
    }

    .menu-primary button:hover,
    .menu-primary button:focus-visible {
        padding-left: 50px;
    }

    .home-copy {
        left: 22px;
        right: 22px;
        bottom: 50px;
        width: auto;
    }

    .home-copy h1 {
        font-size: 39px;
    }

    .rooms-mosaic {
        gap: 8px;
        padding: 10px;
    }

    .room-tile-copy {
        right: 14px;
        left: 14px;
        width: auto;
    }

    .room-command,
    .room-command.details-open {
        right: 14px;
        left: 14px;
        width: auto;
        transform: none;
    }

    .restaurant-panel {
        right: 14px;
        left: 14px;
        bottom: 14px;
        width: auto;
    }

    .restaurant-strip {
        right: 14px;
        top: 58px;
        width: 190px;
    }

    .restaurant-strip span {
        padding: 10px 13px;
        font-size: 16px;
    }

    .slide-arrow {
        width: 48px;
        height: 48px;
        font-size: 0;
    }
}

/* Signature 02: full-bleed editorial hotel interface. */
.scene-stage {
    top: 0;
    bottom: 0;
}

.costes-header {
    top: 14px;
    right: 18px;
    left: 18px;
    height: 54px;
    grid-template-columns: minmax(260px, 1fr) auto minmax(190px, 1fr);
    overflow: hidden;
    background: rgba(255, 250, 244, .74);
    border: 1px solid rgba(255, 250, 244, .46);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.costes-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 250, 244, .5), rgba(255, 250, 244, .86), rgba(255, 250, 244, .5));
    backdrop-filter: blur(14px);
}

.nav-trigger,
.languages,
.book-trigger {
    border-color: rgba(9, 7, 5, .22);
}

.nav-trigger {
    flex-basis: 88px;
    width: 88px;
}

.book-trigger {
    width: 92px;
}

.costes-logo {
    font-size: 22px;
}

.breadcrumbs {
    font-size: 13px;
}

.scene-kicker {
    top: 86px;
    left: 32px;
    transform: none;
    padding: 8px 12px;
    background: rgba(9, 7, 5, .3);
    border-left: 2px solid rgba(244, 223, 189, .72);
    backdrop-filter: blur(8px);
    font-size: 12px;
}

.scene::before {
    background: radial-gradient(circle at 74% 30%, rgba(244, 223, 189, .12), transparent 28%), linear-gradient(110deg, rgba(7, 5, 4, .58), rgba(7, 5, 4, .16) 46%, rgba(7, 5, 4, .46));
}

.home-copy {
    left: 7vw;
    bottom: 112px;
    width: min(720px, 58vw);
}

.home-copy h1 {
    font-size: 45px;
    line-height: .9;
}

.home-copy p {
    max-width: 500px;
}

.home-copy button,
.scene-panel button,
.book-panel form button {
    border: 0;
    border-radius: 8px;
    background: rgba(255, 250, 244, .88);
}

.costes-footer {
    right: 22px;
    bottom: 16px;
    left: 22px;
    height: 52px;
    overflow: hidden;
    background: rgba(9, 7, 5, .68);
    border: 1px solid rgba(255, 250, 244, .24);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
    backdrop-filter: blur(12px);
}

.footer-room-nav {
    gap: 26px;
}

.footer-room-nav button {
    color: rgba(255, 250, 244, .78);
    font-size: 14px;
}

.footer-room-nav button.active {
    color: #f4dfbd;
}

.footer-arrow {
    width: 58px;
}

.footer-prev,
.footer-next {
    border-color: rgba(255, 250, 244, .22);
}

.footer-prev span {
    border-right-color: #f4dfbd;
}

.footer-next span {
    border-left-color: #f4dfbd;
}

.costes-menu {
    top: 0;
    bottom: 0;
    background: rgba(8, 6, 4, .72);
    backdrop-filter: blur(12px);
}

.menu-inner {
    min-height: 100vh;
    padding: 16px;
    grid-template-columns: minmax(330px, .78fr) minmax(390px, 1fr);
}

.menu-inner::before {
    border-radius: 8px 0 0 8px;
}

.menu-primary {
    border-radius: 0 8px 8px 0;
}

.menu-close {
    top: 28px;
    right: 28px;
}

.rooms-mosaic {
    inset: 86px 18px 84px;
    grid-template-columns: 1.15fr .85fr 1fr 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    background: transparent;
}

.room-tile {
    border-radius: 8px;
}

.room-tile-large-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.room-tile-wide {
    grid-column: span 2;
}

.room-tile-copy {
    right: 18px;
    left: 18px;
    bottom: 18px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}

.category-copy {
    left: 7vw;
    bottom: 128px;
}

.category-copy h1 {
    font-size: 68px;
    line-height: .92;
}

.room-scene .room-command {
    right: auto;
    left: 54px;
    bottom: 86px;
}

.category-scene .room-command {
    right: 54px;
    bottom: 86px;
}

.room-command {
    border: 1px solid rgba(255, 250, 244, .38);
    border-radius: 8px;
    overflow: visible;
}

.room-command-head {
    border-radius: 8px 8px 0 0;
}

.room-command-actions button:first-child {
    border-radius: 0 0 0 8px;
}

.room-command-actions button:last-child {
    border-radius: 0 0 8px 0;
}

.room-detail-sheet {
    border: 0;
    border-radius: 8px;
}

.slide-arrow {
    top: auto;
    bottom: 94px;
}

.slide-prev {
    left: auto;
    right: 104px;
}

.slide-next {
    right: 32px;
}

.slide-counter {
    right: 32px;
    bottom: 200px;
    padding: 7px 10px;
    background: rgba(9, 7, 5, .34);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.heritage-panel,
.scene-panel {
    border-radius: 8px;
    border: 1px solid rgba(255, 250, 244, .34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.heritage-panel {
    left: 7vw;
    bottom: 112px;
}

.heritage-photo {
    right: 7vw;
    top: 120px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.restaurant-panel {
    left: 7vw;
    bottom: 104px;
    width: 600px;
}

.restaurant-strip {
    right: auto;
    left: 7vw;
    top: 126px;
}

.restaurant-strip span {
    border-left: 0;
    border-radius: 8px;
}

.ritual-board {
    bottom: 106px;
}

.ritual-board article {
    border-radius: 8px;
}

.center-panel {
    top: 52%;
}

@media (max-width: 900px) {
    .scene-stage {
        top: 0;
        bottom: 0;
    }

    .costes-header {
        top: 8px;
        right: 8px;
        left: 8px;
        height: 50px;
        grid-template-columns: 70px minmax(0, 1fr) 70px;
    }

    .nav-trigger,
    .book-trigger {
        width: 70px;
    }

    .scene-kicker {
        top: 70px;
        left: 14px;
        max-width: calc(100% - 28px);
    }

    .home-copy {
        right: 22px;
        left: 22px;
        bottom: 86px;
        width: auto;
    }

    .home-copy h1 {
        font-size: 30px;
    }

    .costes-footer {
        right: 8px;
        bottom: 8px;
        left: 8px;
        height: 48px;
    }

    .footer-arrow {
        width: 48px;
    }

    .rooms-mosaic {
        inset: 70px 8px 64px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
        gap: 8px;
        overflow-y: auto;
    }

    .room-tile-large-tall,
    .room-tile-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .room-scene .room-command,
    .category-scene .room-command,
    .room-command,
    .room-command.details-open {
        right: 12px;
        bottom: 66px;
        left: 12px;
        width: auto;
    }

    .slide-arrow {
        bottom: 150px;
    }

    .slide-prev {
        right: 74px;
        left: auto;
    }

    .slide-next {
        right: 18px;
    }

    .category-copy {
        right: 22px;
        left: 22px;
        bottom: 270px;
    }

    .category-copy h1 {
        font-size: 40px;
    }

    .restaurant-panel,
    .heritage-panel,
    .scene-panel {
        right: 14px;
        left: 14px;
        bottom: 70px;
        width: auto;
        max-height: 55%;
    }

    .restaurant-strip {
        display: none;
    }

    .menu-inner {
        display: block;
        padding: 8px;
    }

    .menu-inner::before {
        border-radius: 8px 8px 0 0;
    }

    .menu-primary {
        border-radius: 0 0 8px 8px;
    }
}

/* Mobile rooms become an immersive vertical deck, not a compressed desktop grid. */
@media (max-width: 900px) {
    .scene-rooms::before {
        background: linear-gradient(180deg, rgba(5, 4, 3, .55), rgba(5, 4, 3, .08) 30%, rgba(5, 4, 3, .72));
    }

    .scene-rooms .scene-kicker {
        top: 72px;
        left: 18px;
        padding: 9px 13px;
        background: rgba(255, 250, 244, .82);
        color: var(--ink);
        border: 0;
        border-radius: 999px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
        text-shadow: none;
    }

    .rooms-mosaic {
        counter-reset: roomCard;
        inset: 0;
        display: block;
        padding: 128px 12px 82px;
        overflow-x: hidden;
        overflow-y: auto;
        background: linear-gradient(180deg, #120d09 0%, #241711 42%, #0d0907 100%);
        scroll-padding-top: 120px;
        scroll-snap-type: y proximity;
        -webkit-overflow-scrolling: touch;
    }

    .rooms-mosaic::before {
        content: "Suites selected for slow mornings, brass light and restored Istanbul texture.";
        display: block;
        max-width: 320px;
        margin: 0 8px 18px;
        color: rgba(255, 250, 244, .82);
        font-family: var(--serif);
        font-size: 18px;
        line-height: 1.28;
    }

    .room-tile,
    .room-tile-large-tall,
    .room-tile-wide {
        counter-increment: roomCard;
        display: block;
        width: 100%;
        height: min(62vh, 520px);
        min-height: 370px;
        margin: 0 0 16px;
        border-radius: 18px;
        box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
        scroll-snap-align: start;
        transform: translateZ(0);
    }

    .room-tile:nth-child(2n) {
        height: min(58vh, 490px);
    }

    .room-tile:nth-child(3n) {
        height: min(66vh, 550px);
    }

    .room-tile::before {
        inset: 0;
        filter: saturate(.98) contrast(1.02);
        transform: scale(1.02);
    }

    .room-tile::after {
        content: "0" counter(roomCard);
        position: absolute;
        z-index: 4;
        top: 18px;
        right: 18px;
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        background: rgba(255, 250, 244, .82);
        color: var(--ink);
        border-radius: 50%;
        box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
        font-family: var(--serif);
        font-size: 17px;
    }

    .room-tile-shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .1) 38%, rgba(0, 0, 0, .72));
    }

    .room-tile-video {
        border-radius: 18px;
        overflow: hidden;
    }

    .room-tile.video-on .room-tile-video,
    .room-tile.video-ready:focus-visible .room-tile-video {
        opacity: .84;
    }

    .room-tile-copy {
        right: 14px;
        bottom: 14px;
        left: 14px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 4px 14px;
        min-height: 104px;
        padding: 22px 20px 18px;
        background: rgba(255, 250, 244, .9);
        border-radius: 14px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
        transform: none;
    }

    .room-tile-copy::before {
        left: 20px;
        top: 17px;
        width: 46px;
    }

    .room-tile-copy::after {
        content: "";
        align-self: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(9, 7, 5, .3);
        border-radius: 50%;
        background: linear-gradient(135deg, transparent 45%, rgba(9, 7, 5, .78) 46%, rgba(9, 7, 5, .78) 50%, transparent 51%);
    }

    .room-tile-copy strong {
        grid-column: 1;
        padding-top: 18px;
        font-size: 25px;
        line-height: .98;
        white-space: normal;
    }

    .room-tile-copy small {
        grid-column: 1;
        color: rgba(9, 7, 5, .62);
        font-size: 11px;
        white-space: normal;
    }

    .room-tile:hover,
    .room-tile:focus-visible,
    .room-tile.video-on {
        box-shadow: 0 34px 78px rgba(0, 0, 0, .5);
        transform: translateY(-2px);
    }

    .room-tile:hover .room-tile-copy,
    .room-tile:focus-visible .room-tile-copy,
    .room-tile.video-on .room-tile-copy {
        background: rgba(255, 250, 244, .94);
        color: var(--ink);
        transform: none;
    }

    .room-tile:hover .room-tile-copy small,
    .room-tile:focus-visible .room-tile-copy small,
    .room-tile.video-on .room-tile-copy small {
        color: rgba(9, 7, 5, .62);
    }

    .costes-footer {
        background: rgba(13, 9, 7, .76);
    }
}

@media (max-width: 430px) {
    .rooms-mosaic {
        padding-right: 10px;
        padding-left: 10px;
    }

    .room-tile,
    .room-tile:nth-child(2n),
    .room-tile:nth-child(3n) {
        height: min(64vh, 500px);
        min-height: 360px;
    }

    .room-tile-copy {
        min-height: 100px;
        padding: 21px 18px 17px;
    }

    .room-tile-copy strong {
        font-size: 23px;
    }
}

/* Rooms visibility guard: the desktop mosaic has 10 rooms with mixed spans, so it needs four rows. */
@media (min-width: 901px) {
    .rooms-mosaic {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
        grid-auto-rows: minmax(0, 1fr);
        overflow: hidden;
    }

    .room-tile-large-tall {
        grid-column: span 2;
        grid-row: span 2;
    }

    .room-tile-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Rooms gallery 02: clean editorial collection, stable on every refresh. */
@media (min-width: 901px) {
    .scene-rooms .scene-kicker {
        top: 82px;
        left: 34px;
    }

    .rooms-mosaic {
        inset: 122px 30px 86px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        grid-auto-flow: row;
        gap: 14px;
        padding: 0;
        overflow: hidden;
        background: transparent;
    }

    .room-tile,
    .room-tile-large-tall,
    .room-tile-wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        border-radius: 12px;
        box-shadow: 0 24px 62px rgba(0, 0, 0, .28);
        transform: translateZ(0);
    }

    .room-tile:nth-child(1),
    .room-tile:nth-child(6) {
        border-radius: 22px 12px 12px 12px;
    }

    .room-tile:nth-child(5),
    .room-tile:nth-child(10) {
        border-radius: 12px 22px 12px 12px;
    }

    .room-tile::before {
        transform: scale(1.03);
    }

    .room-tile:hover,
    .room-tile:focus-visible {
        box-shadow: 0 28px 72px rgba(0, 0, 0, .38);
        transform: translateY(-5px);
    }

    .room-tile-copy {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 74px;
        padding: 18px 15px 13px;
        border-radius: 10px;
        background: rgba(255, 250, 244, .9);
    }

    .room-tile-copy strong {
        font-size: 17px;
        line-height: 1.04;
        white-space: normal;
    }

    .room-tile-copy small {
        font-size: 10px;
        white-space: normal;
    }
}

@media (max-width: 900px) {
    .rooms-mosaic {
        padding: 122px 14px 84px;
        background: linear-gradient(180deg, #0e0a08 0%, #241610 48%, #0e0a08 100%);
        scroll-snap-type: y proximity;
    }

    .rooms-mosaic::before {
        max-width: 330px;
        margin: 0 4px 16px;
        color: rgba(255, 250, 244, .78);
        font-size: 16px;
    }

    .room-tile,
    .room-tile:nth-child(2n),
    .room-tile:nth-child(3n),
    .room-tile-large-tall,
    .room-tile-wide {
        height: 292px;
        min-height: 292px;
        margin-bottom: 12px;
        border-radius: 14px;
        box-shadow: 0 22px 54px rgba(0, 0, 0, .34);
        scroll-snap-align: start;
    }

    .room-tile:nth-child(4n + 1) {
        height: 342px;
        min-height: 342px;
    }

    .room-tile:nth-child(4n + 3) {
        height: 322px;
        min-height: 322px;
    }

    .room-tile::after {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .room-tile-video {
        border-radius: 14px;
    }

    .room-tile-copy {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 88px;
        padding: 19px 16px 15px;
        border-radius: 12px;
    }

    .room-tile-copy strong {
        font-size: 21px;
        line-height: 1.02;
    }

    .room-tile-copy small {
        font-size: 10px;
    }
}

/* 2026-06-29 brand pass: Quorum, corporate bars, home cursor, horizontal room maison. */
.costes-header,
.costes-footer {
    background: var(--brand-paper);
    color: var(--ink);
    border-color: rgba(9, 7, 5, .18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.costes-header::before {
    background: linear-gradient(90deg, rgba(244, 237, 233, .92), rgba(244, 237, 233, .98), rgba(244, 237, 233, .92));
}

.footer-room-nav button,
.footer-room-nav button.active {
    color: var(--ink);
}

.footer-prev span {
    border-right-color: var(--ink);
}

.footer-next span {
    border-left-color: var(--ink);
}

.page-cursor {
    position: fixed;
    z-index: 140;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #050403;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.84);
    transition: opacity .18s ease, transform .24s ease, color .18s ease, filter .18s ease;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .24));
}

.page-cursor.visible {
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
}

.page-cursor span {
    display: none;
}

.page-cursor::before,
.page-cursor::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
}

.page-cursor::before {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(9, 7, 5, .52);
    border-radius: 999px;
    background: rgba(244, 237, 233, .76);
    box-shadow: inset 0 0 0 1px rgba(255, 250, 244, .36), 0 8px 24px rgba(0, 0, 0, .14);
    backdrop-filter: blur(8px);
    transform: translate(-50%, -50%);
}

.page-cursor::after {
    width: 16px;
    height: 16px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-62%, -50%) rotate(45deg);
    transition: transform .18s ease;
}

.page-cursor.is-left::after {
    transform: translate(-38%, -50%) rotate(-135deg);
}

.page-cursor.is-right::after {
    transform: translate(-62%, -50%) rotate(45deg);
}

@media (min-width: 901px) {
    .scene.active {
        cursor: none;
    }

    .costes-header,
    .costes-header *,
    .costes-footer,
    .costes-footer *,
    .menu-overlay,
    .menu-overlay *,
    .book-panel,
    .book-panel *,
    button,
    a,
    input,
    select,
    textarea,
    label {
        cursor: auto;
    }

    button,
    a,
    label {
        cursor: pointer;
    }

    .rooms-mosaic {
        inset: 0;
        display: flex;
        align-items: stretch;
        gap: 28px;
        padding: 118px 9vw 96px 500px;
        overflow-x: auto;
        overflow-y: hidden;
        background: linear-gradient(90deg, #0f0a07, #241711 42%, #0f0a07);
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        touch-action: pan-x;
        user-select: none;
        cursor: grab;
    }

    .rooms-mosaic.is-dragging {
        scroll-snap-type: none;
        cursor: grabbing;
    }

    .rooms-mosaic.is-dragging .room-tile {
        pointer-events: none;
    }

    .rooms-mosaic::-webkit-scrollbar {
        display: none;
    }

    .rooms-mosaic::before {
        display: none;
        content: none;
    }

    .room-tile,
    .room-tile-large-tall,
    .room-tile-wide {
        flex: 0 0 min(430px, 34vw);
        width: min(430px, 34vw);
        height: auto;
        min-height: 100%;
        border-radius: 22px;
        scroll-snap-align: center;
        box-shadow: 0 28px 78px rgba(0, 0, 0, .36);
    }

    .room-tile:nth-child(2n) {
        flex-basis: min(380px, 30vw);
        width: min(380px, 30vw);
        margin-top: 34px;
        margin-bottom: 34px;
    }

    .room-tile:nth-child(3n) {
        flex-basis: min(470px, 37vw);
        width: min(470px, 37vw);
    }

    .room-tile-copy {
        right: 18px;
        bottom: 18px;
        left: 18px;
        min-height: 104px;
        padding: 24px 22px 18px;
        border-radius: 16px;
    }

    .room-tile-copy strong {
        font-size: 27px;
        line-height: .96;
    }

    .room-tile-copy em {
        display: block;
        margin-top: 10px;
        color: rgba(9, 7, 5, .66);
        font-style: normal;
        font-size: 13px;
        line-height: 1.25;
    }
}

.rooms-side-menu {
    position: fixed;
    z-index: 80;
    top: 74px;
    bottom: 72px;
    left: 16px;
    width: 430px;
    display: none;
    align-content: center;
    padding: 20px 24px;
    background: rgba(244, 237, 233, .82);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
}

body[data-current-scene="rooms"] .scene-rooms .scene-kicker {
    visibility: hidden;
}

body[data-current-scene="rooms"] .breadcrumbs {
    display: none;
}

body[data-current-scene="rooms"] .rooms-side-menu {
    display: grid;
}

.rooms-side-menu button {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    min-height: 58px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(9, 7, 5, .14);
    background: transparent;
    color: var(--ink);
    text-align: left;
}

.rooms-side-menu small {
    color: var(--wine);
    font-size: 12px;
}

.rooms-side-menu span {
    min-width: 0;
    overflow: hidden;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rooms-side-menu button:hover span,
.rooms-side-menu button:focus-visible span {
    color: var(--wine);
}

@media (max-width: 900px) {
    .page-cursor {
        display: none;
    }

    .rooms-side-menu {
        display: none !important;
    }

    .costes-header,
    .costes-footer {
        background: var(--brand-paper);
    }

    .rooms-mosaic {
        inset: 0;
        display: block;
        padding: 118px 22px 92px;
        overflow-x: hidden;
        overflow-y: auto;
        background: linear-gradient(180deg, #100b08, #271812 50%, #100b08);
        scroll-snap-type: y proximity;
        scrollbar-width: none;
    }

    .rooms-mosaic::-webkit-scrollbar {
        display: none;
    }

    .rooms-mosaic::before {
        content: "Rooms";
        display: inline-block;
        margin: 0;
        padding: 14px 24px;
        color: rgba(244, 237, 233, .84);
        background: rgba(244, 237, 233, .92);
        color: var(--ink);
        border-radius: 999px;
        font-family: var(--serif);
        font-size: 25px;
        line-height: 1;
    }

    .room-tile,
    .room-tile:nth-child(2n),
    .room-tile:nth-child(3n),
    .room-tile:nth-child(4n + 1),
    .room-tile:nth-child(4n + 3),
    .room-tile-large-tall,
    .room-tile-wide {
        display: block;
        width: 100%;
        height: 560px;
        min-height: 560px;
        margin: 28px 0 0;
        border-radius: 20px;
        scroll-snap-align: start;
    }

    .room-tile:nth-child(2n) {
        height: 500px;
        min-height: 500px;
    }

    .room-tile-copy {
        min-height: 158px;
        padding: 25px 20px 19px;
        border-radius: 16px;
    }

    .room-tile-copy strong {
        font-size: 24px;
    }

    .room-tile-copy em {
        display: block;
        margin-top: 12px;
        color: rgba(9, 7, 5, .66);
        font-style: normal;
        font-size: 14px;
        line-height: 1.28;
    }
}

/* Fast mobile pass: clearer room cards, lighter media and a contained contact panel. */
.scene-fade-layer,
.home-video-slide,
.home-youtube-slide {
    transition-duration: .48s;
}

.room-tile-video {
    transition: opacity .58s cubic-bezier(.2, .72, .18, 1);
}

.room-tile.video-loading .room-tile-video {
    opacity: 0 !important;
}

.room-tile::before {
    transition: filter .32s ease;
}

@media (max-width: 900px) {
    body[data-current-scene="rooms"] .scene-rooms .scene-kicker {
        display: none;
    }

    .rooms-mosaic::before {
        display: none !important;
        content: none !important;
    }

    .rooms-mosaic {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 104px;
    }

    .room-tile::after,
    .room-tile-copy::after,
    .room-tile-copy small {
        display: none !important;
        content: none !important;
    }

    .room-tile-copy {
        display: block !important;
        min-height: 132px;
        padding: 24px 20px 20px;
        background: rgba(255, 250, 244, .95);
        box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    }

    .room-tile,
    .room-tile:nth-child(2n),
    .room-tile:nth-child(3n),
    .room-tile:nth-child(4n + 1),
    .room-tile:nth-child(4n + 3),
    .room-tile-large-tall,
    .room-tile-wide {
        height: calc(100vh - 210px);
        min-height: 430px;
        margin: 22px 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .room-tile-copy::before {
        top: 18px;
        left: 20px;
        width: 58px;
        background: var(--wine);
    }

    .room-tile-copy strong {
        display: block;
        padding-top: 20px;
        font-size: 25px;
        line-height: 1.02;
        white-space: normal;
    }

    .room-tile-copy em {
        display: block !important;
        margin-top: 12px;
        color: rgba(9, 7, 5, .68);
        font-size: 14px;
        line-height: 1.32;
    }

    .room-tile:hover,
    .room-tile:focus-visible,
    .room-tile.video-on {
        transform: none;
    }

    .scene-contact .center-panel {
        top: 82px;
        right: 16px;
        bottom: 72px;
        left: 16px;
        display: block;
        width: auto;
        max-height: none;
        padding: 26px 22px;
        overflow-y: auto;
        background: rgba(244, 237, 233, .94);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
        transform: none;
    }

    .scene-contact .center-panel h2 {
        font-size: 34px;
        line-height: .98;
    }
}

.contact-map {
    width: 100%;
    height: 220px;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(9, 7, 5, .18);
    background: rgba(9, 7, 5, .08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(.95) brightness(.96);
}

@media (max-width: 900px) {
    .footer-room-nav {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 22px;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: hidden;
        padding: 0 12px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .footer-room-nav::-webkit-scrollbar {
        display: none;
    }

    .footer-room-nav button {
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
}

/* Final editorial pass: keep secondary information readable without stealing the image. */
@media (min-width: 901px) {
    .scene-panel,
    .heritage-panel {
        width: min(390px, 30vw);
        max-height: min(520px, calc(100vh - 190px));
        padding: 24px 26px;
        background: rgba(244, 237, 233, .84);
        backdrop-filter: blur(14px);
    }

    .scene-panel h2,
    .heritage-panel h2 {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.02;
    }

    .scene-panel p,
    .heritage-panel p {
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 1.38;
    }

    .left-panel,
    .restaurant-panel {
        left: 7vw;
        right: auto;
        bottom: 92px;
    }

    .right-panel {
        right: 7vw;
        bottom: 92px;
    }

    .restaurant-panel {
        width: min(440px, 34vw);
    }

    .restaurant-notes {
        gap: 8px;
    }

    .restaurant-notes span {
        padding: 8px 0;
    }

    .panel-thumbs {
        height: 78px;
        gap: 8px;
    }

    .split-small {
        height: 92px;
        margin-top: 14px;
    }

    .service-list li {
        padding: 9px 0;
    }

    .ritual-board {
        right: 7vw;
        bottom: 92px;
        left: 7vw;
        width: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        transform: none;
    }

    .ritual-board article {
        min-height: 150px;
        padding: 22px;
        background: rgba(244, 237, 233, .84);
        backdrop-filter: blur(14px);
    }

    .ritual-board span {
        font-size: 22px;
        line-height: 1;
    }

    .ritual-board p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.35;
    }
}

@media (max-width: 900px) {
    .menu-primary {
        padding: 18px 20px 24px;
    }

    .menu-primary button {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: center;
        min-height: 54px;
        padding: 0 0 0 4px;
        font-size: 24px;
        line-height: 1;
    }

    .menu-primary button::before {
        position: static;
        transform: none;
    }

    .menu-primary button:hover,
    .menu-primary button:focus-visible {
        padding-left: 4px;
    }

    .scene-panel,
    .heritage-panel,
    .restaurant-panel {
        right: 14px;
        bottom: 70px;
        left: 14px;
        width: auto;
        max-height: 38vh;
        padding: 20px 20px 18px;
        overflow-y: auto;
        background: rgba(244, 237, 233, .9);
        border-radius: 12px;
        backdrop-filter: blur(12px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
    }

    .scene-panel h2,
    .heritage-panel h2 {
        margin-bottom: 10px;
        font-size: 25px;
        line-height: 1.02;
    }

    .scene-panel p,
    .heritage-panel p {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.34;
    }

    .panel-kicker,
    .scene-label {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .restaurant-notes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin: 12px 0;
    }

    .restaurant-notes span {
        padding: 8px 0;
        font-size: 11px;
    }

    .panel-thumbs {
        display: none;
    }

    .service-list li {
        padding: 8px 0;
        font-size: 13px;
    }

    .split-small {
        display: none;
    }

    .ritual-board {
        right: 14px;
        bottom: 70px;
        left: 14px;
        display: grid;
        width: auto;
        max-height: 42vh;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow-y: auto;
        transform: none;
    }

    .ritual-board article {
        min-height: 0;
        padding: 18px 20px;
        background: rgba(244, 237, 233, .9);
        border-radius: 12px;
        backdrop-filter: blur(12px);
    }

    .ritual-board span {
        font-size: 22px;
    }

    .ritual-board p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.34;
    }
}

@media (max-width: 430px) {
    .menu-primary button {
        min-height: 51px;
        font-size: 21px;
    }

    .scene-panel,
    .heritage-panel,
    .restaurant-panel {
        max-height: 36vh;
        padding: 18px;
    }

    .scene-panel h2,
    .heritage-panel h2 {
        font-size: 23px;
    }
}

.info-slide-arrow {
    width: 46px;
    height: 46px;
}

.info-slide-counter {
    right: 32px;
    bottom: 88px;
}

.scene[data-info-gallery="1"] .slide-prev {
    right: 86px;
    left: auto;
}

.scene[data-info-gallery="1"] .slide-next {
    right: 28px;
}

@media (max-width: 900px) {
    .info-slide-arrow {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 126px;
        background: rgba(244, 237, 233, .9);
        color: var(--ink);
        border: 1px solid rgba(9, 7, 5, .16);
        box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
    }

    .scene[data-info-gallery="1"] .slide-prev {
        right: 70px;
    }

    .scene[data-info-gallery="1"] .slide-next {
        right: 20px;
    }

    .info-slide-counter {
        display: block;
        right: auto;
        bottom: 132px;
        left: 18px;
        padding: 7px 10px;
        color: rgba(255, 250, 244, .88);
        background: rgba(9, 7, 5, .34);
        border-radius: 8px;
        backdrop-filter: blur(8px);
    }
}

.info-drawer-toggle {
    display: none;
}

.weather-widget {
    position: fixed;
    z-index: 86;
    top: 70px;
    right: 34px;
    display: none;
    min-width: 208px;
    padding: 13px;
    color: #fffaf4;
    border-radius: 12px;
}

body[data-current-scene="welcome"] .weather-widget {
    display: block;
}

.weather-place,
.weather-status {
    display: block;
    line-height: 1;
}

.weather-place {
    font-family: var(--serif);
    font-size: 18px;
}

.weather-status {
    margin-top: 4px;
    color: rgba(244, 237, 233, .72);
    font-size: 11px;
    text-transform: uppercase;
}

.weather-days {
    display: flex;
    gap: 7px;
    margin-top: 10px;
}

.weather-days span {
    display: grid;
    min-width: 52px;
    padding: 7px 6px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2px 6px;
    background: rgba(255, 250, 244, .12);
    border: 1px solid rgba(255, 250, 244, .14);
    border-radius: 8px;
}

.weather-days b,
.weather-days small {
    font-weight: 400;
    line-height: 1;
}

.weather-days b {
    font-size: 17px;
}

.weather-days b::after,
.weather-days small::after {
    content: "\00b0";
}

.weather-days small {
    color: rgba(244, 237, 233, .72);
    font-size: 11px;
}

.weather-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    grid-row: span 2;
}

.weather-icon-sun {
    width: 18px;
    height: 18px;
    margin: 2px;
    color: #ffd45a;
    background: #ffd45a;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 212, 90, .24), 0 0 18px rgba(255, 212, 90, .55);
}

.weather-icon-cloud::before,
.weather-icon-rain::before,
.weather-icon-snow::before,
.weather-icon-storm::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 0;
    bottom: 5px;
    height: 9px;
    border-radius: 999px;
    background: #f4f6fb;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .12);
}

.weather-icon-cloud::after,
.weather-icon-rain::after,
.weather-icon-snow::after,
.weather-icon-storm::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f4f6fb;
    box-shadow: -5px 4px 0 -2px #f4f6fb;
}

.weather-icon-rain {
    color: #6dc7ff;
}

.weather-icon-rain::before {
    background: #dfe8f4;
}

.weather-icon-rain::after {
    background: #dfe8f4;
    box-shadow: -5px 4px 0 -2px #dfe8f4, 2px 17px 0 -3px #6dc7ff, 9px 17px 0 -3px #6dc7ff;
}

.weather-icon-snow {
    color: #d8f4ff;
}

.weather-icon-snow::after {
    box-shadow: -5px 4px 0 -2px #f4f6fb, 2px 17px 0 -2px #d8f4ff, 9px 17px 0 -2px #d8f4ff;
}

.weather-icon-storm {
    color: #ffd45a;
}

.weather-icon-storm::after {
    box-shadow: -5px 4px 0 -2px #f4f6fb, 6px 16px 0 -2px #ffd45a;
}

@media (max-width: 900px) {
    .scene[data-info-gallery="1"] .scene-panel,
    .scene[data-info-gallery="1"] .heritage-panel,
    .scene[data-info-gallery="1"] .restaurant-panel,
    .scene[data-info-gallery="1"] .ritual-board {
        transition: max-height .36s ease, padding .36s ease, background .28s ease, box-shadow .28s ease;
    }

    .info-drawer-toggle {
        position: sticky;
        z-index: 5;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        width: 42px;
        min-height: 42px;
        margin: -6px 0 6px auto;
        padding: 0;
        border: 0;
        background: rgba(255, 250, 244, .72);
        border-radius: 50%;
        color: var(--ink);
        font-family: var(--serif);
        font-size: 0;
        text-transform: uppercase;
    }

    .info-drawer-toggle::before {
        display: none;
    }

    .info-drawer-toggle::after {
        content: "x";
        width: auto;
        height: auto;
        margin: 0;
        border: 0;
        font-size: 22px;
        line-height: 1;
        transform: none;
    }

    .scene[data-info-gallery="1"].info-collapsed .scene-panel,
    .scene[data-info-gallery="1"].info-collapsed .heritage-panel,
    .scene[data-info-gallery="1"].info-collapsed .restaurant-panel {
        right: 18px;
        bottom: 76px;
        left: auto;
        width: 46px;
        max-height: 46px;
        padding: 2px;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .scene[data-info-gallery="1"].info-collapsed .ritual-board {
        right: 18px;
        bottom: 76px;
        left: auto;
        display: block;
        width: 46px;
        max-height: 46px;
        padding: 2px;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .scene[data-info-gallery="1"].info-collapsed .info-drawer-toggle {
        width: 42px;
        margin: 0;
        background: rgba(255, 250, 244, .9);
        border: 1px solid rgba(9, 7, 5, .45);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
        margin-bottom: 0;
    }

    .scene[data-info-gallery="1"].info-collapsed .info-drawer-toggle::after {
        content: "+";
        transform: none;
    }

    .weather-widget {
        top: 70px;
        right: 18px;
        min-width: 132px;
        padding: 10px;
        border-radius: 8px;
    }

    .weather-place {
        font-size: 14px;
    }

    .weather-status {
        display: none;
    }

    .weather-days {
        gap: 5px;
        margin-top: 8px;
    }

    .weather-days span {
        min-width: 34px;
        padding: 6px 4px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .weather-days small {
        display: none;
    }

    .weather-days b {
        font-size: 14px;
    }

    .weather-icon {
        width: 18px;
        height: 18px;
        grid-row: auto;
    }

    .weather-icon-sun {
        width: 14px;
        height: 14px;
    }
}

/* Mobile info pages final layout: media controls up top, content as one bottom sheet. */
@media (max-width: 900px) {
    .scene[data-info-gallery="1"] .scene-panel,
    .scene[data-info-gallery="1"] .heritage-panel,
    .scene[data-info-gallery="1"] .restaurant-panel,
    .scene[data-info-gallery="1"] .ritual-board {
        top: auto !important;
        right: 14px !important;
        bottom: 84px !important;
        left: 14px !important;
        width: auto !important;
        max-height: min(32vh, 260px) !important;
        padding: 18px 18px 16px !important;
        overflow-y: auto !important;
        border-radius: 13px !important;
        background: rgba(244, 237, 233, .92) !important;
        box-shadow: 0 18px 50px rgba(0, 0, 0, .3) !important;
        z-index: 5 !important;
    }

    .scene[data-info-gallery="1"] .ritual-board {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        overflow-y: auto;
    }

    .scene[data-info-gallery="1"] .ritual-board article {
        display: none;
    }

    .scene[data-info-gallery="1"] .ritual-board article:first-of-type {
        display: block;
        margin: 0;
        min-height: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .scene[data-info-gallery="1"] .scene-panel h2,
    .scene[data-info-gallery="1"] .heritage-panel h2,
    .scene[data-info-gallery="1"] .ritual-board span {
        margin: 0 38px 10px 0 !important;
        font-size: clamp(23px, 5vw, 31px) !important;
        line-height: 1.02 !important;
    }

    .scene[data-info-gallery="1"] .scene-panel p,
    .scene[data-info-gallery="1"] .heritage-panel p,
    .scene[data-info-gallery="1"] .ritual-board p {
        margin: 0 0 10px !important;
        font-size: 14px !important;
        line-height: 1.34 !important;
    }

    .scene[data-info-gallery="1"] .restaurant-notes,
    .scene[data-info-gallery="1"] .panel-thumbs,
    .scene[data-info-gallery="1"] .service-list,
    .scene[data-info-gallery="1"] .split-small {
        display: none !important;
    }

    .scene[data-info-gallery="1"] .info-slide-arrow {
        top: 90px !important;
        bottom: auto !important;
        width: 36px;
        height: 36px;
        background: rgba(244, 237, 233, .86);
        border: 1px solid rgba(9, 7, 5, .14);
        color: var(--ink);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    }

    .scene[data-info-gallery="1"] .slide-prev {
        right: 62px !important;
        left: auto !important;
    }

    .scene[data-info-gallery="1"] .slide-next {
        right: 18px !important;
    }

    .scene[data-info-gallery="1"] .info-slide-counter {
        top: 106px !important;
        right: auto !important;
        bottom: auto !important;
        left: 18px !important;
        padding: 6px 9px;
        color: rgba(255, 250, 244, .88);
        background: rgba(9, 7, 5, .34);
        border-radius: 8px;
        backdrop-filter: blur(8px);
    }

    .scene[data-info-gallery="1"].info-collapsed .scene-panel,
    .scene[data-info-gallery="1"].info-collapsed .heritage-panel,
    .scene[data-info-gallery="1"].info-collapsed .restaurant-panel,
    .scene[data-info-gallery="1"].info-collapsed .ritual-board {
        right: 18px !important;
        bottom: 76px !important;
        left: auto !important;
        width: 46px !important;
        max-height: 46px !important;
        min-height: 46px !important;
        padding: 2px !important;
        overflow: hidden !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .scene[data-info-gallery="1"].info-collapsed .scene-panel > :not(.info-drawer-toggle),
    .scene[data-info-gallery="1"].info-collapsed .heritage-panel > :not(.info-drawer-toggle),
    .scene[data-info-gallery="1"].info-collapsed .restaurant-panel > :not(.info-drawer-toggle),
    .scene[data-info-gallery="1"].info-collapsed .ritual-board > :not(.info-drawer-toggle) {
        display: none !important;
    }

    .scene[data-info-gallery="1"] .info-drawer-toggle {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        width: 38px !important;
        height: 38px !important;
        margin: 0 !important;
        border-radius: 9px !important;
        background: rgba(255, 250, 244, .82) !important;
    }

    .scene[data-info-gallery="1"].info-collapsed .info-drawer-toggle {
        top: 2px !important;
        right: 2px !important;
        width: 42px !important;
        height: 42px !important;
        background: rgba(255, 250, 244, .92) !important;
    }
}

/* 2026-07-03 client final tweaks */
.footer-contact-nav {
    justify-content: center !important;
    gap: 0 !important;
}

.footer-contact-nav button {
    min-width: 120px;
    text-align: center;
}

.site-footer-info {
    flex-direction: column;
    align-items: stretch;
    justify-content: center !important;
    gap: 1px !important;
    padding: 4px 18px !important;
    overflow: hidden !important;
    text-transform: none;
}

.footer-brand-line,
.footer-meta-line {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.footer-brand-line {
    gap: 10px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.footer-brand-line button {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    text-transform: none;
    text-decoration: underline;
    text-decoration-color: rgba(125, 17, 24, .45);
    text-underline-offset: 3px;
}

.footer-brand-line span::before {
    content: "—";
    margin-right: 10px;
    color: rgba(125, 17, 24, .7);
}

.footer-meta-line {
    gap: 14px;
    color: rgba(9, 7, 5, .78);
    font-size: 11px;
    line-height: 1.12;
    white-space: nowrap;
}

.footer-meta-line > * {
    position: relative;
    flex: 0 0 auto;
}

.footer-meta-line > * + *::before {
    content: "·";
    position: absolute;
    left: -9px;
    color: rgba(125, 17, 24, .65);
}

.footer-meta-line strong {
    color: var(--ink);
    font-weight: 700;
}

.footer-meta-line a {
    color: rgba(9, 7, 5, .86);
}

@media (max-width: 900px) {
    .costes-logo {
        min-width: 0;
        padding: 0 10px;
    }

    .costes-logo img {
        width: min(168px, 44vw);
        max-height: 48px;
    }

    .footer-contact-nav {
        flex: 1 1 auto;
        justify-content: center !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }

    .site-footer-info {
        align-items: flex-start;
        padding: 5px 10px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .site-footer-info::-webkit-scrollbar {
        display: none;
    }

    .footer-brand-line,
    .footer-meta-line {
        justify-content: flex-start;
        width: max-content;
    }

    .footer-brand-line {
        font-size: 12px;
    }

    .footer-brand-line button {
        font-size: 13px;
    }

    .footer-meta-line {
        gap: 12px;
        font-size: 10px;
    }
}

/* 2026-07-03 final touch: smaller logo, right-side restaurant information, per-slide home copy polish. */
.home-copy {
    transition: opacity .32s ease, transform .32s ease;
}

.home-copy:not(.copy-ready) {
    opacity: .72;
    transform: translateY(8px);
}

.costes-logo img,
.costes-logo img[height] {
    width: auto !important;
    height: 38px !important;
    max-width: 132px !important;
    max-height: 38px !important;
}

@media (min-width: 901px) {
    .scene-rituals .ritual-board {
        right: 7vw !important;
        left: 7vw !important;
        width: auto !important;
        grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
        gap: 14px !important;
    }

    .scene-rituals .ritual-board article {
        min-height: 150px !important;
    }

    .scene-restaurant .restaurant-panel {
        right: 7vw !important;
        left: auto !important;
        bottom: 92px !important;
    }

    .scene-restaurant .restaurant-strip {
        right: 7vw !important;
        left: auto !important;
        top: 126px !important;
    }
}

@media (max-width: 900px) {
    .costes-logo img,
    .costes-logo img[height] {
        height: 34px !important;
        max-width: 118px !important;
        max-height: 34px !important;
    }
}

/* Admin CRM interface */
.admin-body {
    min-height: 100vh;
    overflow: auto;
    background: #eef1f5;
    color: #17202c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: linear-gradient(180deg, #101722, #17202c);
    color: #fff;
    box-shadow: 14px 0 42px rgba(16, 23, 34, .18);
}

.admin-brand {
    padding: 16px 14px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.admin-brand span {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
}

.admin-brand small,
.admin-topbar small,
.admin-nav small,
.admin-metrics small {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.admin-nav {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.admin-sidebar a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.admin-sidebar a span {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(244, 237, 233, .12);
    color: #fff;
    transform: translateX(2px);
}

.admin-sidebar-actions {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.admin-main {
    min-width: 0;
    padding: 28px 34px 48px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 44px rgba(23, 32, 44, .08);
    backdrop-filter: blur(12px);
}

.admin-topbar h1 {
    margin: 5px 0 0;
    font-size: 31px;
    line-height: 1.05;
}

.admin-topbar small {
    color: #7b8491;
}

.admin-live-link,
.admin-button,
.admin-button-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: #8b1e2d;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: none;
    box-shadow: 0 12px 28px rgba(139, 30, 45, .22);
    cursor: pointer;
}

.admin-card,
.admin-hero-card {
    margin-bottom: 22px;
    padding: 26px;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(23, 32, 44, .08);
}

.admin-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #fff, #f6ede8);
}

.admin-hero-card span {
    color: #8b1e2d;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-hero-card h2,
.admin-card h1,
.admin-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.12;
}

.admin-card p,
.admin-hero-card p {
    color: #5d6673;
    font-size: 16px;
    line-height: 1.5;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.admin-metrics article,
.admin-quick-grid a {
    padding: 20px;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(23, 32, 44, .07);
}

.admin-metrics small {
    color: #7b8491;
}

.admin-metrics strong {
    display: block;
    margin-top: 10px;
    font-size: 36px;
}

.admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-quick-grid a {
    color: #17202c;
    text-decoration: none;
}

.admin-quick-grid strong,
.admin-quick-grid span {
    display: block;
}

.admin-quick-grid span {
    margin-top: 8px;
    color: #697384;
    line-height: 1.4;
}

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

.admin-form .wide,
.admin-form button {
    grid-column: 1 / -1;
}

.admin-form label {
    display: grid;
    gap: 8px;
    color: #465263;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 32, 44, .14);
    border-radius: 12px;
    background: #f9fafb;
    color: #17202c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    outline: none;
}

.admin-form textarea {
    resize: vertical;
    line-height: 1.45;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: #8b1e2d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 30, 45, .1);
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 14px;
    background: #fff;
}

.admin-table th,
.admin-table td {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(23, 32, 44, .08);
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.admin-table th {
    background: #f7f8fa;
    color: #697384;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-table a {
    color: #8b1e2d;
    font-weight: 700;
    text-decoration: none;
}

.admin-alert {
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 700;
}

.admin-alert-success {
    background: #ecfdf3;
    color: #17633a;
}

.admin-button-light {
    background: #17202c;
    box-shadow: 0 12px 28px rgba(23, 32, 44, .16);
}

.admin-lang-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(23, 32, 44, .1);
    border-radius: 14px;
    background: #f7f3f0;
}

.admin-lang-tabs button {
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #5d6673;
    font-weight: 800;
    cursor: pointer;
}

.admin-lang-tabs button.active {
    background: #8b1e2d;
    color: #fff;
}

.admin-lang-panel {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 16px;
    background: #fbfaf9;
}

.admin-lang-panel.active {
    display: grid;
}

.admin-media-manager {
    display: grid;
    gap: 12px;
}

.admin-media-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    min-height: 116px;
    padding: 12px;
    border: 1px dashed rgba(139, 30, 45, .28);
    border-radius: 16px;
    background: #fbfaf9;
}

.admin-media-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 98px auto;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 44, .08);
    cursor: grab;
}

.admin-media-card.is-dragging {
    opacity: .55;
}

.admin-media-card img,
.admin-media-video {
    width: 100%;
    height: 98px;
    border-radius: 10px;
    object-fit: cover;
    background: #17202c;
}

.admin-media-video {
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
}

.admin-media-card span {
    overflow: hidden;
    color: #465263;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-media-card button {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #8b1e2d;
    font-weight: 900;
    cursor: pointer;
}

.admin-media-actions {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.admin-help {
    color: #7b8491;
    font-size: 13px;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: radial-gradient(circle at top, #f6ede8, #eef1f5 48%, #e7ebf0);
}

.admin-login .admin-card {
    width: 460px;
    max-width: 100%;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-nav,
    .admin-sidebar-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-metrics,
    .admin-quick-grid,
    .admin-form,
    .admin-lang-panel,
    .admin-media-actions {
        grid-template-columns: 1fr;
    }
}

/* Final header reservation width fix: TR "REZERVASYON" must never clip on desktop. */
@media (min-width: 901px) {
    .header-tools {
        flex: 0 0 auto !important;
        min-width: 238px !important;
    }

    .book-trigger {
        width: auto !important;
        min-width: 132px !important;
        padding: 0 22px !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .book-full {
        display: inline !important;
    }

    .book-short {
        display: none !important;
    }
}

/* Mobile rooms: reveal the next card so visitors understand the list continues. */
@media (max-width: 900px) {
    body[data-current-scene="rooms"] .rooms-mosaic {
        padding: 104px 20px 132px !important;
        scroll-snap-type: y proximity !important;
        scroll-padding-top: 96px !important;
    }

    body[data-current-scene="rooms"] .room-tile,
    body[data-current-scene="rooms"] .room-tile:nth-child(2n),
    body[data-current-scene="rooms"] .room-tile:nth-child(3n),
    body[data-current-scene="rooms"] .room-tile:nth-child(4n + 1),
    body[data-current-scene="rooms"] .room-tile:nth-child(4n + 3),
    body[data-current-scene="rooms"] .room-tile-large-tall,
    body[data-current-scene="rooms"] .room-tile-wide {
        height: min(620px, calc(100vh - 255px)) !important;
        min-height: 390px !important;
        margin: 18px 0 34px !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: normal !important;
    }

    body[data-current-scene="rooms"] .room-tile:first-of-type {
        margin-top: 0 !important;
    }

    body[data-current-scene="rooms"] .room-tile-copy {
        right: 18px !important;
        bottom: 18px !important;
        left: 18px !important;
        min-height: 118px !important;
        padding: 21px 19px 17px !important;
    }

    body[data-current-scene="rooms"] .room-tile-copy strong {
        font-size: 23px !important;
    }

    body[data-current-scene="rooms"] .room-tile-copy em {
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px !important;
        line-height: 1.27 !important;
    }

    body[data-current-scene="rooms"] .scene-rooms::after {
        content: "";
        position: fixed;
        z-index: 12;
        right: 28px;
        bottom: calc(var(--bottombar) + 14px);
        width: 28px;
        height: 28px;
        border-right: 1px solid rgba(244, 237, 233, .9);
        border-bottom: 1px solid rgba(244, 237, 233, .9);
        transform: rotate(45deg);
        pointer-events: none;
        animation: roomCue 1.6s ease-in-out infinite;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .45));
    }
}

@keyframes roomCue {
    0%, 100% {
        opacity: .35;
        transform: translateY(-2px) rotate(45deg);
    }
    50% {
        opacity: .95;
        transform: translateY(6px) rotate(45deg);
    }
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 54px);
    background: rgba(7, 10, 13, .92);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.image-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 26px 90px rgba(0, 0, 0, .45);
}

.image-lightbox-close {
    position: fixed;
    z-index: 2;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(244, 237, 233, .38);
    border-radius: 50%;
    background: rgba(244, 237, 233, .94);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
}

.image-lightbox span {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    color: rgba(244, 237, 233, .82);
    text-align: center;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: none;
}

body.image-lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .image-lightbox {
        padding: 18px;
    }

    .image-lightbox img {
        border-radius: 8px;
    }

    .room-scene.active::after,
    .scene.active[data-info-gallery="1"]::after {
        content: "↗";
        position: fixed;
        z-index: 24;
        top: calc(var(--topbar) + 70px);
        right: 18px;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(244, 237, 233, .36);
        border-radius: 50%;
        background: rgba(9, 7, 5, .42);
        color: rgba(244, 237, 233, .96);
        font-size: 18px;
        pointer-events: none;
        backdrop-filter: blur(8px);
    }
}

@media (min-width: 901px) {
    .image-lightbox,
    .image-lightbox.open {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .rooms-mosaic {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        pointer-events: auto !important;
        touch-action: pan-x !important;
        user-select: none !important;
        cursor: grab !important;
    }

    .rooms-mosaic.is-dragging {
        cursor: grabbing !important;
    }
}

/* Final requested polish: contact, language access, admin settings and smooth rooms. */
@media (min-width: 901px) {
    .scene-panel,
    .info-panel,
    .section-side-nav,
    .section-thumbs,
    .contact-footer-panel,
    .contact-footer-panel * {
        cursor: auto !important;
    }

    .scene-panel button,
    .scene-panel a,
    .section-side-nav button,
    .section-thumbs button,
    .contact-footer-panel button,
    .contact-footer-panel a {
        cursor: pointer !important;
    }

    .rooms-mosaic {
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
    }

    .rooms-mosaic .room-tile {
        scroll-snap-align: none !important;
    }

    .book-trigger {
        min-width: 86px;
        padding: 0 18px;
        white-space: nowrap;
    }
}

.mobile-lang-switch {
    display: none;
}

.book-short {
    display: none;
}

.contact-footer-panel {
    width: min(860px, calc(100vw - 150px)) !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 30px 34px 28px !important;
    border: 1px solid rgba(255, 255, 255, .46) !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(244, 237, 233, .94), rgba(255, 252, 247, .86)) !important;
    box-shadow: 0 34px 95px rgba(0, 0, 0, .28) !important;
}

.contact-footer-panel .panel-kicker {
    text-align: center !important;
    font-size: 12px !important;
    letter-spacing: .13em !important;
}

.contact-footer-panel h2 {
    margin: 8px auto 20px !important;
    max-width: 680px !important;
    font-size: clamp(34px, 2.8vw, 46px) !important;
    line-height: .96 !important;
    text-align: center !important;
}

.contact-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 0 0 12px !important;
}

.contact-footer-grid a {
    min-height: 118px !important;
    display: grid !important;
    grid-template-columns: 38px 1fr !important;
    gap: 3px 10px !important;
    align-content: center !important;
    align-items: center !important;
    padding: 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .54) !important;
}

.contact-footer-grid a > span {
    grid-row: span 3 !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
}

.contact-footer-grid strong {
    font-size: 15px !important;
    line-height: 1.1 !important;
}

.contact-footer-grid em {
    font-size: 11px !important;
}

.newsletter-card {
    grid-template-columns: minmax(180px, 1.1fr) minmax(115px, .9fr) minmax(140px, 1fr) minmax(115px, .9fr) auto !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 14px !important;
    background: rgba(9, 7, 5, .055) !important;
}

.newsletter-card > div p {
    max-width: 250px;
}

.newsletter-card input {
    height: 38px !important;
}

.newsletter-card button {
    min-width: 112px;
    height: 38px !important;
	background: black;
}

.contact-social-line {
    justify-content: center !important;
    margin-top: 13px !important;
}

.contact-social-line span {
    flex-basis: 100%;
    text-align: center;
}

.contact-social-line a {
    text-decoration: none !important;
}

.admin-settings-form,
.adminlte-body .admin-settings-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 1100px !important;
}

.admin-settings-form .soft-card,
.adminlte-body .admin-settings-form .soft-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 22px !important;
    border-radius: 16px !important;
    box-shadow: none !important;
}

.admin-settings-form .soft-card h2 {
    margin-bottom: 14px !important;
}

.admin-form-grid.two,
.admin-form-grid.three,
.adminlte-body .admin-form-grid.two,
.adminlte-body .admin-form-grid.three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.admin-settings-form input,
.admin-settings-form textarea {
    width: 100% !important;
}

.admin-settings-form .wide {
    grid-column: 1 / -1 !important;
}

.admin-settings-form .admin-sticky-actions {
    position: sticky;
    bottom: 14px;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    border-radius: 14px;
    background: rgba(244, 237, 233, .86);
    backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
    .header-tools {
        min-width: 92px;
    }

    .book-trigger {
        min-width: 88px !important;
        max-width: 96px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .book-full {
        display: none;
    }

    .book-short {
        display: inline;
    }

    .languages {
        display: none !important;
    }

    .mobile-lang-switch {
        display: inline-flex;
        align-self: flex-start;
        gap: 8px;
        margin: 0 0 18px;
        padding: 9px 14px;
        border: 1px solid rgba(9, 7, 5, .12);
        border-radius: 999px;
        background: rgba(255, 252, 247, .78);
        color: var(--ink);
        font-size: 14px;
    }

    .mobile-lang-switch a {
        color: var(--ink);
        text-decoration: none;
    }

    .scene[data-info-gallery="1"] .scene-panel h2 {
        font-size: 16px !important;
        line-height: 1.16 !important;
    }

    .scene[data-info-gallery="1"] .scene-panel p {
        font-size: 12px !important;
    }

    .contact-footer-panel {
        width: calc(100vw - 28px) !important;
        max-height: calc(100vh - 174px) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .contact-footer-panel h2 {
        font-size: 30px !important;
        margin-bottom: 16px !important;
    }

    .contact-footer-grid,
    .newsletter-card {
        grid-template-columns: 1fr !important;
    }

    .contact-footer-grid a {
        min-height: 0 !important;
    }

    .newsletter-card button {
        width: 100%;
    }

    .admin-form-grid.two,
    .admin-form-grid.three,
    .adminlte-body .admin-form-grid.two,
    .adminlte-body .admin-form-grid.three {
        grid-template-columns: 1fr !important;
    }
}

/* Rooms desktop must stay a single horizontal rail. */
@media (min-width: 901px) {
    .rooms-mosaic {
        display: flex !important;
        grid-auto-flow: initial !important;
        grid-template-rows: none !important;
        grid-template-columns: none !important;
        grid-auto-columns: initial !important;
        align-items: stretch !important;
        gap: clamp(18px, 1.8vw, 28px) !important;
        padding: 102px 7vw 88px clamp(330px, 30vw, 440px) !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: auto;
    }

    .rooms-mosaic .room-tile,
    .rooms-mosaic .room-tile-large-tall,
    .rooms-mosaic .room-tile-wide {
        flex: 0 0 clamp(300px, 24vw, 360px) !important;
        width: clamp(300px, 24vw, 360px) !important;
        min-height: calc(100% - 18px) !important;
        flex-shrink: 0 !important;
        scroll-snap-align: none !important;
    }

    .rooms-mosaic .room-tile:nth-child(2n),
    .rooms-mosaic .room-tile:nth-child(3n) {
        flex-basis: clamp(290px, 23vw, 345px) !important;
        width: clamp(290px, 23vw, 345px) !important;
    }

    .rooms-mosaic .room-tile:nth-child(2n) {
        margin-top: 22px !important;
        margin-bottom: 22px !important;
    }

    .rooms-mosaic .room-tile-copy {
        right: 14px !important;
        bottom: 14px !important;
        left: 14px !important;
        min-height: 94px !important;
        padding: 18px 18px 14px !important;
    }

    .rooms-mosaic .room-tile-copy strong {
        font-size: clamp(22px, 1.65vw, 26px) !important;
    }

    .rooms-mosaic .room-tile-copy em {
        font-size: 12px !important;
        line-height: 1.22 !important;
    }
}

/* Contact scene: wider editorial card, managed content, no inner horizontal scroll. */
.contact-footer-panel {
    width: min(940px, calc(100vw - 160px)) !important;
    max-height: calc(100vh - var(--topbar) - var(--bottombar) - 54px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: clamp(26px, 2.6vw, 42px) !important;
    border-radius: 18px !important;
    background: rgba(244, 237, 233, .91) !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .3) !important;
    scrollbar-width: thin;
}

.contact-footer-panel .panel-kicker {
    text-align: center;
    letter-spacing: .08em;
}

.contact-footer-panel h2 {
    max-width: 660px;
    margin: 10px auto 24px !important;
    text-align: center;
    font-size: clamp(34px, 3vw, 54px) !important;
    line-height: .95 !important;
}

.contact-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.contact-footer-grid a {
    min-height: 148px !important;
    grid-template-columns: 1fr !important;
    align-content: start !important;
    justify-items: start !important;
    gap: 7px !important;
    padding: 18px !important;
    border-color: rgba(9, 7, 5, .12) !important;
    border-radius: 14px !important;
    background: rgba(255, 252, 247, .64) !important;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.contact-footer-grid a:hover {
    transform: translateY(-3px);
    background: rgba(255, 252, 247, .88) !important;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.contact-footer-grid a > span {
    grid-row: auto !important;
    width: 42px !important;
    height: 42px !important;
    margin-bottom: 6px;
    font-size: 18px !important;
}

.contact-footer-grid strong {
    font-size: 17px !important;
}

.newsletter-card {
    grid-template-columns: 1.35fr minmax(120px, 1fr) minmax(150px, 1.1fr) minmax(120px, 1fr) auto !important;
    align-items: end !important;
    gap: 10px !important;
    padding: 16px !important;
    border: 1px solid rgba(9, 7, 5, .1);
    border-radius: 14px !important;
    background: rgba(255, 252, 247, .62) !important;
}

.newsletter-card input {
    min-width: 0;
}

.contact-social-line {
    justify-content: center;
    gap: 12px !important;
    margin-top: 16px !important;
}

.contact-social-line span {
    width: 100%;
    text-align: center;
    color: rgba(9, 7, 5, .64) !important;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-social-line a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(9, 7, 5, .14);
    border-radius: 50%;
    background: rgba(255, 252, 247, .72);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease;
}

.contact-social-line a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-social-line a[aria-label="Facebook"] svg,
.contact-social-line a[aria-label="LinkedIn"] svg {
    fill: currentColor;
    stroke: none;
}

.contact-social-line a:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: var(--paper);
}

.admin-settings-form {
    display: block !important;
}

.admin-settings-form .soft-card {
    margin: 0 0 18px;
    box-shadow: none;
}

.admin-form-grid.two,
.admin-form-grid.three {
    display: grid;
    gap: 14px;
}

.admin-form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-form-grid .wide {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .contact-footer-panel {
        width: calc(100vw - 28px) !important;
        max-height: calc(100vh - 168px) !important;
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .contact-footer-panel h2 {
        font-size: 34px !important;
    }

    .contact-footer-grid,
    .newsletter-card {
        grid-template-columns: 1fr !important;
    }

    .contact-footer-grid a {
        min-height: 0 !important;
        grid-template-columns: 42px 1fr !important;
        align-items: center !important;
        padding: 14px !important;
    }

    .contact-footer-grid a > span {
        grid-row: span 3 !important;
        margin: 0 !important;
    }

    .newsletter-card {
        gap: 12px !important;
    }

    .newsletter-card button {
        width: 100%;
    }

    .admin-form-grid.two,
    .admin-form-grid.three {
        grid-template-columns: 1fr;
    }
}

/* Final AdminLTE safety layer: keep the admin functional, scrollable and compact. */
.admin-html,
.admin-html body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.admin-html .wrapper {
    min-height: 100vh !important;
    overflow: visible !important;
}

.admin-html .content-wrapper {
    min-height: calc(100vh - 57px) !important;
    overflow: visible !important;
}

.admin-html .content,
.admin-html .container-fluid {
    overflow: visible !important;
}

.admin-html .admin-shell,
.admin-html .admin-main,
.admin-html .admin-sidebar,
.admin-html .admin-topbar,
.admin-html .admin-live-link {
    all: unset;
}

.admin-html .admin-sidebar {
    display: block;
}

.admin-html .admin-card,
.admin-html .admin-hero-card {
    display: block !important;
    margin-bottom: 18px !important;
    padding: 18px !important;
    border: 0 !important;
    border-top: 3px solid #8b1e2d !important;
    border-radius: .25rem !important;
    background: #fff !important;
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2) !important;
}

.admin-html .admin-card h1,
.admin-html .admin-card h2,
.admin-html .admin-hero-card h2 {
    margin: 0 0 12px !important;
    color: #1f2d3d !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.admin-html .admin-card p,
.admin-html .admin-hero-card p {
    color: #5f6b7a !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.admin-html .admin-form {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.admin-html .admin-form label {
    grid-column: span 4;
    display: block !important;
    margin: 0 !important;
    color: #1f2d3d !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.admin-html .admin-form .wide,
.admin-html .admin-form > button,
.admin-html .admin-form > .admin-button,
.admin-html .admin-auto-lang-tabs {
    grid-column: 1 / -1 !important;
}

.admin-html .admin-form input:not([type="checkbox"]),
.admin-html .admin-form textarea,
.admin-html .admin-form select {
    display: block !important;
    width: 100% !important;
    min-height: 38px !important;
    margin-top: 6px !important;
    padding: .375rem .75rem !important;
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
    background: #fff !important;
    color: #495057 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
}

.admin-html .admin-form textarea {
    min-height: 86px !important;
}

.admin-html .admin-form input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-height: 0 !important;
    display: inline-block !important;
    margin: 0 8px 0 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
    accent-color: #8b1e2d;
}

.admin-html .admin-form label:has(input[type="checkbox"]) {
    display: flex !important;
    align-items: center !important;
    min-height: 38px !important;
    padding-top: 22px !important;
}

.admin-html .admin-form .admin-check-label {
    display: flex !important;
    align-items: center !important;
    min-height: 38px !important;
    padding-top: 22px !important;
}

.admin-html .admin-button,
.admin-html .admin-button-inline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: .375rem 1rem !important;
    border: 0 !important;
    border-radius: .25rem !important;
    background: #8b1e2d !important;
    color: #fff !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.admin-html .admin-button-light {
    background: #343a40 !important;
}

.admin-html .admin-image-picker {
    grid-column: span 4 !important;
}

.admin-html .admin-image-preview {
    overflow: hidden !important;
    display: block !important;
    width: 100% !important;
    height: 170px !important;
    margin-top: 6px !important;
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
    background: #f8f9fa !important;
}

.admin-html .admin-image-preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.admin-html .admin-image-preview em {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    color: #77818c !important;
    font-style: normal !important;
}

.admin-html .admin-lang-tabs {
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    width: max-content !important;
    gap: 4px !important;
    padding: 4px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: .25rem !important;
    background: #f8f9fa !important;
}

.admin-html .admin-lang-tabs button {
    grid-column: auto !important;
    min-height: 32px !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-radius: .2rem !important;
    background: transparent !important;
    color: #495057 !important;
    font-weight: 700 !important;
}

.admin-html .admin-lang-tabs button.active {
    background: #8b1e2d !important;
    color: #fff !important;
}

.admin-html .admin-lang-panel {
    grid-column: 1 / -1 !important;
}

.admin-html .admin-media-manager {
    grid-column: 1 / -1 !important;
}

.admin-html .admin-media-actions {
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) auto !important;
    gap: 10px !important;
    align-items: end !important;
    margin-top: 10px !important;
}

.admin-html .admin-media-actions label,
.admin-html .admin-media-actions button,
.admin-html .admin-lang-panel label {
    grid-column: auto !important;
}

.admin-html .admin-media-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 10px !important;
    min-height: 110px !important;
    padding: 12px !important;
    border: 1px dashed #b8c2cc !important;
    border-radius: .25rem !important;
    background: #f8f9fa !important;
}

.admin-html .admin-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #dee2e6 !important;
    background: #fff !important;
}

.admin-html .admin-table th,
.admin-html .admin-table td {
    padding: .55rem .75rem !important;
    border: 1px solid #dee2e6 !important;
    font-size: 13px !important;
}

.admin-html .admin-list-head,
.admin-html .admin-form-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 14px !important;
}

.admin-html .admin-list-head h1,
.admin-html .admin-list-head h2,
.admin-html .admin-form-head h1,
.admin-html .admin-form-head h2 {
    margin: 0 !important;
}

.admin-html .admin-list-card {
    border-top-color: #1f6feb !important;
}

.admin-html .admin-form-card {
    border-top-color: #8b1e2d !important;
}

.admin-html .admin-new-record {
    white-space: nowrap !important;
}

.admin-html .admin-list-card .admin-table {
    margin-bottom: 0 !important;
}

.admin-html .admin-list-card .admin-table a {
    color: #8b1e2d !important;
    font-weight: 700 !important;
}

.admin-html .admin-list-card .admin-table td:last-child {
    white-space: nowrap !important;
}

.admin-html .admin-sort-handle-head,
.admin-html .admin-sort-handle {
    width: 38px !important;
    text-align: center !important;
}

.admin-html .admin-sort-handle {
    color: #9aa4af !important;
    cursor: grab !important;
}

.admin-html .admin-sort-row {
    transition: background .15s ease, opacity .15s ease !important;
}

.admin-html .admin-sort-row:hover {
    background: #fbf7f5 !important;
}

.admin-html .admin-sort-row.is-sorting {
    opacity: .55 !important;
}

.admin-html .admin-sortable-table {
    user-select: none !important;
}

@media (max-width: 991px) {
    .admin-html .admin-form,
    .admin-html .admin-media-actions {
        grid-template-columns: 1fr !important;
    }

    .admin-html .admin-form label,
    .admin-html .admin-image-picker,
    .admin-html .admin-media-actions label,
    .admin-html .admin-media-actions button {
        grid-column: 1 / -1 !important;
    }
}

/* AdminLTE panel reset and polish */
.adminlte-body {
    background: #f4f6f9;
    font-family: Arial, Helvetica, sans-serif;
}

.adminlte-body .wrapper {
    min-height: 100vh;
}

.adminlte-navbar {
    border-bottom: 1px solid #dee2e6;
}

.adminlte-sidebar .brand-link {
    min-height: 57px;
    border-bottom-color: rgba(255, 255, 255, .12);
    font-size: 18px;
    letter-spacing: .02em;
}

.adminlte-sidebar .nav-sidebar .nav-link {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: .45rem .75rem;
    border-radius: .25rem;
}

.adminlte-sidebar .nav-sidebar .nav-link p {
    margin: 0;
}

.adminlte-sidebar .nav-header {
    margin-top: 8px;
    color: #8c99a6;
    font-size: 11px;
    letter-spacing: .08em;
}

.adminlte-content {
    background: #f4f6f9;
}

.adminlte-body .content-header h1 {
    margin: 0;
    color: #1f2d3d;
    font-size: 24px;
    font-weight: 700;
}

.adminlte-body .breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.adminlte-body .admin-card,
.adminlte-body .admin-hero-card {
    display: block;
    margin-bottom: 18px;
    padding: 18px;
    border: 0;
    border-top: 3px solid #8b1e2d;
    border-radius: .25rem;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
}

.adminlte-body .admin-card h1,
.adminlte-body .admin-card h2,
.adminlte-body .admin-hero-card h2 {
    margin: 0 0 12px;
    color: #1f2d3d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.adminlte-body .admin-card p,
.adminlte-body .admin-hero-card p {
    color: #5f6b7a;
    font-size: 14px;
}

.adminlte-body .admin-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.adminlte-body .admin-form label {
    grid-column: span 4;
    display: block;
    margin: 0;
    color: #1f2d3d;
    font-size: 13px;
    font-weight: 700;
}

.adminlte-body .admin-form .wide,
.adminlte-body .admin-form > button,
.adminlte-body .admin-form > .admin-button {
    grid-column: 1 / -1;
}

.adminlte-body .admin-form input,
.adminlte-body .admin-form textarea,
.adminlte-body .admin-form select {
    display: block;
    width: 100%;
    min-height: 38px;
    margin-top: 6px;
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    background: #fff;
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: none;
}

.adminlte-body .admin-form textarea {
    min-height: 86px;
}

.adminlte-body .admin-form input:focus,
.adminlte-body .admin-form textarea:focus,
.adminlte-body .admin-form select:focus {
    border-color: #8b1e2d;
    box-shadow: 0 0 0 .2rem rgba(139, 30, 45, .12);
}

.adminlte-body .admin-button,
.adminlte-body .admin-live-link,
.adminlte-body .admin-button-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .375rem 1rem;
    border: 0;
    border-radius: .25rem;
    background: #8b1e2d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}

.adminlte-body .admin-button-light {
    background: #343a40;
}

.adminlte-body .admin-image-picker {
    grid-column: span 4;
}

.adminlte-body .admin-image-preview {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 170px;
    margin-top: 6px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    background: #f8f9fa;
}

.adminlte-body .admin-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adminlte-body .admin-image-preview em {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #77818c;
    font-style: normal;
}

.adminlte-body .admin-media-manager {
    grid-column: 1 / -1;
}

.adminlte-body .admin-media-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    min-height: 110px;
    padding: 12px;
    border: 1px dashed #b8c2cc;
    border-radius: .25rem;
    background: #f8f9fa;
}

.adminlte-body .admin-media-card {
    display: block;
    padding: 6px;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    background: #fff;
    box-shadow: none;
}

.adminlte-body .admin-media-card img,
.adminlte-body .admin-media-video {
    width: 100%;
    height: 82px;
    border-radius: .2rem;
    object-fit: cover;
}

.adminlte-body .admin-media-card span {
    display: block;
    margin-top: 6px;
    overflow: hidden;
    color: #495057;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adminlte-body .admin-media-actions {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) auto;
    gap: 10px;
    align-items: end;
    margin-top: 10px;
}

.adminlte-body .admin-media-actions label,
.adminlte-body .admin-media-actions button,
.adminlte-body .admin-lang-tabs button {
    grid-column: auto;
}

.adminlte-body .admin-lang-tabs {
    grid-column: 1 / -1;
    display: inline-flex;
    width: max-content;
    gap: 4px;
    padding: 4px;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    background: #f8f9fa;
}

.adminlte-body .admin-lang-tabs button {
    min-height: 32px;
    padding: 0 14px;
    border: 0;
    border-radius: .2rem;
    background: transparent;
    color: #495057;
}

.adminlte-body .admin-lang-tabs button.active {
    background: #8b1e2d;
    color: #fff;
}

.adminlte-body .admin-lang-panel {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    background: #fbfbfc;
}

.adminlte-body .admin-lang-panel.active {
    display: grid;
}

.adminlte-body .admin-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
    border-radius: 0;
    background: #fff;
}

.adminlte-body .admin-table th,
.adminlte-body .admin-table td {
    padding: .55rem .75rem;
    border: 1px solid #dee2e6;
    font-size: 13px;
}

.adminlte-body .admin-table th {
    background: #f8f9fa;
    color: #495057;
}

@media (max-width: 991px) {
    .adminlte-body .admin-form,
    .adminlte-body .admin-lang-panel,
    .adminlte-body .admin-media-actions {
        grid-template-columns: 1fr;
    }

    .adminlte-body .admin-form label,
    .adminlte-body .admin-image-picker,
    .adminlte-body .admin-lang-panel label {
        grid-column: 1 / -1;
    }
}

/* Compact admin refinement */
.admin-shell {
    grid-template-columns: 260px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 18px;
}

.admin-main {
    padding: 20px;
}

.admin-topbar {
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 12px;
}

.admin-topbar h1 {
    font-size: 24px;
}

.admin-card,
.admin-hero-card {
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 12px;
}

.admin-card h1,
.admin-card h2,
.admin-hero-card h2 {
    font-size: 22px;
}

.admin-card p,
.admin-hero-card p {
    font-size: 14px;
}

.admin-form {
    gap: 12px;
}

.admin-form label {
    gap: 6px;
    font-size: 13px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 9px;
    font-size: 14px;
}

.admin-button,
.admin-live-link,
.admin-button-inline {
    min-height: 40px;
    border-radius: 9px;
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    font-size: 13px;
}

.admin-image-picker {
    align-content: start;
}

.admin-image-preview {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(23, 32, 44, .08);
    border-radius: 10px;
    background: #f2f3f5;
}

.admin-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-image-preview em {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #7b8491;
    font-style: normal;
    font-weight: 700;
}

.admin-media-list {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    gap: 9px;
    min-height: 92px;
    padding: 9px;
}

.admin-media-card {
    grid-template-rows: 76px auto;
    gap: 6px;
    padding: 6px;
    border-radius: 10px;
}

.admin-media-card img,
.admin-media-video {
    height: 76px;
    border-radius: 8px;
}

.admin-media-actions {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr) auto;
}

.admin-form .admin-media-actions button,
.admin-form .admin-lang-tabs button {
    grid-column: auto;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 14px;
    }

    .admin-media-actions {
        grid-template-columns: 1fr;
    }
}
