/* ==========================================================================
   Public website — The Mist language applied to the guest-facing site.
   Depends on mist.css for tokens and fonts.
   ========================================================================== */

.site { background: #fff; color: var(--ink-2); }
.site-wrap { width: min(1240px, 100% - 40px); margin-inline: auto; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; background: transparent; transition: background .28s ease, box-shadow .28s ease; }
.site-header.solid { background: var(--ink); box-shadow: 0 8px 28px rgba(0, 0, 0, .16); }
.site-header-in { display: flex; align-items: center; gap: 26px; padding: 16px 0; }

.site-brand { display: flex; align-items: center; gap: 11px; color: #fff; flex-shrink: 0; }
.site-mark { display: grid; place-items: center; height: 40px; width: 40px; border-radius: 12px; background: var(--gold); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.site-brand .nm { display: block; font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.1; }
.site-brand .sb { display: block; color: #a9a29a; font-size: 10px; letter-spacing: 1.7px; text-transform: uppercase; margin-top: 3px; }

.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.site-nav a { color: #efece7; font-size: 14.5px; font-weight: 600; }
.site-nav a:hover { color: var(--gold); }

.site-header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-phone { color: #efece7; font-size: 14px; font-weight: 700; }
.site-phone:hover { color: var(--gold); }
.site-book { border-radius: 999px; padding: 11px 24px; }

.site-burger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px; }
.site-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 640px; margin-top: -76px; padding: 150px 0 60px; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(150deg, #2b2b2b, #6d6660 45%, #b9b1a6); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .34) 45%, rgba(0, 0, 0, .6)); }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-in { position: relative; z-index: 2; width: min(1000px, 100% - 40px); }
.eyebrow { display: inline-block; padding: 8px 20px; border-radius: 999px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .26); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(34px, 6vw, 66px); font-weight: 800; line-height: 1.06; margin: 22px 0 0; text-shadow: 0 2px 26px rgba(0, 0, 0, .3); }
.hero h1 span { display: block; }
.hero-note { margin: 16px 0 0; color: #e5e0d9; font-size: 15px; }

/* Booking bar */
.searchbar { margin: 34px auto 0; background: #fff; border-radius: 999px; padding: 9px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; gap: 8px; box-shadow: 0 22px 50px rgba(0, 0, 0, .22); text-align: left; }
.searchbar .f { display: grid; gap: 1px; padding: 6px 16px; border-radius: 999px; min-width: 0; }
.searchbar .f + .f { border-left: 1px solid var(--line); border-radius: 0; }
.searchbar label { color: var(--muted); font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.searchbar input, .searchbar select { border: 0; background: none; padding: 0; font-size: 14px; font-weight: 600; color: var(--ink-2); border-radius: 0; height: 24px; }
.searchbar input:focus, .searchbar select:focus { outline: none; }
.searchbar select { background-position: right 2px center; padding-right: 20px; }
.searchbar .btn { border-radius: 999px; padding: 14px 30px; }

/* ── Section scaffolding ───────────────────────────────────────────────── */
.sec { padding: 96px 0; }
.sec.tight { padding: 72px 0; }
.sec.alt { background: var(--bg); }
.sec.dark { background: var(--ink); color: #eceae6; }
.sec-eyebrow { color: var(--gold); font-size: 11.5px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; }
.sec-title { font-size: clamp(27px, 3.6vw, 44px); font-weight: 700; line-height: 1.16; margin: 14px 0 0; max-width: 760px; }
.sec.dark .sec-title { color: #fff; }
.sec-lede { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin: 16px 0 0; max-width: 620px; }
.sec.dark .sec-lede { color: #b3aca3; }
.sec-head { margin-bottom: 44px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-title, .sec-head.center .sec-lede { margin-inline: auto; }
.sec-head.split { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 26px; }

/* ── Rooms ─────────────────────────────────────────────────────────────── */
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.room-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, .09); }
.room-media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(140deg, #d9d2c8, #b3aa9d); }
.room-media img { width: 100%; height: 100%; object-fit: cover; }
.room-rate { position: absolute; left: 14px; bottom: 14px; background: rgba(13, 13, 13, .84); color: #fff; border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 700; backdrop-filter: blur(3px); }
.room-rate small { color: #c9c2b8; font-weight: 600; font-size: 11px; }
.room-tag { position: absolute; right: 14px; top: 14px; background: var(--gold); color: #fff; border-radius: 999px; padding: 5px 13px; font-size: 11.5px; font-weight: 800; letter-spacing: .4px; }
.room-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.room-body h3 { font-size: 19px; font-weight: 700; }
.room-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 12.5px; }
.room-meta span { background: var(--bg); border-radius: 999px; padding: 4px 11px; }
.room-body p { color: var(--muted); font-size: 14px; margin: 0; }
.room-body .btn { margin-top: auto; align-self: flex-start; }

/* ── Services ──────────────────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; }
.svc .k { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.svc h3 { font-size: 22px; font-weight: 700; margin: 12px 0 10px; }
.svc p { color: var(--muted); font-size: 14.5px; line-height: 1.72; margin: 0; }

/* ── Feature band ──────────────────────────────────────────────────────── */
.band { position: relative; min-height: 400px; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; }
.band-bg { position: absolute; inset: 0; background: linear-gradient(140deg, #1d1d1d, #4c453f 60%, #7e756a); }
.band-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .42); }
.band-in { position: relative; z-index: 2; padding: 80px 20px; }
.band h2 { font-size: clamp(28px, 4.4vw, 50px); font-weight: 700; line-height: 1.14; color: #fff; }
.band .play { display: grid; place-items: center; height: 74px; width: 74px; border-radius: 50%; background: var(--gold); color: #fff; margin: 0 auto 26px; font-size: 22px; }

/* ── Amenities ─────────────────────────────────────────────────────────── */
.amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.amen { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; }
.amen .ic { display: grid; place-items: center; height: 48px; width: 48px; border-radius: 14px; background: var(--gold-soft); color: var(--gold-dark); margin-bottom: 16px; }
.amen h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; }
.amen p { color: var(--muted); font-size: 13.8px; line-height: 1.68; margin: 0; }

/* ── Experience counters ───────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; margin-top: 44px; }
.stat .v { font-family: var(--font-head); font-size: clamp(34px, 5vw, 54px); font-weight: 800; color: var(--gold); line-height: 1; }
.stat .l { color: #b3aca3; font-size: 13.5px; margin-top: 9px; }

/* ── Testimonials ──────────────────────────────────────────────────────── */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.quote p { font-size: 15px; line-height: 1.78; color: var(--ink-3); margin: 0; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { display: grid; place-items: center; height: 42px; width: 42px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.quote .who b { display: block; font-size: 14.5px; }
.quote .who span { color: var(--muted); font-size: 12.5px; }

/* ── News ──────────────────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.news { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.news .media { aspect-ratio: 16 / 10; background: linear-gradient(140deg, #ddd6cb, #b7aea1); }
.news .media img { width: 100%; height: 100%; object-fit: cover; }
.news .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news .meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; }
.news .meta b { color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.news h3 { font-size: 17.5px; font-weight: 700; line-height: 1.35; }
.news p { color: var(--muted); font-size: 14px; margin: 0; flex: 1; }
.news a.more { color: var(--gold-dark); font-weight: 700; font-size: 13.5px; }

/* ── Plan your stay ────────────────────────────────────────────────────── */
.plan { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr); gap: 50px; align-items: center; }
.plan-form { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px; display: grid; gap: 15px; }
.plan-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plan-call { margin-top: 26px; }
.plan-call span { color: var(--muted); font-size: 13px; }
.plan-call a { display: block; font-family: var(--font-head); font-size: 25px; font-weight: 700; color: var(--gold-dark); margin-top: 4px; }

/* ── Availability results ──────────────────────────────────────────────── */
.avail-head { background: var(--ink); color: #fff; padding: 130px 0 56px; }
.avail-head h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
.avail-head p { color: #b3aca3; margin: 10px 0 0; }
.offer { display: grid; grid-template-columns: 190px minmax(0, 1fr) auto; gap: 26px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; }
.offer .media { aspect-ratio: 4 / 3; border-radius: 14px; background: linear-gradient(140deg, #d9d2c8, #b3aa9d); }
.offer h3 { font-size: 20px; font-weight: 700; }
.offer .price { text-align: right; }
.offer .price .v { font-family: var(--font-head); font-size: 27px; font-weight: 800; }
.offer .price small { color: var(--muted); display: block; font-size: 12.5px; }

/* ── Inner page banner ─────────────────────────────────────────────────── */
/* The gradient lives on the banner itself, not only on .page-banner-bg — a page
   that renders the banner without that inner element still needs something dark
   behind white text. */
.page-banner { position: relative; margin-top: -76px; padding: 168px 0 74px; text-align: center; color: #fff; overflow: hidden; background: linear-gradient(140deg, #2f2b28, #6e6660 55%, #8d857a); }
.page-banner-bg { position: absolute; inset: 0; background: linear-gradient(140deg, #2f2b28, #6e6660 55%, #8d857a); }
.page-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .48); }
.page-banner-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner-in { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(32px, 5.4vw, 58px); font-weight: 800; }
.page-banner p { color: #ddd7cf; margin: 12px auto 0; max-width: 620px; }
.crumbs { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 18px; font-size: 14px; }
.crumbs a { color: #fff; font-weight: 600; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }
.crumbs b { color: var(--gold); font-weight: 700; }

/* ── Nav states ────────────────────────────────────────────────────────── */
.site-nav a.on { color: var(--gold); }
.site-nav .nav-login { display: none; }
.site-signin { color: #efece7; font-size: 14px; font-weight: 700; }
.site-signin:hover { color: var(--gold); }

/* ── Image-led room cards (rooms page) ─────────────────────────────────── */
.roomshow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.roomshow { position: relative; border-radius: 22px; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; }
.roomshow-media { position: absolute; inset: 0; background: linear-gradient(140deg, #d9d2c8, #9b9287); }
.roomshow-media img { width: 100%; height: 100%; object-fit: cover; }
.roomshow::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .05) 35%, rgba(0, 0, 0, .82)); }
.roomshow-over { position: relative; z-index: 2; padding: 26px; color: #fff; display: grid; gap: 9px; width: 100%; }
.roomshow-over .rate { color: var(--gold); font-size: 14px; font-weight: 700; letter-spacing: .4px; }
.roomshow-over .rate small { color: #d7d0c6; font-weight: 600; }
.roomshow-over h3 { font-size: 25px; font-weight: 700; }
.roomshow-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.roomshow-meta span { background: rgba(255, 255, 255, .16); border-radius: 999px; padding: 4px 11px; font-size: 12.5px; }
.roomshow-over .btn { justify-self: start; margin-top: 6px; }

/* ── Story / intro media with rotating seal ────────────────────────────── */
.story-media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(140deg, #ded7cd, #b3aa9d); }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-seal { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; text-align: center; height: 104px; width: 104px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 12px; line-height: 1.35; border: 1px solid #e6dcc9; }

/* ── Opening hours ─────────────────────────────────────────────────────── */
.hours { display: grid; gap: 10px; margin-top: 26px; max-width: 340px; }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 9px; border-bottom: 1px dashed var(--line-2); font-size: 14.5px; }
.hours b { font-weight: 700; }

/* ── Team ──────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.team { text-align: center; }
.team-media { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: linear-gradient(140deg, #ded7cd, #b3aa9d); display: grid; place-items: center; margin-bottom: 15px; }
.team-media img { width: 100%; height: 100%; object-fit: cover; }
.team-initial { font-family: var(--font-head); font-size: 46px; font-weight: 800; color: #fff; }
.team h3 { font-size: 17px; font-weight: 700; }
.team p { color: var(--muted); font-size: 13.5px; margin: 5px 0 0; }

/* ── Restaurant menu ───────────────────────────────────────────────────── */
.menu-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.menu-tab { padding: 11px 24px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; color: var(--ink-3); font-size: 14px; font-weight: 600; cursor: pointer; }
.menu-tab:hover { border-color: var(--gold); }
.menu-tab.on { background: var(--gold); border-color: var(--gold); color: #fff; }
.menu-panel { display: none; }
.menu-panel.on { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 8px 44px; }
.menu-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: baseline; gap: 12px; padding: 15px 0; border-bottom: 1px dashed var(--line-2); }
.menu-row h3 { font-size: 16.5px; font-weight: 700; }
.menu-row p { color: var(--muted); font-size: 13.5px; margin: 4px 0 0; }
.menu-row .dots { border-bottom: 1px dotted #cfc8bb; min-width: 22px; align-self: center; }
.menu-row b { font-family: var(--font-head); font-size: 16.5px; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 19px 22px; font-family: var(--font-head); font-weight: 600; font-size: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; height: 13px; width: 13px; flex-shrink: 0; }
.faq summary i::before, .faq summary i::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .2s ease; }
.faq summary i::before { inset: 5px 0; height: 2px; }
.faq summary i::after { inset: 0 5px; width: 2px; }
.faq[open] summary i::after { transform: scaleY(0); }
.faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* ── Gallery ───────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.shot { margin: 0; border-radius: 16px; overflow: hidden; background: var(--bg); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.shot:hover img { transform: scale(1.04); }
.shot figcaption { padding: 11px 14px; color: var(--muted); font-size: 13px; }

/* ── Room detail + gallery ─────────────────────────────────────────────── */
.room-detail { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(310px, .8fr); gap: 42px; align-items: start; }
.gal-main { border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(140deg, #ded7cd, #b0a698); }
.gal-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-empty { display: grid; place-items: center; height: 100%; color: #fff; font-size: 15px; }
.gal-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: 10px; margin-top: 12px; }
.gal-thumb { padding: 0; border: 2px solid transparent; border-radius: 12px; overflow: hidden; background: none; cursor: pointer; aspect-ratio: 4 / 3; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-thumb.on { border-color: var(--gold); }
.gal-thumb:hover { border-color: var(--gold-dark); }

.amen-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.amen-tags span { background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13px; }

.book-rail { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.book-rail .rate { display: flex; align-items: baseline; gap: 8px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.book-rail .rate .v { font-family: var(--font-head); font-size: 30px; font-weight: 800; }
.book-rail .rate .p { color: var(--muted); font-size: 13.5px; }
.book-rail .facts { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 10px; }
.book-rail .facts li { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; }
.book-rail .facts span { color: var(--muted); }
.rail-form { display: grid; gap: 13px; }
.rail-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.rail-note { color: var(--muted); font-size: 12.5px; text-align: center; margin: 0; }

/* ── Booking form ──────────────────────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr); gap: 34px; align-items: start; }
.pay-opts { display: grid; gap: 12px; }
.pay-opt { display: flex; gap: 13px; align-items: flex-start; padding: 17px 19px; border: 1px solid var(--line-2); border-radius: 15px; cursor: pointer; background: #fff; }
.pay-opt:hover { border-color: var(--gold); }
.pay-opt input { margin-top: 3px; accent-color: var(--gold); }
.pay-opt.sel { border-color: var(--gold); background: var(--gold-soft); }
.pay-opt b { display: block; font-size: 15px; }
.pay-opt span { color: var(--muted); font-size: 13px; }
.pay-opt .amt { margin-left: auto; font-family: var(--font-head); font-weight: 800; font-size: 17px; white-space: nowrap; }
.summary { position: sticky; top: 100px; }
.summary .line { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: 14px; }
.summary .line.total { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 13px; font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.bank-box { background: var(--bg); border: 1px dashed var(--line-2); border-radius: 14px; padding: 17px; }
.bank-box .r { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; }
.bank-box .r b { font-family: var(--font-head); }

/* ── Event photographs with a decorator credit ─────────────────────────── */
.event-shot > [data-lightbox] { display: block; cursor: zoom-in; }
.event-shot figcaption { display: grid; gap: 3px; padding: 13px 15px 15px; }
.event-shot figcaption b { font-size: 14.5px; color: var(--ink-2); }
.event-shot .when { color: var(--muted); font-size: 12px; }
.event-shot .credit { margin-top: 5px; font-size: 12.5px; color: var(--muted); }
.event-shot .credit a, .event-shot .credit b { color: var(--gold-dark); font-weight: 700; }
.event-shot .credit a:hover { text-decoration: underline; }

/* ── Lightbox ──────────────────────────────────────────────────────────── */
.gallery-grid .shot[data-lightbox] { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(8, 8, 8, .93); display: grid; place-items: center; padding: 30px; }
/* A class-level display beats the [hidden] attribute's user-agent rule, so the
   overlay has to be hidden explicitly or it covers the page on load. */
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 18px; right: 22px; height: 44px; width: 44px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255, 255, 255, .26); }

/* ── Contact ───────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px; }
.contact-card .ic { display: grid; place-items: center; height: 46px; width: 46px; border-radius: 14px; background: var(--gold-soft); color: var(--gold-dark); margin-bottom: 15px; }
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 9px; }
.contact-card a, .contact-card p { display: block; color: var(--muted); font-size: 14px; margin: 0 0 5px; }
.contact-card a:hover { color: var(--gold-dark); }
/* An uploaded logo replaces the initial-in-a-tile mark entirely. */
.site-logo { max-height: 46px; max-width: 210px; width: auto; object-fit: contain; display: block; }
@media (max-width: 620px) { .site-logo { max-height: 34px; max-width: 150px; } }

.map-frame { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); height: 420px; background: var(--bg); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-empty { display: grid; place-items: center; text-align: center; color: var(--muted); }
.map-empty strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--ink-2); margin-bottom: 8px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #9d968d; padding: 70px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.foot-grid h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.foot-grid a, .foot-grid p { display: block; color: #9d968d; font-size: 14px; margin: 0 0 10px; }
.foot-grid a:hover { color: var(--gold); }
.foot-lede { max-width: 330px; margin-top: 18px !important; line-height: 1.75; }
.foot-social { display: flex; gap: 9px; margin-top: 18px; }
.foot-social a { display: grid; place-items: center; height: 36px; width: 36px; border-radius: 50%; border: 1px solid #2b2b2b; color: #cfc8bf; font-size: 12px; font-weight: 700; margin: 0; }
.foot-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.foot-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid #1e1e1e; margin-top: 46px; padding-top: 24px; font-size: 13px; }

/* ── Sign in & register ────────────────────────────────────────────────── */
.auth-sec { background: var(--bg); }
.auth-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: 40px; align-items: center; max-width: 980px; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 38px 36px; }
.auth-title { font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; color: var(--ink); margin: 10px 0 0; line-height: 1.15; }
.auth-lede { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 12px 0 26px; }
.auth-or { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--muted); font-size: 12.5px; }
.auth-or::before, .auth-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.auth-alt { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; text-align: center; }
.auth-alt a { color: var(--gold-dark); font-weight: 700; }
.auth-alt a:hover { text-decoration: underline; }
.auth-aside h2 { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--ink); margin: 0 0 20px; line-height: 1.3; }
.ticks { display: grid; gap: 13px; list-style: none; margin: 0; padding: 0; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-3, #3a3a3a); font-size: 14.5px; line-height: 1.6; }
.ticks svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 860px) {
    .auth-wrap { grid-template-columns: 1fr; gap: 32px; }
    .auth-aside { order: -1; }
    .auth-card { padding: 30px 24px; }
}

/* ── Guest account ─────────────────────────────────────────────────────── */
.acct-top { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.acct-stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; min-width: 150px; }
.acct-stat span { display: block; color: var(--muted); font-size: 11.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.acct-stat strong { display: block; font-family: var(--font-head); font-size: 25px; font-weight: 800; color: var(--ink); margin-top: 6px; }
.acct-stat.warn strong { color: var(--gold-dark); }
.acct-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }

.acct-list { display: grid; gap: 12px; margin-top: 20px; }
.acct-booking { display: flex; gap: 20px; justify-content: space-between; align-items: center; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; }
.acct-booking.muted { background: transparent; }
.acct-booking h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--ink); margin: 8px 0 0; }
.acct-booking p { color: var(--muted); font-size: 14px; margin: 6px 0 0; }
.acct-booking-side { display: flex; gap: 14px; align-items: center; }
.acct-booking-side strong { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--ink); }
.acct-empty { background: #fff; border: 1px dashed var(--line-2); border-radius: 18px; padding: 40px 24px; text-align: center; margin-top: 20px; }
.acct-empty p { color: var(--muted); margin: 0 0 16px; }

/* ── Services: jump bar, detail blocks, practical info ─────────────────── */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}
.svc-nav { position: sticky; top: 76px; z-index: 40; background: #fff; border-bottom: 1px solid var(--line); }
.svc-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; overflow-x: auto; scrollbar-width: none; }
.svc-nav ul::-webkit-scrollbar { display: none; }
.svc-nav a { display: flex; align-items: center; gap: 8px; white-space: nowrap; padding: 15px 16px; color: var(--muted); font-size: 13.5px; font-weight: 600; border-bottom: 2px solid transparent; }
.svc-nav a:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }
.svc-nav svg { color: var(--gold); flex-shrink: 0; }

/* Anchored blocks sit clear of the sticky header and jump bar when linked to. */
.sec[id], .svc-block { scroll-margin-top: 150px; }
.svc-block { display: grid; grid-template-columns: 1fr 84px; gap: 26px; align-items: start; padding: 34px 0; border-top: 1px solid var(--line); }
.svc-block:first-of-type { border-top: 0; padding-top: 8px; }
.svc-block h3 { font-family: var(--font-head); font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: var(--ink); margin: 10px 0 0; line-height: 1.2; }
.svc-lede { color: var(--muted); font-size: 15.5px; line-height: 1.8; margin: 14px 0 0; max-width: 660px; }
.svc-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px 26px; list-style: none; margin: 20px 0 0; padding: 0; max-width: 760px; }
.svc-points li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-3, #3a3a3a); font-size: 14.5px; line-height: 1.6; }
.svc-points svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.svc-foot { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 24px; }
.svc-meta { display: inline-flex; gap: 7px; align-items: center; color: var(--muted); font-size: 13.5px; }
.svc-meta svg { color: var(--gold); }
.svc-ic { display: grid; place-items: center; height: 64px; width: 64px; border-radius: 18px; background: var(--gold-soft); color: var(--gold-dark); margin-left: auto; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.info-cell { background: #fff; padding: 22px 24px; }
.info-label { display: block; color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.info-cell strong { display: block; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--ink); margin-top: 9px; line-height: 1.35; }
.info-note { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; line-height: 1.6; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .site-nav { position: fixed; inset: 76px 0 auto; background: var(--ink); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 22px; display: none; border-top: 1px solid #1e1e1e; }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 13px 4px; border-bottom: 1px solid #1a1a1a; }
    .site-nav .nav-login { display: block; color: var(--gold); }
    .site-burger { display: flex; }
    .site-phone, .site-signin { display: none; }
    .searchbar { grid-template-columns: 1fr 1fr; border-radius: 24px; }
    .searchbar .f + .f { border-left: 0; border-radius: 999px; }
    .searchbar .btn { grid-column: 1 / -1; }
    .plan { grid-template-columns: 1fr; gap: 34px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .offer { grid-template-columns: 130px minmax(0, 1fr); }
    .offer .price { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
    .room-detail, .book-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .book-rail, .summary { position: static; }
}
@media (max-width: 620px) {
    /* Keep the header on one line: the tagline goes, the brand shrinks and the
       booking button collapses to the burger's neighbour. */
    .site-wrap { width: calc(100% - 28px); }
    .site-header-in { gap: 12px; padding: 12px 0; }
    .site-brand .sb { display: none; }
    .site-brand .nm { font-size: 15px; }
    .site-mark { height: 34px; width: 34px; border-radius: 10px; font-size: 17px; }
    .site-header-cta { gap: 6px; margin-left: auto; }
    .site-book { padding: 9px 15px; font-size: 13px; }
    .site-nav { top: 62px; }
    .svc-nav { top: 62px; }
    .sec[id], .svc-block { scroll-margin-top: 122px; }
    .svc-block { grid-template-columns: 1fr; gap: 0; }
    .svc-block-side { order: -1; }
    .svc-ic { margin: 0 0 4px; height: 52px; width: 52px; border-radius: 15px; }

    .sec { padding: 64px 0; }
    .hero { min-height: 560px; padding: 132px 0 44px; }
    .searchbar { grid-template-columns: 1fr; padding: 12px; gap: 4px; }
    .searchbar .f { padding: 9px 14px; }
    .searchbar .f + .f { border-top: 1px solid var(--line); border-radius: 0; }
    .sec-head.split { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 30px; }
    .plan-form .row { grid-template-columns: 1fr; }
    .page-banner { padding: 132px 0 54px; }
    .menu-grid { grid-template-columns: 1fr; gap: 0; }
    .roomshow { min-height: 340px; }
    .story-seal { height: 82px; width: 82px; font-size: 9px; }
    .rail-form .row { grid-template-columns: 1fr; }
}
