/* ============================================================
   Villa Luisa — design system · "7-star" dark luxury
   ============================================================ */

:root {
    --ink: #0a0a0c;
    --ink-soft: #111114;
    --ink-panel: #141418;
    --ivory: #f4efe6;
    --ivory-dim: rgba(244, 239, 230, 0.72);
    --stone: #9b9ba1;
    --gold: #c6a15b;
    --gold-soft: #ddc08a;
    --line: rgba(244, 239, 230, 0.12);
    --line-gold: rgba(198, 161, 91, 0.35);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --section-pad: clamp(84px, 10vw, 150px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--ink);
    color: var(--ivory);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a2a30; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Layout helpers ---------- */
.container { width: min(1220px, 92%); margin-inline: auto; }

.section { position: relative; padding: var(--section-pad) 0; }
.section--tint { background: var(--ink-soft); }

.kicker {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.display {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.06;
    font-size: clamp(2.3rem, 4.6vw, 4rem);
    letter-spacing: -0.01em;
}

.lead {
    color: var(--ivory-dim);
    font-weight: 300;
    line-height: 1.85;
    font-size: clamp(0.98rem, 1.3vw, 1.08rem);
    max-width: 60ch;
}

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .display { margin: 18px 0 20px; }
.section-head .lead { margin-bottom: 0; }

.section-tag {
    margin-top: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 36px;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--gold);
    transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
    white-space: nowrap;
}

.btn--solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--solid:hover { background: transparent; color: var(--gold); }

.btn--ghost { color: var(--ivory); border-color: rgba(244, 239, 230, 0.35); }
.btn--ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.btn--lg { padding: 20px 48px; font-size: 0.75rem; }

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: var(--ink);
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 26px;
    transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__mono {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--ivory);
}
.preloader__mono span { color: var(--gold); }

.preloader__line {
    width: 70px;
    height: 1px;
    background: var(--line-gold);
    position: relative;
    overflow: hidden;
}
.preloader__line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: preload 1.4s var(--ease) infinite;
}
@keyframes preload {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 1500;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: var(--ivory); }
.cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid var(--ivory);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 30px 0;
    transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    padding: 16px 0;
    background: rgba(10, 10, 12, 0.72);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-color: var(--line);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ivory);
    line-height: 1;
}
.brand__dot { color: var(--gold); }

.nav__links { display: flex; gap: 30px; }
.nav__link {
    position: relative;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    transition: color 0.4s var(--ease);
    padding: 6px 0;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ivory); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

/* "The Villa" dropdown */
.nav__dropdown { position: relative; }
.nav__caret {
    display: inline-block;
    margin-left: 7px;
    font-size: 0.6rem;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
}
.nav__dropbtn { display: inline-flex; align-items: center; }

.nav__dropmenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 200px;
    background: rgba(20, 20, 24, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.nav__dropdown:hover .nav__dropmenu,
.nav__dropdown.is-open .nav__dropmenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown:hover .nav__caret,
.nav__dropdown.is-open .nav__caret { transform: rotate(180deg); }

.nav__dropitem {
    display: block;
    padding: 10px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav__dropitem:hover, .nav__dropitem.is-active { color: var(--gold); padding-left: 22px; }

.nav__actions { display: flex; align-items: center; gap: 22px; }
.nav__book { padding: 12px 24px; }

/* Lang switcher */
.lang { position: relative; }
.lang__btn {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--ivory);
    padding: 8px 0;
}
.lang__caret { font-size: 0.6rem; color: var(--gold); transition: transform 0.3s var(--ease); }
.lang.is-open .lang__caret { transform: rotate(180deg); }

.lang__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 90px;
    background: rgba(20, 20, 24, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
    display: block;
    padding: 8px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--stone);
    transition: color 0.3s;
}
.lang__item:hover, .lang__item.is-active { color: var(--gold); }

.lang--footer { display: flex; gap: 16px; margin-top: 20px; }
.lang--footer .lang__item { padding: 0; }

