/* ==========================================================================
   Marinez — "Heraldik Akdeniz" theme
   Emerald sea-green + brand gold + warm limestone.
   Display: Fraunces (optical serif) · Body: Hanken Grotesk.
   Re-skin the whole site by editing the tokens below or shipping a new theme.
   ========================================================================== */
:root {
    --emerald: #0B3A34;
    --emerald-deep: #082B27;
    --emerald-soft: #14534B;
    --gold: #c9a24b;
    --gold-lt: #e7cc86;
    --limestone: #f4efe6;
    --paper: #fbf9f4;
    --ink: #1c2a26;
    --ink-soft: #5a6660;
    --on-dark: #efe9dc;
    --on-dark-soft: rgba(239, 233, 220, .72);

    --line: rgba(28, 42, 38, .14);
    --line-gold: rgba(201, 162, 75, .55);
    --gold-foil: linear-gradient(120deg, #b78f3c 0%, #e7cc86 45%, #c9a24b 70%, #efd89b 100%);

    --f-display: "Fraunces", Georgia, serif;
    --f-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 2.75rem);
    --radius: 4px;
    --radius-lg: 6px;
    --shadow: 0 30px 70px -40px rgba(8, 43, 39, .55);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --header-h: 92px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--f-display);
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.06;
    letter-spacing: -0.015em;
    margin: 0;
}

p {
    margin: 0;
}

::selection {
    background: var(--gold);
    color: var(--emerald-deep);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

[id] {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--emerald);
    color: #fff;
    padding: .8rem 1.25rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

/* ---------- Layout primitives ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow {
    max-width: 820px;
}

.section {
    padding-block: clamp(4rem, 9vw, 8.5rem);
    position: relative;
}

.section--dark {
    background: var(--emerald);
    color: var(--on-dark);
}

.section--deep {
    background: var(--emerald-deep);
    color: var(--on-dark);
}

.section--stone {
    background: var(--limestone);
}

.section--tight {
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--deep h1,
.section--deep h2,
.section--deep h3 {
    color: var(--paper);
}

/* Eyebrow + gold rule system (the connective "horizon" motif) */
.eyebrow {
    font-family: var(--f-body);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1.25rem;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--line-gold);
}

.eyebrow--center {
    justify-content: center;
}

.eyebrow--center::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--line-gold);
}

.heading {
    font-size: clamp(2rem, 4.4vw, 3.6rem);
}

.heading--xl {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--ink-soft);
    line-height: 1.75;
}

.section--dark .lead,
.section--deep .lead {
    color: var(--on-dark-soft);
}

.measure {
    max-width: 60ch;
}

.rule-gold {
    height: 1px;
    background: var(--line-gold);
    border: 0;
}

/* Heraldic seal — quiet recurring crest mark at section seams */
.seal {
    display: block;
    margin: 0 auto;
    width: 46px;
    opacity: .9;
}

.seal--seam {
    margin-block: clamp(2rem, 5vw, 3.5rem);
}

/* ---------- Buttons ---------- */
.btn {
    --btn-fg: var(--emerald-deep);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 1rem 1.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold);
    color: var(--emerald-deep);
}

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

.btn--outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--emerald-deep);
}

.btn--ghost-light {
    background: transparent;
    border-color: rgba(239, 233, 220, .5);
    color: var(--on-dark);
}

.btn--ghost-light:hover {
    background: var(--paper);
    color: var(--emerald-deep);
    border-color: var(--paper);
}

.btn--ink {
    background: var(--emerald);
    color: var(--paper);
}

.btn--ink:hover {
    background: var(--emerald-deep);
    color: #fff;
}

.link-gold {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--gold);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.link-gold span {
    transition: transform .35s var(--ease);
}

.link-gold:hover span {
    transform: translateX(5px);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    height: 35px;
    width: auto;
    transition: height .4s var(--ease);
}

/* Header text/marks stay light: the bar is always dark (transparent over the
   hero, emerald when scrolled or on pages without a hero). */
.site-nav__link,
.lang__btn,
.site-header__phone {
    color: var(--on-dark);
}

/* transparent over hero (top of page) */
body.has-hero .site-header {
    background: linear-gradient(180deg, rgba(8, 43, 39, .55), rgba(8, 43, 39, 0));
}

/* solid bar: scrolled, or pages without a hero */
.site-header.is-stuck,
body.has-hero .site-header.is-stuck,
body.no-hero .site-header {
    background: var(--emerald-deep);
    height: 74px;
    box-shadow: 0 14px 40px -26px rgba(0, 0, 0, .75);
    border-bottom: 1px solid rgba(201, 162, 75, .20);
}

