:root {
    --bordeaux: #4a0e1a;
    --bordeaux-deep: #28070e;
    --wine: #722f37;
    --wine-light: #9a4a54;
    --gold: #c9a35c;
    --gold-soft: #e3c98f;
    --cream: #f4ede3;
    --cream-dim: #e9dfd0;
    --ink: #16090b;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Manrope", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--bordeaux-deep); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.2rem; border-radius: 999px;
    font-family: var(--sans); font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid transparent; cursor: pointer;
    transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--gold { background: var(--gold); color: var(--bordeaux-deep); box-shadow: 0 10px 30px -12px rgba(201, 163, 92, 0.7); }
.btn--gold:hover { background: var(--gold-soft); box-shadow: 0 18px 40px -12px rgba(201, 163, 92, 0.8); }
.btn--bordeaux { background: var(--bordeaux); color: var(--cream); }
.btn--bordeaux:hover { background: var(--wine); }
.btn--ghost { border-color: currentColor; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn--sm { padding: 0.7rem 1.5rem; font-size: 0.75rem; }
.btn--lg { padding: 1.2rem 3rem; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    padding: 1.1rem clamp(1.2rem, 4vw, 3.5rem);
}
.site-header.is-scrolled {
    background: rgba(40, 7, 14, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(201, 163, 92, 0.25);
}
.site-header__brand { display: flex; align-items: center; gap: 0.8rem; color: var(--cream); }
.brand-mark {
    font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.12em;
    color: var(--gold); border: 1px solid rgba(201, 163, 92, 0.55);
    padding: 0.3rem 0.65rem; border-radius: 4px;
}
.brand-mark--lg { font-size: 2rem; display: inline-block; }
.brand-logo { height: 54px; width: auto; max-width: 100%; object-fit: contain; display: block; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35)); transition: transform 0.4s var(--ease); }
.site-header__brand:hover .brand-logo { transform: translateY(-2px); }
.brand-logo--lg { height: 84px; }
.brand-word { font-family: var(--serif); font-size: 1.25rem; letter-spacing: 0.06em; line-height: 1.1; }
.brand-word small { display: block; font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244, 237, 227, 0.6); }

.site-nav__list { display: flex; gap: 0.55rem; list-style: none; align-items: center; }
.site-nav__list a {
    color: rgba(244, 237, 227, 0.85); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    position: relative; padding: 0.55rem 0.7rem;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}
.site-nav__list a::after {
    content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.25rem; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: right;
    transition: transform 0.45s var(--ease);
}
.site-nav__list a:hover { color: var(--gold-soft); }
.site-nav__list a:hover::after, .site-nav__list .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.site-nav__list .current-menu-item > a { color: var(--gold); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch ul { display: flex; gap: 0.5rem; list-style: none; }
.lang-switch a { color: rgba(244, 237, 227, 0.7); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.lang-switch .current-lang a { color: var(--gold); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; position: relative; }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--cream); transition: transform 0.35s var(--ease), top 0.35s var(--ease); }
.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { top: 24px; }
.nav-open .nav-toggle span:first-child { top: 19px; transform: rotate(45deg); }
.nav-open .nav-toggle span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100vh; overflow: hidden;
    background: var(--bordeaux-deep); color: var(--cream);
    display: flex; align-items: flex-end;
    padding: clamp(6rem, 12vh, 9rem) clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 9vh, 7rem);
    perspective: 1200px;
}
.hero__scene { position: absolute; inset: 0; transform-style: preserve-3d; }
.hero__media {
    position: absolute; inset: -8%;
    transform-style: preserve-3d; will-change: transform;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(1.05); }
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(40, 7, 14, 0.55) 0%, rgba(40, 7, 14, 0.15) 40%, rgba(40, 7, 14, 0.92) 100%);
}
.hero__glass {
    position: absolute; right: clamp(2rem, 9vw, 10rem); top: 34%;
    transform: translateZ(120px);
    background: rgba(40, 7, 14, 0.45);
    border: 1px solid rgba(201, 163, 92, 0.35);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-radius: 12px; padding: 1.2rem 1.6rem;
    display: flex; flex-direction: column; gap: 0.2rem;
}
.hero__glass-num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.hero__glass-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244, 237, 227, 0.75); }

