/* ==========================================================================
   Deewan Mansion Marquee — front-end stylesheet
   Hand-built. No Bootstrap, no framework, no template.
   Sections:  01 tokens · 02 base · 03 type · 04 layout · 05 buttons
              06 header · 07 hero · 08 ticker · 09 stats · 10 venue
              11 package · 12 gallery · 13 lightbox · 14 booking + calendar
              15 reviews · 16 visit · 17 cta · 18 footer · 19 floating
              20 motion · 21 responsive
   ========================================================================== */

/* ---------- 01 · tokens ------------------------------------------------- */
:root {
    --ink:        #14120e;
    --ink-2:      #1d1a14;
    --ink-3:      #2b2720;
    --ink-soft:   #3a352c;

    --cream:      #faf6ef;
    --cream-2:    #f3ece1;
    --paper:      #ffffff;

    --gold:       #c9a227;
    --gold-2:     #e3c878;
    --gold-lt:    #e6cd85;
    --gold-dk:    #8e6e1f;
    --rose:       #e6b7ae;

    --text:       #1a1712;
    --text-inv:   #f6f1e8;
    --muted:      #6d6456;
    --muted-inv:  rgba(246, 241, 232, .66);

    --line:       rgba(201, 162, 39, .26);
    --line-soft:  rgba(26, 23, 18, .10);
    --line-inv:   rgba(230, 205, 133, .22);

    --font-d:     'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-u:     'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --wrap:       1240px;
    --gutter:     clamp(20px, 5vw, 64px);
    --sect:       clamp(72px, 10vw, 148px);

    --r-sm:       4px;
    --r:          8px;
    --r-lg:       16px;

    --shadow:     0 24px 60px -28px rgba(20, 18, 14, .34);
    --shadow-lg:  0 40px 90px -40px rgba(20, 18, 14, .5);

    --ease:       cubic-bezier(.22, .61, .36, 1);
    --ease-out:   cubic-bezier(.16, 1, .3, 1);

    --hdr-h:      78px;
}

/* ---------- 02 · base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--hdr-h) + 12px);
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-u);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #fff; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* scroll progress hairline */
.progress {
    position: fixed;
    inset: 0 auto auto 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
    z-index: 200;
    pointer-events: none;
}

/* ---------- 03 · typography --------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-d);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -.012em;
    margin: 0;
    color: var(--text);
}

.d1 { font-size: clamp(2.9rem, 7.4vw, 6rem); }
.d2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.d3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }

.lede {
    font-size: clamp(1.06rem, 1.35vw, 1.22rem);
    line-height: 1.72;
    color: var(--muted);
    font-weight: 300;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .72rem;
    font-family: var(--font-u);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin: 0 0 1.15rem;
}
.eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--gold);
    flex: none;
}
.eyebrow--c::after {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--gold);
    flex: none;
}
.on-ink .eyebrow { color: var(--gold-lt); }

.idx {
    font-family: var(--font-d);
    font-size: .95rem;
    letter-spacing: .18em;
    color: var(--gold-dk);
    opacity: .8;
}

.rule {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
}
.rule::before, .rule::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--line) 22%, var(--line) 78%, transparent);
}
.rule i { font-style: normal; font-size: .7rem; letter-spacing: .2em; }

.gold { color: var(--gold-dk); }
.on-ink .gold { color: var(--gold-lt); }
.italic { font-style: italic; }

/* ---------- 04 · layout ------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.wrap--wide { max-width: 1480px; }
.wrap--narrow { max-width: 860px; }

.section { padding-block: var(--sect); position: relative; }
.section--tight { padding-block: clamp(52px, 7vw, 96px); }

.on-ink {
    background: var(--ink);
    color: var(--text-inv);
}
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink h4 { color: var(--text-inv); }
.on-ink .lede { color: var(--muted-inv); }

.sect-head { max-width: 720px; }
.sect-head--c { max-width: 760px; margin-inline: auto; text-align: center; }
.sect-head--c .eyebrow { justify-content: center; }

.sect-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2.4rem, 4vw, 4rem);
}

.stack > * + * { margin-top: 1.15rem; }

/* checklist */
.ticks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .7rem .2rem;
}
.ticks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem 1.6rem; }
.ticks li {
    position: relative;
    padding-left: 1.8rem;
    font-size: .98rem;
    line-height: 1.55;
}
.ticks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .52em;
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border: 1px solid var(--gold);
    background: rgba(201, 162, 39, .18);
}

/* ---------- 05 · buttons ------------------------------------------------ */
.btn {
    --bg: var(--gold);
    --fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1.02rem 1.9rem;
    font-family: var(--font-u);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--fg);
    background: var(--bg);
    border: 1px solid var(--bg);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out),
                background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 -60%;
    width: 45%;
    z-index: -1;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
    transform: skewX(-18deg);
    transition: left .65s var(--ease-out);
}
.btn:hover::after { left: 115%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(142, 110, 31, .78); }
.btn:active { transform: translateY(0); }