.site-nav__list {
    display: flex;
    gap: 2.1rem;
}

.site-nav__link {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    position: relative;
    padding: .4rem 0;
    transition: color .3s var(--ease);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .35s var(--ease);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    width: 100%;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--gold) !important;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-header__phone {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    white-space: nowrap;
}

/* Language switch */
.lang {
    position: relative;
}

.lang__btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem;
}

.lang__menu {
    position: absolute;
    right: 0;
    top: 150%;
    min-width: 168px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s var(--ease);
}

.lang.is-open .lang__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang__item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .75rem;
    font-size: .85rem;
    color: var(--ink);
    letter-spacing: .02em;
    text-transform: none;
}

.lang__item:hover,
.lang__item.is-active {
    background: var(--limestone);
    color: var(--emerald);
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 22px;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: currentColor;
    transition: .3s var(--ease);
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 10px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

.nav-toggle {
    color: var(--on-dark);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    color: var(--on-dark);
    overflow: hidden;
    background: var(--emerald-deep);
}

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

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;

}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}



.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 43, 39, .50) 0%, rgba(8, 43, 39, .30) 40%, rgba(8, 43, 39, .90) 100%),
        linear-gradient(90deg, rgba(8, 43, 39, .55) 0%, rgba(8, 43, 39, .10) 55%, transparent 100%);
}

.hero__inner {
    position: relative;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--gutter) clamp(3.5rem, 8vw, 6.5rem);
}

.hero__crest {
    height: 130px;
    margin-bottom: 1.6rem;
}

.hero__title {
    color: var(--paper);
    font-size: clamp(2.8rem, 7vw, 6rem);
    max-width: 16ch;
}

.hero__title em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero__sub {
    margin-top: 1.6rem;
    max-width: 46ch;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    color: rgba(239, 233, 220, .9);
}

.hero__actions {
    margin-top: 2.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: .5rem;
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--on-dark-soft);
}

.hero__scroll::after {
    content: "";
    width: 1px;
    height: 38px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollcue 2.2s var(--ease) infinite;
}

