@font-face {
    font-family: "Prata";
    src: url("/fonts/prata-cyrillic-400.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Prata";
    src: url("/fonts/prata-latin-400.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Noto Sans Mongolian Local";
    src: url("/fonts/noto-sans-mongolian-400.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    unicode-range: U+1800-18AF, U+11660-1167F;
}

/* ==========================================================================
   Khan Terelj Resort - public site
   Thirteenth-century Mongol Empire styling: forest green and old gold on
   felt-cream grounds, Garamond display type, өлзий / үүлэн / түмэн хээ
   ornaments.
   ========================================================================== */

:root {
    --forest: #1f2c22;
    --forest-deep: #151e17;
    --forest-soft: #2f4633;
    --gold: #b3884b;
    --gold-soft: #d4b27c;
    --gold-pale: #e9d6b0;
    --cream: #f5f0e6;
    --cream-deep: #ece4d4;
    --ink: #2a2118;
    --ink-soft: #5b4e40;
    --ink-mute: #8c7f70;
    --line: rgba(42, 33, 24, 0.16);
    --line-light: rgba(233, 214, 176, 0.28);
    --white: #ffffff;

    --display: "Prata", "Cormorant Garamond", Georgia, serif;
    --serif: "EB Garamond", "Cormorant Garamond", Georgia, serif;
    --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
    --script: "Classical Mongolian Dashtseden", "MongolianScript", "Noto Sans Mongolian Local", "Noto Sans Mongolian", "Mongolian Baiti", serif;
    --brand: "Cinzel", "Cormorant Garamond", Georgia, serif;

    --header-h: 136px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --shell: 1240px;
    --gutter: clamp(20px, 5vw, 64px);
    --radius: 6px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 60px);
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }
/* Component display rules must never un-hide something marked hidden. */
[hidden] { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: 0.005em;
    margin: 0;
    line-height: 1.12;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.icon { width: 1em; height: 1em; display: inline-block; flex: none; }

/* ----------------------------------------------------------------- utility */

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.shell--narrow { max-width: 880px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 16px;
}

.eyebrow .icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.eyebrow--light { color: var(--gold-pale); }

.display {
    font-size: clamp(30px, 3.6vw, 48px);
}

.display--lower { text-transform: none; }

.tagline {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(19px, 2vw, 25px);
    color: var(--ink-soft);
    margin: 12px 0 0;
    line-height: 1.4;
}

.lede {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink-soft);
    max-width: 60ch;
}

.section { padding: clamp(60px, 7vw, 110px) 0; }
.section--tight { padding: clamp(44px, 5vw, 76px) 0; }
.section--bone { background: var(--cream-deep); }

.section--ink {
    background: var(--forest);
    color: var(--cream);
}

.section--ink .tagline,
.section--ink .lede { color: rgba(245, 240, 230, 0.74); }
.section--ink .eyebrow { color: var(--gold-pale); }

.section-head {
    max-width: 720px;
    margin-bottom: clamp(32px, 4vw, 56px);
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.divider-knot {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
}

.divider-knot::before,
.divider-knot::after {
    content: "";
    height: 1px;
    flex: 1;
    background: currentColor;
    opacity: 0.55;
}

.divider-knot .icon { width: 22px; height: 22px; }

/* ----------------------------------------------------------------- buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 28px;
    font-family: var(--serif);
    font-size: 16px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--ink);
    background: transparent;
    outline: 1px solid rgba(179, 136, 75, 0.45);
    outline-offset: 3px;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), outline-offset 0.35s var(--ease);
    cursor: pointer;
}

.btn .icon { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover { outline-offset: 5px; }
.btn:hover .icon { transform: translateX(4px); }

.btn--solid {
    background: var(--forest-soft);
    color: var(--cream);
}

.btn--solid:hover { background: var(--forest); }

.btn--ghost {
    color: var(--cream);
    background: rgba(21, 30, 23, 0.35);
    backdrop-filter: blur(2px);
}

.btn--ghost:hover { background: rgba(21, 30, 23, 0.7); }

.btn--gold {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    color: var(--ink);
    outline-color: rgba(212, 178, 124, 0.45);
}

.btn--gold:hover { background: var(--gold-pale); }

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 17px;
    transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}

.link-more .icon { width: 18px; height: 18px; }
.link-more:hover { gap: 18px; color: var(--gold); }

/* ------------------------------------------------------------------ header */

/*
 * Nautilus-style bar: ☰ + social icons left, a large stacked logo in the
 * centre, account / language / booking right. Scrolling (or a page without a
 * hero) turns it solid and shrinks the logo to the emblem alone.
 */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    color: var(--cream);
    transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 -60px;
    background: linear-gradient(to bottom, rgba(14, 18, 14, 0.66), rgba(14, 18, 14, 0));
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
}

.site-header.is-solid {
    background: var(--forest-deep);
    box-shadow: 0 1px 0 var(--line-light);
}

.site-header.is-solid::before { opacity: 0; }

.header-inner {
    position: relative;
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 var(--gutter);
    transition: height 0.45s var(--ease);
}

.site-header.is-solid .header-inner { height: 74px; }

.header-left {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.menu-trigger {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: -8px;
    border-radius: 50%;
    transition: background 0.25s var(--ease);
}

.menu-trigger:hover { background: rgba(255, 255, 255, 0.08); }

.menu-trigger__lines { display: grid; gap: 6px; width: 26px; }

.menu-trigger__lines i {
    display: block;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.menu-trigger__lines i:nth-child(2) { width: 72%; }
.menu-trigger:hover .menu-trigger__lines i:nth-child(2) { width: 100%; }

.header-social { display: flex; align-items: center; gap: 20px; }
.header-social a { opacity: 0.85; transition: opacity 0.25s var(--ease), color 0.25s var(--ease); }
.header-social a:hover { opacity: 1; color: var(--gold-pale); }
.header-social svg { width: 17px; height: 17px; display: block; }
.header-social svg:not(.icon) { fill: currentColor; }

/* Logo: large and stacked at the top, emblem-only once the bar is solid. */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--cream);
}

.site-header .brand {
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.brand .emblem {
    width: 88px;
    height: auto;
    aspect-ratio: 200 / 132;
    color: var(--gold-soft);
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
    transition: width 0.45s var(--ease);
}

.site-header .brand .emblem { width: clamp(84px, 8vw, 118px); }
.site-header.is-solid .brand .emblem { width: 62px; }

/* Ridge lines are "carved" out of the gold in the header colour. */
.emblem__cut { stroke: var(--forest-deep); }

.brand__text {
    white-space: nowrap;
    display: grid;
    justify-items: center;
    padding-left: 16px;
    border-left: 1px solid rgba(212, 178, 124, 0.55);
    line-height: 1;
    color: var(--gold-soft);
    transition: opacity 0.35s var(--ease), max-height 0.45s var(--ease), margin 0.45s var(--ease);
}

.site-header .brand__text {
    padding-left: 0;
    border-left: 0;
    max-height: 60px;
    overflow: hidden;
}

.site-header.is-solid .brand__text { opacity: 0; max-height: 0; margin-top: -4px; }

.brand__name {
    font-family: var(--brand);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f3dfae 0%, #d4b27c 55%, #a9803f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-header .brand__name { font-size: clamp(26px, 2.6vw, 36px); }

.brand__sub {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    font-family: var(--brand);
    font-weight: 500;
    font-size: 9.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

.brand__sub::before,
.brand__sub::after {
    content: "";
    width: 12px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.brand img { max-height: 64px; width: auto; transition: max-height 0.45s var(--ease); }
.site-header .brand img { max-height: 110px; }
.site-header.is-solid .brand img { max-height: 54px; }

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.lang { position: relative; }

.lang__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang__toggle .icon { width: 17px; height: 17px; }
.lang__toggle .icon--chevron { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.lang.is-open .icon--chevron { transform: rotate(180deg); }

.lang__menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 180px;
    padding: 6px 0;
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 30;
}

.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: none; }

.lang__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 15px;
    transition: background 0.2s var(--ease);
}

.lang__menu a:hover { background: var(--cream-deep); }
.lang__menu a.is-current { color: var(--gold); }

.lang__code {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    margin-left: auto;
}


/* ----------------------------------------------------- off-canvas menu */

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: minmax(300px, 19%) 1fr;
    visibility: hidden;
    transition: visibility 0s linear 0.55s;
}

.nav-overlay.is-open { visibility: visible; transition: none; }

.nav-overlay__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 5vh, 60px);
    padding: 26px clamp(22px, 2.2vw, 40px) 30px;
    overflow-y: auto;
    background: var(--forest-deep);
    color: var(--cream);
    transform: translateX(-100%);
    transition: transform 0.55s var(--ease);
}

.nav-overlay.is-open .nav-overlay__panel { transform: none; }

.nav-overlay__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.nav-overlay__top .brand { justify-self: center; flex-direction: column; gap: 4px; }
.nav-overlay__top .brand .emblem { width: 74px; }
.nav-overlay__top .brand__text { padding-left: 0; border-left: 0; }
.nav-overlay__top .brand__name { font-size: 24px; }
.nav-overlay__top::after { content: ""; width: 44px; }

.nav-close {
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: -10px;
    border-radius: 50%;
}

.nav-close:hover { background: rgba(255, 255, 255, 0.08); }

.nav-close span {
    position: absolute;
    top: 50%;
    left: 11px;
    width: 22px;
    height: 1.5px;
    background: currentColor;
}

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

.nav-overlay__menu { flex: 1; display: flex; align-items: center; }

.nav-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }

.nav-list > li {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav-overlay.is-open .nav-list > li { opacity: 1; transform: none; }
.nav-overlay.is-open .nav-list > li:nth-child(2) { transition-delay: 0.05s; }
.nav-overlay.is-open .nav-list > li:nth-child(3) { transition-delay: 0.1s; }
.nav-overlay.is-open .nav-list > li:nth-child(4) { transition-delay: 0.15s; }
.nav-overlay.is-open .nav-list > li:nth-child(5) { transition-delay: 0.2s; }
.nav-overlay.is-open .nav-list > li:nth-child(n+6) { transition-delay: 0.25s; }

.nav-list > li > a {
    display: inline-block;
    padding: 6px 0;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(18px, 1.5vw, 23px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}

.nav-list > li > a:hover { color: var(--gold-pale); padding-left: 8px; }
.nav-list > li > a.is-active { color: var(--gold-soft); }

.nav-sub { list-style: none; margin: 0 0 8px 2px; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 18px; }
.nav-sub a { font-size: 14.5px; color: rgba(245, 240, 230, 0.62); transition: color 0.25s var(--ease); }
.nav-sub a:hover { color: var(--cream); }

.nav-overlay__meta {
    display: grid;
    justify-items: start;
    gap: 8px;
    font-size: 15px;
    color: rgba(245, 240, 230, 0.72);
}

.nav-overlay__meta .btn { margin-bottom: 8px; }

.nav-overlay__media {
    position: relative;
    overflow: hidden;
    background: var(--forest);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.55s var(--ease);
}

.nav-overlay.is-open .nav-overlay__media { opacity: 1; }

.nav-overlay__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 1.6s var(--ease);
}

.nav-overlay.is-open .nav-overlay__media img { transform: none; }

.nav-overlay__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 18, 14, 0.6), rgba(14, 18, 14, 0) 45%);
}

.nav-overlay__caption {
    position: absolute;
    z-index: 1;
    right: clamp(24px, 4vw, 60px);
    bottom: clamp(24px, 5vh, 56px);
    max-width: 30ch;
    margin: 0;
    text-align: right;
    font-family: var(--display);
    font-size: clamp(18px, 1.8vw, 26px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream);
}

/* -------------------------------------------------------------------- hero */

.hero {
    position: relative;
    min-height: clamp(560px, 100svh, 980px);
    overflow: hidden;
    color: var(--cream);
    background: var(--forest-deep);
}

.hero--page { min-height: clamp(420px, 64svh, 640px); }

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}

.hero__slide.is-active { opacity: 1; z-index: 1; }

.hero__media { position: absolute; inset: 0; }

.hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; }

.hero__slide.is-active .hero__media img { animation: drift 16s var(--ease) forwards; }

@keyframes drift {
    from { transform: scale(1.03); }
    to { transform: scale(1.1); }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 18, 14, 0.72) 0%, rgba(14, 18, 14, 0.36) 42%, rgba(14, 18, 14, 0) 70%),
        linear-gradient(to top, rgba(14, 18, 14, 0.55), rgba(14, 18, 14, 0) 35%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: var(--shell);
    margin: 0 auto;
    padding: calc(var(--header-h) + 40px) var(--gutter) 120px;
}