.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2.4rem;
}
.hero__title {
    font-size: clamp(3rem, 8.5vw, 7.5rem);
    letter-spacing: -0.02em; line-height: 0.98; font-weight: 350;
    margin-bottom: 1.8rem;
}
.hero__title .accent { font-style: italic; color: var(--gold-soft); }
.line { display: block; overflow: hidden; }
.line > span { display: inline-block; transform: translateY(110%); will-change: transform; }
.hero__sub { max-width: 480px; color: rgba(244, 237, 227, 0.85); font-size: 1.05rem; margin-bottom: 2.4rem; opacity: 0; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; }
.hero__scrollhint { position: absolute; bottom: 2rem; right: clamp(1.2rem, 5vw, 4.5rem); z-index: 2; width: 1px; height: 64px; background: rgba(244, 237, 227, 0.25); overflow: hidden; }
.hero__scrollhint span { position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrollhint 2.2s var(--ease) infinite; }
@keyframes scrollhint { 0% { top: -40%; } 100% { top: 110%; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--bordeaux); color: var(--cream); overflow: hidden; padding: 1.1rem 0; border-block: 1px solid rgba(201, 163, 92, 0.3); }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee__track span {
    font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.8rem); font-style: italic;
    white-space: nowrap; padding-right: 2rem; letter-spacing: 0.04em;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.6em; vertical-align: middle; padding: 0 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Chapters ---------- */
.chapter { padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 4.5rem); max-width: 1440px; margin: 0 auto; }
.chapter--dark { max-width: none; background: var(--cream-dim); }
.chapter--dark > * { max-width: 1440px; margin-inline: auto; }
.chapter__head { margin-bottom: clamp(1.6rem, 4vh, 2.8rem); position: relative; }
.chapter__num {
    font-family: var(--serif); font-style: italic; font-size: clamp(4rem, 10vw, 8rem);
    color: transparent; -webkit-text-stroke: 1px rgba(74, 14, 26, 0.35);
    position: absolute; top: -0.35em; left: -0.05em; z-index: 0; user-select: none;
}
.chapter--dark .chapter__num { -webkit-text-stroke-color: rgba(74, 14, 26, 0.25); }
.chapter__title { position: relative; z-index: 1; font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.01em; padding-top: 0.55em; }
.chapter__sub { position: relative; z-index: 1; margin-top: 0.8rem; color: rgba(22, 9, 11, 0.65); max-width: 560px; }
.chapter__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.chapter__grid .frame { max-width: 400px; justify-self: center; }
.chapter__text .lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.35; margin-bottom: 1.6rem; color: var(--bordeaux); }
.chapter__text p + p { margin-top: 1.1rem; color: rgba(22, 9, 11, 0.78); }
.chapter__cta { margin-top: 3.5rem; text-align: center; }

/* Framed imagery — clipped, spotlight */
.frame { position: relative; transform-style: preserve-3d; will-change: transform; }
.frame img { border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.frame::before {
    content: ""; position: absolute; inset: -14px;
    border: 1px solid rgba(114, 47, 55, 0.4); border-radius: 10px; pointer-events: none;
}
.frame figcaption {
    margin-top: 1.4rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(22, 9, 11, 0.55);
}

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.service {
    position: relative; display: flex; flex-direction: column; gap: 1rem;
    padding: 1.6rem; border-radius: 14px;
    background: var(--cream); border: 1px solid rgba(74, 14, 26, 0.12);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service:nth-child(even) { transform: translateY(2.5rem); }
.service:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -25px rgba(40, 7, 14, 0.45); border-color: rgba(201, 163, 92, 0.6); }
.service:nth-child(even):hover { transform: translateY(calc(2.5rem - 8px)); }
.service__num { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--wine); }
.service__media { overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service:hover .service__media img { transform: scale(1.08); }
.service h3 { font-size: 1.45rem; color: var(--bordeaux); }
.service p { font-size: 0.92rem; color: rgba(22, 9, 11, 0.7); flex: 1; }
.service__link { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine); transition: color 0.3s, letter-spacing 0.4s var(--ease); }
.service:hover .service__link { color: var(--gold); letter-spacing: 0.24em; }

