/* =====================================================================
   Paradisul Transilvaniei — "Quiet Luxury" pool resort
   A fresh, minimalist, mobile-first design system.
   Display: Fraunces · UI/Body: Jost · one restrained gold accent.
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Tokens ---------- */
:root {
    --ink:      #16130D;
    --ink-soft: #2c281f;
    --paper:    #F3EFE6;
    --paper-2:  #FAF7F1;
    --surface:  #FFFFFF;
    --gold:     #aa8453;
    --gold-2:   #8a6c3c;
    --stone:    #6c655a;
    --line:     rgba(22,19,13,0.12);
    --hair:     rgba(22,19,13,0.07);

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-sans: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    --container: 1280px;
    --gutter: clamp(24px, 5vw, 64px);
    --radius: 6px;
    --radius-lg: 12px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --nav-h: 76px;
}

/* ---------- Base ---------- */
body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }

.display {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.7rem, 7.6vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}
.display em { font-style: italic; font-weight: 300; color: var(--gold); }

.h-xl { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; }
.h-lg { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.h-md { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(78px, 11vw, 150px); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--stone); line-height: 1.75; font-weight: 300; max-width: 60ch; }
.muted { color: var(--stone); }
.center { text-align: center; }

/* eyebrow — the recurring small label */
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.8; }
.eyebrow.no-rule::before { display: none; }

/* section header block */
.s-head { max-width: 64ch; }
.s-head .display, .s-head .h-xl, .s-head .h-lg { margin-top: 18px; }
.s-head .lead { margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 16px 30px; border-radius: 100px;
    transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--paper-2); }
.btn--solid:hover { background: var(--gold-2); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-2); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* text link with arrow */
.link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink); padding-bottom: 4px; border-bottom: 1px solid var(--line);
    transition: gap .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.link:hover { gap: 16px; border-color: var(--gold); color: var(--gold-2); }
.link svg { width: 16px; height: 16px; }

/* ---------- Top navigation ---------- */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--nav-h); display: flex; align-items: center;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
    display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; color: #fff; transition: color .4s var(--ease); }
.nav__brand .mark { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em; line-height: 1; }
.nav__brand .sub { font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; opacity: .8; }
.nav__links { display: none; align-items: center; gap: 34px; }
.nav__links a {
    font-size: .76rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
    color: #fff; opacity: .9; position: relative; padding: 6px 0;
    transition: opacity .3s var(--ease), color .3s var(--ease);
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width .3s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }

/* solid state after scroll — opaque fallback */
.nav.is-solid { background: var(--paper-2); box-shadow: 0 1px 0 var(--hair), 0 8px 30px rgba(22,19,13,.06); height: 66px; }
.nav.is-solid .nav__brand, .nav.is-solid .nav__links a { color: var(--ink); }
.nav.is-solid .nav__links a { opacity: 1; }
.nav.is-solid .lang__btn { color: var(--ink); border-color: var(--line); }
.nav.is-solid .burger span { background: var(--ink); }
.nav.is-solid .nav__book { color: var(--ink); border-color: var(--line); }
.nav.is-solid .nav__book:hover { background: var(--ink); color: var(--paper-2); border-color: var(--ink); }

/* frosted-glass nav where supported (translucent + blur) */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .nav.is-solid {
        background: rgba(250, 247, 241, 0.72);
        -webkit-backdrop-filter: blur(16px) saturate(1.5);
        backdrop-filter: blur(16px) saturate(1.5);
    }
}

/* language pill */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 8px; color: #fff;
    border: 1px solid rgba(255,255,255,.4); border-radius: 100px; padding: 8px 14px;
    font-size: .72rem; letter-spacing: .08em; transition: border-color .3s var(--ease), background .3s; }