.hero__slide .hero__inner { min-height: 100%; }

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

.hero__eyebrow::after {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.hero__title {
    max-width: 17ch;
    font-size: clamp(40px, 5.4vw, 74px);
    font-weight: 600;
    line-height: 1.04;
    color: var(--gold-pale);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero--page .hero__title { max-width: 18ch; }

.hero__title sup { font-size: 0.55em; vertical-align: 0.8em; line-height: 0; }

.hero__subtitle {
    max-width: 44ch;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(245, 240, 230, 0.9);
}

.hero__actions { margin-top: 34px; }

.hero__aside {
    position: absolute;
    z-index: 3;
    top: calc(var(--header-h) + 30px);
    right: var(--gutter);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    max-width: 300px;
}

.hero__aside {
    /* Stops above the search bar so the line is never cut off. */
    max-width: none;
    bottom: clamp(150px, 24vh, 240px);
    align-items: center;
}

/* Vertical Mongol script with a holographic sheen drifting through it. */
.hero__script {
    writing-mode: vertical-lr;
    font-family: var(--script);
    max-height: 100%;
    /* Calligraphic strokes overhang their line box; give them room. */
    padding: 0 6px;
    white-space: pre-line;
    font-size: clamp(30px, 3.1vw, 54px);
    line-height: 1.45;
    /* Mongol script is cursive: any letter spacing breaks the joins. */
    letter-spacing: normal;
    font-feature-settings: "ccmp";
    background-image: linear-gradient(150deg,
        #fff6de 0%,
        #ffe3a6 10%,
        #b9a6ff 22%,
        #9fe6ff 34%,
        #fff1c4 46%,
        #a9f2cf 58%,
        #ffc0e0 70%,
        #ffe9a8 82%,
        #fff6de 100%);
    background-size: 100% 320%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(21, 30, 23, 0.9)) drop-shadow(0 0 26px rgba(255, 244, 214, 0.45));
    animation: hero-holo 9s linear infinite;
}

@keyframes hero-holo {
    0% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__script { animation: none; }
}


.hero__corner {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 190px;
    height: 90px;
    color: var(--gold);
    opacity: 0.8;
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
}

.hero__corner svg { width: 100%; height: 100%; }

.hero__scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.9;
}

.hero__scroll .icon {
    width: 34px;
    height: 34px;
    color: var(--gold-soft);
    animation: bob 2.6s ease-in-out infinite;
}

@keyframes bob {
    50% { transform: translateY(5px); }
}

.hero__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 178, 124, 0.45);
    border-radius: 50%;
    color: var(--cream);
    transform: translateY(-50%);
    transition: background 0.3s var(--ease);
}

.hero__arrow:hover { background: rgba(21, 30, 23, 0.6); }
.hero__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

.hero__dots {
    position: absolute;
    z-index: 3;
    right: var(--gutter);
    bottom: 34px;
    display: flex;
    gap: 8px;
}

.hero__dots button {
    width: 26px;
    height: 2px;
    background: rgba(245, 240, 230, 0.35);
}

.hero__dots button.is-active { background: var(--gold-soft); }

/* ---------------------------------------------------------- feature strip */

.features {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.features__cloud {
    position: absolute;
    top: 50%;
    width: 150px;
    height: 110px;
    color: var(--gold);
    opacity: 0.28;
    transform: translateY(-50%);
}

.features__cloud--left { left: -60px; }
.features__cloud--right { right: -60px; transform: translateY(-50%) scaleX(-1); }

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-block: 42px;
}

.feature {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 8px;
    padding: 6px 22px;
    text-align: center;
    border-left: 1px solid var(--line);
}

.feature:first-child { border-left: 0; }

.feature .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    color: var(--forest-soft);
    transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

a.feature:hover .icon { transform: translateY(-4px); color: var(--gold); }

.feature__title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
}

.feature__text {
    max-width: 22ch;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* ------------------------------------------------------------- stay block */

.stay {
    display: grid;
    grid-template-columns: minmax(250px, 0.9fr) 2.6fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.stay__intro .display { margin-bottom: 18px; font-size: clamp(28px, 2.6vw, 38px); }
.stay__intro .lede { margin-bottom: 28px; }

.room-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.room-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 0.95;
    border-radius: var(--radius);
    background: var(--forest);
    color: var(--cream);
    box-shadow: 0 18px 40px -24px rgba(21, 30, 23, 0.7);
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.room-card:hover img { transform: scale(1.07); }

.room-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 18, 14, 0.9) 0%, rgba(14, 18, 14, 0.25) 45%, rgba(14, 18, 14, 0) 70%);
}

.room-card__body {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 14px;
}

.room-card__title {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 6px;
}

.room-card__meta {
    display: grid;
    gap: 2px;
    font-size: 13.5px;
    color: rgba(245, 240, 230, 0.82);
}

.room-card__meta span { display: flex; align-items: center; gap: 8px; }
.room-card__meta .icon { width: 14px; height: 14px; color: var(--gold-soft); }

.room-card__arrow {
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 26px;
    height: 26px;
    transition: transform 0.35s var(--ease);
}

.room-card:hover .room-card__arrow { transform: translateX(4px); }

/* --------------------------------------------------------- experience band */

.band {
    position: relative;
    overflow: hidden;
    color: var(--cream);
    background: var(--forest-deep);
}

.band__media { position: absolute; inset: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }

.band__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 18, 14, 0.85) 0%, rgba(14, 18, 14, 0.4) 45%, rgba(14, 18, 14, 0.55) 100%);
}

.band__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    padding-block: clamp(50px, 6vw, 80px);
}

.band .display { color: var(--gold-pale); margin-bottom: 16px; }
.band .lede { color: rgba(245, 240, 230, 0.86); margin-bottom: 26px; }
.band .link-more { color: var(--cream); border-color: rgba(212, 178, 124, 0.6); }

.band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.band__item {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 4px 14px;
    text-align: center;
    border-left: 1px solid var(--line-light);
}

.band__item:first-child { border-left: 0; }

.band__item .icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    color: var(--gold-soft);
    transition: transform 0.4s var(--ease);
}

.band__item:hover .icon { transform: translateY(-4px); }

.band__item-title { font-family: var(--display); font-size: 19px; font-weight: 600; }