@keyframes scrollcue {
    0% {
        transform: scaleY(.3);
        transform-origin: top;
        opacity: .3;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

    100% {
        transform: scaleY(.3);
        transform-origin: bottom;
        opacity: .3;
    }
}

/* ---------- Statement / intro ---------- */
.statement {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.statement__title {
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

.statement__title em {
    font-style: italic;
    color: var(--gold);
}

.statement__body {
    margin-top: 1.6rem;
}

.statement__body p+p {
    margin-top: 1rem;
}

.statement__figure {
    position: relative;
}

.statement__figure img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.statement__figure img+img {
    display: none;
}

.statement__badge {
    position: absolute;
    inset: auto -1.4rem -1.4rem auto;
    background: var(--gold);
    color: var(--emerald-deep);
    padding: 1rem 1.3rem;
    max-width: 180px;
    font-family: var(--f-display);
    font-size: 1.5rem;
    line-height: 1.05;
    box-shadow: var(--shadow);
}

.statement__badge span {
    display: block;
    font-family: var(--f-body);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: .35rem;
    font-weight: 600;
}

/* ---------- Facts strip ---------- */
.facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fact {
    padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(201, 162, 75, .22);
}

.fact:last-child {
    border-right: 0;
}

.fact__value {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gold-lt);
}

.fact__label {
    margin-top: .4rem;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--on-dark-soft);
}

/* ---------- Rooms (editorial alternating) ---------- */
.section__head {
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.section__head--left {
    margin-inline: 0;
    text-align: left;
}

.rooms {
    display: grid;
    gap: clamp(3rem, 7vw, 6rem);
}

.room {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.room:nth-child(even) .room__media {
    order: 2;
}

.room__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.room__media img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.room:hover .room__media img {
    transform: scale(1.05);
}

/* Room carousel */
.room__carousel {
    position: relative;
}

.room__carousel-track {
    display: flex;
    transition: transform .6s var(--ease);
    will-change: transform;
}

.room__carousel-track img {
    flex: 0 0 100%;
    min-width: 0;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.room__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s, background .2s;
    backdrop-filter: blur(4px);
}

.room__carousel:hover .room__carousel-btn {
    opacity: 1;
}

.room__carousel-prev { left: .75rem; }
.room__carousel-next { right: .75rem; }

.room__carousel-btn:hover {
    background: rgba(0, 0, 0, .6);
}

.room__carousel-dots {
    position: absolute;
    bottom: .8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .4rem;
    z-index: 2;
}

.room__carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.room__carousel-dot.is-active {
    background: var(--gold);
    transform: scale(1.35);
}

.room__index {
    font-family: var(--f-display);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: .1em;
}

.room__title {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    margin: .4rem 0 1rem;
}

.room__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.4rem;
    margin: 1.2rem 0 1.6rem;
}

.room__meta li {
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.room__meta li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ---------- Experiences (tabbed) ---------- */
.exp__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 2.5rem;
    justify-content: center;
    border-bottom: 1px solid rgba(201, 162, 75, .25);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.exp__tab {
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    color: var(--on-dark-soft);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 0 0 1.1rem;
    position: relative;
    transition: color .3s var(--ease);
}

.exp__tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width .35s var(--ease);
}

.exp__tab.is-active {
    color: var(--paper);
}

.exp__tab.is-active::after {
    width: 100%;
}

.exp__panel {
    display: none;
}

.exp__panel.is-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    animation: fade .5s var(--ease);
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.exp__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.exp__title {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    margin-bottom: 1rem;
}

.exp__list {
    margin-top: 1.5rem;
    display: grid;
    gap: .7rem;
}

.exp__list li {
    display: flex;
    gap: .8rem;
    align-items: baseline;
    color: var(--on-dark-soft);
}

.exp__list li::before {
    content: "✦";
    color: var(--gold);
    font-size: .8rem;
}

/* ---------- Gallery ---------- */
.gallery__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery__filter {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-soft);
    padding: .65rem 1rem;
    font: inherit;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.gallery__filter:hover,
.gallery__filter.is-active {
    color: var(--paper);
    border-color: var(--emerald);
    background: var(--emerald);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.75rem, 1.5vw, 1.15rem);
}

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

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

.gallery__item:hover img {
    transform: scale(1.07);
}

.gallery__item[hidden] {
    display: none;
}

.gallery__more {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(8, 43, 39, .94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem) clamp(3.75rem, 7vw, 6rem);
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    display: block;
    max-width: min(100%, 1200px);
    max-height: 82vh;
    border-radius: var(--radius);
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.lightbox__figure {
    margin: 0;
    display: grid;
    justify-items: center;
    gap: .8rem;
    max-width: 100%;
}

.lightbox__counter {
    color: var(--on-dark-soft);
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lightbox__nav,
.lightbox__close {
    display: grid;
    place-items: center;
    border: 1px solid rgba(239, 233, 220, .28);
    background: rgba(8, 43, 39, .42);
    color: var(--paper);
    cursor: pointer;
    transition: background .25s var(--ease), border-color .25s var(--ease);
}

.lightbox__nav:hover,
.lightbox__close:hover {
    background: var(--emerald);
    border-color: var(--gold);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.lightbox__nav[hidden] {
    display: none;
}

.lightbox__prev {
    left: clamp(.75rem, 2vw, 2rem);
}

.lightbox__next {
    right: clamp(.75rem, 2vw, 2rem);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
}

/* ---------- Promo modal ---------- */
.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
}

.promo-modal.is-open {
    display: flex;
}

.promo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 43, 39, .72);
    cursor: pointer;
}

.promo-modal__panel {
    position: relative;
    width: min(100%, 460px);
    max-height: 90vh;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 90px -30px rgba(8, 43, 39, .6);
    transform: translateY(12px);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.promo-modal.is-open .promo-modal__panel {
    transform: translateY(0);
    opacity: 1;
}

.promo-modal__panel a,
.promo-modal__panel img {
    display: block;
}

.promo-modal__panel img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.promo-modal__close {
    position: absolute;
    top: .7rem;
    right: .7rem;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(239, 233, 220, .4);
    border-radius: 50%;
    background: rgba(8, 43, 39, .55);
    color: var(--paper);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background .25s var(--ease), border-color .25s var(--ease);
}

.promo-modal__close:hover {
    background: var(--emerald);
    border-color: var(--gold);
}

/* ---------- Location ---------- */
.loc {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}

.loc__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc__list {
    margin: 1.8rem 0;
    display: grid;
    gap: 1.3rem;
}

.loc__list li {
    display: grid;
    gap: .25rem;
}

.loc__list strong {
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

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

.loc__social {
    display: flex;
    gap: 1.2rem;
    margin-top: .5rem;
}

.loc__social a {
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
}

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

.loc__map {
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

.loc__map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    filter: saturate(.9);
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    background-size: cover;
    background-position: center;
    padding-block: clamp(4rem, 9vw, 7rem);
    color: var(--on-dark);
    text-align: center;
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(8, 43, 39, .38) 0%, rgba(8, 43, 39, .52) 58%, rgba(8, 43, 39, .68) 100%),
        linear-gradient(180deg, rgba(8, 43, 39, .20), rgba(8, 43, 39, .42));
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
}

.cta-band__title {
    color: var(--paper);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.cta-band__lead {
    margin: 1rem auto 2rem;
    color: rgba(239, 233, 220, .85);
}

/* ---------- Page header (sub pages) ---------- */
.pagehead {
    position: relative;
    padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
    background-size: cover;
    background-position: center;
    color: var(--on-dark);
}

.pagehead::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 43, 39, .62) 0%, rgba(8, 43, 39, .36) 58%, rgba(8, 43, 39, .24) 100%),
        linear-gradient(180deg, rgba(8, 43, 39, .18), rgba(8, 43, 39, .46));
}