/* Burger */
.nav__burger { display: none; width: 34px; height: 24px; position: relative; }
.nav__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--ivory);
    transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 11px; }
.nav__burger span:nth-child(3) { top: 18px; }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(8, 8, 10, 0.97);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner { text-align: center; padding: 40px 24px; }
.mobile-menu__close {
    position: absolute;
    top: 28px; right: 30px;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
}
.mobile-menu__links { display: grid; gap: 22px; margin-bottom: 40px; }
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    font-weight: 300;
    color: var(--ivory);
    transition: color 0.3s;
    text-align: center;
}
.mobile-menu__link:hover { color: var(--gold); }

.mobile-drop__btn { display: inline-flex; align-items: center; gap: 10px; }
.mobile-drop__caret { font-size: 0.8rem; color: var(--gold); transition: transform 0.3s var(--ease); }
.mobile-drop.is-open .mobile-drop__caret { transform: rotate(180deg); }

.mobile-drop__menu {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s var(--ease), opacity 0.45s var(--ease), margin-top 0.45s var(--ease);
}
.mobile-drop.is-open .mobile-drop__menu { max-height: 340px; opacity: 1; }
.mobile-menu__link--sub {
    font-size: clamp(1.15rem, 3.4vw, 1.5rem);
    color: var(--stone);
}
.mobile-menu__link--sub:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }

.hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.12) translateY(-1.5%); }
}

.hero__video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    transition: opacity 1.2s var(--ease);
}
.hero__video iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.55), rgba(10, 10, 12, 0.32) 45%, var(--ink) 98%);
}

.hero__content { position: relative; z-index: 2; padding-top: 90px; }
.hero__kicker { margin-bottom: 28px; }

.hero__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3rem, 8.2vw, 7rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
}
.hero__title em { font-style: italic; color: var(--gold-soft); }

.hero__sub {
    margin-top: 30px;
    max-width: 560px;
    color: var(--ivory-dim);
    font-weight: 300;
    line-height: 1.85;
    font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.hero__cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }

.hero__scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
}
.hero__scroll-line { width: 1px; height: 46px; background: var(--line-gold); position: relative; overflow: hidden; }
.hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
    0% { transform: translateY(-100%); }
    55% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Estate / intro ---------- */