.band__item-text { font-size: 14px; line-height: 1.5; color: rgba(245, 240, 230, 0.72); }

/* -------------------------------------------------------------- about block */

.about {
    position: relative;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.about__visual { position: relative; }

.about__visual .features__cloud {
    top: 8%;
    left: -40px;
    width: 180px;
    height: 130px;
    opacity: 0.22;
    transform: none;
}

.about__image {
    position: relative;
    aspect-ratio: 1.35 / 1;
    clip-path: url(#orn-brush);
}

.about__image img { width: 100%; height: 100%; object-fit: cover; }


/* --------------------------------------------------------------------- CTA */

.cta {
    position: relative;
    overflow: hidden;
    background: var(--forest);
    color: var(--cream);
}

.cta__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 22px 40px;
    align-items: center;
    justify-content: space-between;
    padding-block: 30px;
}

.cta__title { font-size: clamp(22px, 2.4vw, 30px); color: var(--cream); }
.cta__text { margin-top: 4px; font-size: 16px; color: rgba(245, 240, 230, 0.8); }

.cta__mountains {
    position: absolute;
    right: -20px;
    bottom: -6px;
    width: 340px;
    height: 86px;
    color: var(--gold);
    opacity: 0.45;
    pointer-events: none;
}

.cta .btn { position: relative; z-index: 1; margin-right: clamp(0px, 16vw, 230px); }

/* ------------------------------------------------------------ anchor nav */

.anchor-nav {
    position: sticky;
    top: 76px;
    z-index: 40;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.anchor-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
    height: 58px;
    overflow-x: auto;
    scrollbar-width: none;
}

.anchor-nav__inner::-webkit-scrollbar { display: none; }

.anchor-nav a {
    white-space: nowrap;
    padding: 6px 0;
    font-size: 16px;
    color: var(--ink-soft);
    border-bottom: 1px solid transparent;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.anchor-nav a:hover,
.anchor-nav a.is-active { color: var(--ink); border-color: var(--gold); }

/* ------------------------------------------------------------ card grids */

.card-grid {
    display: grid;
    gap: clamp(22px, 3vw, 36px);
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.card-grid--two { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }

.card { display: block; position: relative; }

.card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: var(--cream-deep);
}

.card--tall .card__media { aspect-ratio: 3 / 4; }

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.3s var(--ease);
}

.card:hover .card__media img { transform: scale(1.06); }

.card__veil {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(21, 30, 23, 0.4);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
}

.card:hover .card__veil { opacity: 1; }

.card__veil span {
    padding: 9px 22px;
    border: 1px solid var(--gold-soft);
    border-radius: 999px;
    color: var(--cream);
    font-size: 15px;
}

.card__body { padding-top: 16px; }

.card__title { font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.2; }

.card__meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.card__text { margin-top: 10px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }

.card__price {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.section--ink .card__title { color: var(--cream); }
.section--ink .card__text { color: rgba(245, 240, 230, 0.72); }

/* --------------------------------------------------------------- editorial */

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
}

.split__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius);
}

.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--reverse .split__media { order: 2; }

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.stat__value { font-family: var(--display); font-weight: 600; font-size: 40px; line-height: 1; color: var(--forest-soft); }

.stat__label {
    margin-top: 8px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ---------------------------------------------------------------- accordion */

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    text-align: left;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 600;
    transition: color 0.3s var(--ease);
}

.accordion__trigger:hover { color: var(--gold); }

.accordion__icon { position: relative; width: 14px; height: 14px; flex: none; color: var(--gold); }

.accordion__icon::before,
.accordion__icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.accordion__icon::before { top: 50%; left: 0; width: 100%; height: 1px; }
.accordion__icon::after { left: 50%; top: 0; width: 1px; height: 100%; }
.accordion__item.is-open .accordion__icon::after { transform: scaleY(0); opacity: 0; }

.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel .rich { padding-bottom: 24px; }

/* -------------------------------------------------------------- quotes */

.quote-slider { display: grid; }

.quote-slider .quote {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.quote-slider .quote.is-active { opacity: 1; visibility: visible; }

.quote { text-align: center; max-width: 860px; margin: 0 auto; }
.quote__text { font-family: var(--display); font-style: italic; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.4; }

.quote__author {
    margin-top: 22px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.dots button { width: 26px; height: 2px; background: rgba(245, 240, 230, 0.3); }
.dots button.is-active { background: var(--gold-soft); }

/* ------------------------------------------------------------ booking strip */

.booking { background: var(--forest-deep); color: var(--cream); }

.booking__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    align-items: stretch;
}

.booking__field { padding: 22px clamp(14px, 2vw, 26px); border-right: 1px solid var(--line-light); }

.booking__field label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

.booking__field input,
.booking__field select {
    width: 100%;
    padding: 4px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--cream);
    font-family: var(--serif);
    font-size: 16px;
    outline: none;
    color-scheme: dark;
}

.booking__field select option { color: var(--ink); }

.booking__submit {
    align-self: center;
    margin: 0 0 0 clamp(14px, 2vw, 26px);
    padding: 12px 30px;
    background: var(--gold-soft);
    color: var(--ink);
    border-radius: 999px;
    outline: 1px solid rgba(212, 178, 124, 0.45);
    outline-offset: 3px;
    font-size: 16px;
    white-space: nowrap;
    transition: background 0.3s var(--ease);
}

.booking__submit:hover { background: var(--gold-pale); }

/* ------------------------------------------------------------------ forms */

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px 30px; }

.field label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fbf8f2;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179, 136, 75, 0.14); }

.field--full { grid-column: 1 / -1; }
.field__error { margin-top: 6px; font-size: 14px; color: #9b3a2f; }

.alert {
    margin-bottom: 28px;
    padding: 14px 20px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    background: #fbf5ea;
    color: var(--forest-soft);
}

/* --------------------------------------------------------------- footer */

.site-footer { background: var(--forest-deep); color: rgba(245, 240, 230, 0.8); }

.ft-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(140px, 0.9fr)) minmax(240px, 1.1fr);
    gap: clamp(28px, 4vw, 70px);
    align-items: start;
    padding: clamp(54px, 7vw, 92px) 0 clamp(34px, 4vw, 54px);
}

.ft-brand .brand { justify-content: flex-start; }
.ft-brand .brand .emblem { width: 76px; }
.site-footer .emblem__cut { stroke: var(--forest-deep); }
.ft-brand .brand__name { font-size: 22px; }