.btn--gold {
    --bg: linear-gradient(135deg, #d8b03a, #c9a227 52%, #a9871d);
    background: var(--bg);
    border-color: rgba(255, 255, 255, .18);
}

.btn--wa {
    --bg: #1faa53;
    --fg: #fff;
    border-color: #1faa53;
}
.btn--wa:hover { box-shadow: 0 16px 30px -16px rgba(31, 170, 83, .8); }

.btn--ghost {
    --bg: transparent;
    --fg: var(--text);
    border-color: rgba(26, 23, 18, .28);
}
.btn--ghost:hover { background: var(--text); border-color: var(--text); color: var(--cream); box-shadow: none; }

.on-ink .btn--ghost, .btn--ghost-inv {
    --fg: var(--text-inv);
    border-color: rgba(230, 205, 133, .38);
    background: transparent;
}
.on-ink .btn--ghost:hover, .btn--ghost-inv:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    color: var(--ink);
}

.btn--sm { padding: .78rem 1.3rem; font-size: .7rem; letter-spacing: .15em; }
.btn--lg { padding: 1.18rem 2.35rem; font-size: .82rem; }
.btn--block { width: 100%; }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    align-items: center;
}

/* quiet text link with arrow */
.tlink {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dk);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
    transition: gap .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.tlink:hover { gap: .95rem; border-color: var(--gold); }
.on-ink .tlink { color: var(--gold-lt); border-color: var(--line-inv); }

/* ---------- 06 · header ------------------------------------------------- */
.topbar {
    background: var(--ink-2);
    color: var(--muted-inv);
    font-size: .76rem;
    letter-spacing: .06em;
    border-bottom: 1px solid rgba(230, 205, 133, .12);
}
.topbar__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 40px;
    padding-block: .35rem;
}
.topbar a { transition: color .25s var(--ease); }
.topbar a:hover { color: var(--gold-lt); }
.topbar__set { display: flex; align-items: center; gap: 1.4rem; }
.topbar__i { display: inline-flex; align-items: center; gap: .5rem; }
.topbar__i svg { width: 13px; height: 13px; color: var(--gold); flex: none; }
.stars { color: var(--gold-lt); letter-spacing: .05em; }

.header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(20, 18, 14, 0);
    transition: background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
    border-bottom: 1px solid transparent;
}
.header__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--hdr-h);
}
.header__cta { flex: none; }
.header.is-stuck {
    background: rgba(20, 18, 14, .93);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(230, 205, 133, .16);
    box-shadow: 0 14px 34px -26px rgba(0, 0, 0, .9);
}

/* logo lockup */
.brand { display: inline-flex; align-items: center; gap: .8rem; min-width: 0; }
.brand__mark { width: 40px; height: 40px; flex: none; color: var(--gold-lt); }
.brand__txt { display: block; line-height: 1; }
.brand__name {
    display: block;
    font-family: var(--font-d);
    font-size: 1.32rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
}
.brand__sub {
    display: block;
    font-size: .56rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
    position: relative;
    font-size: .765rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .82);
    padding-block: .5rem;
    transition: color .3s var(--ease);
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: var(--gold-lt);
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform .45s var(--ease-out);
}
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: 0 50%; }

.header__cta { display: flex; align-items: center; gap: .6rem; }

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(230, 205, 133, .3);
    border-radius: 50%;
    background: transparent;
    color: var(--gold-lt);
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--gold-lt); color: var(--ink); border-color: var(--gold-lt); transform: translateY(-2px); }