.pagehead__inner {
    position: relative;
    z-index: 1;
}

.pagehead__title {
    color: var(--paper);
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.crumbs {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--on-dark-soft);
    margin-bottom: 1rem;
}

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

.crumbs li+li::before {
    content: "/";
    margin-right: .6rem;
    opacity: .5;
}

/* ---------- Room detail (media + spec) ---------- */
.detail {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.detail__body p {
    color: var(--ink-soft);
}

.detail__spec {
    background: var(--limestone);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-top: 2px solid var(--gold);
}

.detail__spec h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.spec-list {
    display: grid;
    gap: .65rem;
}

.spec-list li {
    display: flex;
    gap: .7rem;
    align-items: baseline;
    font-size: .95rem;
}

.spec-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: .75rem;
}

.detail__times {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.detail__time {
    font-size: .9rem;
    color: var(--ink-soft);
}

.detail__time strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--ink);
}

.media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.media--flip .media__fig {
    order: 2;
}

.media__fig img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--emerald-deep);
    color: var(--on-dark-soft);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem clamp(2rem, 5vw, 4rem);
    padding-bottom: 3.5rem;
}

.site-footer__crest {
    width: 56px;
    margin-bottom: 1.2rem;
}

.site-footer__tag {
    max-width: 36ch;
    color: var(--on-dark-soft);
}