.ft-address {
    display: grid;
    gap: 7px;
    margin: 22px 0 0;
    max-width: 34ch;
    font-family: var(--serif);
    font-style: normal;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(245, 240, 230, 0.72);
}

.ft-address a:hover { color: var(--gold-soft); }

.ft-social { display: flex; gap: 10px; margin-top: 22px; }

.social {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245, 240, 230, 0.35);
    border-radius: 6px;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.social:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.social svg { width: 15px; height: 15px; fill: currentColor; }

.ft-col {
    display: grid;
    align-content: start;
    gap: 11px;
    font-size: 15px;
}

.ft-col a { color: rgba(245, 240, 230, 0.78); transition: color 0.3s var(--ease); }
.ft-col a:hover,
.ft-col a.is-active { color: var(--gold-soft); }

.ft-news__title {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: 24px;
    color: var(--gold-pale);
}

.ft-news__text {
    margin: 0 0 18px;
    max-width: 32ch;
    font-family: var(--serif);
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(245, 240, 230, 0.72);
}

.ft-news__done { margin: 0; color: var(--gold-soft); }

.ft-news form {
    display: flex;
    border-bottom: 1px solid rgba(212, 178, 124, 0.5);
}

.ft-news input {
    flex: 1;
    min-width: 0;
    padding: 9px 0;
    background: transparent;
    border: 0;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 15px;
    outline: none;
}

.ft-news button {
    padding-left: 14px;
    color: var(--gold-soft);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ft-news button:hover { color: var(--gold-pale); }

.ft-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 24px;
    padding: 18px 0 30px;
    border-top: 1px solid var(--line-light);
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 230, 0.55);
}

.ft-bottom .lang__menu { top: auto; bottom: calc(100% + 12px); }

/* -------------------------------------------------------------- rich text */

.rich { color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.rich h2, .rich h3 { color: var(--ink); margin: 1.4em 0 0.5em; font-size: clamp(22px, 2.2vw, 30px); }
.rich ul, .rich ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.rich li { margin-bottom: 0.4em; }
.rich a { color: var(--gold); border-bottom: 1px solid currentColor; }

.rich blockquote {
    margin: 1.5em 0;
    padding-left: 22px;
    border-left: 2px solid var(--gold);
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
}

.section--ink .rich { color: rgba(245, 240, 230, 0.78); }
.section--ink .rich h2, .section--ink .rich h3 { color: var(--cream); }

/* ------------------------------------------------------------ pagination */

.pagination { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; justify-content: center; }

.pagination .page-link {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 15px;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.pagination .active .page-link,
.pagination .page-link:hover { background: var(--forest-soft); border-color: var(--forest-soft); color: var(--cream); }
.pagination .disabled .page-link { opacity: 0.35; pointer-events: none; }

/* ------------------------------------------------------------------ gallery */

.masonry { columns: 3; column-gap: 18px; }
.masonry figure { margin: 0 0 18px; break-inside: avoid; overflow: hidden; border-radius: var(--radius); }
.masonry img { width: 100%; transition: transform 1.3s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }

/* ------------------------------------------------------------ reveal motion */

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------- responsive */

@media (max-width: 1320px) {
    .stay { grid-template-columns: 1fr; }
    .band__inner { grid-template-columns: 1fr; }
    .about__grid { grid-template-columns: 1fr 1fr; }
    .ft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ft-brand, .ft-news { grid-column: 1 / -1; }
    .cta .btn { margin-right: 0; }
}

@media (max-width: 1080px) {
    .header-social { display: none; }
    .header-account span { display: none; }
}

@media (max-width: 900px) {
    .nav-overlay { grid-template-columns: 1fr; }
    .nav-overlay__media { display: none; }
    /* The hero carries no words, so keep the script visible on tablets too. */
    .hero__aside {
        top: calc(var(--header-h) + 16px);
        bottom: clamp(60px, 12vh, 120px);
        right: var(--gutter);
    }

    .hero__script { font-size: clamp(20px, 3.6vw, 30px); }
    .features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 0; }
    .feature:nth-child(3) { border-left: 0; }
    .band__items { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 0; }
    .band__item:nth-child(3) { border-left: 0; }
    .room-cards { grid-template-columns: 1fr 1fr; }
    .booking__inner { grid-template-columns: 1fr 1fr; }
    .booking__submit { grid-column: 1 / -1; margin: 18px auto 22px; }
    .masonry { columns: 2; }
}

@media (max-width: 640px) {
    :root { --header-h: 96px; }
    .site-header .brand .emblem { width: 64px; }
    .site-header.is-solid .brand .emblem { width: 48px; }
    .site-header .brand__name { font-size: 20px; }
    .brand__sub::before, .brand__sub::after { display: none; }
    .header-inner { gap: 10px; }
    .brand__sub { font-size: 8px; }
    .header-actions { gap: 14px; }
    .room-cards { grid-template-columns: 1fr; }
    .about__grid { grid-template-columns: 1fr; }
    .booking__inner { grid-template-columns: 1fr; }
    .booking__field { border-right: 0; border-bottom: 1px solid var(--line-light); }
    .split--reverse .split__media { order: 0; }
    .masonry { columns: 1; }
    .hero__arrow { display: none; }
    .hero__corner { width: 120px; height: 56px; }
    .card-grid--two { grid-template-columns: 1fr; }
    .ft-grid { grid-template-columns: 1fr; }
    .ft-bottom { justify-content: center; text-align: center; }
}

/* ------------------------------------------------ header account link */

.header-account {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--cream);
    opacity: 0.9;
    transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.header-account:hover { opacity: 1; color: var(--gold-pale); }
.header-account .icon { width: 18px; height: 18px; }

@media (max-width: 640px) {
    .header-account span { display: none; }
}

/* ------------------------------------------------------- modal dialogs */

.kt-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 20px;
    overflow-y: auto;
}

.kt-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 18, 14, 0.62);
    backdrop-filter: blur(3px);
}

.kt-modal__dialog {
    position: relative;
    width: min(100%, 440px);
    padding: 30px 30px 26px;
    background: var(--cream);
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
    animation: kt-pop 0.28s var(--ease);
}

.kt-modal__dialog--wide { width: min(100%, 860px); }

@keyframes kt-pop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.kt-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--ink-soft);
}