/* burger */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(230, 205, 133, .3);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
}
.burger span {
    position: absolute;
    left: 50%;
    width: 17px;
    height: 1.5px;
    background: var(--gold-lt);
    transform: translateX(-50%);
    transition: transform .38s var(--ease-out), opacity .25s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { transform: translateX(-50%) translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 119;
    background: var(--ink);
    display: grid;
    grid-template-rows: var(--hdr-h) 1fr auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .4s var(--ease), transform .5s var(--ease-out), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .2rem;
    padding: 1rem var(--gutter);
    overflow-y: auto;
}
.drawer__body a {
    font-family: var(--font-d);
    font-size: clamp(2rem, 9vw, 2.9rem);
    color: var(--cream);
    padding: .32em 0;
    border-bottom: 1px solid rgba(230, 205, 133, .12);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    opacity: 0;
    transform: translateY(14px);
}
.drawer.is-open .drawer__body a { animation: drawerIn .55s var(--ease-out) forwards; }
.drawer__body a span {
    font-family: var(--font-u);
    font-size: .62rem;
    letter-spacing: .25em;
    color: var(--gold);
}
@keyframes drawerIn { to { opacity: 1; transform: none; } }

.drawer__foot {
    padding: 1.4rem var(--gutter) calc(1.6rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(230, 205, 133, .14);
    display: grid;
    gap: .7rem;
}
.drawer__foot .meta {
    font-size: .8rem;
    color: var(--muted-inv);
    letter-spacing: .04em;
}

/* ---------- 07 · hero --------------------------------------------------- */
.hero {
    position: relative;
    min-height: clamp(600px, 96svh, 1000px);
    margin-top: calc(var(--hdr-h) * -1);
    padding-top: var(--hdr-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 52%;
    animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.11); } to { transform: scale(1); } }

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(20, 18, 14, .74) 0%, rgba(20, 18, 14, .16) 30%, rgba(20, 18, 14, .26) 56%, rgba(20, 18, 14, .9) 100%),
        linear-gradient(100deg, rgba(20, 18, 14, .88) 0%, rgba(20, 18, 14, .62) 34%, rgba(20, 18, 14, .1) 66%, transparent 82%);
}
.hero__grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .14;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.hero__in {
    width: 100%;
    padding-block: clamp(3.5rem, 9vw, 7rem) clamp(6rem, 12vw, 9rem);
    color: var(--text-inv);
    max-width: 880px;
}
.hero__place {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.5rem;
}
.hero__place::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hero h1 {
    color: #fff;
    font-size: clamp(2.9rem, 8.4vw, 6.6rem);
    line-height: .94;
    letter-spacing: -.018em;
    margin-bottom: 1.4rem;
    text-wrap: balance;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
    font-weight: 300;
}
.hero__sub {
    font-size: clamp(1.02rem, 1.5vw, 1.24rem);
    line-height: 1.75;
    color: rgba(246, 241, 232, .84);
    max-width: 58ch;
    margin-bottom: 2.3rem;
    font-weight: 300;
}
.hero .btn-row { gap: 1rem; }

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.6rem;
    margin-top: 2.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(230, 205, 133, .2);
}
.hero__fact { display: flex; flex-direction: column; gap: .28rem; }
.hero__fact b {
    font-family: var(--font-d);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--gold-lt);
    line-height: 1;
}
.hero__fact span {
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .6);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: .7rem;
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .55);
}
.hero__scroll i {
    display: block;
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--gold-lt), transparent);
    position: relative;
    overflow: hidden;
}
.hero__scroll i::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 14px;
    background: var(--gold-lt);
    animation: scrollDot 2.1s var(--ease) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(-16px); } 100% { transform: translateY(48px); } }

/* ---------- 08 · ticker ------------------------------------------------- */
.ticker {
    background: var(--ink-2);
    border-block: 1px solid rgba(230, 205, 133, .14);
    overflow: hidden;
    padding-block: 1.05rem;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: tick 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__row { display: flex; align-items: center; }
.ticker__row span {
    font-family: var(--font-d);
    font-size: 1.18rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .9);
    padding-inline: 1.5rem;
    white-space: nowrap;
}
.ticker__row i { color: var(--gold); font-style: normal; font-size: .68rem; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- 09 · stats -------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
}
.stat {
    padding: clamp(1.7rem, 3vw, 2.6rem) clamp(1rem, 2vw, 1.8rem);
    text-align: center;
    border-right: 1px solid var(--line-soft);
    position: relative;
}
.stat:last-child { border-right: 0; }
.stat b {
    display: block;
    font-family: var(--font-d);
    font-size: clamp(2.3rem, 4.2vw, 3.3rem);
    font-weight: 300;
    line-height: 1;
    color: var(--gold-dk);
    letter-spacing: -.01em;
}
.stat b sup { font-size: .5em; vertical-align: super; color: var(--gold); }
.stat span {
    display: block;
    margin-top: .6rem;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
.stats-wrap { margin-top: calc(var(--sect) * -.44); position: relative; z-index: 3; }

/* ---------- 10 · venue -------------------------------------------------- */
.venue-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.figs { position: relative; }
.fig {
    position: relative;
    overflow: hidden;
    background: var(--cream-2);
}
.fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.fig:hover img { transform: scale(1.05); }

.figs__main { aspect-ratio: 4 / 5; }
.figs__sub {
    position: absolute;
    right: -8%;
    bottom: -9%;
    width: 54%;
    aspect-ratio: 1 / 1;
    border: 7px solid var(--cream);
    box-shadow: var(--shadow);
}
.figs__frame {
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}

.figs__badge {
    position: absolute;
    left: -6%;
    bottom: 16%;
    background: var(--ink);
    color: var(--text-inv);
    padding: 1rem 1.3rem;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}
.figs__badge b {
    display: block;
    font-family: var(--font-d);
    font-size: 1.85rem;
    line-height: 1;
    color: var(--gold-lt);
}
.figs__badge span {
    display: block;
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .6);
    margin-top: .35rem;
}