/* ---------- Property cards ---------- */
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.props-grid--archive { padding: 0 clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 8vh, 6rem); max-width: 1440px; margin: 0 auto; }
.prop-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(74, 14, 26, 0.1);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 35px 70px -30px rgba(40, 7, 14, 0.5); }
.prop-card__media { position: relative; display: block; aspect-ratio: 16/11; overflow: hidden; }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.prop-card:hover .prop-card__media img { transform: scale(1.07); }
.prop-card__badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 0.45rem 0.9rem; border-radius: 999px; color: var(--cream); background: var(--bordeaux);
}
.prop-card__badge--affitto { background: var(--gold); color: var(--bordeaux-deep); }
.prop-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.prop-card__title { font-size: 1.35rem; color: var(--bordeaux); margin-bottom: 0.25rem; }
.prop-card__loc { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(22, 9, 11, 0.5); margin-bottom: 0.9rem; }
.prop-card__meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: rgba(22, 9, 11, 0.65); margin-bottom: 1.2rem; }
.prop-card__meta span + span { border-left: 1px solid rgba(74, 14, 26, 0.15); padding-left: 1rem; }
.prop-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.prop-card__price { font-family: var(--serif); font-size: 1.4rem; color: var(--wine); }

/* ---------- Filters ---------- */
.props-filter { display: flex; gap: 0.7rem; justify-content: center; padding: 2.2rem 1.2rem 3rem; flex-wrap: wrap; }
.chip {
    font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.65rem 1.6rem; border-radius: 999px; cursor: pointer;
    border: 1px solid rgba(74, 14, 26, 0.3); background: transparent; color: var(--bordeaux);
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.chip:hover { border-color: var(--bordeaux); }
.chip.is-active { background: var(--bordeaux); color: var(--cream); border-color: var(--bordeaux); }
.prop-card.is-hidden { display: none; }

/* ---------- Page hero ---------- */
.page-hero {
    position: relative; min-height: 52vh; display: flex; align-items: flex-end;
    background: var(--bordeaux-deep); color: var(--cream); overflow: hidden;
    padding: 9rem clamp(1.2rem, 5vw, 4.5rem) 4rem;
}
.page-hero--archive { min-height: 46vh; }
.page-hero__bg { position: absolute; inset: -10%; background-size: cover; background-position: center; filter: brightness(0.4); will-change: transform; }
.page-hero__content { position: relative; z-index: 1; max-width: 900px; }
.page-hero__eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero__title { font-size: clamp(2.6rem, 6.5vw, 5.5rem); letter-spacing: -0.02em; font-weight: 350; }
.page-hero__sub { margin-top: 1.2rem; max-width: 560px; color: rgba(244, 237, 227, 0.8); }

/* ---------- Page content (seeded blocks) ---------- */
.page-content { max-width: 1100px; margin: 0 auto; padding: clamp(4rem, 8vh, 6rem) clamp(1.2rem, 5vw, 3rem); }
.page-content h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--bordeaux); margin: 3.5rem 0 1.2rem; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.4rem; color: var(--wine); margin: 2rem 0 0.8rem; }
.page-content p { color: rgba(22, 9, 11, 0.8); margin-bottom: 1.1rem; max-width: 72ch; }
.page-content .lead { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.4; color: var(--bordeaux); }
.page-content .frame { margin: 2.5rem 0; }
.page-content .frame img { aspect-ratio: 16/10; }
.page-content .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2.5rem 0; }
.page-content .gallery img { border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 0.6s var(--ease); }
.page-content .gallery img:hover { transform: scale(1.03); }
.page-content .info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 2.5rem 0; }
.page-content .info-card {
    background: #fff; border: 1px solid rgba(74, 14, 26, 0.12); border-radius: 12px; padding: 1.8rem;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.page-content .info-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px -25px rgba(40, 7, 14, 0.4); }
.page-content .info-card h3 { margin-top: 0; }
.page-content .info-card a { color: var(--wine); font-weight: 600; }
.page-content .highlight {
    background: var(--bordeaux); color: var(--cream); border-radius: 14px;
    padding: clamp(1.8rem, 4vw, 3rem); margin: 3rem 0;
}
.page-content .highlight p { color: rgba(244, 237, 227, 0.88); }
.page-content .highlight h2, .page-content .highlight h3 { color: var(--gold-soft); margin-top: 0; }

/* ---------- Forms ---------- */
.mgr-form { background: #fff; border: 1px solid rgba(74, 14, 26, 0.14); border-radius: 14px; padding: clamp(1.6rem, 3vw, 2.4rem); margin: 2rem 0; }
.mgr-form__title { font-size: 1.5rem; color: var(--bordeaux); margin-bottom: 1.4rem; }
.mgr-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
.mgr-form__row { margin-bottom: 1.1rem; }
.mgr-form label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(22, 9, 11, 0.6); margin-bottom: 0.45rem; }
.mgr-form input, .mgr-form textarea {
    width: 100%; border: 1px solid rgba(74, 14, 26, 0.25); border-radius: 8px;
    padding: 0.85rem 1rem; font-family: var(--sans); font-size: 0.95rem; background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.mgr-form input:focus, .mgr-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.25); }