.site-footer h4 {
    color: var(--paper);
    font-family: var(--f-body);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.site-footer__links {
    display: grid;
    gap: .7rem;
}

.site-footer a:hover {
    color: var(--gold);
}

.site-footer__contact {
    font-style: normal;
    display: grid;
    gap: .6rem;
}

.site-footer__social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.site-footer__social a {
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
}

.site-footer__bottom {
    border-top: 1px solid rgba(239, 233, 220, .12);
    padding-block: 1.5rem;
    font-size: .82rem;
}

.site-footer__bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {

    .rez__button {
        display: none !important;
    }

    .statement,
    .loc,
    .detail,
    .media,
    .exp__panel.is-active,
    .room {
        grid-template-columns: 1fr;
    }

    .room:nth-child(even) .room__media {
        order: 0;
    }

    .media--flip .media__fig {
        order: 0;
    }

    .facts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact:nth-child(2) {
        border-right: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: block;
        z-index: 2;
    }

    .site-nav,
    .site-header__phone {
        display: none;
    }

    .site-nav.is-open {
        display: grid;
        place-items: center;
        position: fixed;
        inset: 0;
        z-index: 1;
        min-height: 100dvh;
        background:
            radial-gradient(circle at 82% 18%, rgba(201, 162, 75, .14), transparent 30rem),
            var(--emerald-deep);
        padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
        overflow-y: auto;
    }

    .site-header .brand,
    .site-header__actions {
        position: relative;
        z-index: 2;
    }

    .site-nav.is-open .site-nav__list {
        width: min(100%, 680px);
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .site-nav.is-open .site-nav__link {
        display: block;
        color: var(--on-dark) !important;
        font-family: var(--f-display);
        font-size: clamp(1.7rem, 5vw, 3rem);
        text-transform: none;
        letter-spacing: 0;
        padding: clamp(.65rem, 1.8vh, 1rem) 0;
        border-bottom: 1px solid rgba(239, 233, 220, .14);
    }

    .site-nav.is-open .site-nav__link:hover,
    .site-nav.is-open .site-nav__link.is-active {
        color: var(--gold-lt) !important;
    }

    .site-nav.is-open .site-nav__link::after {
        display: none;
    }

    .site-nav.is-open~.site-header__actions .nav-toggle span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .site-nav.is-open~.site-header__actions .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-nav.is-open~.site-header__actions .nav-toggle span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statement__badge {
        position: static;
        margin-top: 1rem;
        max-width: none;
        display: inline-block;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 520px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .lightbox {
        padding-inline: 1rem;
        padding-bottom: 5rem;
    }

    .lightbox__nav {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .lightbox__prev {
        left: calc(50% - 58px);
    }

    .lightbox__next {
        right: calc(50% - 58px);
    }

    .facts__grid {
        grid-template-columns: 1fr;
    }

    .fact {
        border-right: 0;
        border-bottom: 1px solid rgba(201, 162, 75, .22);
    }

    .fact:last-child {
        border-bottom: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- WhatsApp contact ---------- */
.contact-widget {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .7rem 1rem .7rem .7rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    box-shadow: 0 16px 42px -16px rgba(8, 43, 39, .7);
    transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.contact-widget--whatsapp {
    right: max(1.25rem, env(safe-area-inset-right));
    background: #1f9d5a;
}

.contact-widget--phone {
    left: max(1.25rem, env(safe-area-inset-left));
    background: var(--emerald);
}

.contact-widget:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 48px -16px rgba(8, 43, 39, .8);
}

.contact-widget--whatsapp:hover {
    background: #16894c;
}

.contact-widget--phone:hover {
    background: var(--emerald-soft);
}

.contact-widget__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.contact-widget__icon svg {
    width: 27px;
    height: 27px;
}

.contact-widget__text {
    display: grid;
    line-height: 1.15;
}

.contact-widget__text small {
    margin-bottom: .2rem;
    font-size: .68rem;
    opacity: .78;
}

.contact-widget__text strong {
    font-size: .82rem;
    letter-spacing: .02em;
}

@media (max-width: 520px) {
    .contact-widget {
        bottom: max(1rem, env(safe-area-inset-bottom));
        padding: .65rem;
    }

    .contact-widget--whatsapp {
        right: max(1rem, env(safe-area-inset-right));
    }

    .contact-widget--phone {
        left: max(1rem, env(safe-area-inset-left));
    }

    .contact-widget__text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

/* ---------- Scroll-driven motion ---------- */
.has-scroll-reveal .scroll-reveal {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity .75s var(--ease) var(--reveal-delay),
        transform .85s var(--ease) var(--reveal-delay);
    will-change: opacity, transform;
}

.has-scroll-reveal .scroll-reveal.scroll-reveal--image {
    transform: translate3d(0, 34px, 0) scale(.975);
}

.has-scroll-reveal .scroll-reveal.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

.has-scroll-reveal .room:nth-child(even) .room__media.scroll-reveal,
.has-scroll-reveal .media--flip .media__fig.scroll-reveal {
    transform: translate3d(28px, 0, 0) scale(.975);
}

.has-scroll-reveal .room:nth-child(odd) .room__media.scroll-reveal,
.has-scroll-reveal .media:not(.media--flip) .media__fig.scroll-reveal,
.has-scroll-reveal .statement__figure.scroll-reveal {
    transform: translate3d(-28px, 0, 0) scale(.975);
}

.has-scroll-reveal .room__media.scroll-reveal.is-revealed,
.has-scroll-reveal .media__fig.scroll-reveal.is-revealed,
.has-scroll-reveal .statement__figure.scroll-reveal.is-revealed {
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- Documents / downloads ---------- */
.docs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.doc {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.6rem);
    height: 100%;
    padding: clamp(1.3rem, 3vw, 1.9rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    color: var(--ink);
    text-decoration: none;
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.doc:hover,
.doc:focus-visible {
    border-color: var(--line-gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.doc__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--limestone);
    color: var(--emerald);
}

.doc__body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    min-width: 0;
}

.doc__title {
    font-family: var(--f-display);
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--emerald);
}

.doc__text {
    font-size: .9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.doc__meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .25rem;
}

.doc__type {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold);
    border: 1px solid var(--line-gold);
    border-radius: 2px;
    padding: .1rem .4rem;
}

.doc__langs {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.doc__action {
    flex-shrink: 0;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

@media (max-width: 720px) {
    .docs {
        grid-template-columns: 1fr;
    }

    .doc {
        grid-template-columns: auto 1fr;
    }

    .doc__action {
        display: none;
    }
}