.mini-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
    margin-top: 2.2rem;
}
.mini-facts div {
    background: var(--cream);
    padding: 1.1rem 1rem;
}
.mini-facts b {
    display: block;
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
}
.mini-facts span {
    display: block;
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .2rem;
}

/* ---------- 11 · package ------------------------------------------------ */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.4rem, 2.4vw, 2rem);
}

.pkg {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ink-2);
    border: 1px solid rgba(230, 205, 133, .18);
    overflow: hidden;
    transition: border-color .45s var(--ease), transform .55s var(--ease-out);
}
.pkg:hover { border-color: rgba(230, 205, 133, .45); transform: translateY(-5px); }

.pkg__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.pkg__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .82;
    transition: transform 1.3s var(--ease-out), opacity .5s var(--ease);
}
.pkg:hover .pkg__media img { transform: scale(1.06); opacity: 1; }
.pkg__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 18, 14, .1), rgba(29, 26, 20, .96));
}
.pkg__tag {
    position: absolute;
    left: 0;
    top: 1.3rem;
    z-index: 2;
    background: var(--gold);
    color: #fff;
    font-size: .62rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    padding: .5rem 1rem .5rem 1.4rem;
}

.pkg__body {
    padding: clamp(1.6rem, 3vw, 2.5rem);
    margin-top: -3.2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pkg__body h3 { color: var(--text-inv); font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: .35rem; }
.pkg__body > p {
    color: var(--muted-inv);
    font-size: .95rem;
    margin-bottom: 1.5rem;
}
.pkg .ticks li { color: rgba(246, 241, 232, .88); }
.pkg .ticks li::before { border-color: var(--gold-lt); background: rgba(230, 205, 133, .16); }
.pkg__foot { margin-top: auto; padding-top: 1.9rem; }

/* occasion pills */
.occ {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-top: clamp(2.4rem, 4vw, 3.4rem);
}
.occ a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .72rem 1.25rem;
    border: 1px solid rgba(230, 205, 133, .26);
    border-radius: 100px;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .85);
    transition: all .34s var(--ease);
}
.occ a svg { width: 14px; height: 14px; color: var(--gold-lt); transition: color .3s var(--ease); }
.occ a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.occ a:hover svg { color: #fff; }

/* assurance icon row */
.assure {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
}
.assure div {
    background: var(--cream);
    padding: 2rem 1rem;
    text-align: center;
    transition: background .35s var(--ease);
}
.assure div:hover { background: var(--paper); }
.assure svg { width: 30px; height: 30px; margin: 0 auto .95rem; color: var(--gold); stroke-width: 1.2; }
.assure span {
    display: block;
    font-size: .72rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.5;
}

/* ---------- 12 · gallery ------------------------------------------------ */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: clamp(2rem, 3.4vw, 3rem);
}
.filters button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem 1.2rem;
    background: transparent;
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: all .32s var(--ease);
}
.filters button em {
    font-style: normal;
    font-size: .62rem;
    opacity: .55;
}
.filters button:hover { border-color: var(--gold); color: var(--gold-dk); }
.filters button.is-on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}
.filters button.is-on em { opacity: .6; }

.gal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-flow: dense;
}
.gal__item {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--cream-2);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 0;
    padding: 0;
    animation: galIn .5s var(--ease-out) both;
}
/* a 2x2 tile keeps roughly the same shape as a 1x1 tile, so rows stay even */
.gal__item--big {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.gal__item.is-hidden { display: none !important; }

/* start folded: eight tiles until "show all" is pressed */
.gal.is-clamped .gal__item:nth-child(n + 10) { display: none; }

@keyframes galIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }

.gal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out), filter .5s var(--ease);
}
.gal__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(20, 18, 14, .8));
    opacity: 0;
    transition: opacity .45s var(--ease);
}
.gal__item:hover img { transform: scale(1.07); }
.gal__item:hover::after { opacity: 1; }
.gal__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.1rem;
    text-align: left;
    color: #fff;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .45s var(--ease), transform .5s var(--ease-out);
}
.gal__item:hover .gal__cap { opacity: 1; transform: none; }
.gal__zoom {
    position: absolute;
    top: 50%; left: 50%;
    z-index: 2;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    color: #fff;
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0;
    transition: opacity .4s var(--ease), transform .5s var(--ease-out);
}
.gal__zoom svg { width: 16px; height: 16px; }
.gal__item:hover .gal__zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.gal-more { display: flex; justify-content: center; margin-top: 2.4rem; }

/* ---------- 13 · lightbox ----------------------------------------------- */
.lb {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(12, 11, 9, .96);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: grid;
    grid-template-rows: auto 1fr auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .38s var(--ease), visibility .38s;
}
.lb.is-open { opacity: 1; visibility: visible; }