.estate { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.estate__media { position: relative; }
.estate__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.estate__media-line {
    position: absolute;
    inset: 26px -26px -26px 26px;
    border: 1px solid var(--line-gold);
    z-index: -1;
}
.estate__content .kicker { margin-bottom: 20px; }
.estate__content .display { margin-bottom: 26px; }
.estate__content .lead + .lead { margin-top: 18px; }
.estate__quote { margin-top: 34px; padding-left: 22px; border-left: 1px solid var(--gold); }
.estate__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ivory); }
.estate__quote cite { display: block; margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-style: normal; }

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat { padding: 44px 20px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat__label {
    display: block;
    margin-top: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ---------- Rooms ---------- */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room { position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--ink-panel); }
.room__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.3s var(--ease), opacity 1s var(--ease);
}
.room:hover .room__img { transform: scale(1.07); }
.room__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.05) 55%);
}
.room__info { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.room__num { font-size: 0.64rem; letter-spacing: 0.3em; color: var(--gold); }
.room__name { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; margin-top: 8px; }
.room__desc {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--stone);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.room:hover .room__desc { opacity: 1; transform: none; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: clamp(30px, 5vw, 70px); }
.service {
    display: flex;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}
.service__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); padding-top: 4px; }
.service__title { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; }
.service__desc { margin-top: 8px; color: var(--stone); font-size: 0.9rem; line-height: 1.7; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 20px; }
.gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    break-inside: avoid;
}
.gallery__item img { width: 100%; transition: transform 1.2s var(--ease); }
.gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 10, 0.55), transparent 45%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(5, 5, 7, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 88vw; max-height: 84vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
.lightbox__btn {
    position: absolute;
    z-index: 2;
    width: 54px; height: 54px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}
.lightbox__btn:hover { background: var(--gold); color: var(--ink); }
.lightbox__close { top: 30px; right: 34px; }
.lightbox__prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__caption { position: absolute; bottom: 34px; left: 0; right: 0; text-align: center; color: var(--stone); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; }

/* ---------- Experiences ---------- */
.experiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.exp { background: var(--ink-panel); border: 1px solid var(--line); overflow: hidden; }
.exp__media { overflow: hidden; aspect-ratio: 16 / 11; }
.exp__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.exp:hover .exp__media img { transform: scale(1.07); }
.exp__body { padding: 26px; }
.exp__title { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; }
.exp__desc { margin-top: 10px; color: var(--stone); font-size: 0.88rem; line-height: 1.7; }

/* ---------- Booking band ---------- */
.section--band { background: var(--ivory); color: var(--ink); text-align: center; }
.section--band .display { color: var(--ink); }
.section--band .lead { color: #5b5b60; margin-inline: auto; }
.band { display: grid; justify-items: center; gap: 26px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    padding: clamp(150px, 20vh, 230px) 0 60px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(198, 161, 91, 0.07), transparent 60%),
        var(--ink);
}
.page-hero__title { margin-top: 20px; max-width: 16ch; }
.page-hero__sub { margin-top: 24px; }

/* ---------- Virtual tour ---------- */
.pano {
    width: 100%;
    height: clamp(380px, 68vh, 640px);
    border: 1px solid var(--line);
    background: var(--ink-panel);
}
.tour__note { margin-top: 18px; text-align: center; color: var(--stone); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 90px); }
.contact__subtitle { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin-bottom: 24px; }
.contact__list { display: grid; gap: 22px; }
.contact__list li { display: grid; gap: 4px; }
.contact__label { font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.contact__list a, .contact__list span:last-child { color: var(--ivory-dim); font-weight: 300; }
.contact__list a:hover { color: var(--gold); }

.form { display: grid; gap: 24px; }
.form__honey { display: none; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form__field { display: grid; gap: 10px; }
.form__field span { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
.form input, .form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--ivory);
    padding: 12px 2px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form input::placeholder, .form textarea::placeholder { color: #4a4a50; }
.form textarea { resize: vertical; }
.form .btn { justify-self: start; margin-top: 8px; }

.form-success {
    padding: 34px;
    border: 1px solid var(--line-gold);
    background: var(--ink-panel);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-soft);
}
.form-error { color: #d98b8b; font-size: 0.85rem; }

/* ---------- Footer ---------- */
.footer { background: #060607; padding: var(--section-pad) 0 0; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 60px; }
.footer__about p { color: var(--stone); font-size: 0.9rem; margin-top: 18px; line-height: 1.8; }
.footer__title { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; margin-bottom: 20px; letter-spacing: 0.03em; }
.footer__list { display: grid; gap: 12px; }
.footer__list a, .footer__list li { color: var(--stone); font-size: 0.86rem; transition: color 0.3s; }
.footer__list a:hover { color: var(--gold); }
.footer__col > p { color: var(--stone); font-size: 0.86rem; line-height: 1.7; margin-bottom: 16px; }

.footer__news { display: flex; border-bottom: 1px solid var(--line); }
.footer__news input { flex: 1; background: none; border: none; color: var(--ivory); padding: 12px 2px; font-family: var(--font-body); font-weight: 300; font-size: 0.9rem; }
.footer__news input:focus { outline: none; }
.footer__news button { font-size: 1.3rem; color: var(--gold); padding: 0 6px; transition: transform 0.3s; }
.footer__news button:hover { transform: translateX(4px); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    color: var(--stone);
    font-size: 0.78rem;
}
.footer__bottom a { color: var(--stone); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .nav__links { display: none; }
    .nav__burger { display: block; }
    .nav__book { display: none; }
    .estate { grid-template-columns: 1fr; }
    .estate__media-line { inset: 16px -16px -16px 16px; }
    .rooms { grid-template-columns: repeat(2, 1fr); }
    .experiences { grid-template-columns: repeat(2, 1fr); }
    .gallery { columns: 2; }
    .contact { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3) { border-left: none; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
    .rooms { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr; }
    .experiences { grid-template-columns: 1fr; }
    .gallery { columns: 1; }
    .form__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__cta .btn { width: 100%; }
}

/* ---------- Booking page ---------- */
.booking { max-width: 1060px; }

.booking__intro { margin-bottom: 34px; }
.booking__h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.booking__note {
    margin-top: 8px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.booking__search {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr auto;
    gap: 18px;
    align-items: end;
    padding: 28px;
    background: var(--ink-panel);
    border: 1px solid var(--line);
}
.booking__search .btn { height: 46px; padding: 0 30px; }

.booking__error { margin-top: 18px; }

.booking__available { margin-top: 40px; }

.booking__avail-banner {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border: 1px solid var(--line-gold);
    background: rgba(198, 161, 91, 0.06);
    margin-bottom: 28px;
}
.booking__avail-mark {
    width: 34px; height: 34px;
    flex: 0 0 auto;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 600;
}
.booking__avail-banner strong { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; }
.booking__avail-banner p { color: var(--stone); font-size: 0.85rem; margin-top: 2px; }

.booking__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
}

.booking__summary {
    background: var(--ink-panel);
    border: 1px solid var(--line);
    padding: 28px;
}
.booking__summary-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.booking__summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}
.booking__summary-row span { color: var(--stone); }
.booking__summary-row strong { font-weight: 500; color: var(--ivory); }
.booking__summary-row--total { border-bottom: none; padding-top: 16px; }
.booking__summary-row--total strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
}

.booking__form { padding: 28px; background: var(--ink-panel); border: 1px solid var(--line); }
.booking__form-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    margin: 8px 0 18px;
    padding-top: 8px;
}
.booking__form-title:not(:first-child) { margin-top: 26px; border-top: 1px solid var(--line); }

.booking__pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 8px; }
.booking__pay-opt { position: relative; display: block; cursor: pointer; }
.booking__pay-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.booking__pay-opt-body {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    transition: border-color 0.3s, background 0.3s;
}
.booking__pay-opt-body strong { font-weight: 500; font-size: 0.95rem; }
.booking__pay-opt-body small { color: var(--stone); font-size: 0.8rem; line-height: 1.5; }
.booking__pay-opt input:checked + .booking__pay-opt-body {
    border-color: var(--gold);
    background: rgba(198, 161, 91, 0.06);
}
.booking__pay-opt input:focus-visible + .booking__pay-opt-body { outline: 1px solid var(--gold); }

/* Success / unavailable card */
.booking__card { padding: clamp(30px, 5vw, 56px); background: var(--ink-panel); border: 1px solid var(--line); }
.booking__card--center { text-align: center; max-width: 720px; margin-inline: auto; display: grid; justify-items: center; gap: 18px; }
.booking__success-mark {
    width: 62px; height: 62px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 1.7rem;
    font-weight: 600;
}
.booking__success-mark--no { background: #5b2a2a; color: var(--ivory); }
.booking__card-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.booking__card-text { color: var(--ivory-dim); max-width: 56ch; }
.booking__card .booking__summary { background: transparent; padding: 0 24px; width: 100%; text-align: left; }

.booking__pay { margin-top: 10px; padding-top: 22px; border-top: 1px solid var(--line); width: 100%; }
.booking__pay-title { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; margin-bottom: 18px; }
.booking__iban { display: grid; gap: 12px; text-align: left; max-width: 460px; margin-inline: auto; }
.booking__iban li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.booking__iban span { color: var(--stone); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.booking__iban strong { font-weight: 500; }

@media (max-width: 900px) {
    .booking__search { grid-template-columns: 1fr 1fr; }
    .booking__search .btn { grid-column: 1 / -1; }
    .booking__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .booking__search { grid-template-columns: 1fr; }
    .booking__pay-options { grid-template-columns: 1fr; }
}
