:root {
    --wall: #f7f6f3;
    --ink: #111;
    --mute: #5a5854;
    --line: #d9d6cf;
    --red: #9b1c2c;
    --red-ink: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--wall);
    color: var(--ink);
    font-family: "Segoe UI", system-ui, sans-serif;
    overflow-wrap: anywhere;
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--red);
}

.skip {
    position: absolute;
    left: -999px;
}

.skip:focus {
    left: 8px;
    top: 8px;
    background: var(--red);
    color: #fff;
    padding: 8px;
    z-index: 40;
}

.hours {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.lang,
.open {
    font: inherit;
    background: #fff;
    border: 1px solid var(--ink);
    padding: 6px 10px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    height: 60px;
    border-bottom: 1px solid var(--ink);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-decoration: none;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
}

.rooms-nav {
    display: none;
    gap: 16px;
    margin-left: auto;
    font-size: 0.82rem;
}

.rooms-nav a {
    color: var(--ink);
    text-decoration: none;
}

.rooms-nav a:hover {
    color: var(--red);
}

.open {
    margin-left: auto;
}

.panel {
    background: #fff;
    border-bottom: 1px solid var(--ink);
    padding: 12px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel[hidden] {
    display: none;
}

.panel a {
    color: var(--ink);
    text-decoration: none;
}

.hall {
    position: relative;
}

.hall > img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.label {
    background: #fff;
    margin: -48px 16px 0;
    position: relative;
    padding: 20px;
    border: 1px solid var(--ink);
    max-width: 520px;
}

.acc {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--red);
}

h1 {
    margin: 8px 0 10px;
    font-family: "Segoe UI", system-ui, sans-serif;
    line-height: 1.05;
}

.cn.h1 .cn {
    display: block;
    font-size: clamp(2rem, 7vw, 3.2rem);
}

h1 .en {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mute);
    margin-top: 6px;
}

.wall {
    color: var(--mute);
    max-width: 36ch;
}

.acts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.btn-red,
.btn-line {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-red:active,
.btn-line:active {
    transform: scale(0.98);
}

.btn-red {
    background: var(--red);
    color: var(--red-ink);
}

.btn-line {
    border: 1px solid var(--ink);
    color: var(--ink);
}

.lg {
    padding: 14px 18px;
}

.intro,
.vitrines,
.notes,
.shop,
.desk {
    padding: 40px 20px 8px;
    max-width: 1080px;
    margin: 0 auto;
}

.room-no {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 6px;
}

h2 {
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 12px;
}

.intro p,
.shop > p {
    max-width: 62ch;
    color: var(--mute);
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

.grid img {
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--line);
}

.grid figure:first-child img {
    aspect-ratio: 3 / 4;
}

.grid figure:nth-child(2) img,
.span img {
    aspect-ratio: 16 / 10;
}

figcaption {
    padding-top: 10px;
}

figcaption span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--red);
}

figcaption strong {
    display: block;
    margin: 4px 0;
    font-family: "Segoe UI", system-ui, sans-serif;
}

figcaption em {
    font-style: normal;
    color: var(--mute);
    font-size: 0.95rem;
}

.cards {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    counter-reset: n;
}

.cards li {
    counter-increment: n;
    padding: 18px 0 18px 48px;
    border-top: 1px solid var(--line);
    position: relative;
}

.cards li::before {
    content: counter(n, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 18px;
    font-family: "Segoe UI", system-ui, sans-serif;
    color: var(--red);
}

.cards h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.cards p {
    margin: 0;
    color: var(--mute);
}

.shop-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.tiny {
    font-size: 0.85rem;
    color: var(--mute);
    max-width: 70ch;
}

.conserve {
    margin-top: 28px;
    border-top: 1px solid var(--ink);
    padding-top: 16px;
}

.two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.desk details {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

.desk summary {
    cursor: pointer;
    font-weight: 700;
}

.desk p {
    color: var(--mute);
}

.end {
    margin-top: 48px;
    padding: 28px 20px;
    border-top: 8px solid var(--red);
    background: #fff;
}

.copy {
    color: var(--mute);
    font-size: 0.82rem;
}

@media (min-width: 768px) {
    .rooms-nav {
        display: flex;
    }

    .open,
    .panel {
        display: none !important;
    }

    .label {
        margin: -72px 40px 0;
    }

    .two {
        grid-template-columns: 1fr 1fr;
    }

    .grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .span {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1100px) {
    .label {
        position: absolute;
        left: 40px;
        bottom: 40px;
        margin: 0;
        max-width: 460px;
    }

    .hall > img {
        max-height: 78vh;
    }
}

.site-title, .brand, .logo, .word, .mark-name, a.mark {
  white-space: normal !important;
  overflow-wrap: anywhere;
  line-height: 1.25;
}
.site-title {
  font-size: 0.78rem;
  font-weight: 700;
  max-width: min(58vw, 520px);
  display: inline-block;
}


.dl-pair { display:inline-flex; flex-wrap:wrap; gap:10px; align-items:center; vertical-align:middle; }
.btn-primary-gold, .btn-gift {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border:0; cursor:pointer;
  font: inherit; font-weight:700; font-size:0.92rem;
  text-decoration:none; white-space:nowrap; border-radius:8px;
  line-height:1.2;
}
.btn-primary-gold { background:#c9a227; color:#1a1408; }
.btn-primary-gold:hover { filter:brightness(1.08); text-decoration:none; color:#1a1408; }
.btn-gift { background:#7a1f2b; color:#fff; }
.btn-gift:hover { filter:brightness(1.08); }
.dl-btn-icon, .gift-btn-icon { font-size:1rem; }
.gift-modal[hidden] { display:none !important; }
.gift-modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; padding:16px; }
.gift-modal-mask { position:absolute; inset:0; background:rgba(0,0,0,.62); }
.mdl-card {
  position:relative; z-index:1; width:min(440px, 100%);
  background:#161616; color:#f3efe6; border-radius:16px; padding:22px 22px 18px;
  font-family: system-ui, "Segoe UI", sans-serif;
}
.mdl-close {
  position:absolute; top:10px; right:12px; width:36px; height:36px;
  border:0; background:transparent; color:#ccc; font-size:28px; cursor:pointer; line-height:1;
}
.mdl-head { text-align:center; padding-top:8px; }
.mdl-icon-wrap { width:52px; height:52px; margin:0 auto 10px; color:#c9a227; }
.mdl-icon-wrap svg { width:100%; height:100%; }
.mdl-title { margin:0; font-size:1.35rem; }
.mdl-subtitle { margin:4px 0 0; letter-spacing:.14em; font-size:.72rem; color:#c9a227; }
.mdl-desc { font-size:.95rem; line-height:1.6; color:#ddd; }
.gift-code-box {
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  background:#2a2110; border:1px solid #c9a227; border-radius:10px; padding:12px 14px; cursor:pointer;
}
.gift-code-label { display:block; font-size:.72rem; color:#c9a227; }
.gift-code-value { display:block; font-size:1.4rem; font-weight:800; letter-spacing:.08em; }
.gift-code-copy { font-size:.8rem; color:#c9a227; white-space:nowrap; }
.gift-code-hint { font-size:.8rem; color:#999; margin:8px 0 0; }
.mdl-actions { display:flex; flex-direction:column; gap:8px; margin-top:16px; }
.mdl-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px; border-radius:10px; text-decoration:none; font-weight:700; border:0; cursor:pointer; font:inherit;
}
.mdl-btn svg { width:18px; height:18px; }
.mdl-btn-primary { background:#c9a227; color:#1a1408; }
.mdl-btn-secondary { background:#2a2a2a; color:#eee; }