.lb__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1rem, 3vw, 2rem);
    color: rgba(246, 241, 232, .75);
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.lb__stage {
    position: relative;
    display: grid;
    place-items: center;
    padding: 0 clamp(1rem, 6vw, 5rem);
    min-height: 0;
}
.lb__stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 30px 90px -30px #000;
    animation: lbIn .45s var(--ease-out);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }

.lb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(230, 205, 133, .3);
    border-radius: 50%;
    background: rgba(20, 18, 14, .5);
    color: var(--gold-lt);
    cursor: pointer;
    transition: all .3s var(--ease);
}
.lb__nav:hover { background: var(--gold-lt); color: var(--ink); }
.lb__nav svg { width: 18px; height: 18px; }
.lb__nav--prev { left: clamp(.5rem, 2vw, 1.6rem); }
.lb__nav--next { right: clamp(.5rem, 2vw, 1.6rem); }

.lb__foot {
    padding: 1rem clamp(1rem, 3vw, 2rem) calc(1.2rem + env(safe-area-inset-bottom));
    text-align: center;
    color: rgba(246, 241, 232, .7);
    font-family: var(--font-d);
    font-size: 1.1rem;
    letter-spacing: .06em;
}
.lb__close {
    width: 42px; height: 42px;
    border: 1px solid rgba(230, 205, 133, .3);
    border-radius: 50%;
    background: transparent;
    color: var(--gold-lt);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .3s var(--ease);
}
.lb__close:hover { background: var(--gold-lt); color: var(--ink); transform: rotate(90deg); }
.lb__close svg { width: 16px; height: 16px; }

/* ---------- 14 · booking + calendar ------------------------------------- */
.book {
    position: relative;
    background: var(--ink);
    overflow: hidden;
}
.book__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.book__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.book__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 70% at 50% 40%, rgba(20, 18, 14, .74), rgba(20, 18, 14, .97));
}
.book .wrap { position: relative; z-index: 1; }

.book-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(2.4rem, 5vw, 5rem);
    align-items: start;
}

.book-card {
    background: rgba(250, 246, 239, .035);
    border: 1px solid rgba(230, 205, 133, .22);
    padding: clamp(1.5rem, 3.2vw, 2.6rem);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.field { margin-bottom: 1.35rem; }
.field:last-of-type { margin-bottom: 0; }
.field > label, .field__lab {
    display: block;
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .72rem;
}

.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
    position: relative;
    display: inline-flex;
}
.chip input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.chip span {
    display: inline-flex;
    align-items: center;
    padding: .62rem 1rem;
    border: 1px solid rgba(230, 205, 133, .26);
    border-radius: 100px;
    font-size: .74rem;
    letter-spacing: .1em;
    color: rgba(246, 241, 232, .82);
    cursor: pointer;
    transition: all .28s var(--ease);
    -webkit-user-select: none;
    user-select: none;
}
.chip span:hover { border-color: var(--gold-lt); color: #fff; }
.chip input:checked + span {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.chip input:focus-visible + span { outline: 2px solid var(--gold-lt); outline-offset: 2px; }

.inp {
    width: 100%;
    padding: .95rem 1.05rem;
    background: rgba(250, 246, 239, .05);
    border: 1px solid rgba(230, 205, 133, .22);
    border-radius: 2px;
    color: var(--text-inv);
    font-size: .96rem;
    font-weight: 300;
    transition: border-color .3s var(--ease), background .3s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.inp::placeholder { color: rgba(246, 241, 232, .36); }
.inp:hover { border-color: rgba(230, 205, 133, .4); }
.inp:focus { outline: none; border-color: var(--gold); background: rgba(250, 246, 239, .08); }
textarea.inp { resize: vertical; min-height: 88px; line-height: 1.6; }

select.inp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6cd85' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.6rem;
}
select.inp option { background: var(--ink-2); color: var(--text-inv); }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* date field + calendar */
.datefield { position: relative; }
.datefield__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1.05rem;
    background: rgba(250, 246, 239, .05);
    border: 1px solid rgba(230, 205, 133, .22);
    border-radius: 2px;
    color: rgba(246, 241, 232, .44);
    font-size: .96rem;
    font-weight: 300;
    text-align: left;
    cursor: pointer;
    transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.datefield__btn:hover { border-color: rgba(230, 205, 133, .45); }
.datefield__btn.has-val { color: var(--text-inv); }
.datefield__btn svg { width: 17px; height: 17px; color: var(--gold-lt); flex: none; }
.datefield.is-open .datefield__btn { border-color: var(--gold); background: rgba(250, 246, 239, .08); }

.cal {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: auto;
    max-width: 420px;
    background: #191610;
    border: 1px solid rgba(230, 205, 133, .3);
    box-shadow: 0 30px 70px -28px rgba(0, 0, 0, .95);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .28s var(--ease), transform .34s var(--ease-out), visibility .28s;
}
.datefield.is-open .cal { opacity: 1; visibility: visible; transform: none; }
.cal--up { top: auto; bottom: calc(100% + 8px); }

.cal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .85rem;
}
.cal__title {
    font-family: var(--font-d);
    font-size: 1.16rem;
    letter-spacing: .04em;
    color: var(--text-inv);
}
.cal__nav {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border: 1px solid rgba(230, 205, 133, .22);
    background: transparent;
    color: var(--gold-lt);
    border-radius: 50%;
    cursor: pointer;
    transition: all .26s var(--ease);
}
.cal__nav:hover:not(:disabled) { background: var(--gold-lt); color: var(--ink); }
.cal__nav:disabled { opacity: .25; cursor: not-allowed; }
.cal__nav svg { width: 14px; height: 14px; }

.cal__dow, .cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal__dow span {
    text-align: center;
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .4);
    padding-block: .45rem;
}
.cal__grid button {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 2px;
    color: rgba(246, 241, 232, .86);
    font-size: .88rem;
    font-weight: 300;
    cursor: pointer;
    transition: all .2s var(--ease);
}
.cal__grid button:hover:not(:disabled) { border-color: var(--gold); color: #fff; }
.cal__grid button:disabled { color: rgba(246, 241, 232, .18); cursor: not-allowed; }
.cal__grid button.is-today { color: var(--gold-lt); font-weight: 500; }
.cal__grid button.is-today::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gold);
}
.cal__grid button.is-sel {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 400;
}
.cal__grid .pad { visibility: hidden; }