.lang__btn img { width: 18px; height: auto; border-radius: 2px; }
.lang__menu { position: absolute; right: 0; top: calc(100% + 10px); min-width: 170px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 20px 44px rgba(22,19,13,.14); padding: 6px; opacity: 0; visibility: hidden;
    transform: translateY(-6px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 4px;
    font-size: .82rem; color: var(--ink); transition: background .2s; }
.lang__menu a:hover { background: var(--paper); }
.lang__menu img { width: 18px; border-radius: 2px; }

/* burger / mobile */
.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; }
.burger span { display: block; height: 1.5px; width: 100%; background: #fff; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: #fff;
    display: flex; flex-direction: column; overflow-y: auto;
    padding: calc(var(--nav-h) + 12px) var(--gutter) 30px;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.nav-open .drawer { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* keep the bar clean over an open drawer (transparent + white) regardless of scroll */
body.nav-open .nav { background: transparent !important; box-shadow: none !important; height: var(--nav-h) !important; }
body.nav-open .nav__brand { color: #fff !important; }
body.nav-open .nav .burger span { background: #fff !important; }
body.nav-open .nav .lang { display: none; }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { display: block; font-family: var(--font-display); font-weight: 300;
    font-size: clamp(1.4rem, 5.6vw, 1.85rem); letter-spacing: -0.01em; line-height: 1.1;
    padding: 15px 0; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0; transform: translateY(10px);
    transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease); }
.drawer__nav a:first-child { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.drawer__nav a:hover, .drawer__nav a.is-active { color: var(--gold); }
.nav-open .drawer__nav a { opacity: 1; transform: none; }
.nav-open .drawer__nav a:nth-child(1){transition-delay:.07s}.nav-open .drawer__nav a:nth-child(2){transition-delay:.11s}
.nav-open .drawer__nav a:nth-child(3){transition-delay:.15s}.nav-open .drawer__nav a:nth-child(4){transition-delay:.19s}
.nav-open .drawer__nav a:nth-child(5){transition-delay:.23s}.nav-open .drawer__nav a:nth-child(6){transition-delay:.27s}
.nav-open .drawer__nav a:nth-child(7){transition-delay:.31s}.nav-open .drawer__nav a:nth-child(8){transition-delay:.35s}

.drawer__foot { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.drawer__foot .btn { align-self: flex-start; }
.drawer__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.drawer__phone span[class^="flaticon"] { font-size: 17px; color: var(--gold); }
.drawer__langs { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer__langs a { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 100px;
    font-size: .72rem; letter-spacing: .08em; color: rgba(255, 255, 255, 0.72);
    transition: border-color .3s var(--ease), color .3s var(--ease); }
.drawer__langs a img { width: 16px; border-radius: 2px; }
.drawer__langs a:hover, .drawer__langs a.is-active { color: #fff; border-color: rgba(255, 255, 255, 0.5); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(12,9,5,.45) 0%, rgba(12,9,5,.12) 32%, rgba(12,9,5,.78) 100%); }
.hero__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding: 0 var(--gutter) clamp(56px, 10vh, 120px); }
.hero__eyebrow { color: #e9d9bd; }
.hero__eyebrow--stack { flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__eyebrow--stack .hero__place { line-height: 1.85; }
.hero .display { margin-top: 22px; max-width: 16ch; }
.hero__sub { margin-top: 26px; max-width: 46ch; color: rgba(255,255,255,.86); font-size: 1.05rem; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); writing-mode: vertical-rl;
    font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.hero__scroll::after { content: ""; display: block; width: 1px; height: 38px; margin: 12px auto 0; background: rgba(255,255,255,.5); }

/* star rating (reuse macro markup) */
.stars { display: inline-flex; gap: 5px; }
.star-rating { width: 9px; height: 9px; display: inline-block; background: var(--gold);
    clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }

/* ---------- Booking bar ---------- */
.booking { position: relative; z-index: 5; margin-top: -42px; }
.booking__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(22,19,13,.12); padding: 14px;
    display: grid; grid-template-columns: 1fr; gap: 10px; }
.field { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 12px 16px; min-height: 54px; border-radius: var(--radius); background: var(--paper-2); }
.field label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.field input { border: 0; background: none; font-size: 1rem; color: var(--ink); width: 100%; padding: 2px 0; }
.field input::placeholder { color: var(--ink); opacity: .8; }
.booking .btn { width: 100%; }

/* ---------- Editorial split ---------- */
.split { display: grid; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.figure-stack { display: grid; gap: 18px; }

/* index marker e.g. 01 — Wellness */
.index-mark { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.index-mark b { color: var(--ink); font-weight: 500; }

/* ---------- Cards (rooms / offers) ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.card { display: flex; flex-direction: column; }
.card__media { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3.1; }

/* corner tag over room photos */
.badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 13px; border-radius: 100px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: var(--ink);
    font-size: 0.6rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(22, 19, 13, 0.14);
    pointer-events: none;
}
.badge > span[class^="flaticon"], .badge > span[class*=" flaticon"] { font-size: 14px; color: var(--gold); line-height: 1; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.card__title { font-size: 1.5rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--stone); font-size: .85rem; letter-spacing: .02em; }
.card__meta span { display: inline-flex; align-items: center; gap: 7px; }
.card__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.price { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.price small { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }

/* ---------- Amenities (minimal rows) ---------- */
.amenities { display: grid; gap: 0; border-top: 1px solid var(--hair); }
.amenity { display: flex; align-items: center; gap: 16px; padding: 18px 4px; border-bottom: 1px solid var(--hair);
    transition: padding-left .35s var(--ease); }
.amenity:hover { padding-left: 12px; }
.amenity__ic { flex: 0 0 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 23px; transition: transform .35s var(--ease); }
.amenity:hover .amenity__ic { transform: scale(1.12); }
.amenity__ic.custom-icon::before { width: 24px !important; height: 24px !important; background-size: 24px 24px !important; }
.amenity span { font-size: 1rem; color: var(--ink-soft); }

/* ---------- Status chips (pool) ---------- */
.status { display: grid; gap: 14px; }
.status__row { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--radius-lg);
    border: 1px solid var(--line); background: var(--surface); }
.status__dot { flex: 0 0 10px; width: 10px; height: 10px; border-radius: 50%; }
.status__row.is-open .status__dot { background: #4b8f5e; box-shadow: 0 0 0 4px rgba(75,143,94,.16); }
.status__row.is-closed .status__dot { background: #b5524e; box-shadow: 0 0 0 4px rgba(181,82,78,.14); }
.status__row b { font-weight: 500; font-size: 1.05rem; }
.status__row .st { margin-left: auto; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }

/* ---------- Gallery ---------- */
.gallery { columns: 1; column-gap: 16px; }
.gallery a { display: block; margin-bottom: 16px; break-inside: avoid; overflow: hidden; border-radius: var(--radius); }
.gallery img { width: 100%; transition: transform .9s var(--ease), filter .6s var(--ease); }
.gallery a:hover img { transform: scale(1.04); }

/* horizontal scroll-snap rail (rooms / extras on mobile) */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: 80%; gap: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
    margin-inline: calc(var(--gutter) * -1);
    padding-left: var(--gutter); padding-right: var(--gutter);
    scroll-padding-left: calc(var(--gutter) + 14px);
    scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* ---------- Dark band / CTA ---------- */
.band { background: var(--ink); color: var(--paper-2); }
.band .lead, .band .muted { color: rgba(255,255,255,.66); }
.band .eyebrow { color: #d8bf95; }
.band .eyebrow::before { background: #d8bf95; }
.band .amenity { border-color: rgba(255,255,255,.1); }
.band .amenity span { color: rgba(255,255,255,.85); }
.cta-band { text-align: center; }
.cta-band .display { margin-top: 18px; }

/* ---------- Reservation contact line ---------- */
.resv { display: flex; align-items: center; gap: 16px; }
.resv__ic { color: var(--gold); font-size: 26px; line-height: 1; }
.resv p { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.resv a { font-family: var(--font-display); font-size: 1.5rem; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(56px, 8vw, 96px); }
.foot__grid { display: grid; gap: 44px; }
.foot__brand .mark { font-family: var(--font-display); font-size: 1.6rem; color: #fff; }
.foot h4 { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
.foot a:hover { color: #fff; }
.foot__links { display: grid; gap: 10px; }
.foot__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
    display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .78rem; opacity: .65; }

/* ---------- Map ---------- */
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Floating contact ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column; gap: 10px; }
.fab a { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.22); transition: transform .3s var(--ease); }
.fab a:hover { transform: translateY(-3px); }
.fab .wa { background: #25563b; } .fab .ph { background: var(--ink); }
.fab svg { width: 22px; height: 22px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
    .booking__card { grid-template-columns: 1fr 1fr auto; align-items: stretch; }
    .booking .btn { width: auto; padding-inline: 34px; }
    .gallery { columns: 2; }
}
@media (min-width: 768px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--wide-r { grid-template-columns: 5fr 7fr; }
    .split--wide-l { grid-template-columns: 7fr 5fr; }
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .rail { display: grid; grid-auto-flow: initial; grid-template-columns: repeat(3, 1fr); overflow: visible;
        margin-inline: 0; padding-inline: 0; }
    .amenities--2 { grid-template-columns: 1fr 1fr; column-gap: 48px; }
    .foot__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
    .gallery { columns: 3; }
    .status { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
    .nav__links { display: flex; }
    .burger { display: none; }
    .gallery { columns: 4; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Inner page hero ---------- */
.phero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.phero__media { position: absolute; inset: 0; z-index: -2; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero::after { content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(12,9,5,.42) 0%, rgba(12,9,5,.30) 40%, rgba(12,9,5,.68) 100%); }
.phero__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding: 0 var(--gutter) clamp(44px, 7vh, 86px); }
.phero .display { font-size: clamp(2.2rem, 6vw, 4.2rem); margin-top: 14px; }
.phero__eyebrow { color: #e9d9bd; }

/* ---------- Rates panel (pool) ---------- */
.rates { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); }
.rates h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: .04em;
    text-transform: uppercase; color: var(--gold); padding-bottom: 12px; border-bottom: 1px solid var(--hair); margin-bottom: 8px; }
.rates__row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--hair); }
.rates__row:last-child { border-bottom: 0; }
.rates__row b { font-weight: 500; }
.rates + .rates { margin-top: 22px; }

/* ---------- Prose (descriptions / rich text) ---------- */
.prose { color: var(--stone); line-height: 1.85; }
.prose p { margin-bottom: 1em; }
.prose strong, .prose b { color: var(--ink); font-weight: 500; }
.prose h2, .prose h3 { color: var(--ink); margin: 1.2em 0 .4em; }

/* ---------- Extra-services card ---------- */
.xs { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.xs__media { aspect-ratio: 16/10; overflow: hidden; }
.xs__media img { width: 100%; height: 100%; object-fit: cover; }
.xs__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.xs__name { font-family: var(--font-display); font-size: 1.3rem; }
.xs__price { color: var(--gold); font-family: var(--font-display); font-size: 1.5rem; }

/* ---------- Definition meta list (room detail) ---------- */
.meta-list { display: grid; gap: 0; border-top: 1px solid var(--hair); }
.meta-list div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--hair); }
.meta-list dt { color: var(--stone); }
.meta-list dd { font-weight: 400; }

/* ---------- Mobile refinements ---------- */
.nav__inner { min-width: 0; gap: 12px; }
.nav__brand { min-width: 0; flex-shrink: 1; }
.nav__brand .mark { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 48vw; display: block; }
.nav__book { display: none; }            /* Book lives in the drawer on mobile */
.nav__right { gap: 12px; flex-shrink: 0; }
.lang__btn span { display: none; }       /* keep just the flag on small screens */

.hero .display, .phero .display { max-width: 100%; }
.hero__sub { font-size: 1rem; }
.resv { flex-wrap: wrap; }
.resv a { font-size: 1.25rem; }
.s-head { max-width: 100%; }

@media (min-width: 1000px) {
    .nav__brand .mark { font-size: 1.15rem; max-width: none; }
    .nav__book { display: inline-flex; }
    .lang__btn span { display: inline; }
    .hero .display { max-width: 16ch; }
    .resv a { font-size: 1.5rem; }
}

/* booking fields trigger the price calendar */
.checkin_date, .checkout_date { cursor: pointer; }

/* small laptops (≤1024): the brand collides with the horizontal menu, so hide
   the brand and the nav "Book" button while the menu is shown. True mobile
   (<1000, burger menu) keeps the brand. */
@media (min-width: 1000px) and (max-width: 1024px) {
    .nav__brand { display: none; }
    .nav__book { display: none; }
}

/* prevent footer columns / long-text buttons from forcing horizontal overflow */
.foot__grid > div { min-width: 0; }
.foot .btn { white-space: normal; max-width: 100%; }

/* home pool & spa feature rows (01/02): uniform images + alternating layout.
   DOM order is text-first so on mobile the title/text sits above the picture. */
.feature .split__media img { aspect-ratio: 16 / 11; object-fit: cover; }
@media (min-width: 768px) {
    .feature--rev > :first-child { order: 2; }   /* text to the right */
    .feature--rev > :last-child { order: 1; }    /* image to the left */
}

/* ---------- Restaurant menu ---------- */
.menu-wrap { max-width: 1120px; }
.menu-section { margin-top: clamp(48px, 6vw, 84px); }
.menu-section__head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
    padding-bottom: 16px; margin-bottom: 8px; border-bottom: 2px solid var(--ink); }
.menu-section__head h3 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.menu-note { font-family: var(--font-sans); font-size: .68rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold); margin-left: auto; }
.menu-list { display: grid; grid-template-columns: 1fr; gap: 0 clamp(32px, 5vw, 64px); }
.menu-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 6px 18px;
    padding: 15px 0; border-bottom: 1px solid var(--hair); }
.menu-item__info { flex: 1 1 auto; min-width: 0; }
.menu-item__name { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); line-height: 1.2; }
.menu-item__desc { color: var(--stone); font-size: .82rem; line-height: 1.5; margin-top: 4px; }
.menu-item__price { flex: 0 0 auto; text-align: right; font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); white-space: nowrap; }
.menu-item__fam { display: block; margin-top: 3px; font-family: var(--font-sans); font-size: .64rem;
    font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
@media (max-width: 767px) {
    .menu-section__head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .menu-note { margin-left: 0; }
}
.menu-foot { margin-top: clamp(48px, 6vw, 72px); text-align: center; color: var(--stone);
    font-size: .85rem; letter-spacing: .02em; }
/* drinks divider — also the QR anchor target */
.menu-anchor { scroll-margin-top: 92px; text-align: center; margin: clamp(64px, 8vw, 104px) auto clamp(20px, 3vw, 36px);
    padding-top: clamp(40px, 5vw, 60px); border-top: 1px solid var(--line); }
@media (min-width: 768px) {
    .menu-list { grid-template-columns: 1fr 1fr; }
    .menu-list--1 { grid-template-columns: 1fr; max-width: 640px; }
}

/* pizza: two prices. Mobile = stacked on the right (labelled); desktop = two
   aligned columns under a Normal/Family header. */
.menu-list--pz { grid-template-columns: 1fr; }
.menu-pz { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 4px 18px; align-items: baseline; }
.menu-pz__prices { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.menu-pz__col { font-family: var(--font-display); font-size: 1rem; color: var(--gold); white-space: nowrap; }
.menu-pz__lbl { font-family: var(--font-sans); font-size: .56rem; font-weight: 500; letter-spacing: .12em;
    text-transform: uppercase; color: var(--stone); margin-right: 8px; }
.pzh { display: none; }
.menu-pz__g { margin-top: 5px; font-family: var(--font-sans); font-size: .76rem; letter-spacing: .02em; color: var(--stone); }
@media (min-width: 768px) {
    .menu-list--pz { grid-template-columns: 1fr; }
    .menu-pz { grid-template-columns: minmax(0, 1fr) 140px 140px; gap: 0 24px; }
    .menu-pz__prices { display: contents; }
    .menu-pz__col { text-align: right; }
    .menu-pz__lbl { display: none; }
    .menu-head--pz { display: grid; grid-template-columns: minmax(0, 1fr) 140px 140px; gap: 0 24px; align-items: baseline; }
    .pzh { display: block; text-align: right; font-family: var(--font-sans); font-size: .68rem;
        font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
}