.kt-modal__close:hover { background: var(--cream-deep); }

.kt-modal__title { font-size: 30px; margin-bottom: 6px; }

/* ---------------------------------------------------------- auth form */

.auth-brand { display: flex; justify-content: center; margin-bottom: 6px; }
.auth-brand .emblem { width: 84px; height: auto; aspect-ratio: 200 / 132; color: var(--gold); }
.auth-brand .emblem__cut { stroke: var(--cream); }

[data-auth-modal] .kt-modal__title,
.auth-intro { text-align: center; }

.auth-intro { margin: 0 0 16px; font-size: 15px; color: var(--ink-soft); }

.auth-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px;
    padding: 4px;
    background: var(--cream-deep);
    border-radius: 999px;
}

.auth-switch button {
    padding: 8px 10px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
}

.auth-switch button.is-active { background: var(--white); color: var(--ink); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }

.auth-form { display: grid; gap: 12px; }

.auth-form label { display: grid; gap: 5px; }
.auth-form label > span { font-family: var(--sans); font-size: 13px; font-weight: 500; }
.auth-form label small { font-weight: 400; color: var(--ink-mute); }

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--serif);
    font-size: 16px;
    outline: none;
}

.auth-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179, 136, 75, 0.14); }

.auth-form .auth-check { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.auth-form .bp-btn { width: 100%; }

.auth-errors { padding: 10px 12px; background: #fbeceb; border-radius: 8px; color: #a1362d; font-size: 14px; }
.auth-errors p { margin: 0; }

.auth-foot { margin: 2px 0 0; text-align: center; font-size: 14px; color: var(--ink-soft); }

.auth-link {
    padding: 0;
    color: #a6352b;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Shared buttons (also used by the booking card). */
.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.25s var(--ease), opacity 0.25s var(--ease);
}

.bp-btn .icon { width: 17px; height: 17px; }
.bp-btn--primary { background: #b8423a; color: var(--white); }
.bp-btn--primary:hover { background: #9d3129; }
.bp-btn--primary:disabled { background: #f0b5b0; cursor: not-allowed; }
.bp-btn--outline { border: 1.5px solid #b8423a; color: #b8423a; }
.bp-btn--outline:hover { background: #fbeceb; }

/* ------------------------------------ hero: single background video mode */

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* In video mode the slides only carry text, so they cross-fade faster. */
.hero--video .hero__slide { transition-duration: 0.9s; }
.hero--video .hero__slide .hero__scrim { display: none; }

/* One shared scrim over the video instead of one per slide. */
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 18, 14, 0.72) 0%, rgba(14, 18, 14, 0.36) 42%, rgba(14, 18, 14, 0) 70%),
        linear-gradient(to top, rgba(14, 18, 14, 0.55), rgba(14, 18, 14, 0) 35%);
}

/* ------------------------------------------- availability search on the hero */

.hero-search {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: clamp(18px, 4vh, 44px);
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 2 * var(--gutter)));
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr auto;
    align-items: stretch;
    background: rgba(16, 23, 18, 0.42);
    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
    border: 1px solid rgba(212, 178, 124, 0.35);
    border-radius: 4px;
    box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.8);
    color: var(--cream);
}

.hero-search__field {
    position: relative;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 14px clamp(14px, 1.6vw, 22px);
    border-right: 1px solid rgba(212, 178, 124, 0.22);
    text-align: left;
    cursor: pointer;
}

.hero-search__field > span {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

.hero-search__field select,
.hero-search__field input[type="date"] {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 16px;
    outline: none;
    cursor: pointer;
    color-scheme: dark;
}

.hero-search__field select option { color: var(--ink); }

.hero-search__guests > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 0;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 16px;
    font-style: normal;
}

.hero-search__guests em { font-style: normal; }
.hero-search__guests .icon { width: 13px; height: 13px; transition: transform 0.25s var(--ease); }
.hero-search__guests.is-open .icon { transform: rotate(180deg); }

.hero-search__pop {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    display: grid;
    gap: 10px;
    min-width: 250px;
    padding: 16px 18px;
    background: var(--cream);
    color: var(--ink);
    border-radius: 6px;
    box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    cursor: default;
}

.hero-search__guests.is-open .hero-search__pop { opacity: 1; visibility: visible; transform: none; }

.hero-search__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
}

.hero-search__submit {
    padding: 0 clamp(20px, 2.4vw, 38px);
    background: var(--gold-soft);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.25s var(--ease);
}

.hero-search__submit:hover { background: var(--gold-pale); }

/* The hero text needs room for the bar. */
.hero--search .hero__inner { padding-bottom: clamp(120px, 18vh, 190px); }
.hero--search .hero__dots { bottom: clamp(104px, 16vh, 150px); }
.hero--search .hero__scroll { display: none; }

/* ------------------------------------------------------- search results */

.search-result {
    background: var(--forest);
    color: var(--cream);
}

.search-result__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 26px;
    padding: 16px var(--gutter);
}

.search-result p { margin: 0; font-size: 16px; }
.search-result__count { color: var(--gold-pale); }
.search-result__count.is-empty { color: #f0b5b0; }
.search-result .link-more { font-size: 14px; border-color: rgba(212, 178, 124, 0.5); }

.room-card { position: relative; }

.room-card__badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #e4f2e7;
    color: #2f6d42;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
}