.cal__quick {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid rgba(230, 205, 133, .16);
}
.cal__quick button {
    flex: 1;
    padding: .5rem .6rem;
    background: transparent;
    border: 1px solid rgba(230, 205, 133, .2);
    color: rgba(246, 241, 232, .7);
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all .26s var(--ease);
    white-space: nowrap;
}
.cal__quick button:hover { border-color: var(--gold); color: var(--gold-lt); }

/* live message preview */
.preview {
    margin-top: 1.5rem;
    border: 1px dashed rgba(230, 205, 133, .28);
    background: rgba(31, 170, 83, .06);
    padding: 1rem 1.1rem;
}
.preview__lab {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .6rem;
}
.preview__lab svg { width: 13px; height: 13px; color: #38d16f; }
.preview pre {
    margin: 0;
    font-family: var(--font-u);
    font-size: .85rem;
    font-weight: 300;
    line-height: 1.68;
    color: rgba(246, 241, 232, .82);
    white-space: pre-wrap;
    word-break: break-word;
}

.err {
    display: none;
    margin-top: .55rem;
    font-size: .78rem;
    color: #ff9b8a;
    letter-spacing: .02em;
}
.field.has-err .err { display: block; }
.field.has-err .inp,
.field.has-err .datefield__btn { border-color: #d9614c; }

.book-aside .lede { color: rgba(246, 241, 232, .74); }
.steps { list-style: none; margin: 2.2rem 0 0; padding: 0; }
.steps li {
    display: flex;
    gap: 1.1rem;
    padding-bottom: 1.5rem;
    position: relative;
}
.steps li::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 4px;
    width: 1px;
    background: rgba(230, 205, 133, .22);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::before { display: none; }
.steps b {
    flex: none;
    width: 35px; height: 35px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-u);
    font-size: .84rem;
    font-weight: 400;
    color: var(--gold-lt);
    background: var(--ink);
}
.steps p { color: rgba(246, 241, 232, .76); font-size: .95rem; margin: 0; padding-top: .3rem; }
.steps p strong { color: var(--text-inv); font-weight: 400; display: block; }

.callout {
    margin-top: 2.2rem;
    padding: 1.4rem 1.5rem;
    border-left: 2px solid var(--gold);
    background: rgba(230, 205, 133, .06);
}
.callout span {
    display: block;
    font-size: .64rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .4rem;
}
.callout a {
    font-family: var(--font-d);
    font-size: 1.75rem;
    color: #fff;
    letter-spacing: .02em;
    transition: color .3s var(--ease);
}
.callout a:hover { color: var(--gold-lt); }

/* ---------- 15 · reviews ------------------------------------------------ */
.rev {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1.6rem, 4vw, 3.5rem);
    padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.6rem, 4vw, 3rem);
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
}
.rev__score { text-align: center; }
.rev__score b {
    display: block;
    font-family: var(--font-d);
    font-size: clamp(3rem, 6vw, 4.4rem);
    font-weight: 300;
    line-height: 1;
    color: var(--gold-dk);
}
.rev__score .stars { color: var(--gold); font-size: 1rem; letter-spacing: .16em; display: block; margin-top: .35rem; }
.rev__score span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.rev__txt h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: .5rem; }
.rev__txt p { color: var(--muted); font-size: .97rem; margin: 0; }
.rev__div { width: 1px; align-self: stretch; background: var(--line-soft); }