.mgr-form__ok { background: rgba(201, 163, 92, 0.2); border: 1px solid var(--gold); color: var(--bordeaux); border-radius: 8px; padding: 0.9rem 1.1rem; margin-bottom: 1.2rem; font-weight: 600; }

/* ---------- Single immobile ---------- */
.single-hero {
    display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 88vh;
    background: var(--bordeaux-deep); color: var(--cream); padding-top: 72px;
}
.single-hero__media { position: relative; overflow: hidden; }
.single-hero__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.single-hero__info { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.single-hero__loc { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.single-hero__title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-bottom: 1.2rem; font-weight: 350; }
.single-hero__price { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold-soft); margin-bottom: 1.8rem; }
.single-hero__meta { display: flex; gap: 2.2rem; list-style: none; margin-bottom: 2.4rem; flex-wrap: wrap; }
.single-hero__meta li { display: flex; flex-direction: column; }
.single-hero__meta strong { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.single-hero__meta span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244, 237, 227, 0.6); }
.single-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.single-body { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); max-width: 1280px; margin: 0 auto; padding: clamp(4rem, 8vh, 6rem) clamp(1.2rem, 5vw, 3rem); }
.single-body__desc h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--bordeaux); margin-bottom: 1.4rem; }
.single-body__desc p { color: rgba(22, 9, 11, 0.8); margin-bottom: 1.1rem; }
.side-card { background: var(--bordeaux); color: var(--cream); border-radius: 14px; padding: 1.8rem; margin-bottom: 1.6rem; }
.side-card h3 { color: var(--gold-soft); margin-bottom: 0.8rem; }
.side-card p { color: rgba(244, 237, 227, 0.85); margin-bottom: 0.5rem; }
.side-card a { color: var(--gold-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--bordeaux-deep); color: var(--cream);
    padding: clamp(4.5rem, 10vh, 7rem) clamp(1.2rem, 5vw, 4.5rem);
    text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 90% at 50% 110%, rgba(201, 163, 92, 0.22), transparent 70%);
}
.cta-banner__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(244, 237, 227, 0.75); margin-bottom: 2.2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bordeaux-deep); color: var(--cream); position: relative; overflow: hidden; border-top: 1px solid rgba(201, 163, 92, 0.25); }
.site-footer__glow { position: absolute; inset: auto 0 -40% 0; height: 70%; background: radial-gradient(50% 100% at 50% 100%, rgba(114, 47, 55, 0.5), transparent 70%); pointer-events: none; }
.site-footer__inner {
    position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: clamp(2rem, 5vw, 4rem); max-width: 1440px; margin: 0 auto;
    padding: clamp(4rem, 8vh, 6rem) clamp(1.2rem, 5vw, 4.5rem) 3rem;
}
.site-footer h4 { font-size: 0.78rem; font-family: var(--sans); font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.site-footer__payoff { margin-top: 1.2rem; color: rgba(244, 237, 227, 0.7); font-size: 0.92rem; max-width: 340px; }
.footer-nav { list-style: none; }
.footer-nav a { display: inline-block; padding: 0.3rem 0; color: rgba(244, 237, 227, 0.8); font-size: 0.92rem; transition: color 0.3s, transform 0.3s var(--ease); }
.footer-nav a:hover { color: var(--gold-soft); transform: translateX(6px); }
.footer-contacts { list-style: none; }
.footer-contacts li { margin-bottom: 1rem; font-size: 0.92rem; color: rgba(244, 237, 227, 0.85); }
.footer-contacts span { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201, 163, 92, 0.8); margin-bottom: 0.25rem; }
.footer-contacts a:hover { color: var(--gold-soft); }
.site-footer__bar {
    position: relative; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    max-width: 1440px; margin: 0 auto; padding: 1.4rem clamp(1.2rem, 5vw, 4.5rem);
    border-top: 1px solid rgba(244, 237, 227, 0.12);
    font-size: 0.75rem; letter-spacing: 0.08em; color: rgba(244, 237, 227, 0.5);
}

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(40px); }
.no-js [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .services { grid-template-columns: repeat(2, 1fr); }
    .service:nth-child(even) { transform: none; }
    .service:nth-child(even):hover { transform: translateY(-8px); }
    .props-grid { grid-template-columns: repeat(2, 1fr); }
    .single-hero { grid-template-columns: 1fr; }
    .single-hero__media { min-height: 46vh; }
    .single-body { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .hero { align-items: center; min-height: 100svh; padding-top: 5.5rem; padding-bottom: 2.5rem; }
    .site-nav {
        position: fixed; inset: 0; background: rgba(40, 7, 14, 0.97);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
    }
    .nav-open .site-nav { opacity: 1; pointer-events: auto; }
    body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(40, 7, 14, 0.97); }
    .site-nav__list { flex-direction: column; text-align: center; gap: 1.4rem; }
    .site-nav__list a { font-size: 1.1rem; }
    .nav-toggle { display: block; z-index: 101; }
    .site-header__actions .btn { display: none; }
    .chapter__grid { grid-template-columns: 1fr; }
    .page-content .info-cards, .page-content .gallery { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .hero__glass { display: none; }
}
@media (max-width: 560px) {
    .props-grid { grid-template-columns: 1fr; }
    .mgr-form__grid { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr; }
}

/* ---------- Gallery (single immobile) ---------- */
.gal { position: relative; display: flex; flex-direction: column; height: 100%; }
.gal__main { position: relative; flex: 1; overflow: hidden; min-height: 46vh; }
.gal__main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gal__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(201, 163, 92, 0.6);
    background: rgba(40, 7, 14, 0.55); color: var(--cream); font-size: 1.2rem; cursor: pointer;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.gal__nav:hover { background: var(--gold); color: var(--bordeaux-deep); transform: translateY(-50%) scale(1.08); }
.gal__nav--prev { left: 1.2rem; }
.gal__nav--next { right: 1.2rem; }
.gal__count {
    position: absolute; bottom: 1.1rem; right: 1.2rem; z-index: 3;
    background: rgba(40, 7, 14, 0.6); color: var(--cream); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; padding: 0.4rem 0.9rem; border-radius: 999px;
    border: 1px solid rgba(201, 163, 92, 0.4);
}
.gal__thumbs { display: flex; gap: 0.6rem; padding: 0.8rem; background: var(--bordeaux-deep); overflow-x: auto; }
.gal__thumb {
    flex: 0 0 96px; height: 68px; border-radius: 8px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; padding: 0; background: none; opacity: 0.55;
    transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.gal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal__thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.gal__thumb.is-active { border-color: var(--gold); opacity: 1; }

/* ---------- Video (single immobile) ---------- */
.video { margin: 1.5rem 0 2.5rem; border-radius: 14px; overflow: hidden; border: 1px solid rgba(74, 14, 26, 0.15); }
.video iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

/* ---------- Mappa contatti ---------- */
.menu-item.solo-mobile { display: none; }
@media (max-width: 860px) {
    .menu-item.solo-mobile { display: list-item; }
}
.map { margin: 2.5rem 0; border-radius: 14px; overflow: hidden; border: 1px solid rgba(74, 14, 26, 0.15); }
.map iframe { width: 100%; height: 440px; border: 0; display: block; filter: saturate(0.85) sepia(0.08); }

/* ---------- Admin galleria ---------- */
.mgr-gal-prev { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.mgr-gal-prev img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; border: 1px solid #c3c4c7; }

/* ---------- Recensioni ---------- */
.reviews { display: grid; grid-template-columns: 0.8fr 1.6fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.reviews__summary {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0.6rem;
    padding: 2.2rem; border-radius: 14px;
    background: var(--cream); border: 1px solid rgba(74, 14, 26, 0.12);
}
.reviews__score { font-family: var(--serif); font-style: italic; font-size: clamp(3.2rem, 6vw, 5rem); line-height: 1; color: var(--bordeaux); }
.reviews__stars, .review__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 1.05rem; }
.reviews__count { margin: 0.2rem 0 0.8rem; color: rgba(22, 9, 11, 0.65); font-size: 0.95rem; line-height: 1.5; }
.reviews__link {
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bordeaux);
    border-bottom: 1px solid rgba(114, 47, 55, 0.35); padding-bottom: 3px;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.reviews__link:hover { color: var(--gold); border-color: var(--gold); }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.review {
    position: relative; margin: 0; padding: 2.2rem 1.8rem 1.8rem;
    border-radius: 14px; background: var(--cream); border: 1px solid rgba(74, 14, 26, 0.12);
    display: flex; flex-direction: column; gap: 0.9rem;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(74, 14, 26, 0.12); }
.review__quote {
    position: absolute; top: 0.4rem; right: 1.2rem;
    font-family: var(--serif); font-size: 5rem; line-height: 1; color: rgba(201, 163, 92, 0.35); pointer-events: none;
}
.review__text { font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; color: var(--bordeaux); margin: 0; }
.review__author { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(22, 9, 11, 0.7); margin-top: auto; }
.review__author span { display: block; margin-top: 3px; letter-spacing: 0.14em; color: rgba(22, 9, 11, 0.45); }
@media (max-width: 900px) {
    .reviews { grid-template-columns: 1fr; }
    .reviews__summary { align-items: center; text-align: center; }
}
@media (max-width: 600px) {
    .reviews__grid { grid-template-columns: 1fr; }
}

/* ---------- Pulsante WhatsApp flottante ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 9990;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #25d366; color: #fff;
    box-shadow: 0 10px 24px rgba(22, 9, 11, 0.35);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
}
.wa-float::after {
    content: ""; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); background: #1ebe5b; box-shadow: 0 14px 30px rgba(22, 9, 11, 0.4); }
@keyframes wa-pulse {
    0% { transform: scale(0.9); opacity: 1; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 860px) {
    .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