.room-card__badge.is-few { background: #fbf0dc; color: #8a5a12; }
.room-card__badge.is-full { background: #f6dcd9; color: #a1362d; }
.room-card.is-full img { filter: grayscale(0.7); opacity: 0.75; }

@media (max-width: 1080px) {
    .hero-search {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: min(720px, calc(100% - 2 * var(--gutter)));
        margin: -34px auto 0;
        grid-template-columns: 1fr 1fr;
    }

    .hero-search__field { border-right: 0; border-bottom: 1px solid rgba(212, 178, 124, 0.22); }
    .hero-search__submit { grid-column: 1 / -1; padding: 16px; }
    .hero--search .hero__inner { padding-bottom: clamp(60px, 10vh, 110px); }
    .hero--search .hero__dots { bottom: 24px; }
}

@media (max-width: 560px) {
    .hero-search { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- showcase
   Expanding panel strip: panels sit in a horizontally scrollable track and the
   active one (pointer or keyboard focus) widens to reveal its text. */
.showcase {
    padding: clamp(70px, 9vw, 120px) 0 clamp(60px, 7vw, 100px);
    background: var(--cream-deep);
}

.showcase__head {
    max-width: 680px;
    margin-bottom: clamp(32px, 4vw, 54px);
}

.showcase__head .lede { margin-top: 16px; }

.showcase__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.showcase__viewport::-webkit-scrollbar { display: none; }

.showcase__track {
    display: flex;
    gap: 8px;
    /* Edge to edge: the panels share whatever width the screen gives them. */
    min-width: 100%;
    width: auto;
}

.showcase__panel {
    position: relative;
    /* Collapsed panels split the leftover width; the open one takes the lion's share. */
    flex: 1 1 0;
    min-width: clamp(70px, 7vw, 120px);
    height: clamp(420px, 52vw, 580px);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--forest-deep);
    cursor: pointer;
    transition: flex-grow 0.7s var(--ease), min-width 0.7s var(--ease);
}

.showcase__panel:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 3px;
}

.showcase__panel.is-active {
    flex-grow: 5;
    min-width: min(520px, 70vw);
}

.showcase__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Collapsed panels sit dim and slightly zoomed out. */
    transform: scale(1.12);
    filter: saturate(0.75) brightness(0.72);
    transition: transform 1s var(--ease), filter 0.7s var(--ease);
}

.showcase__panel.is-active .showcase__img {
    transform: scale(1);
    filter: none;
}

.showcase__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 30, 23, 0.45) 0%, rgba(21, 30, 23, 0) 38%, rgba(21, 30, 23, 0.82) 100%);
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.showcase__panel.is-active::after { opacity: 1; }

.showcase__num {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--gold-pale);
}

/* Vertical caption, shown only while the panel is collapsed. */
.showcase__spine {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    max-height: 60%;
    overflow: hidden;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(245, 240, 230, 0.86);
    transition: opacity 0.35s var(--ease);
}

.showcase__panel.is-active .showcase__spine { opacity: 0; }

.showcase__body {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(22px, 3vw, 36px);
    color: var(--cream);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease) 0.15s, transform 0.6s var(--ease) 0.15s;
    pointer-events: none;
}

.showcase__panel.is-active .showcase__body {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.showcase__eyebrow {
    margin: 0 0 8px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.showcase__title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.12;
}

.showcase__text {
    margin: 12px 0 0;
    max-width: 44ch;
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(245, 240, 230, 0.82);
}

.showcase__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(212, 178, 124, 0.5);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-pale);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.showcase__link:hover { color: var(--white); border-color: var(--gold-pale); }
.showcase__link svg { width: 18px; height: 18px; }

.showcase__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(20px, 3vw, 32px);
}

.showcase__hint {
    margin: 0;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.showcase__nav { display: flex; gap: 10px; }

.showcase__arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.showcase__arrow:hover { background: var(--forest); border-color: var(--forest); color: var(--gold-pale); }
.showcase__arrow[disabled] { opacity: 0.3; cursor: default; }
.showcase__arrow svg { width: 20px; height: 20px; }
.showcase__arrow[data-showcase-prev] svg { transform: rotate(180deg); }

@media (max-width: 760px) {
    .showcase__panel { height: clamp(380px, 82vw, 460px); min-width: 62px; }
    .showcase__panel.is-active { min-width: min(280px, 74vw); }
    .showcase__text { display: none; }
    .showcase__hint { display: none; }
    .showcase__foot { justify-content: flex-end; }
}

/* ------------------------------------------------------------- page banner
   Detail pages open with the same full-bleed picture as home, only shorter, so
   the big logo still has room to shrink on scroll. */
.hero--compact { min-height: clamp(380px, 58svh, 620px); }
.hero--compact .hero__title { font-size: clamp(32px, 4.4vw, 62px); }
.hero--compact .hero__subtitle { font-size: 17px; margin-top: 16px; }

.hero--tall { min-height: clamp(420px, 66svh, 700px); }

@media (max-width: 760px) {
    .hero--compact { min-height: clamp(320px, 46svh, 420px); }
}

/* ------------------------------------------------------------- clip band
   A short looping film between two sections, with a caption over it. */
.clip-band {
    position: relative;
    overflow: hidden;
    height: clamp(300px, 46svh, 520px);
    background: var(--forest-deep);
}

.clip-band__media { position: absolute; inset: 0; }
.clip-band__media video,
.clip-band__media img { width: 100%; height: 100%; object-fit: cover; }

.clip-band__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 30, 23, 0.5) 0%, rgba(21, 30, 23, 0.15) 45%, rgba(21, 30, 23, 0.75) 100%);
}

.clip-band__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(28px, 4vw, 54px);
    color: var(--cream);
}

.clip-band__title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 500;
    color: var(--gold-pale);
}

.clip-band__text {
    max-width: 52ch;
    margin: 12px 0 0;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.6;
    color: rgba(245, 240, 230, 0.86);
}


/* ----------------------------------------------------------- story band
   Above the footer: a short film behind a written note and small pictures. */
.story-band {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--forest-deep);
}

.story-band__media { position: absolute; inset: 0; }
.story-band__media video,
.story-band__media img { width: 100%; height: 100%; object-fit: cover; }

.story-band__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 30, 23, 0.88) 0%, rgba(21, 30, 23, 0.62) 55%, rgba(21, 30, 23, 0.45) 100%);
}

.story-band__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    color: var(--cream);
}

.story-band__title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--gold-pale);
}

.story-band__text {
    max-width: 48ch;
    margin: 18px 0 0;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 240, 230, 0.84);
}

.story-band__copy .link-more { margin-top: 22px; }

.story-band__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
}

.story-card {
    margin: 0;
    /* The first picture stands a little taller, like a stacked contact sheet. */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.9);
}