/* ---------- 16 · visit -------------------------------------------------- */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}
.map-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 5 / 4;
    display: block;
    background: var(--cream-2);
}
.map-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.map-card:hover img { transform: scale(1.05); }
.map-card__pin {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 10px rgba(201, 162, 39, .22), 0 12px 26px -10px rgba(0, 0, 0, .6);
    animation: pin 2.4s var(--ease) infinite;
}
.map-card__pin svg { width: 22px; height: 22px; }
@keyframes pin {
    0%, 100% { box-shadow: 0 0 0 10px rgba(201, 162, 39, .22), 0 12px 26px -10px rgba(0, 0, 0, .6); }
    50% { box-shadow: 0 0 0 20px rgba(201, 162, 39, 0), 0 12px 26px -10px rgba(0, 0, 0, .6); }
}
.map-card__bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.1rem 1.3rem;
    background: linear-gradient(transparent, rgba(20, 18, 14, .92));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.map-card__bar svg { width: 15px; height: 15px; color: var(--gold-lt); }

.info { display: grid; gap: 0; align-content: start; }
.info__row {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 1.4rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: start;
}
.info__row:first-child { padding-top: 0; }
.info__row dt {
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-dk);
    padding-top: .35rem;
}
.info__row dd { margin: 0; font-size: 1rem; line-height: 1.65; }
.info__row dd small { display: block; font-size: .78rem; color: var(--muted); letter-spacing: .03em; }
.info__row a { transition: color .28s var(--ease); border-bottom: 1px solid transparent; }
.info__row a:hover { color: var(--gold-dk); border-bottom-color: var(--line); }
.info__row .big {
    font-family: var(--font-d);
    font-size: 1.6rem;
    letter-spacing: .02em;
}

.socials { display: flex; gap: .5rem; }
.socials a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
    color: var(--muted);
    transition: all .3s var(--ease);
}
.socials a:hover { background: var(--ink); border-color: var(--ink); color: var(--gold-lt); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

/* ---------- 17 · cta band ----------------------------------------------- */
.band {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    text-align: center;
}
.band__bg { position: absolute; inset: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.band__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 18, 14, .9) 0%, rgba(20, 18, 14, .66) 45%, rgba(20, 18, 14, .92) 100%);
}
.band .wrap { position: relative; z-index: 1; }
.band h2 { color: #fff; margin-bottom: 1rem; }
.band p { color: rgba(246, 241, 232, .76); max-width: 56ch; margin: 0 auto 2.2rem; }
.band .btn-row { justify-content: center; }

/* ---------- 18 · footer ------------------------------------------------- */
.footer {
    background: #0f0d0a;
    color: rgba(246, 241, 232, .62);
    padding-top: clamp(3.4rem, 6vw, 5rem);
    font-size: .9rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(2.6rem, 4vw, 3.6rem);
}
.footer h4 {
    font-family: var(--font-u);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.15rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .68rem; }
.footer a { transition: color .26s var(--ease); }
.footer a:hover { color: var(--gold-lt); }
.footer__about p { color: rgba(246, 241, 232, .58); margin-top: 1.2rem; max-width: 34ch; }
.footer__bar {
    border-top: 1px solid rgba(230, 205, 133, .12);
    padding-block: 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: rgba(246, 241, 232, .45);
}

/* ---------- 19 · floating ----------------------------------------------- */
.fab {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 110;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .85rem 1.05rem;
    background: #1faa53;
    color: #fff;
    border-radius: 100px;
    box-shadow: 0 16px 34px -12px rgba(31, 170, 83, .6);
    transform: translateY(90px);
    opacity: 0;
    transition: transform .55s var(--ease-out), opacity .4s var(--ease), box-shadow .3s var(--ease);
}
.fab.is-in { transform: none; opacity: 1; }
.fab:hover { box-shadow: 0 20px 40px -12px rgba(31, 170, 83, .8); }
.fab svg { width: 24px; height: 24px; flex: none; }
.fab b {
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.fab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, .4);
    animation: fabPulse 2.6s var(--ease) infinite;
}
@keyframes fabPulse {
    0% { transform: scale(1); opacity: .7; }
    70%, 100% { transform: scale(1.28); opacity: 0; }
}