.story-card figcaption {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.story-card:nth-child(2) { margin-top: clamp(16px, 3vw, 40px); }

@media (max-width: 900px) {
    .story-band__inner { grid-template-columns: 1fr; }
    .story-band__scrim { background: linear-gradient(180deg, rgba(21, 30, 23, 0.85) 0%, rgba(21, 30, 23, 0.6) 100%); }
    .story-card:nth-child(2) { margin-top: 0; }
}

@media (max-width: 560px) {
    .story-band__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .story-card:nth-child(3) { display: none; }
}

@media (max-width: 760px) {
    .clip-band { height: clamp(260px, 40svh, 360px); }
}

/* A page with no banner still has to clear the fixed header. */
.section--below-header { padding-top: calc(var(--header-h) + clamp(20px, 3vw, 44px)); }

/* Pictures and tables placed with the editor. */
.rich img { max-width: 100%; height: auto; border-radius: var(--radius); }
.rich figure { margin: 1.6em 0; }
.rich figure.image img { width: 100%; }

.rich figure.image-style-side {
    float: right;
    max-width: 46%;
    margin: 0.4em 0 1.2em 1.6em;
}

.rich figcaption {
    margin-top: 8px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-mute);
}

.rich table {
    width: 100%;
    margin: 1.6em 0;
    border-collapse: collapse;
    font-size: 16px;
}

.rich th,
.rich td { padding: 10px 14px; border: 1px solid var(--line); text-align: left; }
.rich th { background: var(--cream-deep); font-weight: 500; }
.rich .media { margin: 1.6em 0; }
.rich oembed { display: block; }

@media (max-width: 680px) {
    .rich figure.image-style-side { float: none; max-width: 100%; margin: 1.6em 0; }
}

/* Extra bits the editor can produce: highlight, to-do lists, code, rules. */
.rich mark { padding: 0 3px; background: #fbe8a6; color: inherit; }
.rich mark.marker-green { background: #c9efc2; }
.rich mark.marker-pink { background: #f7cfe1; }
.rich mark.marker-blue { background: #cfe4f7; }
.rich .text-tiny { font-size: 0.75em; }
.rich .text-small { font-size: 0.875em; }
.rich .text-big { font-size: 1.2em; }
.rich .text-huge { font-size: 1.5em; }

.rich ul.todo-list { list-style: none; padding-left: 0; }
.rich ul.todo-list li { display: flex; align-items: flex-start; gap: 10px; }
.rich ul.todo-list input[type="checkbox"] { margin-top: 7px; accent-color: var(--gold); }

.rich pre {
    margin: 1.6em 0;
    padding: 16px 18px;
    overflow-x: auto;
    border-radius: var(--radius);
    background: var(--forest-deep);
    color: var(--cream);
    font-size: 14px;
}

.rich code { font-size: 0.92em; }
.rich hr { margin: 2em 0; border: 0; border-top: 1px solid var(--line); }
.rich .page-break { display: none; }

/* ---------------------------------------------------- accommodation art
   A scroll painting of the thirteenth century court, faint, in the free
   space to the right of the room cards. */
.stay-section { position: relative; overflow: hidden; }

.stay--with-art {
    /* intro | cards | art */
    grid-template-columns: minmax(230px, 0.85fr) minmax(0, 2.3fr) minmax(0, 210px);
}

.stay-art {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: calc(-1 * var(--gutter));
    pointer-events: none;
}

.stay-art img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 640 / 1180;
    object-fit: contain;
    opacity: 0.28;
    filter: saturate(0.85);
}

@media (max-width: 1240px) {
    .stay--with-art { grid-template-columns: minmax(230px, 0.9fr) 2.6fr; }
    .stay-art { display: none; }
}


/* The home accommodation module shows its rooms as tall portraits. */
.stay .room-card { aspect-ratio: 0.63 / 1; }
.stay .room-card__title { font-size: 22px; }

@media (max-width: 720px) {
    /* One per row on a phone: a full portrait would be far too tall. */
    .stay .room-card { aspect-ratio: 1 / 0.9; }
}

/* ------------------------------------------------------------ dining band
   One photograph filling the band, the venues listed down the right; the
   picture changes as the pointer moves from one name to the next. */
.dining-band {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 78svh, 760px);
    display: flex;
    align-items: center;
    background: var(--forest-deep);
    color: var(--cream);
}

.dining-band__media { position: absolute; inset: 0; }

.dining-band__photo {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s var(--ease), transform 6s var(--ease);
}

.dining-band__photo.is-active { opacity: 1; transform: scale(1); }

.dining-band__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(14, 20, 15, 0.86) 0%, rgba(14, 20, 15, 0.55) 45%, rgba(14, 20, 15, 0.35) 100%);
}

.dining-band__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(30px, 6vw, 90px);
    padding: clamp(60px, 8vw, 110px) var(--gutter);
}

.dining-band__title {
    margin: 0;
    max-width: 14ch;
    font-family: var(--display);
    font-size: clamp(34px, 4.4vw, 64px);
    font-weight: 500;
    line-height: 1.06;
    color: var(--gold-pale);
}

.dining-band__text {
    margin: 20px 0 26px;
    max-width: 42ch;
    min-height: 3em;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 240, 230, 0.82);
    transition: opacity 0.35s var(--ease);
}

.dining-band__text.is-fading { opacity: 0; }

.dining-band__list {
    display: grid;
    gap: clamp(10px, 1.4vw, 20px);
    justify-items: end;
    text-align: right;
}

.dining-band__item {
    font-family: var(--sans);
    font-size: clamp(14px, 1.5vw, 20px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.62);
    transition: color 0.3s var(--ease), letter-spacing 0.4s var(--ease);
}

.dining-band__item:hover,
.dining-band__item:focus-visible,
.dining-band__item.is-active { color: var(--gold-pale); letter-spacing: 0.22em; }

@media (max-width: 900px) {
    .dining-band__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dining-band__list { justify-items: start; text-align: left; }
    .dining-band__title { max-width: none; }
    .dining-band__text { min-height: 0; }
}

/* Kept in the page for screen readers and search engines, out of sight. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.about__credit {
    margin: 10px 2px 0;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
}

/* ------------------------------------------------------------- headings
   Prata comes in a single weight; asking for a heavier one only makes the
   browser fake it, so every place that uses the display face stays at 400.
   The top menu shares the same face. */
.display,
.hero__title,
.hero__quote,
.nav-list > li > a,
.header-account,
.lang__toggle,
.lang__menu a,
.band__item-title,
.card__title,
.room-card__title,
.feature__title,
.cta__title,
.clip-band__title,
.dining-band__title,
.story-band__title,
.showcase__title,
.bp-title,
.ft-news__title,
.stat__value,
.quote__text,
.about__quote,
.accordion__trigger > span:first-child {
    font-weight: 400;
}

.header-account,
.lang__toggle,
.lang__menu a {
    font-family: var(--display);
    letter-spacing: 0.1em;
}