/* mobile sticky action bar */
.dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 108;
    display: none;
    background: rgba(20, 18, 14, .97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(230, 205, 133, .18);
    padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform .5s var(--ease-out);
}
.dock.is-in { transform: none; }
.dock__in { display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: .4rem; }
.dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    padding: .6rem .3rem;
    border-radius: 3px;
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, .82);
    border: 1px solid rgba(230, 205, 133, .2);
}
.dock a svg { width: 17px; height: 17px; }
.dock a.is-wa { background: #1faa53; border-color: #1faa53; color: #fff; }
.dock a.is-gold { background: var(--gold); border-color: var(--gold); color: #fff; }

.back-top {
    position: fixed;
    left: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 105;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(250, 246, 239, .9);
    color: var(--gold-dk);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .4s var(--ease-out);
}
.back-top.is-in { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--ink); color: var(--gold-lt); border-color: var(--ink); }
.back-top svg { width: 16px; height: 16px; }

/* ---------- 20 · motion ------------------------------------------------- */
[data-rv] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s var(--ease-out), transform .95s var(--ease-out);
    transition-delay: var(--d, 0ms);
}
[data-rv].is-in { opacity: 1; transform: none; }
[data-rv="fade"] { transform: none; }
[data-rv="left"] { transform: translateX(-28px); }
[data-rv="right"] { transform: translateX(28px); }
[data-rv="zoom"] { transform: scale(.96); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    [data-rv] { opacity: 1 !important; transform: none !important; }
}

/* ---------- 21 · responsive --------------------------------------------- */
@media (max-width: 1100px) {
    .gal { grid-template-columns: repeat(3, 1fr); }
    .gal.is-clamped .gal__item:nth-child(n + 6) { display: none; }
    .assure { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
    :root { --hdr-h: 70px; }
    .nav,
    .header__cta .btn,
    .header__cta .icon-btn { display: none; }
    .burger { display: block; }
    .brand__name { font-size: 1.18rem; letter-spacing: .09em; }
    .brand__mark { width: 34px; height: 34px; }
    .topbar { display: none; }

    .venue-grid,
    .book-grid,
    .visit-grid { grid-template-columns: 1fr; }
    .venue-grid { gap: clamp(4rem, 12vw, 6rem); }
    .figs { max-width: 560px; margin-inline: auto; }
    .figs__sub { width: 46%; right: -4%; bottom: -6%; }

    .pkg-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
    .stats-wrap { margin-top: calc(var(--sect) * -.3); }

    .rev { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .rev__div { display: none; }

    .book-aside { order: -1; }
    .dock { display: block; }
    .fab { display: none; }
    .back-top { display: none; }
    .footer { padding-bottom: 76px; }
    .hero__scroll { display: none; }
    .hero { min-height: auto; }
    .hero__scrim {
        background: linear-gradient(180deg, rgba(20, 18, 14, .8) 0%, rgba(20, 18, 14, .5) 28%, rgba(20, 18, 14, .6) 60%, rgba(20, 18, 14, .94) 100%);
    }
    .sect-top { align-items: stretch; }
    .sect-top > .btn { width: 100%; }
    .hero__in { padding-block: clamp(2.5rem, 8vw, 4rem) clamp(3rem, 9vw, 5rem); }
    .map-card { aspect-ratio: 4 / 3; }
}

@media (max-width: 700px) {
    :root { --gutter: 20px; }

    /* filters scroll sideways instead of stacking into four rows */
    .filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(var(--gutter) * -1);
        padding-inline: var(--gutter);
        padding-bottom: 4px;
    }
    .filters::-webkit-scrollbar { display: none; }
    .filters button { flex: none; scroll-snap-align: start; }
    .gal { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gal.is-clamped .gal__item:nth-child(n + 6) { display: none; }
    .assure { grid-template-columns: repeat(2, 1fr); }
    .mini-facts { grid-template-columns: 1fr; }
    .mini-facts div { display: flex; align-items: baseline; gap: .8rem; }
    .mini-facts span { margin-top: 0; }
    .two { grid-template-columns: 1fr; }
    .ticks--2 { grid-template-columns: 1fr; }
    .hero__facts { gap: 1.1rem 1.8rem; }
    .hero .btn { flex: 1 1 100%; }
    .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .info__row { grid-template-columns: 1fr; gap: .4rem; }
    .info__row dt { padding-top: 0; }
    .lb__nav { width: 42px; height: 42px; }
    .lb__nav--prev { left: .4rem; }
    .lb__nav--next { right: .4rem; }
    .cal { width: 100%; }
}

@media (max-width: 420px) {
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line-soft); }
    .stat:last-child { border-bottom: 0; }
    .filters button { padding: .58rem .9rem; font-size: .66rem; }
}


@media (max-width: 400px) {
    .brand__name { font-size: 1.02rem; letter-spacing: .06em; }
    .brand__sub { letter-spacing: .3em; font-size: .52rem; }
    .brand { gap: .6rem; }
}

/* print — keep it civil */
@media print {
    .header, .drawer, .fab, .dock, .back-top, .progress, .ticker, .hero__scroll { display: none !important; }
    body { background: #fff; color: #000; }
    .on-ink, .book, .band { background: #fff !important; color: #000 !important; }
}
